Merge Supplier list

Hi all,
I want to know to whether supplier is merged ? if merged to which supplier and who merged..???
Can anyone help me....
Thanks and Regards
Reju

select vendor_id, duplicate_vendor_id, last_updated_by from AP_DUPLICATE_VENDORS_ALL
AP_DUPLICATE_VENDORS_ALL stores information about suppliers
that Supplier Merge updates
Thanks
Pradeep

Similar Messages

  • How To Import Approved Supplier List  ?(do  not  create PO)

    hi,
    when i import Approved Supplier List through the Purchasing Document Open Interface (PDOI). Affter this ,a Purchase Order be created.
    i do'nt want PDOI to create Purchase Order ,how to do??
    thanks very much !!
    ==========================================
    my test data is :
    l_iface_rec po.po_headers_interface%ROWTYPE;
    l_iface_lines_rec po.po_lines_interface%ROWTYPE;
    l_iface_rec.org_id := l_org_id;
    l_iface_rec.interface_header_id := 101;
    l_iface_rec.process_code := 'PENDING';
    l_iface_rec.action := 'ORIGINAL';
    l_iface_rec.document_type_code := 'BLANKET';
    l_iface_rec.document_subtype := NULL;
    l_iface_rec.document_num := NULL;
    l_iface_rec.approval_status := 'APPROVED';
    l_iface_rec.agent_id := 61;
    l_iface_rec.vendor_id := 1;
    l_iface_rec.vendor_site_id := 1;
    l_iface_rec.interface_source_code := 'Test';
    l_iface_rec.batch_id := 987654321;
    l_iface_lines_rec.interface_header_id := 101;
    l_iface_lines_rec.process_code := 'PENDING';
    l_iface_lines_rec.action := 'ORIGINAL';
    l_iface_lines_rec.line_num := 1;
    l_iface_lines_rec.line_type_id:=1;
    l_iface_lines_rec.item_id := 1001;
    l_iface_lines_rec.unit_price := 1.01;
    Edited by: Shaowei.Zhang on 2009-11-20 下午9:39

    Hi Shaowei;
    Please follow below and see its helpful:
    [Link 1|http://www.oracleappshub.com/oracle-purchasing/approved-supplier-lists-asl/]
    [link 2|http://forums.oracle.com/forums/thread.jspa?threadID=936670&tstart=15]
    Regard
    Helios

  • Open Interface for Approved Supplier Lists and Sourcing Rules

    Hi All,
    Is there an open interface or an API available for Appeoved Supplier Lists and Sourcing Rules.
    Thanks and Regards,
    MPH

    Hi sandeep,
    I prefer to use the API mentioned.
    However this is in Oracle Manufactirung and we dont use that module instead I want to define them in Oracle Purchasing.
    can I still do it in Purchasing using the same API.
    Further as per the document there are 3 entities
    01) Sourcing Rule/Bill of Distribution
    02) Receiving Organization
    03) Shipping Organization
    Do I need to define all 3 in order to make it work?
    Thanks and Regards,
    MPH

  • Approved Supplier List - Item list update in SRM 7.0

    Hello,
    I have a custom screen from where supplier adds the product category themself. Now my question is - If the supplier adds any product category, it should be added in the approved supplier list. If he deletes any product category it should be deleted. We have FM BBP_PD_AVL_UPDATE to do this job. but it not working fine. Even I am not sure whether i am using it properly or not. I have initially added the Del indicator and if I remove the Active indicator it gives an error message -"Status and active flag in one item do not match" . Can any one give some sample code or any other option to do this functionality.
    Thanks
    Abhi
    Edited by: Abhishek Bansiwala on Oct 6, 2010 1:27 PM

    Hi All,
    Below is the sample code to update the item list of Approved Supplier list number.
    Call Function module -  'BBP_PD_AVL_STATUS_CHANGE' before the FM 'BBP_PD_AVL_UPDATE'.
    Code -
          CALL FUNCTION 'BBP_PD_AVL_RESET_BUFFER'.
    ****Change Item status
    ****Get Item details based on Object Id
      CALL FUNCTION 'BBP_PD_AVL_GETDETAIL'
        EXPORTING
          i_guid          = wa_sup_list-guid
          i_object_id     = wa_sup_list-object_id "object id or supplier list number whose item list need to be updated
          i_with_itemdata = 'X'
        IMPORTING
          e_header        = ls_avl_header
        TABLES
          e_item          = it_avl_item
          e_partner       = it_avl_partner
          e_orgdata       = it_avl_orgdata.
    ****Update the partner list
          MOVE-CORRESPONDING ls_avl_header TO ls_avl_header1.
    ****Fill item list
          APPEND LINES OF it_avl_item TO it_avl_item1.
          READ TABLE it_avl_item1 INTO wa_avl_item1 WITH KEY guid = wa_avl_partner-p_guid.
          wa_avl_item1-del_ind = 'X'.
          wa_avl_item1-itm_released = ' '.
          MODIFY it_avl_item1 FROM wa_avl_item1 TRANSPORTING del_ind itm_released WHERE guid = wa_avl_partner-p_guid.
    ****Fill partner list
          APPEND LINES OF it_avl_partner TO it_avl_partner1.
          CALL FUNCTION 'BBP_PD_AVL_STATUS_CHANGE'
            EXPORTING
              iv_item_guid = wa_avl_item1-guid  " Item guid for which we are updating
              iv_activity  = 'ITIN'     " ITIN for Delete line item, ITAC for Adding line item
            TABLES
              et_messages  = it_mess  "message returned
            CHANGING
              ev_changed   = it_xfeld.  "updated if the status is changed
            CALL FUNCTION 'BBP_PD_AVL_UPDATE'
              EXPORTING
                i_header   = ls_avl_header1  "header detail
                i_save     = 'X'
              IMPORTING
                e_changed  = v_field " set if the avl is updated
              TABLES
                i_item     = it_avl_item1 "pass all existing line item and change the line item which needs to be updated
                i_partner  = it_avl_partner1 " pass all partners as it is
                i_orgdata  = it_avl_orgdata " pass org data as it is
                e_messages = it_message1.  "returning message
            IF v_field IS NOT INITIAL.
              CALL FUNCTION 'BBP_PD_AVL_SAVE'
                EXPORTING
                  iv_header_guid = ls_avl_header1-guid.
              COMMIT WORK AND WAIT.
            Endif.
    Let me now if you have any issues.
    Thanks
    Abhi

  • How to merge 2 lists in java in the class definition

    Hello, please help me. I am totally
    I have been writing a class articleList.
    I need to merge articleList 1 with articleList 2 to get a new list containing all items from articleList 1 and articleList 2, no double items required.
    How can I implement this in the articleList class?
    I have this already
    // this method merges 2 lists together
    public void merge (List a, List b)
    what to put here?
    Please help?

    Create a HashSet and add all items from both liststo
    that set. Do then create a List from that Set.
    KajWhether data redundancy can be solved by HashSet, Kaj?Yes. A set does not allow duplicates. Isn't that what he wanted to do? Remove duplicates from the result?
    Kaj

  • Effect of Approved Supplier List

    Hi,
    i wonder if there is not any effect after I entered supplier-item combination into Approved Supplier List. I expected to - at least - see all approved suppliers in the Supplier Item Catalog. But this seems not to happen.
    Can please somebody clarify if entering a supplier in ASL should lead to a result in the Supplier Item Catalog.
    If not: Does it work if I additional to the ASL enter Sourcing Rules? Is this enough to find the supplier in the Supplier Item Catalog?
    I also tried it with quotations: This works. Quotation entries are shown in the catalog. But here I have the problem that - e.g. for price updates - I do not know how to find all quotations with a specific item on it. Does there exist a search form?
    Thanks for any help!

    Purchasing > RFQ & Quotations > Quote Analysis
    Enter the item number and you can find all quotes for that item.
    Hope this answers your question
    Sandeep Gandhi
    Independent Techno-functional Consultant
    Omkar Technologies Inc
    513-325-9026

  • Operating unit in the Approved Supplier list

    Hi Gurus,
    I am looking for a query to find the Operating Unit in the Approved Supplier list. I can only see the owning_organization_id column in the po_approved_supplier_list table not the org_id.
    Please help.
    Thanks in advance !!
    KM

    Have you checked the HP support website to see if there is a Firmware upgrade for your new printer?  In most instances, a Firmware upgrade is needed before you can use Airprint.
    On the product control panel, touch the ePrint icon ( ).
    Touch Settings , and then touch Product Update .
    Touch Check Product Update to apply the available update

  • "Supplier list" in PO and "Invitation List" in Sourcing

    Hi,
    Is it possible to use "Supplier list" in PO as "Invitation List" in Sourcing ?
    Regards.

    Hi,
    Supplier List and Invitation List are entirely different even though they use same suppliers.
    Supplier List cannot be used as Invitation List in Oracle Sourcing.
    Thanks
    -Arif.

  • Supplier list clarification

    Hello Guys
    I came to know that in Supplier list creation, we can display backend ECC contracts. And this is possible only with Classic scenario. If we activate extended, the SAP documentation says itu2019s not possible to do that. I want to know why?
    And again, Supplier list can be used in Direct procurement incase of Extended classic scenario and again why it is not possible with Direct procurement in Classic scenario.
    Please reply Guys, Thanks in Advance.

    Hello Richardo
    Thanks for your answer.
    I have a question, in classic or extended classic, this is the standard system behavior or we can control this in configuration / BADI implementation. i.e. is it possible to use local contracts as source of supply in classic scenario.
    Second, what are the possible source of supply in classic and extended classic for a shopping cart with selection of priority from top and is there any configuration to change this priority ie vendor list first, contract second etcu2026 to change the standard.
    Thanks in advance.

  • How to Update Approved Supplier List with API..

    I am working on an interface and need to be able to update the PRIMARY_VENDOR_ITEM in the PO_APPROVED_SUPPLIER_LIST table.
    Can this be done with the Puchasing Document Open Interface ? I have been looking through the notes on this and cannot find it mentioned.

    Hi Shaowei;
    Please follow below and see its helpful:
    [Link 1|http://www.oracleappshub.com/oracle-purchasing/approved-supplier-lists-asl/]
    [link 2|http://forums.oracle.com/forums/thread.jspa?threadID=936670&tstart=15]
    Regard
    Helios

  • Conversion of Approved Supplier Lists API

    hi
    Conversion of Approved Supplier Lists from legacy data into Oracle Purchasing Application (API),please send me as soon as possible.
    regards
    vijay

    review this
    http://www.oracleappshub.com/oracle-purchasing/approved-supplier-lists-asl/

  • Conversion of Approved Supplier Lists using

    Conversion of Approved Supplier Lists from legacy data into Oracle Purchasing Application (API)

    review this
    http://www.oracleappshub.com/oracle-purchasing/approved-supplier-lists-asl/

  • Merging two lists?

    I need to know if it is possible to merge two lists using coldfusion.  I have one list uploaded to the site then they want the ability to upload a second list with may have additional fields and/or different number of records.  Need to know if this is possible, how to do it if it is, and how the two list will match up.  Thanks in advance for the help.

    Right, well in that case this isn't really anything to do with merging lists per se, hence the confusion I believe. Technically, you'd do this:
    <cfset newData = fileOpen("c:\newlist.csv","read") />
    <!--- Loop through your file, one line at a time --->
    <cfloop condition="NOT fileIsEof(newData)">
      <!--- Create a string of the line, this is a true list --->
      <cfset thisLine = fileReadLine(newData) />
      <!--- Get the elements of the list we want for the query --->
      <cfset thisForename = listGetAt(thisLine,1) />
      <cfset thisSurname = listGetAt(thisLine,2) />
      <!--- Check if this person exists --->
      <cfquery datasource/username/password name="qCheckExists">
        SELECT    id
        FROM      mytable
        WHERE     firstname = <cfqueryparam cfsqltype="cf_sql_varchar" value="#thisForename#" />
        AND       surname = <cfqueryparam cfsqltype="cf_sql_varchar" value="#thisSurname"#" />
      </cfquery>
      <!--- If we found rows, update --->
      <cfif qCheckExists.RECORDCOUNT eq 1 >
        <cfquery datasource/username/password>
            UPDATE   mytable
            SET      forename = <listGetAt,thisLine, FIELD>,
                     surname = <listGetAt,thisLine, FIELD>,
                     address = <listGetAt,thisLine, FIELD>,
                         etc etc etc
            WHERE    id = qCheckExists.id
        </cfquery>
      <cfelseif qCheckExists.RECORDCOUNT >
        <!--- here you found more than one matching row, up to you what to do --->
      <cfelse>
        <!--- here you didn't find a match, so do an insert --->
      </cfif>
    </cfloop>
    <cfset fileClose(newData) />
    That's how you'd do it on a technical level, the Business decisions are yours. What if it's John not Jon? What if it's Jonathan? That's not a programming problem, that's up to you to decide - I'm not sure we can help you there.
    O.

  • Subsequent addition to new product categories of supplier list

    Hi,
    Business Requirement:
    An existing supplier, for whom a contact person is already created and is having a valid user ID and password, now wants to send his requests to include him in the supplier list for some more product categories.
    Supplier selects some more product categories in a webpage of portal.
    System sends a link to supplier's email, which on clicking, will take him to a page where he can enter the answers to questionnaires assigned to the product categories(s) selected by him.
    Buyer verifies the answers and subsequently add him to some more product categories in the supplier list or rejects the request submitted by the supplier.
    Question:
    1. We would like to know, what is standard business process available in SAP which is "SOMEWHAT" similar to above requirement.
    2. If available, Which (SICF) service needs to be used for this? or what settings/configurations are required to achieve this.
    Thanks.
    Ganapathi
    Details: SRM7.0 SP07, ECC Ehp4, Using MM-SUS.

    Any update please.

  • API for Approved Supplier List

    Hi all,
    Is there API for Approved supplier list??
    Thanks

    Hello,
    We were not able to find the API for Approved Supplier List, during our implementation. How ever we have done direct insert in the tables PO_APPROVED_SUPPLIER_LIST and PO_ASL_ATTRIBUTES to get the approved supplier list working. Please suggest if you need any help in building similar logic.

Maybe you are looking for

  • Yoga 2 Pro Camera Pixelated? - Windows 8.1

    Hey Everyone, I just received my Yoga 2 last week, and I opened up the camera app and the image was very pixilated.  Has anyone else experienced this?  I am not picky about my webcam quality, but I would expect it to look similar to my camera phone i

  • [SOLVED] Downloading a source file to a custom file name

    I'm writing a package that applies a patch to rsync. The patch file can be downloaded from the following address: http://gitweb.samba.org/?p=rsync-patche - c41d0eb4f3 I have added this URL to the sources array and makepkg is able to download it, but

  • Can't read a password protected pdf created in windows on mac

    I converted a word document to a pdf and password protected it with acrobat 9.  When the pdf is opened in mac preview only the first page is visible. all other are blank.  Would appreciate advice.

  • Converting DWF to PDF using right click option cuts off right side.

    I have 24x36 dwf files that I need to convert to PDF. (Printing Landscape) When using the right click option in explorer, "Convert to Adobe PDF", the conversion cuts off about 6" on the right side of the page. (I can "Print" inside my DWF viewer to A

  • Core dump when starting extract, no error messages

    Hello, This is a basic one way replication, Data Pump and Replicat start but Extract stops at once. In ggserr.log there's only a message: EXTRACT EORATE02 starting, nothing else. In ggsci it can be seen that it's stopped. CHECKPARAMS didn't give the