cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

HRRCF_A_APPLWIZARD

Former Member
0 Likes
217

Hi,

I need to add my custom logo to the application " HRRCF_A_APPLWIZARD".I have added by creating a custom web dynpro application configuration.

If I try to test this application,I am not able to view the logo.Is it the correct way to test this application because in the sap note "1017866" ,they have mentioned to implement the BADI " 

HRRCF00_DETERMINE_APPL_CONFIG".Since I am new to e-recruitment,how can i test this application .when will it be called ?If i need to implement the BADI,Could you please give me a sample implementation?

 

Thanks ,

Rohini

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

Hello Rohini,

Yes, you need to implement the BAdI. The BAdI is called during the URL generation.

The BAdI would need to look something like this:

IF application_id = 'HRRCF_A_APPLWIZARD'.

    rv_config_id = 'ZCONIG_ID'.

  ELSEIF

     application_id = 'hrrcf_a_reg_applwizard_ext'.

    rv_config_id = 'ZCONIG_ID_EXT'

  ENDIF.

And so on for every application you use in the application process.

This is not really the correct code, but it should give you an idea. Just put a break point inital and the see what the BAdI has of parameters and values. Pretty straight forward.

Hope this helps you move forward.

BR
Christian

Answers (0)