What is the differnce between purchasing reports

Dear gurus,
What is the major difference between ME2L, ME2M and ME2N
regards

Hi,
ME2M : - If you have material code and you want to know the purchase order which is created for material at that time you can search purchase order with this report.
ME2L: - Same if you have vendor code at that time you can search purchase order with this report.
ME2N: - If you have purchase order document number and you want to see the all detail of purchase order so you can see purchase order detail with this report.
Regards,
Mahesh Wagh.

Similar Messages

  • What is the difference between interactive report and alv interactive repor

    what is the difference between interactive report and alv interactive report
    could u plz explain clearly.

    Hi Rajesh,
    interactive report or alv interactive report , both are same but except the viewer, Abap List Viewer (ALV).
    Here in i am placing a sample simple ALV Interactive report.
    Just double click on the customer number to go to the next screen.
    *& Report  ZKAL_ALV_INTERACTIVE_1                                      *
    REPORT  ZKAL_ALV_INTERACTIVE_1                  .
    TYPE-POOLS: SLIS.
      TYPES: BEGIN OF TY_KNA1,
              KUNNR TYPE KUNNR,
              NAME1 TYPE NAME1,
              ORT01 TYPE ORT01,
            END OF TY_KNA1.
      TYPES: BEGIN OF TY_VBAK,
              VBELN TYPE VBELN,
              ERNAM TYPE ERNAM,
              ERDAT TYPE ERDAT,
              NETWR TYPE NETWR,
              WAERK TYPE WAERK,
             END OF TY_VBAK.
    &--WORK AREA & TABLE DECLARATION--
      DATA: W_KNA1 TYPE TY_KNA1.
      DATA: T_KNA1 TYPE STANDARD TABLE OF TY_KNA1 INITIAL SIZE 1.
      DATA: W_VBAK TYPE TY_VBAK.
      DATA: T_VBAK TYPE STANDARD TABLE OF TY_VBAK INITIAL SIZE 1.
    &--FIELDCAT TABLE & WORK AREA--
      DATA: W_FCAT TYPE SLIS_FIELDCAT_ALV.
      DATA: T_FCAT TYPE SLIS_T_FIELDCAT_ALV.
      DATA: W_FCAT1 TYPE SLIS_FIELDCAT_ALV.
      DATA: T_FCAT1 TYPE SLIS_T_FIELDCAT_ALV.
    &--EVENT TABLE AND WORK AREA--
      DATA: W_EVENTS TYPE SLIS_ALV_EVENT.
      DATA: T_EVENTS TYPE SLIS_T_EVENT.
      DATA: W_EVENTS1 TYPE SLIS_ALV_EVENT.
      DATA: T_EVENTS1 TYPE SLIS_T_EVENT.
    &--COMMENT TABLE & WORK AREA--
      DATA: W_COMMENT TYPE SLIS_LISTHEADER.
      DATA: T_COMMENT TYPE SLIS_T_LISTHEADER.
      DATA: W_COMMENT1 TYPE SLIS_LISTHEADER.
      DATA: T_COMMENT1 TYPE SLIS_T_LISTHEADER.
    &----APPENDING FCAT -
      W_FCAT-COL_POS = 1.
      W_FCAT-FIELDNAME = 'KUNNR'.
      W_FCAT-SELTEXT_M = 'CUST. NO'.
      W_FCAT-HOTSPOT = 'X'.            "HOT SPOT HAND SYMBOL
      W_FCAT-EMPHASIZE = 'C119'.       "FOR COLORING THE COLUMN 1
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      W_FCAT-COL_POS = 2.
      W_FCAT-FIELDNAME = 'NAME1'.
      W_FCAT-SELTEXT_M = 'CUST. NAME'.
      APPEND W_FCAT TO T_FCAT.
      W_FCAT-COL_POS = 3.
      W_FCAT-FIELDNAME = 'ORT01'.
      W_FCAT-SELTEXT_M = 'CITY'.
      APPEND W_FCAT TO T_FCAT.
      W_FCAT1-COL_POS = 1.
      W_FCAT1-FIELDNAME = 'VBELN'.
      W_FCAT1-SELTEXT_M = 'ORDER NO'.
      W_FCAT1-EMPHASIZE = 'C519'.
      APPEND W_FCAT1 TO T_FCAT1.
      CLEAR W_FCAT.
      W_FCAT1-COL_POS = 2.
      W_FCAT1-FIELDNAME = 'ERNAM'.
      W_FCAT1-SELTEXT_M = 'NAME OF PARTY'.
      APPEND W_FCAT1 TO T_FCAT1.
      W_FCAT1-COL_POS = 3.
      W_FCAT1-FIELDNAME = 'ERDAT'.
      W_FCAT1-SELTEXT_M = 'DATE'.
      APPEND W_FCAT1 TO T_FCAT1.
      W_FCAT1-COL_POS = 4.
      W_FCAT1-FIELDNAME = 'NETWR'.
      W_FCAT1-SELTEXT_M = 'ORDER VALUE'.
      APPEND W_FCAT1 TO T_FCAT1.
      W_FCAT1-COL_POS = 5.
      W_FCAT1-FIELDNAME = 'WAERK'.
      W_FCAT1-SELTEXT_M = 'CURRENCY'.
      APPEND W_FCAT1 TO T_FCAT1.
    &--APPEND COMMENTRY--
      W_COMMENT-TYP = 'H'.
      W_COMMENT-INFO = 'CUSTOMER DETAILS'.
      APPEND W_COMMENT TO T_COMMENT.
      CLEAR W_COMMENT.
    &--APPEND EVENTS TABLE--
      W_EVENTS-NAME = 'TOP_OF_PAGE'.
      W_EVENTS-FORM = 'TOPPAGE'.
      APPEND W_EVENTS TO T_EVENTS.
      W_EVENTS-NAME = 'USER_COMMAND'.
      W_EVENTS-FORM = 'SUB2'.
      APPEND W_EVENTS TO T_EVENTS.
      W_EVENTS1-NAME = 'TOP_OF_PAGE'.
      W_EVENTS1-FORM = 'TOPPAGE1'.
      APPEND W_EVENTS1 TO T_EVENTS1.
      CLEAR W_EVENTS1.
      W_EVENTS1-NAME = 'USER_COMMAND'.
      W_EVENTS1-FORM = 'SUB3'.
      APPEND W_EVENTS1 TO T_EVENTS1.
      SELECT-OPTIONS: CUSTNO FOR W_KNA1-KUNNR.
      SELECT KUNNR
             NAME1
             ORT01 FROM KNA1 INTO TABLE T_KNA1
             WHERE KUNNR IN CUSTNO.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = 'ZKAL_ALV_INTERACTIVE_12'
       I_BACKGROUND_ID                   = 'BIKE'
       I_GRID_TITLE                      = 'CUSTOMER DETAILS'
       IT_FIELDCAT                       = T_FCAT
       IT_EVENTS                         = T_EVENTS
      TABLES
        T_OUTTAB                          = T_KNA1  .
      FORM TOPPAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = T_COMMENT
         I_LOGO                   = 'LOGO_ALV'.
      ENDFORM.  "END OF TOPPAGE SUB.
      FORM SUB2 USING UCOMM LIKE SY-UCOMM FIELDS1 TYPE SLIS_SELFIELD.
      READ TABLE T_KNA1 INTO W_KNA1 INDEX FIELDS1-TABINDEX.
      SELECT VBELN
             ERNAM
             ERDAT
             NETWR
             WAERK
                   FROM VBAK
                   INTO TABLE T_VBAK
                   WHERE KUNNR = W_KNA1-KUNNR.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = 'ZKAL_ALV_INTERACTIVE_12'
       I_BACKGROUND_ID                   = 'KALEEM'
       I_GRID_TITLE                      = 'LIST OF ORDERS'
       IT_FIELDCAT                       = T_FCAT1
       IT_EVENTS                         = T_EVENTS1
      TABLES
        T_OUTTAB                          = T_VBAK.
    ENDFORM.    "END OF SUB2.
    FORM TOPPAGE1.
    &--APPEND COMMENTRYOF SECONDRY SCREEN--
      W_COMMENT1-TYP = 'H'.
      W_COMMENT1-INFO = 'LIST OF ORDERS'.
      APPEND W_COMMENT1 TO T_COMMENT1.
      W_COMMENT1-TYP = 'S'.
      W_COMMENT1-KEY = 'CUSTOMER'.
      W_COMMENT1-INFO = W_KNA1-KUNNR.
      APPEND W_COMMENT1 TO T_COMMENT1.
      CLEAR W_COMMENT.
      W_COMMENT1-TYP = 'A'.
      W_COMMENT1-INFO = W_KNA1-NAME1.
      APPEND W_COMMENT1 TO T_COMMENT1.
      CLEAR W_COMMENT1.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = T_COMMENT1
         I_LOGO                   = 'LOGO_ALV'
    REFRESH T_COMMENT1.
    ENDFORM.    "END OF TOPPAGE1
      FORM SUB3 USING UCOMM LIKE SY-UCOMM FIELDS1 TYPE SLIS_SELFIELD.
        READ TABLE T_VBAK INTO W_VBAK INDEX FIELDS1-TABINDEX.
    SET PARAMETER ID 'AUN' FIELD W_VBAK-VBELN.
    CALL TRANSACTION 'VA02' AND SKIP FIRST SCREEN.
      ENDFORM.
    U can also find some of the useful codes on WIKI-SDN.
    Reward helpful Answers.
    Regds,
    Kaleem.

  • What is the differnce between Blue,Purple and Orange Audio Tracks. Can you convert either to Green Midi Track?

    What is the differnce between Blue,Purple and Orange Audio Tracks. Can you convert either to Green Midi Track?

    Are you asking about Garageband? Your signature also mentions Logic, but I have never worked with that.
    Concerning Garageband:
    Real Instrument regions from your recordings are purple.
    Real Instrument regions from Apple Loops are blue.
    Regions from imported audio files are orange.
    Software Instrument regions from recordings, loops, and imported MIDI files are green.
    So far as I know you can convert software instrument loops to real instrument loops, but not real instrument loops to software instrument loops.

  • Can anyone tell me-what's the different between purchased ?

    What's the difference between purchased & non purchased mountain lion ?
    i mean, how apple inc. realize copy from original one ?
    I know somebody buy a mountain, then make bootable DVDs and install it on many mac computers without any limitation…
    is there any advantage for the purchased one ??
    for ex users of (genuine) windows have rights of win update in comparison with the users of non genuine ...

    is there any advantage for the purchased one ??
    Other than the fact that it's the ethical thing to do, that using any copy for which you have not obtained a legal license is a criminal copyright violation in almost very country in the world, and that legally purchasing your copy is the only way in which you would get any support from Apple? I would consider those all "advantages", myself.
    Regards.

  • What is the differnce between t-mobile network and EE network?

    what is the differnce between t-mobile network and EE network?

    Difference as far as speeds?
    Difference in Prices?
    What do you want to do in the UK with your iPhone?
    Personally, I have enjoyed using 3 UK and Vodafone while I was in Heathrow.

  • What are the differnces between the two copies of My Bloody Valentine album Loveless that are sold in the store?

    From what I can tell they are exactly the same, but I want to make sure I get the Itunes Plus version. I know there was a 2008 reissue but it dosent say if either one of them is that. Thanks.

    From what I can tell they are exactly the same, but I want to make sure I get the Itunes Plus version. I know there was a 2008 reissue but it dosent say if either one of them is that. Thanks.

  • What is the differnce between MDM 5.5 SP04 and SP05

    I do have both service pack versions SP 04 n 05 but what does SP05 offer over SP04 version.

    Hi Tejas,...
    few noticed things about SP5...
    1. Syndicator batch is not available
    2. In the console Repositories are always locked...(user id required to login)
    3. Console>admin>Connections(earlier it was called Login)
    4. You can syndicate thru workflow...
    there are few more will keep update...
    thanks
    Alexander
    p.s.Kindly reward the points, if found useful...

  • What is the difference between po and purchase document

    Hi experts,
    What is the difference between purchase order and purchase document.
    Are they both same ?
    Regards,
    Nishuv.

    Dear,
    Purchasing document can be RFQ,PO,PR...RFQ...Contratc...etc
    PR is interanl document that can be changed at any given point of time.
    PO is external  legal document and is formal request to vendor for materials.
    External docments are legal documents used for procuremnt/quotation etc.
    Internal documents like PR are for internal use.
    Brgds,
    Ashok

  • What is the difference between admin.jar and admin_client.jar

    Oc4j provide two jar for admin purpose: admin.jar and admin_client.jar. what are the differnce between them?

    I'm sure I've provided an answer for this before -- try searching this forum and see if its there.
    In short: admin.jar is old and uses a bunch of internal APIs.
    admin_client.jar is a new implementation in 10.1.3.x and it uses JMX/JSR77/JSR88 APIs as its basis. It supports config/deployment operations against ALL the OC4J variants -- standalone, OracleAS single instance or OracleAS groups. We've tried to ensure that admin_client.jar has all the necessary coverage from admin.jar -- the syntax is very similar and all the relevant commands are carried forward.
    If you are making a choice, choose admin_client.jar.
    -steve-

  • What is the difference between router and network name ?

    Hi ... I changed the name of my router in the Airport utility and thought that the network would be changed accordingly.  What is the differnce between the 2 ?

    I changed the name of my router in the Airport utility and thought that the network would be changed accordingly.  What is the differnce between the 2 ?
    The name of the router would be the "Base Station" or "device" name. It might be something like RL AirPort Extreme
    The name of the wireless network (technically called the SSID) is separate matter. It might be something like RL Wireless, for example.
    If you can post back to let us know what version of AirPort Utility you are using, we can provide you with the steps to change either the device name or wireless network, or both.
    In order to prevent confusion, you should have a separate device name and a separate wireless network name.
    If you are not sure which version of AirPort Utility that you have, click on the AirPort Utility menu in the upper left corner of the screen and then click About AirPort Utility to see the version number.

  • What is the difference between these two reports MC.1 and MB5L

    Hi
    what is the difference between these two reports MC.1 and MB5L?
    what is the Purpose of each report?
    Material ledger is activated for this plant, we found some amount difference between these two reports, my client accounting department used to compare these two reports while year end/month end closing
    Thanks
    Raju

    MC.1 will give you the report for plant analysis as per plant .
    MB5L report will give you list of stock value as per G/L account wise.

  • Whats the differnce between a7 chip and m7 chip

    iPhone 5s, whats the differnce between a7 chip and m7 chip?

    For more details on M7 you can read http://en.wikipedia.org/wiki/Apple_M7
    Allan

  • What is the difference between the green text bubble that reads "sent as text message" and the blue text bubble reporting "delivered?"  Is the green text bubble not delivered?

    what is the difference between the green text bubble that reads "sent as text message" and the blue text bubble reporting "delivered?"  Is the green text bubble not delivered?

    iMessages are sent using Apple servers, using either WiFi or Cellular data. They can only be sent to/from iDevices or Macs that have the Messages app. SMS messages use the cellular network. Both methods can deliver the message to the recipient.
    http://www.apple.com/ca/ios/messages/

  • What is the difference between the new 13" MacBook Pros and the previous version of the 13" MacBook Pro?  I purchased an "old" one from Best Buy the day before the announcement of the new models.

    What is the difference between the new 13" MacBook Pros and the previous version of the 13" MacBook Pro?  I purchased an "old" one from Best Buy the day before the announcement of the new models.

    See the specs:
    Compare Notebooks - Apple Store (U.S.)
    Compare with your model. If you are within 14 days of purchase you can exchange for the new model for the difference in price, if any. Be sure to have all the original packaging and your receipt.

  • What is the difference between a script & a report ?

    What is the difference between a script & a report ?

    hi,
    script is basically used for printing,
    report is for information,
    printing a report is difficult,
    report can be interactive,
    script is not interactive,
    script is client-dependent,
    report is client-independent,
    script is modified in most cases,
    report is developed from the scratch,
    thanks,
    kcc

Maybe you are looking for