declare
x varchar2(200);
v_msg varchar2(2000);
begin
fnd_global.apps_initialize (1090, 51007, 401);
FND_FLEX_VAL_API.create_independent_vset_value
(‘XX_IND_VSET’,’10’,’Inserted from API’,’Y’,sysdate,NULL,’N’,NULL,NULL,X);
DBMS_OUTPUT.PUT_LINE(X);
exception
when others then
v_msg:=fnd_flex_val_api.message;
DBMS_OUTPUT.PUT_LINE(v_msg);
end;
/
COMMIT
—— Inserting child dependent Value Set Values ——————————-
declare
x varchar2(200);
v_msg varchar2(2000);
begin
fnd_global.apps_initialize (1090, 51007, 401);
FND_FLEX_VAL_API.create_dependent_vset_value
(‘XX_DEP_VSET’,’10’,’10.1′,’Dependent Value inserted through API’,’Y’,sysdate,NULL,NULL,x);
DBMS_OUTPUT.PUT_LINE(X);
exception
when others then
v_msg:=fnd_flex_val_api.message;
DBMS_OUTPUT.PUT_LINE(v_msg);
end;
/
COMMIT;
Recent Comments
- Pradeep Kumar Devarakonda on Rollup Groups
- Pradeep on Rollup Groups
- Aqeel on Oracle E-Business Suite 12 Free Vision Instance
- Balaji on How to Use Flexfields in Custom forms
- Guru on R12 Supplier Contact creation API
Latest Posts
- R12 – How to Handle NULL for :$FLEX$.VALUE_SET_NAME In Oracle ERPAugust 25, 2023 - 1:20 pm
- R12 – How to Delete Oracle AR TransactionsMarch 22, 2019 - 8:37 pm
- How to Define Custom Key Flexfield (KFF) in R12January 19, 2018 - 5:43 pm
- AutoLock Box Concepts In R12November 10, 2017 - 8:30 am
- R12 – java.sql.SQLException: Invalid column type in OAFSeptember 15, 2017 - 9:39 am
Leave a Reply
Want to join the discussion?Feel free to contribute!