cancel
Showing results for 
Search instead for 
Did you mean: 

Setting title for a GAF step in Floor Plan

Former Member
0 Kudos

Hello Gurus,

I want to change the titles of Road Map steps in a GAF.

In the SAP standard all steps have different titles.

If I change one title of a step, so all others steps have the same title.

How can I change a title only for one step.

Thanks in Advance,

Christian

Accepted Solutions (0)

Answers (1)

Answers (1)

harsha_jalakam
Active Contributor
0 Kudos

Hi Christian,

We need to make use of dynamic header , in your scenario. Please find the below link for the same and the method SET_APPLICATION_TITLE which would change the title as per your requirement.

IF_FPM_IDR - Floorplan Manager for Web Dynpro ABAP - SAP Library

Regards,

Harsha

harsha_jalakam
Active Contributor
0 Kudos

please check the following snippet,

DATA: lo_idr TYPE REF TO if_fpm_idr,

      lo_fpm TYPE REF TO if_fpm.

lo_fpm = cl_fpm_factory=>get_instance( ).

lo_idr ?= lo_fpm->get_service( cl_fpm_service_manager=>gc_key_idr ).

lo_idr->SET_APPLICATION_TITLE( EXPORTING IV_TITLE = 'Your Text for the application title' ).

Former Member
0 Kudos

Hello Harsha,

thanks for your answer.

I need to set the header not the application title.

Youseful is IF_FPM_GAF~RENAME_SUBSTEP.

Can you tell me how to get a reference of  cl_fmp_gaf beside Component-Interface IF_FPM_GAF_CONF_EXIT~OVERRIDE_EVENT_GAF?

Regards,

Christian

harsha_jalakam
Active Contributor
0 Kudos

Hi Christian,

The method IF_FPM_GAF_CONF_EXIT~OVERRIDE_EVENT_GAF will have an parameter io_gaf which by default has the instance of gaf and you can use it without any initiation or getting referenced to.

Regards,

Harsha

Former Member
0 Kudos

Hello Harsha,

thanks a lot.

I know about this method. But I don't have this method in access at this time. That's the reason I asked for getting referenced to.

Any idea how to get the reference out of F_FPM_GAF_CONF_EXIT~OVERRIDE_EVENT_GAF?

Regards,

Christian

harsha_jalakam
Active Contributor
0 Kudos

Hi Christian,

I am not sure on how to get the reference of IF_FPM_GAF,without App Config Configgurator, even where used list did not turn up results any as such, in my system.

The method would be available once you implement the interface IF_FPM_GAF_CONF_EXIT, in the component.Please check the FPM Guide, to have more understanding.

Regards,

Harsha

Former Member
0 Kudos

Hello Harsha,

thanks for your help.

Best regards,

Christian