Oracle Applications - Oracle API For Item Process
Oracle Applications - Oracle API For Item Process
More satya012
SET SERVEROUTPUT ON
CREATE OR REPLACE PROCEDURE ProcessItems
AS
l_api_version NUMBER := 1.0;
l_init_msg_list VARCHAR2(2) := FND_API.G_TRUE;
l_commit VARCHAR2(2) := FND_API.G_FALSE;
l_item_tbl EGO_ITEM_PUB.ITEM_TBL_TYPE;
l_role_grant_tbl EGO_ITEM_PUB.ROLE_GRANT_TBL_TYPE := EGO_ITEM_PUB.G_MISS_ROLE_GRANT_TBL;
x_item_tbl EGO_ITEM_PUB.ITEM_TBL_TYPE;
x_message_list Error_Handler.Error_Tbl_Type;
x_return_status VARCHAR2(2);
x_msg_count NUMBER := 0;
CURSOR csr_org_items IS
SELECT organization_code, item_name, item_catalog_group_id
FROM my_org_items;
BEGIN
l_rowcnt := l_rowcnt + 1;
END LOOP;
DBMS_OUTPUT.PUT_LINE('=====================================');
DBMS_OUTPUT.PUT_LINE('Return Status: '||x_return_status);
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE('Exception Occured :');
DBMS_OUTPUT.PUT_LINE(SQLCODE ||':'||SQLERRM);
DBMS_OUTPUT.PUT_LINE('=====================================');
END;
/
2 comments:
Anonymous said...
You should enable copying of content. Thanks anyway.
September 8, 2014 at 10:38 PM
Anonymous said...
Good Article
use
V_user_id NUMBER := Fnd_global.User_id;
V_resp_id NUMBER := Fnd_global.Resp_id;
V_resp_appl_id NUMBER := Fnd_global.Resp_appl_id; instead of select queries
August 12, 2019 at 5:18 PM
Post a Comment
oracleapps88.blogspot.com/2012/11/oracle-api-for-item-process.html 2/3
3/16/2021 Oracle Applications: Oracle API For Item Process
Email : [email protected]. Picture Window theme. Theme images by konradlew. Powered by Blogger.
oracleapps88.blogspot.com/2012/11/oracle-api-for-item-process.html 3/3