Application Development and Automation 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: 
Read only

MRM Final Check

Former Member
0 Likes
1,196

Hi,

I Using implicit enhancement in function module MRM_FINAL_CHECK, i am searching BSART field in that to check the condition.

If bsart = ' '

do some operation.

endif.

I searched the field BSART. I couldn't find. Is it possible to do BSART in this function module.

Thanks

1 REPLY 1
Read only

former_member182371
Active Contributor
0 Likes
724

Hi,

check this in fm MRM_FINAL_CHECK:

1.- search for

PERFORM global_check TABLES t_drseg

t_errprot

CHANGING xbuchen.

2.- in form global_check there is:

PERFORM check_gl_account TABLES ptx_errprot

pti_drseg

CHANGING ptx_buchen.

3.- in form check_gl_account there is:

CALL FUNCTION 'ME_READ_HEADER_INVOICE'

EXPORTING

ebeln = p_t_drseg-ebeln

re_kursf = p_t_drseg-kursf

re_waers = p_t_drseg-waers

IMPORTING

iekko = iekko.

and here you have iekko-bsart

Best regards.