cancel
Showing results for 
Search instead for 
Did you mean: 

First Master Page is Blank

Former Member
0 Kudos

Hello Friends

I do not have any data under Master page & Main content area still i get a empty page before body pages are displayed.

I tried to restrict page occurrence by Max 1. Need pointers.

Thanks

Lavanya

Accepted Solutions (0)

Answers (3)

Answers (3)

pavan_prabhu
Active Participant
0 Kudos

In this case you have to manually hide the page.

If you are not sure why this is happening, Create a flag variable as Interface Import parameter. This flag will be filled(X) only when there is no data to be displayed.

In the adobe form, drag this flag into the context node.  In the layout drag the flag from the data view into the subform in the design view(body page). Hide this flag.

On the subform(Initialization Event), write the below Javascript code.

if this. flag.rawvalue = "X"

{

this.presence = "hidden";

}


This will resolve the issue because Adobe framework does not display the Master page and all its instances if the whole content area is blank(because the whole sub form is hidden)

rakesh_m2
Contributor
0 Kudos

Hi Lavanya,

Try this procedure used in my blog.  I guess, this should fix the problem

http://scn.sap.com/community/interactive-forms-by-adobe/blog/2013/05/29/using-subform-to-trigger-mas...

Thanks,

Rakesh

navip
Active Participant
0 Kudos

Hi Lavanya,

  Try to select "Continue Filling Parent" for the Main Content.

-Naveen