cancel
Showing results for 
Search instead for 
Did you mean: 

variants in FPM using GAF

Former Member
0 Kudos

Hi,

i am having an wd app.

i have used Guided Activity Framework.

i have two variants.

how do i call these variants at runtime.

please reply soon.

thanks,

ritwik.

Accepted Solutions (0)

Answers (2)

Answers (2)

julia_bender
Active Participant
0 Kudos

x

Former Member
0 Kudos

Hi,

if you want to add any butons or button choices at run time using gaf then use interface IF_FPM_CNR_GAF.

if you want to add uibb's or remove uibb's then use the following code

DATA:

mo_cnr_gaf TYPE REF TO if_fpm_cnr_gaf.

  • Define Supplementary area buttons

mo_cnr_gaf ?= cl_fpm_service_manager=>get_service(

cl_fpm_service_manager=>gc_key_cnr_gaf).

Then for dynamic coding use the methods from if_fpm_cnr_gaf where you can call the variants using get_variants.

CALL METHOD io_gaf>get_variants

Edited by: Sridevi D on Apr 16, 2008 3:25 PM