Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Push button and Subscreen not appearing in VAP1 - CUSTOMER_ADD_DATA_CS

Former Member
0 Kudos

Hi Experts,

I implemented BADI - CUSTOMER_ADD_DATA_CS to add custom sub-screen to XD01..and VAP1 transactions. (Made all the necessary changes in IMG)

I could see the push button and sub-screen in XD01 transaction but not in VAP1.

The BADI triggering for both the transactions  

I am unable to figure out where its getting suppressed for VAP1 transaction.

Thanks in Advance for the help.

1 REPLY 1

Former Member
0 Kudos

Adding to the above details

Below code restricting the Tabstrip display...

Prgram: MF02DO00

IF SY-BINPT IS INITIAL.

     CASE SY-TCODE.                                          "uh

       WHEN 'XD01' OR 'XD02' OR 'XD03'  " Allgemeine Daten    uh

         OR 'FD01' OR 'FD02' OR 'FD03'  " Buchungskreis Daten uh

         OR 'VD01' OR 'VD02' OR 'VD03'  " Vertriebsbereichsdaten uh

         OR 'XD07'.                     " Kontengruppenwechsel uh/ 4.6C

         TABSTRIP_ACTIVE = 'X'.                              "uh

*     when 'WB01' or 'WB02' or 'WB03'.                      "md

*       tabstrip_active = 'X'.                              "md

       WHEN OTHERS.                                          "uh

         CLEAR TABSTRIP_ACTIVE.                              "uh

         EXIT.                                               "uh

     ENDCASE.  


Could you please help me in overriding this check..using Config or technical approach.