How to control editing at particular record in Detail Block [message #652778] |
Sun, 19 June 2016 07:01  |
 |
malya
Messages: 22 Registered: August 2015 Location: Hyderabad, India
|
Junior Member |
|
|
Seems to be silly issue but unable to control the editing in detail block based on number of records. Form displays employee records in detail block based on a query written in When New Form Instance.
Example
Say, it populated 3 records at time of opening the form.
User should not edit these 3 records means any of the field of particular record in detail block though he can add 4th one and so on.
I tried the below code in When New Record Instance of details block
IF No_of_records(i.e. 3) > :SYSTEM.CURSOR_RECORD THEN
SET_BLOCK_PROPERTY('BLOCKNAME',INSERT_ALLOWED,PROPERTY_TRUE);
SET_BLOCK_PROPERTY('BLOCKNAME',UPDATE_ALLOWED,PROPERTY_TRUE);
ELSE
SET_BLOCK_PROPERTY('BLOCKNAME',INSERT_ALLOWED,PROPERTY_FALSE);
SET_BLOCK_PROPERTY('BLOCKNAME',UPDATE_ALLOWED,PROPERTY_FALSE);
END IF
But this code is not allowing me to move to 4th record in detail block. I want to add 4th record. Please help with above code or any other alternatives are invited.
Thanks in advance.
|
|
|
|
|
|