cancel
Showing results for 
Search instead for 
Did you mean: 

CJ20N - BADI_MAT_CUST_SCR - how to display values

Former Member
0 Kudos

I have implemented the BADI_MAT_CUST_SCR.

1. I created a custom screen 0900 in a test program and called that screen in the method get_Screen.

2 .I also created the CI_RSADD with the zcustom fields. Now in the BADI_GET_CUST_FIELDS , i see that the import parameter is IM_CI_RSADD and my custom fields are available in it. However , i am not finding the exits to update and display custom field values . How am I supposed to pass it to this method?.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member467951
Participant
0 Kudos

Looks like you also need to pass your custom program and the screen number in the other method of the BADI - get_screen_details

CALL BADI inst_scr_badi->get_screen_details
  IMPORTING
    prg_name = cust_dynr_prog
    scr_num  = cust_dynr_dynnr.
Former Member
0 Kudos

thank you. i have done that as well but still didn't work.. Can i add screen enhancement to this standard kernel BADI? will it have any repurcussions?