Create single PO with multipule items from soco in massive way

we need to create one Purchase Order from SOCO to multipule items.
In one cart we have 50 items with no vendor.
How can we create one PO to all 50 items in massive way from SOCO?
If we will not enter vendor to all of the items, every item will be in a different PO.
Edited by: Vered Madar on Dec 9, 2010 12:42 PM

Hey Muthu,
we dont know who will be the vendor when we creating the shopping cart.
we know who will be the vendor only when we are in the SOCO.
and that is why we  need to enter the vendor to all the items in massive way from the SOCO.
we dont want PO to every item separately.
no updating the vendor in massive way to all 50 items from SOCO??
i need one PO to all items...
thanx,
vered

Similar Messages

  • How to create a invoice with invoice items in SRM?

    Hi experts,
    I am testing my BW custom code for SRM. My question is I have to create a invoice with line item 1 quantiy 20 in SRM - development. After this I have mark line item 1 with a deletion indicator X in SRM and create two more line items and load it again in BW. This time in BW it should delete line item 1 with deletion indicator X and load the two new line items that I created.
    Please tell me the T-code and step by step instructions to create it.
    Thanks in advance.
    Sharat.

    i answered by myself.

  • Using EWS to work with mail items from a range derived from Get-Date

    I am attempting to write a powershell script that uses EWS to move items from the prior month and create a folder named after that month to hold those items. 
    I am finding that the search filter only likes the format if you use .NET system.DateTime and not Get-Date.
    However it's strange, for testing I configured my variable to be the exact same format as the .NET format but it rejects it. 
    The error i receive is: 
    Exception calling "FindItems" with "2" argument(s): "The specified value is
    invalid for property."
    At line:1 char:1
    + $frFolderResult = $InboxFolder.FindItems($sfCollection,$view)
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : ServiceResponseException
    For example, if i set $startdate and $enddate like this  $startdate=(([system.DateTime]::Today.AddDays(-60)))
    $startdate returns Monday, January 20, 2014 12:00:00 AM, and the search filter works fine.
    but if i set $startdate using this: $startdate = (Get-Date).AddMonths(-1).ToString("dddd, MMMM 01, 12:00:00 AM")
    It gets rejected event though the output is exactly the same.
    i.e. Friday, February 01, 2014 12:00:00 AM
    Any help would be appreciated. 
    Thank You. 
    #Set the mailbox that this script will run against
    $MailboxName = "[email protected]"
    # Set up the API dll path, AutoDiscover URL and AD account used to access the mailbox
    Import-Module "C:\Program Files\Microsoft\Exchange\Web Services\2.0\Microsoft.Exchange.WebServices.dll"
    $service = new-object Microsoft.Exchange.WebServices.Data.ExchangeService([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::"Exchange2010_SP2")
    $windowsIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent()
    $sidbind = "LDAP://<SID=" + $windowsIdentity.user.Value.ToString() + ">"
    $aceuser = [ADSI]$sidbind
    $service.AutodiscoverUrl($aceuser.mail.ToString())
    # Determine if the script is running in January in order to set the year used in the search filter
    if ((Get-Date).Month -eq 1) {
    $searchyear = (Get-Date).Year - 1
    Else{
    $searchyear = (Get-Date).Year
    # Set variables for the search filter to move items from the prior month to a folder
    $startdate = (Get-Date).AddMonths(-1).ToString("dddd, MMMM 01,")
    $startdatetime= "$startdate $searchyear 12:00:00 AM"
    $enddate = [System.DateTime]::DaysInMonth($(Get-date).Year, $(Get-date).Month -1)
    $priormonth = (Get-Date).AddMonths(-1).ToString("dddd, MMMM")
    $enddatetime = "$priormonth $enddate, $searchyear 11:59:59 PM"
    # Set up folder path locations for the search filter
    $folderid = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Inbox,$MailboxName)
    $MailboxRoot = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::MsgFolderRoot,$MailboxName)
    $InboxFolder = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service,$folderid)
    # Create the search filter
    $Sfgt = new-object Microsoft.Exchange.WebServices.Data.SearchFilter+IsGreaterThan([Microsoft.Exchange.WebServices.Data.ItemSchema]::DateTimeReceived, $startdatetime)
    $Sflt = new-object Microsoft.Exchange.WebServices.Data.SearchFilter+IsLessThan([Microsoft.Exchange.WebServices.Data.ItemSchema]::DateTimeReceived, $enddatetime)
    $sfCollection = new-object Microsoft.Exchange.WebServices.Data.SearchFilter+SearchFilterCollection([Microsoft.Exchange.WebServices.Data.LogicalOperator]::And);
    $sfCollection.add($Sfgt)
    $sfCollection.add($Sflt)
    # Perform the search
    $view = new-object Microsoft.Exchange.WebServices.Data.ItemView(5000)
    $frFolderResult = $InboxFolder.FindItems($sfCollection,$view)
    # define the destination folder name, check if the destination folder exists
    $foldermonth = (Get-Date).AddMonths(-1).ToString("MM")
    $newFolderName = "$foldermonth$searchear"
    $fvFolderView = new-object Microsoft.Exchange.WebServices.Data.FolderView(10)
    $SfSearchFilter = new-object Microsoft.Exchange.WebServices.Data.SearchFilter+IsEqualTo([Microsoft.Exchange.WebServices.Data.FolderSchema]::DisplayName,$newFolderName)
    $findFolderResults = $service.FindFolders($MailboxRoot,$SfSearchFilter,$fvFolderView)
    # Create the destination folder if necessary
    if ($findFolderResults.TotalCount -eq 0){
    $NewFolder = new-object Microsoft.Exchange.WebServices.Data.Folder($service)
    $NewFolder.DisplayName = $newFolderName
    $NewFolder.Save($MailboxRoot.Id.UniqueId)
    else{
    # Folder Already Exists - Do Nothing
    # Move the items in to the destination folder
    foreach ($miMailItems in $frFolderResult.Items){
    "Moving" + $miMailItems.Subject.ToString()
    [VOID]$miMailItems.Move($NewFolder.Id.UniqueId)

    The Managed API is expecting you to pass a Typed Value not a String so if you just use
    $startdatetime= [System.DateTime]::Parse("$startdate $searchyear 12:00:00 AM")
    That should work okay, the Managed API itself will then covert it to and from UTC and then submit the query eg
    <m:Restriction>
    <t:IsLessThan>
    <t:FieldURI FieldURI="item:DateTimeReceived" />
    <t:FieldURIOrConstant>
    <t:Constant Value="2014-02-24T03:26:34.889Z" />
    </t:FieldURIOrConstant>
    </t:IsLessThan>
    </m:Restriction>
    Which you can see yourself if you enable tracing eg
    $service.TraceEnabled = $true
    Cheers
    Glen

  • How can I create a array with all files from a directory

    How can I create a array of files or varchar with all files from a directory?

    I thought the example could be improved upon. I've posted a solution on my blog that doesn't require writing the directory list to a table. It simply returns it as a nested table of files as a SQL datatype. You can find it here:
    http://maclochlainn.wordpress.com/2008/06/05/how-you-can-read-an-external-directory-list-from-sql/

  • SM Portal display issue while creating incident classification with child items

    Hii,,
    We need to create some incident classification with child items. After creating classification with child items, portal is not showing the classification properly and the page display not showing properly. i.e. showing a block with drop down instead of simple
    drop down as same as for urgency. Please find the snapshot and suggest..
    Regards, Syed Fahad Ali

    The portal flattens those lists, so sadly this is normal behaviour. I would assume it sorts the list according to ordinal which means you may be able to atleast get a list in the correct order. 
    ex. Ordinal in paranthesis
    1. Hardware (1)
    1.1 Printers (3)
    2. Software (2)
    2.1 Windows (4)
    I would expect this list to be flattened into
    Hardware
    Software
    Printers
    Windows
    You see? In order to edit ordinal you would have to edit the list manually in XML. Tons of ressources on how to do that. 
    Cheers,
    Anders Spælling
    Senior Consultant
    Blog:  
    Twitter:   LinkedIn:
    Please remember to 'Propose as answer' if you find a reply helpful

  • How to create single user and bulk users from back end in ebs r12?

    Hi all,
    how to create users from back end in oracle application R with responsibilities?
    Thanks in Advance,
    Sandeep
    Edited by: user2584435 on 17 Nov, 2009 11:14 PM
    Edited by: user2584435 on 17 Nov, 2009 11:14 PM

    Hi,
    I have created user san1 with below mention pkg and added sysadmin with below mention pkg.
    BEGIN fnd_user_pkg.CreateUser(x_user_name =>'san',
    x_owner =>'CUST',x_unencrypted_password => null,
    x_description => 'new_desc2',x_email_address => '',x_fax => '');
    end;
    DECLARE
    v_user_name VARCHAR2(30) := upper('&Enter_User_Name');
    BEGIN
    fnd_user_pkg.addresp(username => v_user_name
    ,resp_app => 'SYSADMIN'
    ,resp_key => 'SYSTEM_ADMINISTRATOR'
    ,security_group => 'STANDARD'
    ,description => 'Auto Assignment'
    ,start_date => SYSDATE - 10
    ,end_date => SYSDATE + 1000);
    END;
    Q. I am able to login but dont having any responisibility,why?
    Regards
    Sandeep.

  • Create a list with associated workflow from a list template.

    Hi,
    I have a calendar list with two workflows and I saved it as list template. Also I have an event receiver which creates a list based in this list template I created, but I noticed that the list is created without workflows. If I create the list
    using the list template using SharePoint it does it with the workflows but my event receiver does not.
    Here is my code:
    if
    (list == null){
    web.AllowUnsafeUpdates =
    true;
    var lstTemp = web.Site.GetCustomListTemplates(web);
    var template = lstTemp[listTemplate];
    var listId = web.Lists.Add(listName,
    string.Empty, template);
    list = web.Lists[listId];
    list.Title = listName;
    list.OnQuickLaunch =
    false;
    list.Update();
    web.AllowUnsafeUpdates =
    false;
    Thanks anyway.

    Hi,
    According to my understanding, you have a list template contains workflow, you can create a new list with this template from UI. However, when create a list with this
    template in Event Receiver, the workflow is missing.
    I tried to reproduce by creating a list template contains an OOTB Approval workflow, then use an Event Receiver to create a list with this template, it turned out
    that the workflow is attached to the newly created list.
    I would suggest that you create another Event Receiver with the code snippet below to see if it is an issue of Event Receiver:
    public override void ItemAdded(SPItemEventProperties properties)
    base.ItemAdded(properties);
    createListWithTemplateWithWF(properties);
    public static void createListWithTemplateWithWF(SPItemEventProperties properties)
    using (SPSite site = properties.Site)
    using (SPWeb web = site.RootWeb)
    SPListTemplateCollection listTemplates = site.GetCustomListTemplates(web);
    SPListTemplate listTemplate = listTemplates["ListTemplate_List001_withWF"];
    web.Lists.Add("List005", "List005", listTemplate);
    Feel free to reply with the test result or if there any questions about this.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How to create pricing procedure with these items

    hello sd gurus,
    i am to configure pricing procedure with this items
    condition type : Price --> statics
                           cost
                                FOC with tax base
                                FOC with tax
                                profit margin
                            discount
    this is for free of charge item...'
    is this possible?
    thank you very much!

    hello sd gurus,
    i am to configure pricing procedure with this items
    condition type : Price --> statics
                           cost
                                FOC with tax base
                                FOC with tax
                                profit margin
                            discount
    this is for free of charge item...'
    is this possible?
    thank you very much!

  • Creating single executible with global variables

    I am trying to create an executible with global variables. I dynamically load the source file but when I run the indicator does not update unless I run both VI's together. Is the executible require different inputs during creation?

    Hello,
    It's not the fact that you are creating an executable that is causing the issue. What you are experiencing is expected behavior. Please see this KnowledgeBase" for some solutions.
    Nicholas C
    National Instruments
    Applications Engineering

  • PO created with negative qty from SOCO

    Hi All,
    Scenario : SHC is converted into PO, but the PO is deleted for some reason and when the user tries to create a new PO for the same SHC, the PO created if for negative qty.
    Since negative qty are not allowed , system throws dump whenever we try to get in change mode in the PO..
    What could be the reason ?? and what is the solution ...
    System : EBP 4.0 and ECC.
    Harish

    Dear Sapman,
    There are two possibilities this to happen,
    1. User might have default setting done at header for the Purchase Group.
    2. For Purchase grp parameter id, default setting might have done for the user in SU02. ( Check default parameters for that user)
    Thanks & regards,
    Krishna Reddy

  • Create new folder with selected items

    I have a bunch of movies that I would like to place into individual folders of the same name (Without the extension name). I wanted to try and create a keyboard command to do this with the selected files, but can't manage to figure out how!
    What I did was try to create a new service command in automator, then went to keyboard shortcuts in system preferences to assign a keyboard command to it.
    I want to make something that works like control-command-n (to create new folder from selected items), only I want the items to be in individual folders of the same name.
    eg.
    Files selected such as:
    The incredibles.avi
    Cinderella.mkv
    Dogma.mp4
    each moved into individual folders labeled as:
    The Incredibles
    Cinderella
    Dogma
    Also, is there a way to change the control-command-n shortcut so it can create a new folder from a single item? It only works when there is more than one file selected.
    Thanks so much for any help!

    I am going to guess that you start off with a single file - what are you doing to generate these files? My *Get Names of Finder Items* action can get a name to use in the *New Folder* action - items passed to the New Folder action will get copied to it, so a little more detail may help in creating the workflow.
    The *Dispense Items Incrementally* action can also be used to dole out the items one at a time - knowing what the workflow is doing would help with the use of this action as well.

  • Automatically create iCal entry with email alarm from a Mail.app email?

    Hi..
    Hope you can help?
    I want to set up Mail.app/iCal so that it automatically creates a new iCal entry in a specific calendar when an email is received...
    Is there a Plug-in etc that will do this?
    This reason I am asking is that I am trying to put a link on my online store where people can click for a gift reminder email that will be sent to them on a date they specify.
    The link could pop-up a new email window pre-filled with Subject: 'Gift Reminder' and addressed to '[email protected]' They would be instructed to enter a single date in the text area and press Send...
    Then, when Mail.app receives the email, it would move it to a Folder called 'Gift Reminders' and automatically set up a new iCal entry that has an alarm to email the sender on that date with an email containing the Subject 'The Gift Reminder you Requested' etc and some different text in the body... It would be great if this could be set up to repeat annually also as the gift reminder is primarily for birthday gifts...
    Id there a script / plug-in or way of making this happen??
    Any help greatly appreciated, though my knowledge of scripts / Automator etc is quite limited I am willing to try out any suggestions!
    Thanks,
    Jon.

    Tried a restart which showed 2183 emails unable to move which is kind of bonkers and had to quit Mail> restart and moving emails from search now appears to be working. Apple owes me about 500 hours of my life so far with Mavericks!

  • Creating a cd with multiple tracks from a multitrack session

    I am trying to burn an audio cd with multiple tracks created from a multitrack session. Adobe 3.0 used to make this an easy process. I am only able to burn a cd with a single track regardless of range markers, cd track markers, etc.
    Any help would be greatly appreciated.

    Hi and thank you for your reply. I am used to the functionality of audition 3.0. I place tracks from my hard drive into a session (usually 18 or so). I used to add markers, then file>export>multitrack mixdown>entire session. The resulting mixdown used to keep the markers. I am not familiar with how to save each track separately and I place the markers in the file during the session creation but before export>mixdown, etc.
    Thanks

  • What's the best way to create XML file with a schema from a database table?

    Hi,
    I want to create an XML file from a database table (which has over 600 columns) using XML schema (.xsd file). I want to know the best way to do this.
    The output XML file is NOT a direct data dump from the DB table, there�re some logic around it, such as the XML file has some hierarchy with repeating tags.
    I have done this using JAXB by creating Java classes form XML schema, but I don�t want to map 600 DB columns to these Java classes manually, and loop through the record set to create repeating tags.
    I know there are few tools around now like MapForce (Altova), how do people do these now?
    Thanks,
    Chandi

    Can you use a schema when we compose XML doc from Database tables?
    Actually, I'm using SQL Server (sorry, wrong forum). But, I thought a Java tool would have a solution for me.

  • Problem with removing items from a linked list

    Hello,
    I have something weird going with my code. Below is the snippet
    if (ParserDataList.isEmpty())
    try {
    Thread.sleep(10)
    catch (InterruptedException e) {
    else
    data = ParserDataList.remove();
    ParserDataList is declared as a LinkedList. Occasionally I receive the error on NoSuchElement on the remove. I put a try/catch around the remove and print out the value of ParserDataList.isEmpty which is always false. I am very confused on why if the linked list isn't empty I can't remove a data item. There are no other threads that remove data. Thank you in advance for any assistance on this problem.

    I am changing it from linked list to blocking queue however I do have a question about what I should use to poll the data? Instead of a remove should I use take which seemed to remove the first element and if there wasn't one wait until there was. I was trying to not have the threads blocked because I do need to stop them when a disconnect is sent from the main thread.

Maybe you are looking for

  • File opening hang in lion 10.7.2

    I'm using a new mac book pro ( MD318 ) . recently I had a problem with file opening in finder. after I am trying to open the folder in finder , it hangs and I have to wait about 1~2 minutes for opening the folder. I followed this http://www.macworld.

  • Problem with Stills

    Coming from Premiere 6.5, I have a bunch of jpgs saved at 720x530. When I import them into CS3 they are "squished" (yes, I'm not a pro) and the subjects look fat. I revised a few to 720x480, and they appear in the source window just fine, but in the

  • Error Initiating travel form in transaction TRIP

    Hi In transaction TRIP, after clicking change approved travel expense report, travel expense details are displayed. When I click on Results button, it is giving error message: Error while initiating travel form Message no. 56568. Can someone kindly h

  • Photoshop CS + Camera Raw + Nikon D80

    Hello, I'm using P'shop CS on MAC 10.4.9 and recently upgraded my camera to a Nikon D80. I discovered that P'shop CS does not support D80 RAW thru the existing RAW plug-in (2.4) --apparently, the Camera RAW plug-in is supported by P'shop CS up thru v

  • Mouse clicking, clicking, clicking, and...

    I've got a 17" PowerBook G4. It's a little bit sick but it works. I have a hard time using the track pad, though, because of lack of precision. And I've always used a wired Apple Mouse. Occasionally when I open the computer and plug in the mouse, the