‎2011 Apr 13 5:03 AM
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
‎2011 Apr 13 10:07 AM
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.