gdanenb has asked for the wisdom of the Perl Monks concerning the following question:
Declare P_APP_ROW App_profile_Type_tab; v_Return BOOLEAN; BEGIN --- --- Initiate Application profile --- P_APP_ROW := App_profile_Type_tab ( App_profile_Type('JSYSTEM_1007','','',2,'1','0',1,1,1,'0',NULL,NULL,NU +LL), .... .... ); V_Return := APP_PROFILE_LOADER.Load_profile( P_APP_ROW => P_APP_ROW); IF (v_Return) THEN DBMS_OUTPUT.PUT_LINE('v_Return = ' || 'TRUE'); commit; ELSE DBMS_OUTPUT.PUT_LINE('v_Return = ' || 'FALSE'); rollback; END IF; END; /
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: using PL/SQL block with dynamic data
by locked_user sundialsvc4 (Abbot) on Feb 16, 2011 at 21:57 UTC | |
by Anonymous Monk on Feb 16, 2011 at 22:53 UTC |