DBA Data[Home] [Help]

APPS.GMP_APS_OUTPUT_PKG dependencies on FND_FILE

Line 558: FND_FILE.PUT_LINE ( FND_FILE.LOG,' Submitting the Req ');

554: /* B6167305 Start */
555: batch_fpo_profile := NVL(FND_PROFILE.VALUE('GMP_IMPLEMENT_SUGG_FPO_BATCH'),0);
556: /* B6167305 End */
557: lv_result := FND_REQUEST.SET_MODE(TRUE);
558: FND_FILE.PUT_LINE ( FND_FILE.LOG,' Submitting the Req ');
559:
560: -- RDP B5454215 - Added 0 when calling the reqauest.
561: -- Make Batch as defult value since there is no user input
562: X_conc_id := FND_REQUEST.SUBMIT_REQUEST

Line 576: FND_FILE.PUT_LINE(FND_FILE.LOG,' Submitted the Req X_conc_id -> '||X_conc_id);

572: NULL, -- To Date
573: batch_fpo_profile -- Order Type Batch/FPO /* B6167305 */
574: );
575:
576: FND_FILE.PUT_LINE(FND_FILE.LOG,' Submitted the Req X_conc_id -> '||X_conc_id);
577: --
578: IF X_conc_id = 0 THEN
579: RAISE ERROR_SUBMITTING_REQUEST;
580: ELSE

Line 583: FND_FILE.PUT_LINE ( FND_FILE.LOG,'-'||FND_MESSAGE.GET);

579: RAISE ERROR_SUBMITTING_REQUEST;
580: ELSE
581: FND_MESSAGE.SET_NAME('GMP','MR_REQ_SUBMITTED');
582: FND_MESSAGE.SET_TOKEN('CONC_ID', X_conc_id);
583: FND_FILE.PUT_LINE ( FND_FILE.LOG,'-'||FND_MESSAGE.GET);
584: COMMIT ;
585: END IF;
586: ELSE
587: FND_FILE.PUT_LINE(FND_FILE.LOG,'Profile implement APS Suggestions is NOT turned ON, Use concurrent program or Use the GMP forms to implement APS suggestions ');

Line 587: FND_FILE.PUT_LINE(FND_FILE.LOG,'Profile implement APS Suggestions is NOT turned ON, Use concurrent program or Use the GMP forms to implement APS suggestions ');

583: FND_FILE.PUT_LINE ( FND_FILE.LOG,'-'||FND_MESSAGE.GET);
584: COMMIT ;
585: END IF;
586: ELSE
587: FND_FILE.PUT_LINE(FND_FILE.LOG,'Profile implement APS Suggestions is NOT turned ON, Use concurrent program or Use the GMP forms to implement APS suggestions ');
588: END IF;
589:
590: EXCEPTION
591: WHEN ERROR_SUBMITTING_REQUEST THEN

Line 593: FND_FILE.PUT_LINE ( FND_FILE.LOG,'Error submitting concurrent Request '||G_log_text);

589:
590: EXCEPTION
591: WHEN ERROR_SUBMITTING_REQUEST THEN
592: G_log_text := FND_MESSAGE.GET;
593: FND_FILE.PUT_LINE ( FND_FILE.LOG,'Error submitting concurrent Request '||G_log_text);
594: retcode:=2; /* Error */
595: WHEN others THEN
596: errbuf := 'Call to Perform Auto release failed: ' ||sqlerrm;
597: retcode := 1; /* Warning */