Entries by Oracle ERP Apps Guide

, ,

QUERY FOR FINDING REQUEST GROUP

SELECT fa.application_short_name,       frg.request_group_name,       fe.execution_file_name,       fe.executable_name  FROM fnd_request_group_units frgu,       fnd_concurrent_programs fcp,       fnd_request_groups frg,       fnd_executables fe,       fnd_application fa WHERE     frgu.request_unit_id = fcp.concurrent_program_id       AND frgu.request_group_id = frg.request_group_id       AND fe.executable_id = fcp.executable_id       AND FRG.application_id = fa.application_id       AND fe.executable_name = ‘XX_PC_PURCHASE’;

, , ,

FORALL

FORALL concept help us reducing the Iterations between PL/SQL Block and SQL Engine.Note:- When ever, we excute any DML (INSERT or UPDATE or DELETE) Operations in the PL/SQL block then, It will move from PL/SQL Block to SQL Engine to excute the DML Operation in SQL Engine.If we have some LOOP and it is looping […]

, , , ,

BULK COLLECT

Bulk Collect concept help us reducing the Iterations between SQL Engine and PL/SQL Block.Note:- When ever, we excute any DML (INSERT or UPDATE or DELETE) Operations in the PL/SQL block then It will move from PL/SQL Block to SQL Engine to excute the DML Operation in SQL Engine. And if we have some SELECT statement […]