Method PostCancelReqLineItem2

Summary

Cancel Requisition Line Item

Remarks

Allows the cancellation of a requisition line item record, files PI620AP and PI650AP. Limited edits are enforced during the cancellation. The requisition status will be updated to (2 = NEEDS ADDITIONAL INFORMATION). This forces the user of the system to go thru the existing requisition process to approve and verify that all information is correct.

Requires

Input Parameters

NameTypeLengthDescription
None No input parameters to pass

Example

POST http://localhost/FusionServices/v3/Naviline/ProductInventory/CancelReqLineItem2

Return Values

NameDescription
ErrorCode 0000 = Success.
ErrorDescription Success if success, otherwise returns a descriptive error message.
RequisitionLineNumber Requisition line number

Sample Responses

Sample Code

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

public void MethodName(parms)
{
   string uri = "http://localhost/FusionServices/v3/Naviline/ProductInventory/CancelReqLineItem2";
   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("0000018638"));
   postParms.Add("reqLineNumber",System.Web.HttpUtility.UrlEncode("009"));

   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 PostCancelReqLineItem2
   {
       // Add property for each input param in order to map a field to it
       public PostCancelReqLineItem2()
       {
           //Set any defaults here
       }
   }
}
@* NOTE: Use Add->View to add the View. *@
@* NOTE: Check the 'Create strongly-typed view checkbox, and select the PostCancelReqLineItem2 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.PostCancelReqLineItem2

@{
   ViewBag.Title = "PostCancelReqLineItem2";
}

<h2>PostCancelReqLineItem2</h2>
@using (Html.BeginForm()) {
   @Html.AntiForgeryToken()
   @Html.ValidationSummary(true)
   <fieldset>
   <legend>PostCancelReqLineItem2</legend>
       <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/PostCancelReqLineItem2
public ActionResult PostCancelReqLineItem2()
{
   // Create a new instance of the model to pick up any default values.
   PostCancelReqLineItem2 model =  new PostCancelReqLineItem2();

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

// 
// POST: /MyController/PostCancelReqLineItem2
[HttpPost]
public ActionResult PostCancelReqLineItem2(FormCollection collection)
{
   string url = "v3/Naviline/ProductInventory/CancelReqLineItem2";
   // Get the value from each input field
   NameValueCollection inputParms = new NameValueCollection();

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