Call requisition import program back from back end

declare
l_request_req_id NUMBER;
begin
BEGIN
l_request_req_id :=
apps.fnd_request.submit_request
(application => ‘PO’ –Application,
,
program => ‘REQIMPORT’ –Program,
,
argument1 => ”
–Interface Source code,
,
argument2 => 1032
–Batch ID,
,
argument3 => ‘Vendor’ –Group By,
,
argument4 => ” –Last Req Number,
,
argument5 => ‘N’ –Multi Distributions,
,
argument6 => ‘Y’
–Initiate Approval after ReqImport
);
COMMIT;
END;
end;

Recent Posts