cancel
Showing results for 
Search instead for 
Did you mean: 

hide a page

former_member216702
Active Participant
0 Kudos

Hello,

in Adobe LiveCycle Designer --> ABAP

Is it possible to hide / unhide a page if a condition is passed in the context ?

Thank you

Thierry

Edited by: Thierry on Nov 6, 2009 2:27 PM

View Entire Topic
OttoGold
Active Contributor
0 Kudos

Did you set your form to be dynamicin zour ABAP coding? To hide a page it needs to be dynamic. set DYNAMIC = 'X'.

former_member216702
Active Participant
0 Kudos

It is ok with the parameter dynamic.

Thank you very much.

Thierry

0 Kudos

Hi,

Can You give one example of how to set this form as dynamic in ABAP coding. This will be helpful.

Thanks & Regards,

Runesh.

former_member216702
Active Participant
0 Kudos

Hello Runesh,

In your abap code, when you use the function to call your form (gerated function), put the parameter dynamic = 'X' in /1bcdwb/docparams

Ex :

CALL FUNCTION 'FP_FUCNTION_MODULE_NAME'

EXPORTING

i_name= 'your form'

IMPORTING

e_funcname = wv_fname.

wv_docparams-dynamic = 'X'

CALL FUNCTION wv_fname

EXPORTING

/1bcdwb/docparams = wv_docparams

...

regards,

Thierry