Source list - Report

Hi,
Is there any stand report / way of getting the information from source list from a supplier point of view?
If I block the supplier in sourcelist, can I get the information from system that which materials will be affected.
Regards,
AG

Dear,
Check the below reports and check selection options available.
ME0M - Source List per Material
ME1M - Info Record per Material
ME1L - Info Record per Vendor
ME1P - PO Price History
Regards,
Syed Hussain.

Similar Messages

  • Source list report in ALV GIRD FORM ME0M

    Hi
       Please share any parameter id is available to view the source list in  ALV GIRD FORM
       Thanks in advance
    Regards
    K.Mohansambasivam

    Thank you very much
    K.Mohansambasivam

  • Report to identify multiple vendors in source list?

    is there a standard t-code that may list multiple vendors (if they exist) for a range of source lists?  better to solve with abap query?
    (ex. say there are 1250 materials and want a list of source lists, with vendors or even one vendor if it only has one)
    thanks all
    Edited by: strat on Mar 27, 2008 10:41 PM

    Hi
    Try following report
    ME0M - Source List for Material
    Vishal...

  • REPORT FOR SOURCE LIST OF MATERIAL WITH VENDOR DESCRIPTION

    Dear All
    Let me know is any transaction where i will get the material source list similar as me03 transaction but
    with vendor name also .
    Regards,
    Rajendra Sawant.

    Hi Rajendar,
    I am sorry but the vendor name cannot be displayed in this or any other T-code.
    Or you can select the Vendor code for which you want to see the vendor name and clik on the Vendor tab above.
    Rwd if helpful.
    Regards,
    Robin.

  • ME05 How to schedule source list job with steps?

    Can someone please give me instructions on how to create source list ME05 in background using "Steps"? I know how to create a background job in ME05 but need to have several jobs run back to back in the middle of the night. I am reluctant to shedule them at different times and would prefer to use the "Steps" function. Thanks for your input!

    Hello
    Steps:
    First create variant for the report in normal execution mode (to provide input selection parameters in backgrpund)
    1. Transaion code SM36
    Give Job name you want created (Give some meaningful name) and Press enter
    2. Give the ABAP program name
    3. Select variant and save the selections
    4. Come back to initial screen , select the Start condition button and provide the interval as per requirement to schedule the job and save.
    5. Save the job.
    Check the Job in SM37 and relase the Job.
    warm regards
    Rama

  • Can't see my Oracle stored procedure in the avalable data source list

    Post Author: Moori
    CA Forum: Data Connectivity and SQL
    Hello All,
    I've created an Oracle stored procedure which I need to use it's returned data in my crystal report but I can't find it in the data source list.
    I'm using the same schema & database and user as my sp was created on.
    Please advise.
    Moori

    Jim (also Geoff and Hal)-
    Still haven't solved this. Here's another try at a screenshot, showing just below this text for me, of my Library interface showing the C drive listed in the left panel and not showing the C drive contents. Only, as you said is intended, what is already in Lightroom.
    I thought if I was not in "Catalog" I had been able, in the past, to select from anything in my C crive simply by opening that folder in the panel.
    When I click import it is usually - from memory - to start the import of the already selected items. For a time that's what was happening from the above screen if I selected Import. It would apparently start re-importing the selected items and without presenting the usual familiar dialog asking about file naming, etc. Now, however, clicking Import bring up this:
    Never saw this black horizontal dialog box before this situation arose. I was able to import but not as usual and I would like to get back the square (moreso at least) "white" dialog box. No clue what's going on or how to get bact to familiar ground. Ideas?

  • BAM Action List report

    I have a simple "Action List" report that has a few columns and I need to make one column editable. The trouble is that when I try to make any of the columns editable, the check boxes are disabled so I cannot make any of them editable. The report is based on a data object that is built on a external data source. The source is basically a Oracle table(single table). Can someone tell me why I am unable to make the columns editable, and why the check boxes are disabled?

    I figured out that you cannot have editable fields if your report is based on a External Data Source.

  • MM Source List export to SRM Vendor List

    Hi Friends ,
    I learnt that  we need to create the Vendor List in SRM separtly .
    Can any one suggest/ confirm me , whether the Source List  craeted in ECC , can be export to SRM ?
    If yes , how ?
    Regards
    NAP

    source list is not vendor list
    like
    backe end contract you can transfer to local tract by SAP report.
    but not like source list.
    As Virender said , you can not transfer a source list to SRM from ECC as a Vendor list
    SAP has designed vendor list like source list with little feature .but vendor list or supplier list not so popular .
    muthu

  • Datasource for Purchasing Source List

    Hello Guys
    i need to find datasources for "purchasing source list" that are stored in EORD table ( you can see these data with transaction ME03, ME01).
    Any one knows the datasources to keep these data in BW ?
    thanks in advance
    Boris

    Hi,
    Please find the code below .
    REPORT ZSOURCE.
    TABLES: EORD,
            EINA,
            MARC.
    Batch Input Name
    PARAMETERS P-BTCHSN(12)            DEFAULT 'ME01'.
    Vendor Code
    PARAMETERS P-LIFNR LIKE LFA1-LIFNR DEFAULT 'XXXXX'.
    Material Group
    PARAMETERS P-MATKL LIKE MARA-MATKL DEFAULT 'XXXXXXX'.
    Plants
    PARAMETERS P-WERKS LIKE EORD-WERKS DEFAULT 'XX'.
    Tick Block/Untick Unblock
    PARAMETERS P-NOTKZ LIKE EORD-NOTKZ DEFAULT 'X'.
    Auto / Manual run the Batch Input Program
    PARAMETERS P-RUN   AS CHECKBOX     DEFAULT 'X'.
    INTERNAL TABLE FOR DATA
    DATA:  BEGIN OF ULTAB OCCURS 50,
             MATNR LIKE EORD-MATNR,   "Material No.
             WERKS LIKE EORD-WERKS,   "Plants
             ZEORD LIKE EORD-ZEORD,   "NO
             LIFNR LIKE EINA-LIFNR,   "Vendor Code
           END OF ULTAB.
    INTERNAL TABLE FOR BATCH INPUT DATA
    DATA: BEGIN OF IPUTTAB OCCURS 50.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF IPUTTAB.
    INTERNAL TABLE FOR BATCH INPUT ERROR MESSAGE.
    DATA: BEGIN OF MESSTAB OCCURS 50.
            INCLUDE STRUCTURE BDCMSGCOLL.
    DATA: END OF MESSTAB.
    DATA: C_TAXKM LIKE MG03STEUER-TAXKM VALUE '1',
          W-LINE-NO TYPE I.
    REFRESH ULTAB.
    SELECT * FROM EINA WHERE LIFNR = P-LIFNR
                         AND LOEKZ = SPACE.
      SELECT SINGLE * FROM MARC WHERE MATNR = EINA-MATNR
                                  AND WERKS = P-WERKS.
      CHECK MARC-LVORM = SPACE.
      CLEAR ULTAB.
      SELECT * FROM EORD WHERE MATNR = EINA-MATNR
                           AND WERKS = P-WERKS
                           AND LIFNR = P-LIFNR.
         ULTAB-MATNR = EORD-MATNR.
         ULTAB-WERKS = EORD-WERKS.
         ULTAB-ZEORD = EORD-ZEORD.
         ULTAB-LIFNR = EORD-LIFNR.
         APPEND ULTAB.
      ENDSELECT.
      IF SY-SUBRC = 4.
         ULTAB-MATNR = EINA-MATNR.
         ULTAB-WERKS = P-WERKS.
         ULTAB-ZEORD = ''.
         ULTAB-LIFNR = EINA-LIFNR.
         APPEND ULTAB.
      ENDIF.
    ENDSELECT.
    CHECK WHETHER TABLE IS EMPTY
    IF ULTAB[] is initial.
       WRITE: / 'TABLE EMPTY'.
    ENDIF.
    Create Batch session
      PERFORM CRE-BATCH-SESS.
    LOOP TABLE TO CREATE SCREEN INPUT
    SORT.
    LOOP AT ULTAB.
      REFRESH IPUTTAB.
      PERFORM SCREEN1.
      PERFORM SCREEN2.
      PERFORM PRN_ULTAB.
      PERFORM CLOSE-SESS.
    ENDLOOP.
    CALL FUNCTION 'BDC_CLOSE_GROUP'.
    END OF MAIN PROGRAM
    FORM SCREEN1.
    SCREEN #1: INITAL SCREEN FOR MAINTAINING SOURCE LIST
      CLEAR IPUTTAB.
      IPUTTAB-PROGRAM = 'SAPLMEOR'.
      IPUTTAB-DYNPRO  =  '200'.
      IPUTTAB-DYNBEGIN = 'X'.
      APPEND IPUTTAB.
    Source List : Material No.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-MATNR'.
      IPUTTAB-FVAL =  ULTAB-MATNR.
      APPEND IPUTTAB.
    Source List : Plants.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-WERKS'.
      IPUTTAB-FVAL =  ULTAB-WERKS.
      APPEND IPUTTAB.
    ENDFORM.
    FORM        : SCREEN1                                               *
    FORM SCREEN2.
    Modify screen for SOURCE LIST
      CLEAR IPUTTAB.
      IPUTTAB-PROGRAM = 'SAPLMEOR'.
      IPUTTAB-DYNPRO  =  '205'.
      IPUTTAB-DYNBEGIN = 'X'.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-VDATU(1)'.
      IPUTTAB-FVAL = '01.01.2001'.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-BDATU(1)'.
      IPUTTAB-FVAL = '31.12.9999'.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-LIFNR(1)'.
      IPUTTAB-FVAL = P-LIFNR.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-EKORG(1)'.
      IPUTTAB-FVAL = 'ALL'.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-NOTKZ(1)'.
      IPUTTAB-FVAL = P-NOTKZ.
      APPEND IPUTTAB.
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'EORD-AUTET(1)'.
      IPUTTAB-FVAL = '1'.
      APPEND IPUTTAB.
    Specify that we are now done with this screen (Save it with F11)
      CLEAR IPUTTAB.
      IPUTTAB-FNAM = 'BDC_OKCODE'.
      IPUTTAB-FVAL = '/11'.
      APPEND IPUTTAB.
    ENDFORM.
    FORM        : CLOSE-SESS                                            *
    DESCRIPTION : CLOSE THE SESSION                                     *
    FORM CLOSE-SESS.
    closing the session.
    IF P-RUN = 'X'.
    Auto run the Batch Input Program
    CALL TRANSACTION 'ME01'
              USING  IPUTTAB
              MODE   'E'
              UPDATE 'S'
              MESSAGES INTO MESSTAB.
    ELSE.
    Maual run the Batch Input Program
    CALL FUNCTION 'BDC_INSERT'
           EXPORTING
                TCODE     = 'ME01'
           TABLES
                DYNPROTAB = IPUTTAB.
    ENDIF.
    ENDFORM.
    FORM        : PRN-ULTAB                                             *
    DESCRIPTION : PRINT OK TABLE                                        *
    FORM PRN_ULTAB.
      WRITE: / ULTAB-MATNR, ULTAB-WERKS, ULTAB-ZEORD, ULTAB-LIFNR.
      W-LINE-NO = W-LINE-NO + 1.
    WRITE: '      RECORD# ', W-LINE-NO.
    ENDFORM.
    FORM        : CRE-BATCH-SESS                                        *
    DESCRIPTION : CREATE BATCH SESSION                    *
    FORM CRE-BATCH-SESS.
    Create BTCI session **
    CALL FUNCTION 'BDC_OPEN_GROUP'
         EXPORTING
              CLIENT = SY-MANDT
              GROUP  = P-BTCHSN
              USER   = SY-UNAME
              KEEP   = 'X'.
    ENDFORM.
    Regards,
    Marasa.

  • Source list supplier and latest Infor Record price

    Hi,
    Which SAP code can use to run the report to list display for parts current source list supplier and most update info record price?
    Thanks
    Asini Yadaiah....

    Hi,
    Run following reports;
    ME0M - Source List per Material
    ME1M - Info Record per Material
    ME1L - Info Record per Vendor
    ME1P - PO Price History

  • BAPI for Source List Upload ( ME01 )

    Hi All..
    Is there any BAPI available for uploading source list for a material??
    Transaction involved - ME01.
    Thanks & Regards,
    Nidhi

    Hi,
    Try the below function module ME_UPDATE_SOURCES_OF_SUPPLY which is being used by standard transaction ME01.
    sample code
    REPORT ZTEST.
    DATA: BEGIN OF XORD OCCURS 50.
    INCLUDE STRUCTURE EORD.
    DATA: UPDKZ,
    END OF XORD,
    YORD type table of EORD with header line.
    clear xord.
    clear yord.
    xord-MATNR = '100-100'.
    xord-WERKS = '3000'.
    xord-ZEORD = '00001'.
    xord-ERDAT = '20080403'.
    xord-ERNAM = 'SAPDEV02'.
    xord-VDATU = '20080403'.
    xord-BDATU = '20100510'.
    xord-LIFNR = '0000001000'.
    xord-FLIFN = 'X'.
    xord-EKORG = '1000'.
    xord-UPDKZ = 'U'.
    append xord.
    move-corresponding xord to yord.
    append yord.
    CALL FUNCTION 'ME_UPDATE_SOURCES_OF_SUPPLY' IN UPDATE TASK
    EXPORTING
    I_CHANGEDOCUMENT = 'X'
    TABLES
    XEORD = XORD
    YEORD = YORD.
    COMMIT WORK.
    Cheers,
    vasavi.v

  • My ipod touch is not showing up on the source list

    My iPod Touch is not showing up on the source list. I have tried to restore the ipod, i have uninstalled, reinstalled, and used the repair option in the control panel to no avail. I am currently useing the latest version of Windows 8 on an Asus VivoBook. What can i do to fix the problem?

    Hello dbar2530,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Best of luck,
    Mario

  • Doesn't Stay in Source List

    The nano doesn't stay in the iTunes source list, so I can only mess around with the settings while it's connected. With previous iPods the icon and options remained even when the iPod was disconnected. Am I missing an option box, or did they change something in iTunes 5?

    I remember this feature being available only for the iPod Shuffle, and not any of the other iPods.

  • I cannot download photos from my digital camera to Iphoto (version '09). I have been able to successfully do this up to 4 days ago but not yesterday. My camera/device is recognized in the Source List but photos won't download for me to import to library.

    I cannot download photos from my digital camera (via a cable) to Iphoto (version '09). I have been able to do this successfully up til 4 days ago but not yesterday (Dec. 25th). My camera/device is recognized in the Source List, but when it tries to download the photos, all I get are the words "Loading Photos" in the area where the thumbnail pictures usually display. The little "gear" symbol next to the words but it just goes round and round. Nothing ever downloads, and instead of showing me how many pictures there are to import it just says "No photos". So therefore I cannot import the photos to my library since they won't even download.
    I was getting an error message a few days ago that my Iphoto library was getting full, so I emptied my trash in both Iphoto and on my computer. I had this same problem back in October and emptying the trash and getting rid of some photos did help (can I really be using that much storage space for the pictures?). But it didn't help this time.
    Any suggestions as to what to do to solve the problem? I would try taking the SD card out and inserting that into the slot on the computer to see if I could load pictures that way; but the last time I did that, they wouldn't load. Not sure if I lost pics from the disc or not.
    Thank you,
    Novice50

    1. You did not get an error message telling you that your iPhoto library was getting full. You got a message telling you that your HD was getting full, right?
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD. Nothing else can be done until you do.
    Purchase an external HD and move your Photos and Music to it. Both iPhoto and iTunes can run perfectly well with the Library on an external disk.
    Your Library has been damaged from being run on an overfull disk.
    How much free space on it now?

  • Error when opening open item list report

    Hi Experts,
    I was trying to open inventory open item list but I'm getting error. The user is a "super user".
    Thanks,
    Janice

    Hi,
    It is an application error. Check SAP note:
    2008925 - You cannot run the Open Item List report for Purchase
    Requests
    Thanks & Regards,
    Nagarajan

Maybe you are looking for

  • Get back to previously submitted job in OEM

    Hi all, From Advisor Central I clicked "implement" button to shrink a table segment. I strayed away to look for something else but I don't know how to get back to the job to check the job status. I searched in the Jobs tab and Reports tab based on th

  • URGENT: STOCK TRANSFER PC TO KG

    HI ALL I WANT TO TRANSFER STOCK FROM UNRESTRICTED TO SCRAP FOR THIS I M USING MATERIAL TO MATERIAL TRANSFER IN MB1B BUT THE PROBLEM IS WE WANT SCRAP IN KG BUT THE UNRESTRICTED STOCK IS IN PCs CAN SOMEBODY PROVIDE A SOLUTION??? PLZ HELP ITS VERY URGEN

  • ICloud hacked, what do i do now?

    I received an email saying i needed to verify my apple id so i clicked on the page and entered in my password and username Then i realised it is a spam site. Im in the uk and its currently 22.05pm No apple support teams are open for me to ring in thi

  • Lync 2011 crashes on Yosemite

    Hi, have recently upgraded to Yosemite and Lync 2011 14.0.9 keeps crashing on startup. Any know fixes for this issue? Thanks

  • Blackberry Link software

    I have tried to install The Blackberry link software four times and each time I am told that the program has a bad image and is not designed to run on windows.The Error 1706 can also appear.I have windows Vista Home Premium 32 bit and do not usually