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

Function Mod Documentation

Former Member
0 Likes
667

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

5 REPLIES 5
Read only

Former Member
0 Likes
632

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

Read only

0 Likes
632

HI Rob,

Thanks for the info. Logging into German means i have to translate these to English.

Good to know about it.

Joyce

Read only

Former Member
0 Likes
632

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

Read only

0 Likes
632

HI Leandro ,

Thanks for the info and how one can make use of it.

Joyce

Read only

Former Member
0 Likes
632

thanks to all who replied.