cancel
Showing results for 
Search instead for 
Did you mean: 

How to Create enhancement for HRESS_CC_GUIBBF_LEAVREQ ?

Former Member
0 Kudos

Hi Experts,

I am displaying the leave request overview in my custom application, by using the IFrame Ui element ?

1. i have one custom component which integrated into FPM_OVP_COMPONET.

2. Here i have created one iframe ui element and binded with levae request overview page url.it is working fine.

   For url i have written the below code.Here i have created configuration for Standard application "HRESS_A_PTARQ_LEAVREQ_APPL"

*--->Assign the configuratiojn names to build the URL.

   e_in_parametrs-name = 'WDCONFIGURATIONID'.

   e_in_parametrs-value = 'Z_xxLEAVETIIME_OVP_AC_LEAVEREQ'.

   APPEND e_in_parametrs TO is_in_psrsmetrs.

*--->Call the mathod to build the url

   CALL METHOD cl_wd_utilities=>construct_wd_url

     EXPORTING

       application_name              = 'hress_a_ptarq_leavreq_appl'

*     in_host                       =

*     in_port                       =

*     in_protocol                   =

       in_parameters                 = is_in_psrsmetrs

*     in_client                     =

*     in_forward_accessibility_flag = ABAP_TRUE

*     namespace                     = 'sap'

*     in_server                     =

     IMPORTING

*     out_host                      =

*     out_port                      =

*     out_protocol                  =

*     out_local_url                 =

       out_absolute_url              = w_url.

*--->Assign to gloabal

    wd_assist->gv_url = w_url.

Everything working fine, Now business need some additional changes on levae request page-- in Genera data

i want make the last note field as mandatory On the General data view.

Can one suggest me how i can achieve this?

thanks.

Regards,

Venugopal

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member197475
Active Contributor
0 Kudos

Hi,

Have you tried for customizatoin of your Application.??

Else, just follow the below steps.

1. Go to your Applicatoin Config and test the application by selecting 'Execute in Administration Mode'.

2. Now you do your UI Customization by just reight click on the required UI and choose 'Setttings for Current Configuratoin'.

3. Now change the status of the corresponding UI to 'Required Entry'. And finally you can save all your changes in a TR.

Hope it helps you.

BR,

RAM.

Former Member
0 Kudos

Hello Ram,

Thank you for your prompt replay.

already i have created configuration for application(Z_xxLEAVETIIME_OVP_AC_LEAVEREQ), here i am using component configuration  as a standard configuration (HRESS_CC_GUIBBF_LEAVREQ), Now i want to enhance this standard configuration.

Can you please suggest me right approach.

Thank you.

Regards,

Venu