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!

check box with different labels

user581618Jan 27 2009 — edited Jan 27 2009
hi
i m using oracle form 6i.i have form with one item in tabular format.item property is checkbox .what i want is to have different labels( each check box row label should be diffent).i want to know whather it is possible as i saw as application developed in form 6i and he has done same thing.

what i tried is that, i wrote a procedure in when-new-block-instance to check.but it shows only one record as label of table emp

BEGIN
GO_ITEM('BLOCK2.ITEM4');
FIRST_RECORD;
FOR I IN (SELECT ENAME FROM EMP) LOOP

SET_ITEM_PROPERTY('ITEM4',LABEL,I.ENAME)

NEXT_RECORD;
END LOOP;
FIRST_RECORD;
END;

thanx in advance

Edited by: user581618 on Jan 27, 2009 10:25 AM

Edited by: user581618 on Jan 27, 2009 10:31 AM

Edited by: user581618 on Jan 27, 2009 11:26 AM
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 24 2009
Added on Jan 27 2009
1 comment
586 views