‎2010 May 17 8:24 PM
hi all,
For the function modules : me_read_po_for_printing and me_print_po, can you read the documentation for these in your system ? My buttons are grey out for FM Documentation. Do you have it differently ?
I am trying to see if there any documentation available for these.
thanks
Joyce
‎2010 May 17 8:38 PM
These FMs are neither released for users nor documented, so you are on your own if you want to usae them. A couple of tricks you can try though:
Log on in German and see if there is German documentation. (There is for me_read_po_for_printing.)
There are German comments for some FMs. Look at those.
Rob
‎2010 May 17 9:24 PM
HI Rob,
Thanks for the info. Logging into German means i have to translate these to English.
Good to know about it.
Joyce
‎2010 May 17 8:46 PM
Hi,
Try this: http://www.sapwiki.cl/wiki/index.php?title=SAP_MM_COMPRAS_FORMULARIOS_PDF
or:
FORM entry_lpma USING ent_retco ent_screen.
DATA: l_druvo LIKE t166k-druvo,
l_nast LIKE nast,
l_from_memory,
l_doc TYPE meein_purchase_doc_print.
CLEAR ent_retco.
l_druvo = '6'.
CALL FUNCTION 'ME_READ_PO_FOR_PRINTING'
EXPORTING
ix_nast = nast
ix_screen = ent_screen
IMPORTING
ex_retco = ent_retco
ex_nast = l_nast
doc = l_doc
CHANGING
cx_druvo = l_druvo
cx_from_memory = l_from_memory.
CHECK ent_retco EQ 0.Best regards,
Leandro Mengue
‎2010 May 17 9:25 PM
HI Leandro ,
Thanks for the info and how one can make use of it.
Joyce
‎2010 May 17 9:26 PM