Output problem with delivery

Hi Gurus,
I created a sales order with two service items. A delivery was created which had both the service confirmations. When I do the goods issue, the material document that is printed out picks up the Confirmation of service document and not the delivery number. Could you tell me the configuration area I need to check?
Please help with your thoughts.
Regards
Kumar

Resolved

Similar Messages

  • Problem with Delivery IDOC staus 51

    Hi all,
    I have problem with Delivery IDOC.
    An IDOC is sent from the logistics provider with reference to a manually created delivery, which creates another IDOC & another partial delivery.
    The second IDOC created then confirms the partial delivery created by the first IDOC.
    When IDOC try to confirm this delivery, it goes to status 51 with error " Delivery does not exist".
    In some case IDOC was correctly processed & confirmed the delivery.
    In some cases it went wrong.
    Any ideas regarding this?

    Hi Suneel,
    It seems there is timing issue between the first IDoc and second IDoc.
    When the first IDoc has not yet commit to DB then the second IDoc tries to process with reference to the first IDoc.
    Is there any that can distinguish between 1st and 2nd IDocs?
    In other word, can you post the second IDoc within minutes delay?
    Just my two cents.
    Regards,
    Ferry Lianto

  • Griffin iMic output problems with iTunes

    I bought an Griffin iMic so that I could listen to my iTunes library through my home stereo. However, I am having problems with the output. I have tried several different ways of connecting the iMic to my stereo, but I am not getting any sound output. It SHOULD work but it is not. Are there any known problems with iTunes and iMic and Max OS X 10.2.8?

    I got this message from Griffin Technology
    Technical Support, and it seemed to help with my sound quality output, even though it talks more about sound input.
    Hello,
    Sorry for the delay in my response.
    First, let's make sure you're getting an input signal.
    The easiest way to make sure that you're receiving an input signal
    from the iMic is to go to your System Preferences/Sound Preferences.
    Click on the INPUT tab and select iMic from the list of devices.
    Below the list of devices is a Input Volume slider and a virtual
    input meter. If you're seeing those lights move, there is a signal
    coming into the device. The Input Volume slider is there to boost
    up or help drop the amount of signal needed. A good signal should
    stay somewhere around the middle of those meter lights.
    Then click on output and be sure you have "built-in audio" selected.
    Then you will have to either open Final Vinyl and select "preview"
    to hear the audio come through your speakers.
    Also check your Audio/MIDI Setup. Open your Applications folder
    from the Finder, and scroll through the applications, down to
    "Utilities." Select that, and then choose "Audio/Midi." From here,
    set the "Properties For" or "Settings For" to iMic USB Audio System.
    Then set both the input and the output to 16bit 2 channel 44100Hz.
    Hope this helps,
    Rachel
    Griffin Technology
    Technical Support

  • Audio input/output problems with Mac Mini

    at first, my sound just stopped working all together and for some reason the monitor was getting no signal from the mac mini. i unplugged everything for a minute and plugged it back in and the monitor was working again, but still nothing with the sound. no sound coming out from even the internal speaker, and the audio in jack (which i use frequently) stopped working as well.
    this is the really strange part: after tinkering around trying to fix the problem i realized the only sound that comes out it is from the internal speaker, but it only comes out when i have something connected to the headphones jack.
    has anyone ever had a problem like this? i'm just trying to figure out if it is something i can take care of myself, or if i might need some repairs done.

    OK, then two things to do.
    First reset parameter RAM - it's an area of non-volatile memory used for system settings and hardware configuration. It it gets corrupted, it can cause odd problems.
    Reset PRAM
    -Shut down the computer.
    -Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in the next step but one.
    -Turn on the computer.
    -Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    -Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    -Release the keys.
    Next, perform an SMC reset. The SMC is the device which controls system hardware and devices, so if there is a problem with hardware components not functioning, it could be that.
    To reset the SMC on an Intel mini:
    -From the Apple menu, choose Shut Down (or if the computer is not responding, hold the power button until it turns off).
    -Unplug all cables from the computer, including the power cord and any display cables.
    -Wait at least 15 seconds.
    -Plug the power cord back in, making sure the power button is not being pressed at the time.
    -Then reconnect your keyboard and mouse to the computer.
    -Press the power button on the back to start up your computer.

  • Scheduling problem with delivery date in purch.req and requirement date

    Dear all,
    I have the problem, that the calculated delivery date in the purchase requisition does not correspond with the requiement date of the production or planned order.
    I would like to use planned delivery times in the material master.
    Example:
    Planned delivery time: 20 days
    Todays date 01.10
    Case 1)
    Requiement date of planned order 10.10
    Case 2)
    Requiement date of planned order 20.09
    This situation can happen in our envirnoment, as the engineering process still continues after start of production. In this case I would like to have the following result:
    Case 1)
    Delivery date is 10.10 minus the goods receipt time
    Case 2)
    Delivery date is day of MRP or one or two days more
    I made the setting that dates in the past are not allowed. This solves my first smal problem. I tried to set the scheduling margin key but these settings do not help me, as they are relevant for all materials. I need of course individual planned delivery dates per material.
    So, I want to change the standart MRP procedure that in the case of the "wished requirement date" not the calculated date is beeing taken, but the "wished date". Usually you receive an exeption for this case and you would need t solve this manually. But this we dont want to do.
    Can s.o. please help me? Thank you all very much, I really dont know what to do in this case.
    With best regards,
    Bjoern

    The question cannot be answerd by SAP standart as I see. We will go through a workaround.

  • Output Problem with my problem help please

    Here is the Instruction to the problem:
    An interesting problem in number theory is sometimes called the ?necklace problem.? This problem begins with two single-digit numbers. The next number is obtained by adding the first two numbers together and saving only the ones-digit. This process is repeated until the ?necklace? closes by returning to the original two numbers. For example, if the starting numbers are 1 and 8, the output would look like:
    18976392134718
    and below is my program:
    public class Necklace
         public static void main(String[] args)
              int f, s, sum, n, p;
              String first = JOptionPane.showInputDialog ("Enter first number:");
              String second = JOptionPane.showInputDialog ("Enter second number:");
              f = Integer.parseInt (first);
              s = Integer.parseInt (second);
              sum = f + s;
              n = sum % 10;
              p = s;
              while (!(p == f && n ==s))
                   sum = n + p;
                   p = n;
                   n = sum % 10;
              String output = f +""+ s +""+ ++n+"";
              JOptionPane.showMessageDialog (null, output, "Necklace", JOptionPane.INFORMATION_MESSAGE);
    My problem is that I don't know or have any idea how to make the output so it will show all the numbers in between, my ouput it only show the first 3 number, 1 8 and 9

    My problem is that I don't know or have any idea how to make the output so it will show all the numbers in between, my ouput it only show the first 3 number, 1 8 and 9Hello and welcome to the forum. First and foremost, please use code tags when posting code here so that your code will retain its formatting and thus will be readable -- after all, your goal is to get as many people to read your post and understand your code as possible, right?
    To do this, highlight your pasted code (please be sure that it is already formatted when you paste it into the forum; the code tags don't magically format unformatted code) and then press the code button, and your code will have tags.
    Another way to do this is to manually place the tags into your code by placing the tag [code] above your pasted code and the tag [code] below your pasted code like so:
    [code]
      // your code goes here
      // notice how the top and bottom tags are different
    [/code]For instance, here is your code with tags:
    import javax.swing.JOptionPane;
    public class Necklace {
       public static void main(String[] args) {
          int f, s, sum, n, p;
          String first = JOptionPane.showInputDialog("Enter first number:");
          String second = JOptionPane.showInputDialog("Enter second number:");
          f = Integer.parseInt(first);
          s = Integer.parseInt(second);
          sum = f + s;
          n = sum % 10;
          p = s;
          while (!(p == f && n == s))
             sum = n + p;
             p = n;
             n = sum % 10;
          String output = f + "" + s + "" + ++n + "";
          JOptionPane.showMessageDialog(null, output, "Necklace",
                   JOptionPane.INFORMATION_MESSAGE);
    }Next, you can declare your output String before the while loop, and then concatonate a new int on to this inside the loop. Perhaps an even better way is to use a StringBuilder object.

  • Speaker output problems with X-Fi XtremeMu

    Today, I bought an X-Fi XtremeMusic card because I was sick of trying to coax my onboard audio to work. I own a set of Logitech Z-5500Ds, and the rear and centre speakers were gathering more and more dust, while my onboard sound refused to work. I should add, my onboard sound did work for a few weeks, but stopped working after what I assume was me installing something that conflicted with it. Anyway, enough about that. I purchased the X-Fi XtremeMusic in the hopes that it would resolve my problems.
    Before doing anything, I disabled my onboard audio in the BIOS. After this, I put the card in my computer and installed all the SB X-Fi software and drivers. I restarted, as directed, and when I logged on into my account, The Creative speaker set-up greeted me. I went through the process of selecting my speaker setup (5.) and testing the channels. Left and Right channels worked perfectly, which was expected. When I tested the Rear Left and Rear Right speakers, however, the sound came from the Left and Right speakers, respecti'vely. Moving on to the the Center/Sub test, I was even more disappointed when the Center sound came out of the Left, Right AND Center speakers, and the Sub sound came out as a quiet white noise from both the Left and Right speakers. Now this is EXACTLY what was happening before I bought the card, and I really don't know what to do.
    I really want to resolve this issue, so I ask for anyone's help. As of now, I've uninstalled all the drivers and software from Creative, and ready for any advice I'm given.
    Thanks
    EDIT: I should also add that I'm POSITIVE that everything is plugged in correctly, and that my Rear and Center speakers, as well as my sub work, because I've hooked up my speakers to my Xbox via Optical, and they all work perfectly.Message Edited by FlamingNinja on 07-06-2006 05:28 AM

    OK, I had a go at installing the drivers again. Here's the deal. In the speaker setup, the same as before is happening. I ignored this, and continued through the setup. To see if it would even output any sound to my rear speakers, I opened up the Entertainment Window and activated CMSS-3D, and moved it to 50%. Sure enough, it outputs sound to my rear speakers. Can anyone suggest why the test doesn't work though?
    I'll try testing a 5. DVD tomorrow and seeing what happens. I'm really hoping the speaker setup is in the wrong.Message Edited by FlamingNinja on 07-06-2006 07:46 AM

  • Excel Output problem with XML Publisher Report

    Hi Experts,
    I am working on XML Publisher report with EBS 11i and database 9i. My XML Report output type is EXCEL, i have below issue with the output.
    I have column 'quantity' with xml tag <?QUANTITY?>.
    In the XML file it's showing the value '028' for quantity, but when i open the output in EXCEL, it's showing up '28', removing leading zero. I want to show the data in EXCEL also '028'. Could somebody help me how to print the XML Tag value as it is in EXCEL output.
    Thanks in advance.

    Hi, try using this in your template.
    <fo:bidi-override direction="ltr" unicode-bidi="bidi-override"><?QUANTITY?></fo:bidi-override>

  • Problem with delivery of outside email

    i am at a complete loss and not sure where to go from here, my problem is i can receive messages internally, but messages that come in from outside are accepted through smtp, go through the filter, sit in the queue, and then disapear, they are not delivered to the account and i am not sure where they go after that any help would be apreciated have been searching through these discussion tried some things but no luck, i have turned the filter off, added stuff to mynetwork things like that
    alias_maps = hash:/etc/aliases
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    html_directory = no
    inet_interfaces = all
    mail_owner = postfix
    mailboxsizelimit = 0
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mydestination = $myhostname,localhost.$mydomain,localhost,ultrarocketaccess.com,mail.ultrarocke taccess.com,10.0.1.253,24.130.71.94
    mydomain = ultrarocketaccess.com
    mydomain_fallback = localhost
    myhostname = mail.ultrarocketaccess.com
    mynetworks = 127.0.0.1/32,10.0.1.253/32
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    ownerrequestspecial = no
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    recipient_delimiter = +
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = postdrop
    smtpdenforcetls = no
    smtpdpw_server_securityoptions = cram-md5
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdtls_certfile = /etc/certificates/smtp.crt
    smtpdtls_keyfile = /etc/certificates/smtp.key
    smtpduse_pwserver = yes
    smtpdusetls = yes
    unknownlocal_recipient_rejectcode = 550
    virtualmailboxdomains = hash:/etc/postfix/virtual_domains
    virtual_transport = lmtp:unix:/Volumes/external disk/mailserver/database/socket/lmtp

    ok i changed my external name to stuff, still the same problem below is my smtp log, and imap log
    smtp:
    Jan 31 14:09:40 ultrarocketaccess postfix/cleanup[13844]: 0F663500FD4: message-id=<[email protected]>
    Jan 31 14:09:40 ultrarocketaccess postfix/qmgr[13819]: 0F663500FD4: from=<[email protected]>, size=1312, nrcpt=1 (queue active)
    Jan 31 14:09:53 ultrarocketaccess postfix/smtpd[13848]: connect from localhost[127.0.0.1]
    Jan 31 14:09:53 ultrarocketaccess postfix/smtpd[13848]: 4EBC3500FEB: client=localhost[127.0.0.1]
    Jan 31 14:09:53 ultrarocketaccess postfix/cleanup[13844]: 4EBC3500FEB: message-id=<[email protected]>
    Jan 31 14:09:53 ultrarocketaccess postfix/qmgr[13819]: 4EBC3500FEB: from=<[email protected]>, size=1780, nrcpt=1 (queue active)
    Jan 31 14:09:53 ultrarocketaccess postfix/smtpd[13848]: disconnect from localhost[127.0.0.1]
    Jan 31 14:09:53 ultrarocketaccess postfix/smtp[13845]: 0F663500FD4: to=<[email protected]>, relay=127.0.0.1[127.0.0.1], delay=17, status=sent (250 2.6.0 Ok, id=13827-01, from MTA: 250 Ok: queued as 4EBC3500FEB)
    Jan 31 14:09:53 ultrarocketaccess postfix/qmgr[13819]: 0F663500FD4: removed
    Jan 31 14:09:55 ultrarocketaccess postfix/pipe[13850]: 4EBC3500FEB: to=<[email protected]>, relay=cyrus, delay=2, status=sent (mail.ultrarocketaccess.com)
    Jan 31 14:09:55 ultrarocketaccess postfix/qmgr[13819]: 4EBC3500FEB: removed
    Jan 31 14:10:11 ultrarocketaccess postfix/smtpd[13840]: disconnect from uproxy.gmail.com[66.249.92.207]
    imap
    Jan 31 14:08:48 ultrarocketaccess imap[13830]: AOD: getting mail attribute for user: houston
    Jan 31 14:08:48 ultrarocketaccess imap[13830]: AOD: mail enabled
    Jan 31 14:08:48 ultrarocketaccess imap[13830]: AOD: mbrcheck_servicemembership with accessallservices
    Jan 31 14:08:48 ultrarocketaccess imap[13830]: AOD: mail service ACL NOT enabled
    Jan 31 14:08:48 ultrarocketaccess imap[13830]: login: ultrarocketaccess.com. [10.0.1.253] houston CRAM-MD5 User logged in
    Jan 31 14:08:48 ultrarocketaccess imap[13830]: quota set to "unlimited" for mailbox user.houston
    Jan 31 14:12:15 ultrarocketaccess imap[13829]: accepted connection
    Jan 31 14:12:15 ultrarocketaccess imap[13829]: AOD: user opts: no-lookup for: houston
    Jan 31 14:12:16 ultrarocketaccess imap[13829]: login: ultrarocketaccess.com. [10.0.1.253] houston CRAM-MD5 User logged in
    Jan 31 14:12:16 ultrarocketaccess imap[13829]: quota set to "unlimited" for mailbox user.houston
    Jan 31 14:12:17 ultrarocketaccess imap[13829]: open: user houston opened INBOX
    Jan 31 14:12:17 ultrarocketaccess imap[13830]: accepted connection
    Jan 31 14:12:17 ultrarocketaccess imap[13830]: AOD: user opts: no-lookup for: houston
    Jan 31 14:12:17 ultrarocketaccess imap[13830]: login: ultrarocketaccess.com. [10.0.1.253] houston CRAM-MD5 User logged in
    Jan 31 14:12:17 ultrarocketaccess imap[13830]: quota set to "unlimited" for mailbox user.houston

  • Problem with Delivery, Sales and Conditions cubes

    Hello everybody,
    I will be thankful to you all if you can send a reply ASAP as I need the solution immediately . I have 2 Questions:
    No.1:
    I am developing Delivery, Sales and Conditions cubes. I am using 2LIS_11_VAITM data source for Sales, 2LIS_12_VCITM for Delivery, and 2LIS_11_VAKON for Conditions. Here I have a problem. I am putting the 3 Cubes in a Multiprovider. I am planning to use 0DOC_NUMBER (Sales Document number) to combine these 3 cubes in a Multiprovider. 0DOC_NUMBER is mapped to VBELN field for Sales and Conditions cubes. But I have mapped VBELN to 0DELIV_NUMB in Delivery Cube. But I need a 0DOC_NUMBER in the Delivery cube as well inorder to join the 3 cubes in a Multiprovider. Can I use field VBELV(Originating document) from the Delivery Data source, 2LIS_12_VCITM, and map it to 0DOC_NUMBER? Will VBELV give me the same data as VBELN? Or should I map VBELN from Delivery datasource to 0DOC_NUMBER in the Delivery cube and not include 0DELIV_NUMB in the cube? Or Is there any other way to do this? We are using BW 3.5.    
    No.2:
    My second Question is that in the Conditions cube, should I need to create different Key figures to store the Condition values for different Condition types or is one Key figure is sufficient to store the condition values for different condition types? We have 4 condition types.
    Your suggestions will be greatly appreciated.
    Thanks a lot in advance.
    Kind Regards,
    Swathi.

    Hi Swathi
    IF you are developing your own cubes and using the standard infosources you can include sales order number in 2lis_12_vcitm. Just check if sales order number is preosent in 2lis_12_vcitm. if present you can map that to 0doc_number and then load it the cube.
    2. As there are no condition type present in sales and delivery, you will not get the data in the report based on multiprovider. If you want only condition types data then you can directly write a report on condition cube.
    it completely depends on how you design your multiprovider.
    REgards
    Rak

  • Digital output problem with new Audigy 2 driv

    I updated to the 02.08.0004 drivers today and everything seemed fine till after I calibrated my speakers within speaker settings. I have Z680s hooked up to a Audigy 2 PCI card using both digital out and analog. As with previous drivers I calibrated using 6 Channel direct input.
    Anyway, the problem is that when I use windows media player or any other media app, with the speakers set to Coax input (digital) I get the sound coming from the rear 2 speakers, instead of through the front 2 as it should. However, this only happens if I choose a speaker calibration under speaker settings.
    It's a bit annoying because I didn't have this problem before. Anyone else have this problem or a solution? Or is it a case of Rolling back to an old driver and hoping the problem doesn't stick?
    Thanks

    Anyone have any ideas?

  • Import purchase - problem with delivery costs

    Hi guys,
    In case of import purchase, we are normally giving 3 to 4 types of delivery costs (like freight,agency charges etc).  If there is no transaction done against the PO, we are able to either change or add new delivery cost to the Purchase Order.  But if we try to make changes or add one more condition type (related to delivery cost), after preparing inbound delivery/goods receipt against the PO, it is not allowing.  Do we need to make any configuratin changes for this to happen.
    Please suggest us the way out for this problem.
    Thanks in advance,
    Chintu

    Hi ,
    No , you won't be able to make any changes specially to the said condition .
    Any adjustment u can done  in MIRO document .
    Thanks
    Dipak

  • Problem with Delivery due list VL10b for STO's - Orders not disappearing

    Hi
    We have a problem where some 'Stock Transfer orders' are not disappearing from the delivery due list VL10b
    Collective processing of documents due for delivery - Purchase orders
    hence we have had two deliveries created for one STO order, which in turn has been goods receipted
    Any ideas on what the cause of this problem could be ?
    The quantities have not been changed on the STO
    Please help
    Thanks
    Tony

    Hi
    Checked OVLP   item category     NLN    standard stock Trans item      IS relevant for picking
    Over delivery Option is blank currently - what will happen if i change to B ?
    Thanks
    Tony
    Edited by: Tony Lannon on Aug 5, 2009 3:33 PM
    Edited by: Tony Lannon on Aug 5, 2009 3:34 PM

  • Problem with Delivery Type Determination in Purchase Order

    Dear All,
    We are working on a IS-Retail Scenario where we are dealing with generic articles. While creating a PO, we have encountered an error which says:"Also specify a delivery type in case of shipping data relevance". The error message number is MEPO 099. We have checked that Delivery type NL is attached to the document type under the supplying site customizing, and supplying site is attached to the receiving site with the correct document type. Can anybody throw some light on what we might be missing out in this scenario?
    Thanks and Sincere Regards,
    Amitabha

    Hi
    I suppose you are creating a retuns PO ,
    Please maintain the customizing of the same in SPRO-> MM -> Purchasing-> Purchase Order-> Returns Order-> Store Return / Return Plant to Plant
    here you need to maintain the delivery type for returns.
    This message is trigerred only in case of Returns order
    In SAP Retail, plants are referred to as distribution centers or stores. With store returns, you can map the return delivery of goods from
    a store to a distribution center (this is the most common case),
    from one distribution center to another distribution center,
    from one store to another store,
    from a distribution center to a store (although this is not very common).
    Requirements
    For the return delivery types, you have to make settings for the item category determination.
    Partner schema must be assigned to the return delivery types.
    The relevant goods movement types must be assigned to the schedule line categories (for the returns in Sales). The following schedule line categories are also available in the system:
    NR - Replenishment Returns and
    NS - Replenishment Cross Company Returns
    Activities
    Assign the required return delivery type to
    purchasing document category F (purchase order),
    purchasing document type (NB - standard purchase order, UB - stock transport order),
    the supplying plant (the one to which the goods are being returned)
    The following return delivery types are available in the system:
    NLR - intra-company-code store returns (purchasing document type UB for replenishment and return orders, delivery type NL for the replenishment delivery)
    NCR - cross-company-code store returns (purchasing document type NB for replenishment and return orders, delivery type NLCC for the replenishment delivery)
    Please maintain the required customizing
    Thanks & Regards
    Kishore

  • Output Problem with Smartform Lines

    Hai i have done an HR payslip by using smartform.All the form output has gone perfectly, but the lines given to template are not reflecting in the hardcopy of the printout but we can see these lines in output properly.
    My client is using Epson Line Printer . while i have taken a print out some lines are reflecting and some or not.
    I have tested the same SF form in HP laserjet Printer ,
    where iam getting the output with proper results.
    Pls let me know the solution whether i have done any mistake while designing the template.

    hi,
        whats the page format that u have used for ur smartform? Pls check that u using the same settings in the printer as well.
    Nayan

Maybe you are looking for

  • GRN Report for 103 and 105 movement

    Hi all IS there any report available in SAP Like i have done GRN with movement type 103 and 105 So i want to know for a specific plant against specific movement type let us say my po is of 100 quantity i have done GRN for 20 qty mov type 103 and 20 q

  • Beginner Question re: SWF files and FLA files

    Hi, Im new to flash. I have some templates (in FLA format with all supporting files...xml; html; and the swf file). When using html templates, I can modify the content easily by simply adding or changing the text <p>original text</p> to <p>steve cust

  • Populating WEBGROUPS (or GROUPS) session variable in OBIEE 10g

    We have a user who wants to verify that group-based permissions to various reports he's creating work as expected. Initially, he wanted a user account per group, but as we try to enforce LDAP-based authentication, we have a policy against so many "ge

  • MacBook Install DVD on MacBook Pro?

    Anyone know if I can use Macbook installer discs on a MacBook Pro?

  • AE in admin utility but printer not in printer setup utility

    Have Linksys wrt54g with AE connected via ethernet cable (only way I've found to connect to the existing network). AE light is solid green and it is in the admin utility. I see the printer listed in the summary page in the admin utility. At this poin