Search Requisition By Number AssetWorks version
Name | Type | Length | Description |
---|---|---|---|
action | System.String | 1 | [Required] Requested type of information since last call: N = newly added Req’s and/or Req line items, U = Updated Req’s and/or Req line items, C = Cancelled Req’s and/or Req line items |
reqNumber | System.String | 30 | Requisiton number to search for. Blanks when requesting a list of requisitions by change action. |
POST http://localhost/FusionServices/v3/Naviline/ProductInventory/SearchReqByNumber
Name | Description |
---|---|
ErrorCode | 0000 = Success. |
ErrorDescription | Success if success, otherwise returns a descriptive error message. |
Other | See fields returned below in sample responses |
using System.Net;
using Newtonsoft.Json.Linq;
public void MethodName(parms)
{
string uri = "http://localhost/FusionServices/v3/Naviline/ProductInventory/SearchReqByNumber";
System.Collections.Specialized.NameValueCollection postParms =
new System.Collections.Specialized.NameValueCollection();
// Set paramater values
postParms.Add("action",System.Web.HttpUtility.UrlEncode("N"));
postParms.Add("reqNumber",System.Web.HttpUtility.UrlEncode("roger-1"));
WebClient req = new WebClient();
wc.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
wc.Headers.Set("X-APPID", "YOURID");
wc.Headers.Set("X-APPKEY", "YOURKEY");
byte[] responseBytes = wc.UploadValues(new Uri(uri), "POST", postParms);
string stringResult = Encoding.UTF8.GetString(responseBytes);
JObject response = JObject.Parse(stringResult);
string error = response["OutputParms"]["ErrorCode"].ToString();
if (error == "0000")
{
JArray jRows = (JArray)response["Rows"];
foreach (JObject row in jRows)
{
string RecordType = row["RecordType"].ToString();
string Action = row["Action"].ToString();
string RequisitionNo = row["RequisitionNo"].ToString();
string ThirdPartyReqNumber = row["ThirdPartyReqNumber"].ToString();
string RequisitonType = row["RequisitonType"].ToString();
string ReqStatus = row["ReqStatus"].ToString();
string Requisitioner = row["Requisitioner"].ToString();
string ReasonDescription = row["ReasonDescription"].ToString();
string RequisitonDate = row["RequisitonDate"].ToString();
string VendorNumber = row["VendorNumber"].ToString();
string VendorName = row["VendorName"].ToString();
string ReqContractNo = row["ReqContractNo"].ToString();
string ReqShipTo = row["ReqShipTo"].ToString();
string DeliverByDate = row["DeliverByDate"].ToString();
string ReqFiscalYrCode = row["ReqFiscalYrCode"].ToString();
string RequistionLineNumber = row["RequistionLineNumber"].ToString();
string ThirdPartyReqLineNumber = row["ThirdPartyReqLineNumber"].ToString();
string Commodity = row["Commodity"].ToString();
string SubComm = row["SubComm"].ToString();
string ItemNo = row["ItemNo"].ToString();
string ReqItemDesc = row["ReqItemDesc"].ToString();
string VendorPartNo = row["VendorPartNo"].ToString();
string Building = row["Building"].ToString();
string LineItemQuantity = row["LineItemQuantity"].ToString();
string ReqUOM = row["ReqUOM"].ToString();
string UnitCost = row["UnitCost"].ToString();
string ReqLineItemAcctNumber = row["ReqLineItemAcctNumber"].ToString();
string ReqLineItemProjNumber = row["ReqLineItemProjNumber"].ToString();
string OrderCstChg = row["OrderCstChg"].ToString();
string FleetEquipNumber = row["FleetEquipNumber"].ToString();
string FleetRepairControlNumber = row["FleetRepairControlNumber"].ToString();
string FleetRepairJobNumber = row["FleetRepairJobNumber"].ToString();
string WorkOrderID = row["WorkOrderID"].ToString();
string WorkOrderJobNumber = row["WorkOrderJobNumber"].ToString();
// TODO - YOUR CODE HERE
}
}
}
using System;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
using System.Collections.Specialized;
using FusionServiceHelper.Models;
// NOTE: Use the namespace generated when you add the class, so that it is correct.
namespace FusionRazor.Models
{
public class PostSearchReqByNumber
{
// Add property for each input param in order to map a field to it
[Required(ErrorMessage = "Required")]
[RegularExpression("^(?=.{0,1}$).*", ErrorMessage = "Must be 1 characters or less. ")]
public string action{get; set;}
[RegularExpression("^(?=.{0,30}$).*", ErrorMessage = "Must be 30 characters or less. ")]
public string reqNumber{get; set;}
public PostSearchReqByNumber()
{
//Set any defaults here
}
}
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostSearchReqByNumber class. *@
@* NOTE: Select Edit as the Scaffold template. *@
@* NOTE: Use the @model line that is generated at the top. Replace the rest with the lines below.
@model FusionRazor.Models.PostSearchReqByNumber
@{
ViewBag.Title = "PostSearchReqByNumber";
}
<h2>PostSearchReqByNumber</h2>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>PostSearchReqByNumber</legend>
<div class="editor-label">
@Html.LabelFor(model => model.action)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.action)
@Html.ValidationMessageFor(model => model.action)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.reqNumber)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.reqNumber)
@Html.ValidationMessageFor(model => model.reqNumber)
</div>
<p>
<input type="submit" value="Submit"/>
</p>
</fieldset>
}
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
using System;
using System.Collections.Specialized;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using FusionServiceHelper.Models;
// NOTE: Replace 'MyController' with the name of your controller.
//
// GET: /MyController/PostSearchReqByNumber
public ActionResult PostSearchReqByNumber()
{
// Create a new instance of the model to pick up any default values.
PostSearchReqByNumber model = new PostSearchReqByNumber();
// pass model to set to default values
// NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
return View("~/Views/MyFolderPath/PostSearchReqByNumber.cshtml", model);
}
//
// POST: /MyController/PostSearchReqByNumber
[HttpPost]
public ActionResult PostSearchReqByNumber(FormCollection collection)
{
string url = "v3/Naviline/ProductInventory/SearchReqByNumber";
// Get the value from each input field
NameValueCollection inputParms = new NameValueCollection();
inputParms.Add("action", collection["action"]);
inputParms.Add("reqNumber", collection["reqNumber"]);
try
{
// Send the request
FusionServiceRequest request = new FusionServiceRequest();
FusionServiceResult result = request.Post(url, inputParms);
return View("Result", result);
}
catch(Exception e)
{
HandleErrorInfo info = new HandleErrorInfo(e, "MyController", "PostSearchReqByNumber");
return View("Error", info);
}
}