cancel
Showing results for 
Search instead for 
Did you mean: 

problem in user exit for text

Former Member
0 Kudos
51

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

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184494
Active Contributor
0 Kudos

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