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