0% found this document useful (0 votes)
36 views1 page

Dependentlov and Edit Trans

The document provides instructions for adding a dependent LOV to a transient variable in an Oracle APEX application. It describes how to create the transient variable, add dependencies, create an LOV for a table, add view criteria, bind a variable, map columns, and edit the transient to display an alternative view of related data conditionally.

Uploaded by

nandhuln
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views1 page

Dependentlov and Edit Trans

The document provides instructions for adding a dependent LOV to a transient variable in an Oracle APEX application. It describes how to create the transient variable, add dependencies, create an LOV for a table, add view criteria, bind a variable, map columns, and edit the transient to display an alternative view of related data conditionally.

Uploaded by

nandhuln
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

DEPENDENT LOV

Add transient variable in View object of required table


On Right click of that transient add the dependenicies.
Add LOV for the required table which we need to display on the page.
Now add the view criteria of particular or respective VO ... which will be
available in View accessor------select VO-----Query------View Criteria
Add the filter as required...
Bind variable to be created in 'Operand'------select the dropdwn and add Bind
variable.
After bv, select the same Link from view accessor and select'edit(pencil icon)',
shuffle the rquired part and add the column name in the Value.
APPLY,OK.

EDIT IN TRANSIENT:
IN view Accessor, select'Plus button' and move the required VO to the other side
Add name _E for reference
now, Create a view criteria for VO by naming it with 'Edit'for reference.
Same process for creating criteria.. Apply, OK
Now the 'Edit' view critweria will be shown in 'EDit(Pencil)' of View Accessor.
Shuffle the required criteria.
Map the Value
Apply,OK

Now select the required transient in attribute----property inspector-----Value----


change as expression and paste the below

if(LocationCVOVA_E.first()!=null && LocationId !=null){

LocationCVOVA_E.first().getAttribute("LocationName");

}else{
return null;
}

You might also like