on 2008 Jan 18 6:40 AM
hi all
m using EXIT_SAPLRSAP_003 to enhance one field in 0material_text field is LVORM
INCLUDE ZXRSAU03 .
CASE I_CHABASNM .
WHEN '0MATERIAL_TEXT' .
git_mara_data[] = c_t_texts[].
SELECT matnr lvorm " table initial check not required
FROM mara
INTO TABLE git_mara
FOR ALL ENTRIES IN git_mara_data
WHERE matnr = git_mara_data-matnr .
LOOP AT c_t_texts INTO gs_mara_data .
READ TABLE git_mara "sy-subrc check not required
INTO gs_mara
WITH KEY matnr = gs_mara_data-matnr .
MOVE gs_mara-lvorm TO gs_mara_data-zzlvorm .
MODIFY c_t_texts FROM gs_mara .
ENDLOOP .
ENDCASE .
but the problem is wen i m running RSA# in debugg mode this include is not called i put break point still its not stopping dere plz lemme know where m rong
First :
is the exit being used:
put a break point in the include to see if it is being used or not.
Thenwhat is the value of I_CHABASNM - is it 0material_text or something else.
Then if both are correct check if your exit is active and even then if it does not go into the include - see if any note exists for the same.
Arun
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
69 | |
10 | |
8 | |
7 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.