Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Set Item Property

Moazam ShareefMay 12 2010 — edited May 13 2010
guyz,

i have a tubular form with 15 records the most of the items are disable but i wanna to change the particular record by using item property. but i cannot edit the single record it will edit all the records in the block.
SET_ITEM_PROPERTY('BLK.ITEM_NAME',INSERT_ALLOWED,PROPERTY_TRUE);
SET_ITEM_PROPERTY('BLK.ITEM_NAME',UPDATE_ALLOWED,PROPERTY_TRUE);
SET_ITEM_PROPERTY('BLK.ITEM_NAME',DELETE_ALLOWED,PROPERTY_TRUE);
SET_ITEM_PROPERTY('BLK.ITEM_NAME',VISUAL_ATTRIBUTE,'ATTB_NAME');

with the above code user can edit all the reccords belongs to BLK_ITEM_NAME but how can i edit the particular single record, like the below particular attribute im using to a particular item
SET_ITEM_PROPERTY('BLK.ITEM_NAME',CURRENT_ROW_ATTRIBUTE'ATTB_NAME');

even i use the below code to edit the particular record in the block but im failed with the below code.
SET_ITEM_PROPERTY(:SYSTEM.TRIGGER_ITEM,CURRENT_RECORD,INSERT_ALLOWED,PROPERTY_TRUE);
SET_ITEM_PROPERTY('BLK.ITEM_NAME',CURRENT_RECORD,INSERT_ALLOWED,PROPERTY_TRUE);
anyone help me?

im using forms 10g.

Regards

Moazam
This post has been answered by CraigB on May 12 2010
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 10 2010
Added on May 12 2010
6 comments
4,677 views