DBA Data[Home] [Help]

APPS.PO_DOCUMENT_ACTIONS_SV dependencies on FND_TRANSACTION

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

497:
498:
499: ELSIF (action = 'CANCEL') THEN
500:
501: -- Because fnd_transaction.synchronous restricts the number of parameters
502: -- to be less than 20, and for final close and cancel action we need
503: -- to pass in the extra argument (p_extra_arg4), for Use GL Date, we need
504: -- to remove one of the existing parameters. Since OVERRIDE_FUNDS is
505: -- currently always passed as NULL for these actions, and the backend

Line 512: rc_sync := FND_TRANSACTION.synchronous (

508: -- mngr's "standard parameters" (changing those requires greater impact)
509:
510: number_of_args := number_of_args - 1;
511:
512: rc_sync := FND_TRANSACTION.synchronous (
513: timeout ,
514: outcome ,
515: message ,
516: 'PO', 'POXCON' ,

Line 557: rc := fnd_transaction.get_values (

553: X_progress := '200';
554:
555: IF (rc_sync = 0) THEN
556:
557: rc := fnd_transaction.get_values (
558: r_val1, r_val2, r_val3, r_val4, r_val5,
559: r_val6, r_val7, r_val8, r_val9, r_val10,
560: r_val11, r_val12, r_val13, r_val14, r_val15,
561: r_val16, r_val17, r_val18, r_val19, r_val20);