Procurement - EBS (MOSC)

MOSC Banner

How can ı cancel requisition line by API (EBS 11.5.10)?

edited Dec 20, 2011 10:25PM in Procurement - EBS (MOSC) 3 comments
Hello,

I have some requisitions and ı want to cancel some lines by api. I have found a code but it did not work. Are there any working solution or what is wrong here?

Best Regards,
MehmeT

declare
p_req_header_id po_tbl_number;
p_req_line_id po_tbl_number;
i number;
      w_return_status    VARCHAR2(250);
      w_return_msg       VARCHAR2(250);
      w_msg_count NUMBER;
begin
p_req_header_id := po_tbl_number();
p_req_line_id := po_tbl_number();
i := 1;
p_req_header_id.extend;
p_req_header_id(i) := 652680;    
p_req_line_id.extend;
p_req_line_id(i) := 1697792;

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center