API to release suppliers and their sites from hold

Hyee Forumates,
Can you please let me know if there is any API to release a supplier and his corresponding sites from HOLD. Any help is appreciated thanks in advance.
Regards,
Veronica.M

If it can be done manually, perhaps it may be able to do it by api. I'm not sure considering data inconsistency issues if associated information exists. What's the purpose? If duplicating a merge may be an option, if not try disabling them.

Similar Messages

  • I have 2 Macs - an iMac that holds my entire iPhoto library and a Mac Book Pro that I use to hold a subset of the main library - how can I transfer photos and their metadata from the main library of the iMac to my Mac Book?

    I have 2 Macs - an iMac which holds my main iPhoto library and a Mac Book Pro which holds a subset of the library. How can I transfer photos and their metadata from the main library to the smaller 1 on the Mac Book Pro?

    Link the two Macs together and use iPhoto Library Manager
    Regards
    TD

  • When I try to sync photos, I followed all the steps, picked one folder.  When I hit "apply" I get this error message: Are you sure you want to remove 30 apps from iPad.  This will delete these apps and their data from the iPad. What have I done wrong

    When I try to sync photos or music, I followed all the steps, picked onle folder, not the whole library.  When I hit "apply" I got this message:
    Are you sure you want to remove 30 apps from iPad.  This will delete these apps and their data from the iPad" What can I change to just download the photos and not interfere with the apps?
    (By the way, the memory is not even one quarter full)
    Thanks for your help - Pat

    I have the same problem.  I updated my mac to 10.5, which then had me update apps like itunes, etc. then it wanted me to sync my purchased music to my ipad before i updated the ipad...which worked ok. then when i was syncing the photos i got the same message when i hit "apply" asking are you sure you want to delete the 12 apps from the ipad -  clicked "no" and brought me back to the original screen. Got the same message when trying to move them from the hard drive to the ipad.  WHat is going on and how do I correct this? Thanks

  • [svn:osmf:] 14023: Updating OSMFPlayer to the changed layout APIs, adding a comment, and fixing MediaContainer from ignoring its constructor argument.

    Revision: 14023
    Revision: 14023
    Author:   [email protected]
    Date:     2010-02-07 07:54:38 -0800 (Sun, 07 Feb 2010)
    Log Message:
    Updating OSMFPlayer to the changed layout APIs, adding a comment, and fixing MediaContainer from ignoring its constructor argument.
    Modified Paths:
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/OSMFPlayer.as
        osmf/trunk/framework/OSMF/org/osmf/containers/MediaContainer.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutTargetSprite.as

  • How to export a user and their schema from one 10g database to another?

    Hi,
    I would like to export a user and their entire schema from one 10g database to another one. How do I do this?
    thx
    adam

    If you want to export a user and the schema owned to the user, and import to the same user in a different database, or a different user in the same database, you can use the exp and imp commands as described in the Utilities manual.
    These commands are very versatile and have a lot of options - well worth learning properly. To give you a simplistic shortcut, see below - I create a user 'test_move', create some objects in the schema, export, create a new user in the database 'new_move' and import.
    oracle@fuzzy:~> sqlplus system/?????
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Mar 11 21:46:54 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> create user test_move identified by test_move;
    User created.
    SQL> grant create session, resource to test_move;
    Grant succeeded.
    SQL> connect test_move/test_move
    Connected.
    SQL> create table test (x number);
    Table created.
    SQL> insert into test values (1);
    1 row created.
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    oracle@fuzzy:~> exp system/????? file=exp.dmp owner=test_move
    Export: Release 10.2.0.1.0 - Production on Sat Mar 11 21:48:34 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Export done in AL32UTF8 character set and AL16UTF16 NCHAR character set
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user TEST_MOVE
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user TEST_MOVE
    About to export TEST_MOVE's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    . about to export TEST_MOVE's tables via Conventional Path ...
    . . exporting table                           TEST          1 rows exported
    . exporting synonyms
    . exporting views
    . exporting stored procedures
    . exporting operators
    . exporting referential integrity constraints
    . exporting triggers
    . exporting indextypes
    . exporting bitmap, functional and extensible indexes
    . exporting posttables actions
    . exporting materialized views
    . exporting snapshot logs
    . exporting job queues
    . exporting refresh groups and children
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    . exporting statistics
    Export terminated successfully without warnings.
    oracle@fuzzy:~> sqlplus system/?????
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat Mar 11 21:49:23 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> create user new_move identified by new_move;
    User created.
    SQL> grant create session, resource to new_move;
    Grant succeeded.
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    oracle@fuzzy:~> imp system/????? file=exp.dmp fromuser=test_move touser=new_move
    Import: Release 10.2.0.1.0 - Production on Sat Mar 11 21:50:12 2006
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in AL32UTF8 character set and AL16UTF16 NCHAR character set
    . importing TEST_MOVE's objects into NEW_MOVE
    . . importing table                         "TEST"          1 rows imported
    Import terminated successfully without warnings.
    oracle@fuzzy:~>                                                       If moving between databases, remember to set the SID properly before the import. If keeping the same userid, skip the from/to stuff in the import.
    There are many variations on the theme ...
    You can simplify this. You can select tables individually. You can use a parameter file. You can transport all the constraints and data. You can skip the data and only move the definitions. You can get some help (imp/exp help=yes).
    And, if it's all 10g, there is a new and improved facility called expdp/impdp (dp = data pump) which has a lot more capability as well, including direct transfer (no intermediate file) together with suspend/restart. Also documented in the Utilities manual.

  • Payment_method_code in Supplier and Suppliet Site Table in R12

    In R12 the PAYMENT_METHOD_LOOKUP_CODE column of PO_VENDORS (or AP_SUPPLIERS) and PO_VENDOR_SITES_ALL (or AP_SUPPLIER_SITES_ALL) is no more having the payment method type as in Oracle front end supplier screen I can see the payment method has been checked as EFT but the above columns are showing null in backend database.
    Is these values (PAYMENT_METHOD_LOOKUP_CODE for both supplier and supplier site) getting stored any other table like IBY or somethingelse ? Please help.

    Hi Kiran,
    I'm trying to import my company Suppliers using AP_SUPPLIERS_INT, but the PAYMENT_METHOD_CODE is not being imported into AP_SUPPLIERS. I'm using valid values from IBY_PAYMENT_METHODS.PAYMENT_METHOD_CODE, but at the moment to query the AP_SUPPLIERS, the forementioned column is not being populated. Am I missing something here?
    Your help would be appreciated.
    Hugo

  • Is there a way to export photo images and their metadata from Adobe Bridge to MS excel?

    Is there a plugin, or script that allows photos and their metadata to be exported from Adobe Bridge to Microsoft excel?

    I would like to see the description with the image when it is attached to an email.  I would also like to be able to create a DVD of the images that would include the descriptions when the DVD is played back.
    For that you will need iDVD to create a slideshow of the images and then display either the Title, Description or both as shown below and then burn to disk creating a video DVD to play on a TV set:
    If you want the description on the image itself you'll need to use a 3rd party editor like one of those below or the free watermark iPhoto plugin, BorderFX.
    Some Image Editors That Support layers:
    Photoshop Elements 11 for Mac - $79
    GraphicConverter - $40
    Rainbow Painter - $30
    Imagerie - $38
    Acorn - $50
    Pixelmator - $60
    Seashore - Free
    GIMP for Mac - Free
    Xee 2.1 - free

  • HT1386 I copied my my iTunes music from an old computer to a Macbook Pro, but it did not copy the playlists on my nano. How can I transfer the playlists and their content from the nano to the Macbook

    I copied my iTunes music from an old computer to a new Macbook pro but it did not copy the playlists that are on my Nano. How can I copy the playlists and their content on the nano to the Macbook? If I automatically sync the nano from the Macbook, will it scrub the content and existing playlists on the nano?

    You need a third-party program like one of those discussed here:
    https://discussions.apple.com/message/2901170#2901170

  • Command to  provide list of all objects and their scripts from database

    Hi,
    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2
    Kindly ge me the advice
    Thanks in Advance

    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2If you want the all the metadata of whole database, then it is quiet difficult to get from DBMS_METADATA, as it is very complex because you need to gather for each object of each schema in whole database and to spool.
    http://www.orafaq.com/node/57
    I want to know, what is the use of entire database metadata, Certainly need of objects of metadata.
    or if you want to whole database, then i suggest you go for export full backup and import as impdp sqlfile option,

  • Quick question about exporting email address and their alias from Exchange 2007 mailbox

    Hi Everyone,
    We have Exchange 2007 and 2013 servers. All users are still 2007 servers. I have a list of users around 179 out of 3000 in a CSV file. I would like to export those 179 users primary smtp and their aliases. Is it possible to achieve through any script?
    Thanks in advance.
    Regards,
    Siva

    Hello Siva,
    You don't need a script for this. Information can be obtained with simple command.
    $AllUsers = Get-Mailbox -ResultSize Unlimited | Select DisplayName,Alias,PrimarySMTPAddress,SamACcountName,Database,LegacyExchangeDN
    $AllUsers | Export-Csv Outputfile.csv -NoTypeInformation
    Try this and let me know if it helps!
    if you want PrimarySMTPAddress and alias of only those users whose information on the excel sheet, then what do you have as the column name in the excel sheet which you are using to query on the server.
    Considering that you are using Alias to query the server to get the details you can try below:
    $Global:Output = @()
    $CsvData = Import-Csv Inputfile.csv
    foreach($line in $CsvData)
    {$CurrentObject = $Line.AliasWrite-Host “Processing Obect “$CurrentObject “From Csv File”
    –ForeGroundColor YELLOW$EmailIDJoin = ""$EmailAddresses = @()$UserInfo = "" | Select DisplayName,PrimarySMTPAddress,Alias,SamAccountName,Database,LegacyExchangeDN,EmailAddresses
    $UserInfo.DisplayName = (Get-Mailbox $CurrentObject).DisplayName
    $UserInfo.PrimarySMTPAddress = (Get-Mailbox $CurrentObject).PrimarySMTPAddress
    $UserInfo.Alias = (Get-Mailbox $CurrentObject).Alias
    $UserInfo.SamAccountName = (Get-Mailbox $CurrentObject).SamAccountName
    $UserInfo.Database = (Get-Mailbox $CurrentObject).Database
    $UserInfo.LegacyExchangeDN = (Get-Mailbox $CurrentObject).LegacyExchangeDN
    $EmailAddresses = (Get-Mailbox $CurrentObject)|%{$_.EmailAddresses}
    for($i=0;$i -lt $EmailAddresses.Count;$i++)
    $EmailIDJoin += $EmailAddresses[$i].ProxyAddressString
    if($i -lt $EmailAddresses.Count - 1)
    $EmailIDJoin += ','
    $UserInfo.EmailAddresses = $EmailIdJoin
    $Global:Output += $UserInfo
    #Export output to CSV File
    $Global:Output | Export-Csv GlobalOutput.csv -NoTypeInformation

  • List of variables and their classes from working script?

    I have a working script that has many variables containing finder references and file path descriptions as strings or Unicode text. It is not easy to remember what these variables refer to. Is it possible to get a listing of all of a scripts variables and their respective class?

    The only way I've seen to do this is with Script Debugger, an alternative script editor that has significant debugging tools such as breakpoints, stepping, variable inspection and more.

  • How can i get only the headings and their subheadings from word file in C#

    I want to get all the headings along their sub-headings separately from a word file programmatically Using c# for example i have following content :
    HEADING 1 XYZ
    heading 2
    heading 3
    HEADING 1 ABC
    HEADING 1 DEF
    heading 2 lorem ispum
    so my code should return me:
    Heading 1 XYZ
    heading 2
    heading 3
    seperately and similarly remaining headings and subheadings also.
    Bilal Amjad Microsoft Certified Professional

    Did you try to use OpenXml SDK to access word *.docx file in .Net?
    Use OpenXml SDK you could easily to get anything in Word (Office) documents.
    Bob Bao
    Do you still use the same Windows 8 LockScreen always? Download Chameleon Win8 App quickly, that changes your LockScreen constantly.
    你是否还在看着一成不变的Windows 8锁屏而烦恼,赶紧下载这个
    百变锁屏
    应用,让你的锁屏不断地变化起来。
     i am using the following code to get the output but it returns me all he headings and subheading together not separately 
     foreach (Microsoft.Office.Interop.Word.Paragraph paragraph in oMyDoc.Paragraphs )
                        Microsoft.Office.Interop.Word.Style style = paragraph.get_Style() as Microsoft.Office.Interop.Word.Style;
                        string styleName = style.NameLocal;
                        string text = paragraph.Range.Text;
                        if (styleName == "Title")
                            title = text.ToString();
                        else if (styleName == "Subtitle")
                            st = text.ToString() + "\n";
                        else if (styleName=="Heading 1")
                            heading1[h1c] = text.ToString()+"\n";
    Bilal Amjad Microsoft Certified Professional

  • Delete the show side bar and top sites from Safari

    I have never nor will I ever use the tabs for top sites and show sidebar which appear on Safari. How do I delete them from the tab bar?

    Robert
    aha! NOT tab bar BUT Bookmarks Bar! I guessed the TOOL bar at first. BOOKMARKS!
    In the main menu bar choose [Help] > Safari Help
    search " deleting bookmarks " > open that file
    *in my version, it says "
    You can’t remove the bookmarks bar or Bookmarks menu from the sidebar. You can’t remove History and All RSS Feeds, but you can delete individual bookmarks within them.
    To remove Address Book and Bonjour from the sidebar, open the Bookmarks pane of Safari preferences and deselect them."
    key to the bold statement is that one of the icons that you wish to disappear, may not not be removable. It is certain the 'Open Book' is there to stay.
    I have personalized my Safari so much that I don't find your "Top Sites" folder or icon - If I removed it in the Bookmarks window, it would naturally disappear from the bookmarks toolbar - if you see it in the list, remove it and I'll bet it magically disappears from the Bookmarks Bar.
    let us know
    CCC

  • Releasing DHCP and Renewing DHCP from Terminal

    Hello,
    I have read through man pages and this board, and have not been able to find out how to run a command from the terminal to release a DHCP address and run a second command to renew.
    My boss is not satisfied with bringing the interface up and down with the ifconfig command. He wants the signal sent to the current DHCP server confirming the address has been released.
    How can I do this from the terminal. Any insight is appreciated.
    DB

    Weird behavior on these commands given in the "solution"
    After running the command to renew the DHCP address, nothing shows up in the Network Preference pane. When running the command ipconfig setpacket en0 from the terminal, it shows that I have received a new address, subnetmask, and gateway. Is this a bug in 10.4.9, or am I not fully renewing DHCP?

  • Multiple projects and their promotion from Develop to Test to Production

    A customer has an interConnect infrastructure running about 5 projects. Each project has a Development, a Test, an Acceptance and a Production environment.
    This basically works, but is really cumbersome to maintain.
    They want to reduce the number of Interconnect installations as much as possible to ease maintenance. The iConnect version is 10gR1.
    As far as I can see there are two options:
    1) Put all projects into a single repository. You'd end up with only 4 InterConnect environments (Development, Test, Acceptance and Production)
    2) Put all hub schemas into a single DB
    The first one is obviously our favourite, but can you promote a single project to a new environment (say, from Development to Test) without affecting the other projects in the same repository? How difficult (if possible) is this? What are the possibilities and risks?
    What are the possibilities for option number 2?
    I hope anybody can give me some advice.
    Arjan

    Its slightly confusing about having multiple projects, the reason being the way Interconnect works is that it has a single database repository and when you create a project it is just a view on that repository. Therefore a project and a repository are essentially one and the same.
    Therefore it would imply that if you have 5 separate projects then you also have 5 separate repository instances.
    In terms of your options:
    1) is the general way that most projects work. Lets say you have DEV, SYS, UAT, PROD. Therefore you'd generally have a repository instance for each env, therefore 4 repository instances, HUBDEV - for DEV env, HUBSYS for SYS env etc... These repositories would usually be in separate Oracle Instances although they could be on the same servers. Therefore the Hub schema for all, would be the normal one installed by the product, OAIHUB904. Then you would also have a single project for each repository. This repository would hold all the metadata for all your interfaces that go though this HUB instance.
    As interfaces move through the various phases then you migrate between the different repositories, to move stuff from DEV to SYS etc...
    2) From my understanding, this is not much differnet to the above except you want to hold all the Hub schemas in a single database instance. This is possible by creating each schema with a differnet name, OAIHUB904DEV, OAIHUB904SYS etc... and you would need to change the necessary infrastructure ini files to use these new names. With this setup you would still have 1 project per repository but it would just point to the relevant schema.
    Let me know if you have any more queries.
    Regards
    Stuart.

Maybe you are looking for

  • Acrobat 9.3.4 issue: Creating single PDF from Multiple PDFs

    Hey all, My setup: • Mac OS 10.6.4 / Mac Pro dual / 6GB RAM • Adobe CS5 Master Collection • Acrobat Pro 9.3.4 Just ran into issue (critical) I have not encountered before, but it is frighteningly reminiscent of the InDesign CS5 problem of the "Docume

  • Pictures not showing up, when uploaded?

    Hey I have a website www.anchorstudios.ca. Anyways I have been using it for quite awhile for our business. Lately we have had problems with certain pages in our websites. For whatever reason instead of a picture there would be a question mark there.

  • IPhone in the Enterprise

    If i buy the 5people family plan, only me use the iphone and buy netword, so i buy $25netword per month,  5people need play $125 per month? can i pay myself

  • How to copy sqlite database from applicationDirectory to documentsDirectory

    I am having problems using the 'File' function in Adobe Flex to copy a sqlite database from the read only applicationDirectory to the users documentsDirectory.  When I use the code below the only thing that appears in the user documentsDirectory is a

  • Recurring A12E1 error code problem on Mac

    I have a problem with recurring A12E1 error code messages each time CC wants to update. If I follow these instructons: http://helpx.adobe.com/creative-cloud/kb/a12e1-error-downloading-creat ive-cloud.html , I can make one download but when it is time