Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Conditional Display of page in Sap Adobe Forms

former_member182760
Participant
0 Kudos

Hi,

my requirement is to display page conditionally in Sap Adobe Form.

Like whenever text printing on that page is not present it should not be displayed.

2 REPLIES 2

Former Member
0 Kudos

Hi

I think it needs to write a script for that oage, where you set your condition and if it's true, set the value 'hidden' for the presence of the page.

Max

0 Kudos

Thank you for reply....

I used following script for hiding variable in my form...

if(this.rawValue == null)

{

  this.presence = "hidden";

}

But how should I change it, to apply it to page...

Sorry I am new to script....