DBA Data[Home] [Help]

APPS.PO_DOCUMENT_ACTIONS_SV dependencies on FND_TRANSACTION

Line 539: -- Because fnd_transaction.synchronous restricts the number of parameters

535:
536:
537: ELSIF (action = 'CANCEL') THEN
538:
539: -- Because fnd_transaction.synchronous restricts the number of parameters
540: -- to be less than 20, and for final close and cancel action we need
541: -- to pass in the extra argument (p_extra_arg4), for Use GL Date, we need
542: -- to remove one of the existing parameters. Since OVERRIDE_FUNDS is
543: -- currently always passed as NULL for these actions, and the backend

Line 550: rc_sync := FND_TRANSACTION.synchronous (

546: -- mngr's "standard parameters" (changing those requires greater impact)
547:
548: number_of_args := number_of_args - 1;
549:
550: rc_sync := FND_TRANSACTION.synchronous (
551: timeout ,
552: outcome ,
553: message ,
554: 'PO', 'POXCON' ,

Line 595: rc := fnd_transaction.get_values (

591: X_progress := '200';
592:
593: IF (rc_sync = 0) THEN
594:
595: rc := fnd_transaction.get_values (
596: r_val1, r_val2, r_val3, r_val4, r_val5,
597: r_val6, r_val7, r_val8, r_val9, r_val10,
598: r_val11, r_val12, r_val13, r_val14, r_val15,
599: r_val16, r_val17, r_val18, r_val19, r_val20);