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

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

  • Approved supplier list migration

    hi,
    I have to do Approved supplier list Migration.i am totally new in this field.can any one help me what neccesary steps i have to follow.
    Thanks and Regards

    There is a Note (Doc ID: 271321.1) titled "How To Import Approved Supplier List" available on Metalink. Approved Supplier Lists (ASL) can be imported using Purchasing Document Open Interface.

  • 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

  • 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.

  • 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/

  • 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

  • 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/

  • How to update my ibook G4 with out itunes

    how to update my ibook G4 with out itunes

    Your question begs more questions before an answer...
    What are you trying to upgrade, and why would you try to use iTunes
    in a vintage G4 computer that cannot run an OS X later than 10.5.8
    at best? (and only if it has a processor at least 867MHz or better)
    With at least a 1.0GHz iBook G4 you could run Leopard 10.5.8, and
    the system requires a retail DVD to install the 10.5, then go online
    after installation, to get the Combo 10.5.8 update, by use of Software
    Update within that first earlier system...
    If the computer does not have at least the minimum processor, it would
    not be able to see Leopard as a system, so Tiger 10.4.11 is the last...
    http://www.apple.com/support/leopard/
    iTunes does not upgrade or update much of anything in an obsolete &/
    or vintage Mac OS X before the Intel-Mac era, and prior to OS X 10.6.8.
    If your computer does not have an iTunes version at all, you can go to
    Apple support downloads and look at older iTunes, and older safari,
    and some other bits that are limited to their respective vintage OS X.
    Usually the upgrade path utilizes DVD media or CD media, for software
    & depending on what kind of software, then later get update-downloads.
    To see if there may be anything not already installed in the system or
    applications that could exist in the Apple support download servers,
    you could see if the System's own Software Update, located in Apple
    Menu in upper left side of the menu bar in Finder, can locate some.
    If you perform a new install and did not save all the bits as downloaded
    from when they were more current, some updates to original media that
    formerly were online and available as download (step updates, not full
    upgrades) you may eventually be unable to upgrade then update an older
    OS X system; the remainder of the later or last fixes were in the update.
    So, if you have an old G4 PowerPC Mac computer running, say Tiger 10.4.3
    and thought to use some software intended to run in Tiger 10.4.11, then
    you'd have to see if Software Update could find the 10.4.11 Combo update.
    After updating the main system, other applications may also see a need to
    be updated, if they were not already as far as they could go, in their vintage.
    iPhoto, and other applications, such as they were, had updates to their main
    application. So with iTunes, the last version that can work in a PPC G4/G5
    non-intel would be in the last supported OS X, Leopard 10.5.8, and that
    version number is iTunes 10.6.3; so you can't visit an App Store or Mac App
    Store nor can you run Snow Leopard on a PowerPC architecture Mac.
    With the intel-based Mac, and Snow Leopard, you can access the online
    Stores to include recent Mac Apps, App Store, iTunes Store, etc. A light
    version of early iTunes (see iTunes Player) can be seen, and their Radio
    still plays free music channels. I have several older pre-Intel Macs...
    The matter involves the vintage of the device, the system, and limits of the
    old vintage/obsoleted configurations where both are interdependent.
    Not sure if this helps, but more of a history lesson may be read if you look
    into everymac.com and compare models, build years, and other specs...
    If you need some feature or function not supported by vintage hardware or
    vintage software, or a newer web browser, you have to look further. A fair
    browser can be found in TenFourFox. I use it daily in a PPC G4 MINI 1.5GHz.
    with Leopard 10.5.8. Plus others. To go further, look into an Intel-based Mac
    such as MacBook2.1 & then buy the Snow Leopard retail DVD for about $20.
    Hopefully this helps somewhat...
    Good luck & happy computing!

  • How to update adobe flash player with os10.6.8

    how to update adobe flash player with os10.6.8

    You can check here what version of Flash player you actually have installed:  http://kb2.adobe.com/cps/155/tn_15507.html
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications (including Safari) first before installing. You must also carry out a permission repair after installing anything from Adobe.
    After installing, reboot your Mac and relaunch Safari, then in Safari Preferences/Security enable ‘Allow Plugins’. If you are running 10.6.8 or later:
    When you have installed the latest version of Flash, relaunch Safari and test.
    If you're getting a "blocked plug-in" error, then in System Preferences… ▹ Flash Player ▹ Advanced
    click Check Now. Quit and relaunch your browser, but check this also:
    http://support.apple.com/kb/HT5655?viewlocale=en_US&locale=en_US  which also covers ‘blocked plug-in’.

  • How to update the posted documents with Business Area wise

    Dear experts
    Please suggest me how to update the posted documents with Business Area wise
    Ajeesh.s
    Moderator message: please do more research before asking, show what you have done yourself when asking.
    Edited by: Thomas Zloch on Nov 2, 2011 2:26 PM

    Hi,
    Select all your folders in Disco Administrator,ALT+ENTER to go to properties, then change the database from the default database to the remote database.
    Hope that helps,
    Rod West

  • How to update a dbf file with gui_upload???

    hi friends,
    i would like to know how to update a dbf file with gui_upload???
    as i hve already know that it's easy to convert dbf to tab formatted text fle and thn upload it.but i want the direct uploading way.i don't let my user's bsy with converting existing dbf to txt.so pls help me asap!!!!!i will be thankful to you!!!!!

    its very easy you can search other forum!!!

  • Approved SUpplier List

    Hi,
    I had a question about approved supplier list.What do you mean exactly by setting Global flag as NO and specifying an inventory org for an ASL entry?Doesn't that mean that this is and ASL entry only for that inventory org.
    If I create 2 iProcurement responsibilities one for Inventory A and other for Inventory B and assign then to the inventory orgs in Organization access screen doesnt it mean that when I login from A I should see teh ASL's for only org A and not B?

    According to the Oracle Purchasing User’s Guide
    "Sourcing Globally or Locally
    In the Approved Supplier List and Sourcing Rule windows, you also
    choose whether to exercise the sourcing information at a global or local
    level. A sourcing rule assigned at the global level in the Sourcing Rule
    5 – 32 Oracle Purchasing User’s Guide
    / Bill of Distribution Assignments window is valid for all operating
    units. A global ASL entry in the Approved Supplier List window is
    valid for all inventory organizations in an operating unit. A local
    sourcing rule or ASL entry is valid only for the organization that you
    were in or that you chose when creating the sourcing rule or ASL entry.
    Local entries take precedence over global ones. For example, if you
    have a global sourcing rule that says to use Supplier A for an item for
    all organizations in your company, and a local sourcing rule for the
    same item that says to use the local Supplier Z only for your
    organization, Purchasing defaults Supplier Z on requisitions or
    purchase orders created in your organization. Local entries are the
    default in the Approved Supplier List window."
    regards,
    malin

  • How i do search in list with textinput

    how i do search in list with textinput ?
    i make textinput with list and list have data i want to do search in list when right my information in textinput

    On change event of TextInput, apply a filter.I am giving sample code over here:
    private function filter():void {
                                            (your list dataprovider).filterFunction = filterMyArrayCollection;
                                             (your list dataprovider).refresh();
                                  private function filterMyArrayCollection(item:Object):Boolean {
                                            var searchString:String = (Your textinput id).text.toLowerCase();
                                            var itemName:String = (item.(property of list provider which is to be searched) as String).toLowerCase();
                                            return itemName.indexOf(searchString) > -1;
    This will help you in following manner:
    when you type "D" in textinput, the list will show you the names which start with "D" or include the letter "D" in their spelling.

Maybe you are looking for

  • Propagation error when trying to download inventory from server

    Hi there, Has anyone seen the following error when trying to download an inventory from the server.: Buildfile: C:\bea10.3\user_projects\workspaces\RST\RSTPropagation\21102009\propbuild.xml import: BUILD FAILED C:\bea10.3\user_projects\workspaces\RST

  • Ipod touch 4 isnt showing on itunes. PLEASE HELP

    hey everyone my new ipod touch 4 isnt showing up on itunes i have the latest itunes installed and im not sure why it isnt working. it used to show up fine since i have had it for about 2weeks and then i tried to restore it and it has stopped showing

  • Drag and Drop files on mac?

    I've been using Dreamweaver for years but this is the first time on a mac. I noticed that I can't simply drag documents into my files view in Dreamweaver. Am I doing something wrong? Is the only way around this to keep one window open with all the si

  • Blue background under finder icon in dock

    Hi guys, i have this problem (as you can see on screen shot - blue background under finder icon in dock), what i need to do to fix it?

  • MP3 Music does not work.

    I just upgraded to Adobe Premiere Elements 13 so that I could use music in .MP3 format.  But it still doesn't let me use this music.  Can you tell what I am doing wrong? I get a message that says "The importer reported a generic error"