cancel
Showing results for 
Search instead for 
Did you mean: 

MIRO: barcodes printing (header)

Former Member
0 Kudos

Dear all,

For my company, I want to print label with barcodes when an invoice is posted in MIRO.

I was maintained print conditions in NACE.

My problem: when I post an invoice in MIRO I have an output for the header level and for the item level.

How can I have only the output for the header level ? I need to maintain a routine in VOFM ???

Regards

Misha

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Ok...

My solution: I was created a new include in VOFM to check if it is the header or not :


FORM KOBED_920.

*{   INSERT      

   CLEAR SY-SUBRC.

   IF G_ITEM = 'X'.

     SY-SUBRC = 4.

   ELSE.

     SY-SUBRC = 0.

   ENDIF.

*}   INSERT

ENDFORM.

It's works fine.

Regards,

Misha

Answers (0)