Skip to Main Content

APEX

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!

Processes which sets hidden value of an Item

826832Jan 15 2011 — edited Jan 15 2011
Hey,
i want to create a process which loads data into a form.
It should sets the display value of a Textfield and sets the hidden value / return value of the textfield.

The display value should be the name and the hidden value the id. Same as a POPUP LOV.
select PROJEKT_TYP_NAME display_value, PROJEKT_TYP_ID return_value 
from PROJEKT_TYP
order by 1
I tried the function apex_item.hidden but thats not the right function.


Is there a function which sets the hidden/return value?
BEGIN
  SELECT  PROJEKT_TYP_NAME, PROJEKT_TYP_ID INTO :P28_ PROJEKT_TYP_NAME, <HIDDEN VALUE OF :P28_ PROJEKT_TYP_NAME> FROM PROJEKT_TYP WHERE No=2;
END;
:P28_ PROJEKT_TYP_NAME is a POPUP LOV. I need this for a Modify Form.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 12 2011
Added on Jan 15 2011
0 comments
95 views