Hi All, In the standard tcode, I have add some fields with module pool, and also written code in validation part. Here I need some exercise as per requirement of client. client has given some condition on the based on those condition need to fetch the data. There are 4 fields and each field has f4 help to pop up data. Fields Value DI Direct/Indirect Activity AVVT/MLK/HJL Function VTE/SSK/SSI Market some 14 fields need to show data as condition: 1. I have used the code as client require when from DI field select Direct,from activity select aVVT and from function is empty the only 5 values of market has to show in f4 help where zcheck value is market, so I have used below code but unfortunately values are not pop up in f4 as per written code plz help me out where I am doing wrong. Therse values have in one table called zvmarket and that is include in PSMERK table. IF PSMERK-DI EQ 'DIRECT' AND PSMERK-ACTIVITY EQ 'AVVT' AND PSMERK-FUNCTION EQ ' ' SELECT ZMARKET DESCRIPTION INTO ITAB FROM ZVMARKET WHERE ZCHACK EQ MARKET. Thanks SP
↧