Views 253
Visitors 139

METHOD_PREPARE

Home 
| Top Page | Threads |
Previous  Next

method IF_EX_BADI_HU_AUTOPACK~METHOD_PREPARE .
data: ch_hu          type c,
       tbl_PACKGOODs  type packgood.
loop at ct_packgoods into tbl_packgoods.
   clear ch_hu.
   select single AFR into ch_HU
          from qmat
          where matnr  = tbl_PACKGOODs-MATNR
            and werks  = tbl_PACKGOODs-WERKS
            and AKTIV  ne space.
 
   if ch_HU is initial.
     delete ct_packgoods index sy-tabix.
   endif.
endloop.
 
endmethod.

User Threads | New Thread ( Only for Donators )

Threads Last Post Replies Views