Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

display forms boolean variable

Status
Not open for further replies.

lelo25

Technical User
Nov 13, 2003
40
LB
Hello
Is there a way to display boolean variable in forms.
RGds,Elie
 
The only way to do this is to programatically change the value of a displayed item according to the boolean value. eg:

[tt]IF bool_value
THEN
:block.checkbox_item := 'Y';
ELSE
:block.checkbox_item := 'N';
END IF;[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top