Method PostCancelReqLineItem

Summary

Cancel Requisition Line Item AssetWorks version - Coming soon... targeted release 22.1

Remarks

AssetWorks version - Coming soon... targeted release 22.1

Input Parameters

NameTypeLengthDescription
action System.String 1 [Required] Line item action: A = create new requisition line item, U = Update existing requisition line item, C = Cancel existing requisition line item
reqNumber System.String 30 [Required] Requisition number: required for all actions
reqLineNumber System.String 3 [Required] Requisition line number: required for all actions, Numeric right justified with zero fill

Example

POST http://localhost/FusionServices/v2/Naviline/ProductInventory/CancelReqLineItem

Return Values

NameDescription
ErrorCode 0000
ErrorDescription Success

Sample Responses

Sample Code

using System.Net;
using Newtonsoft.Json.Linq;

public void MethodName(parms)
{
   string uri = "http://localhost/FusionServices/v2/Naviline/ProductInventory/CancelReqLineItem";
   System.Collections.Specialized.NameValueCollection postParms = 
     new System.Collections.Specialized.NameValueCollection(); 
   // Set paramater values
   postParms.Add("action",System.Web.HttpUtility.UrlEncode("C"));
   postParms.Add("reqNumber",System.Web.HttpUtility.UrlEncode("newReqNum3"));
   postParms.Add("reqLineNumber",System.Web.HttpUtility.UrlEncode("007"));

   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")
   {
         // TODO - YOUR CODE HERE
   }
}

C# Razor MVC Sample Code

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 PostCancelReqLineItem
   {
       // 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;}

       [Required(ErrorMessage = "Required")]
       [RegularExpression("^(?=.{0,30}$).*", ErrorMessage = "Must be 30 characters or less. ")]
       public string reqNumber{get; set;}

       [Required(ErrorMessage = "Required")]
       [RegularExpression("^(?=.{0,3}$).*", ErrorMessage = "Must be 3 characters or less. ")]
       public string reqLineNumber{get; set;}

       public PostCancelReqLineItem()
       {
           //Set any defaults here
       }
   }
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostCancelReqLineItem 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.PostCancelReqLineItem

@{
   ViewBag.Title = "PostCancelReqLineItem";
}

<h2>PostCancelReqLineItem</h2>
@using (Html.BeginForm()) {
   @Html.AntiForgeryToken()
   @Html.ValidationSummary(true)
   <fieldset>
   <legend>PostCancelReqLineItem</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>
       <div class="editor-label">
           @Html.LabelFor(model => model.reqLineNumber)
       </div>
       <div class="editor-field">
           @Html.EditorFor(model => model.reqLineNumber)
           @Html.ValidationMessageFor(model => model.reqLineNumber)
       </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/PostCancelReqLineItem
public ActionResult PostCancelReqLineItem()
{
   // Create a new instance of the model to pick up any default values.
   PostCancelReqLineItem model =  new PostCancelReqLineItem();

   // pass model to set to default values
   // NOTE: Change 'MyFolderPath' to the path to the .cshtml file.
   return View("~/Views/MyFolderPath/PostCancelReqLineItem.cshtml", model);
}

// 
// POST: /MyController/PostCancelReqLineItem
[HttpPost]
public ActionResult PostCancelReqLineItem(FormCollection collection)
{
   string url = "v2/Naviline/ProductInventory/CancelReqLineItem";
   // Get the value from each input field
   NameValueCollection inputParms = new NameValueCollection();
   inputParms.Add("action", collection["action"]);
   inputParms.Add("reqNumber", collection["reqNumber"]);
   inputParms.Add("reqLineNumber", collection["reqLineNumber"]);

   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", "PostCancelReqLineItem");
       return View("Error", info);
   }
}