Issue with "timing" in Message output of Change PO

Dear Experts,
For change PO, We are facing issue with the Timing in message output of PO.
i.e, For example when we create a PO - the timing in message output is "1"
after executing ME9F, the message turns GREEN - and still the timing is 1.
Change PO : NOW WHEN WE CHANGE A PO, a new entry of Message output appears in "YELLOW"
Here is the issue - Now when we manually change the timing from "3" to "4", initially it appear's "4",
but if u refer the below screenshot - once we save the application i turns back to 3.
any idea - why this is happening.
Thanks in advance.
Regards,
Rohit

Hi,
1st  make sure  which Dispatch time you want for your PO layout and restrict changing dispatch time manually in PO.
Now use t.code:NACE, with application EF for your PO message type, Keep Dispatch time 4 in ‘Default values’ TAB  and select check of “CannotBeChanged” in Basis Data TAB and save.
Maintain message condition record in t.code:MN04 with PO message type and keep Dispatch time 4.
Now create PO , try to change Dispatch time  and see how system behave!
Regards,
Biju K

Similar Messages

  • Is anyone else having issues with sending / receiving messages since ios7 upgrade

    Is anyone else having issues with sending / receiving messages since ios7 upgrade

    I found this link, and am trying it right now to see if it helps.
    http://forums.macrumors.com/showthread.php?t=1647944&highlight=ios7+imessage+tro uble

  • Issue with desktop Opt/Click (right click) & 'Change Desktop Background'

    I have an issue with the opt/click in the desktop in ML 10.8.2. The 'Change Desktop Background' using opt/click (right click) works after reboot, but fails to open (work correctly) thereafter. The 'System Preferences' icon bounces in the dock but nothing else happens, I have either click on the SP icon or re-opt/click (R click) again to get it working. All else seems to be in order but not this. I have tried this with 2 complete full installs & still doesn't work correctly (same issue. I have reported it to Apple, but I was wondering if anyone else experiencing this problem?

    So, here's what I've learned so far.
    Fresh reboot.  Works fine.  Close and try again, doesn't work.  This you already know.
    Here's what I tried to see if it makes a difference:
    I removed:
    ~/Library/Caches
    ~/Library/Preferences/com.apple.finder.*, com.apple.systempreferences.* and com.apple.desktop.*
    That didn't help.
    I tried it in safe mode.  Same issue.
    Here's something interesting I noticed.  If you open terminal and killall Finder, that refreshes it and makes it work again... for 1 try.
    This does, in fact, seem like a bug.
    For reference, I'm currently on a mid 2012 macbook pro.  Running fully updated on mt lion.

  • Issue with Saving the Query output data in Excel format

    Hi,
    Recnetly we had upgraded from 4.6c to ECC 6.0.
    In ECc 6.0 environment, when user try to export the query output , we are getting only XML option to save the data.
    But user want to save the data in EXcel format, he was able to do that in 4.6C.
    pleas eprovide some inputs, on this issue.
    Thanks,
    Sanketh.

    I cannot for the life of me imagine, why a link to a post in the 'Business One Forum' where one uses ODBC to transfer query-data to MicroSoft Excel is of relevance to the OPs question, even if the same is not a security issue.
    Never mind. [note 40155|https://service.sap.com/sap/support/notes/402155] deals with various symptoms in the ALV-Excel combination as as of release 4.6C. There are various others, mostly in components BC-SRV-ALV and BC-ABA-LI - also: I remember that when we upgraded from 4.5B to 4.7C there was an issue with Excel-templates -> the solution was in the release notes somewhere. So, in addition to SMP you might want to check the release notes and/or upgrade guide for solutions.
    And yes, moderators ... this is not a security issue, this should go to ECC-Applications/Upgrade.

  • Issue with Google Analytics Character Encoding (Contribute changes the code)

    I am wondering if there are any admin settings to work around this issue. This is an issue with Contribute CS3/CS4.
    Editing a page in Contribute turns encoded characters into unencoded characters. For example, turning "%3C" into "<". Encoded version has no errors.
    Un-encoded characters in Google Analytics code causes Scripting Errors on each page you open in Contribute, make loading slower, and make it difficult just to browse the site using Contribute.
    Specifically changing this:
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    to this:
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("<script src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'></script>"));
    </script>
    (I believe it is the double </script></script> that might be causing the error to pop up.)

    Set the link encoding option as "Insert Links As Is", under Administer website dialog.

  • Issues with passing boot messages to Plymouth - absolutely no results!

    Lately I've made it my little project to fancy up my box with a nice Plymouth boot screen with scrolling boot messages.  I've found the following two pages that give a guide to setting up such a Plymouth theme:
    Plymouth: Create your own splash screen with scrolling boot messages
    Plymouth pulsating crunchbang logo with boot messages and progress bar
    I quickly realized when I tried to make the system changes needed to send boot messages to Plymouth that my system doesn't have either  /usr/share/initramfs-tools/scripts/functions (which I believe is very outdated) or /lib/lsb/init-functions which is brought up in the #! forums.  I'm assuming that #! uses Linux Standard Base and Arch does not - so I went looking for the files I needed.
    The two most likely candidates to me seem to be /lib/initcpio/init_functions and /lib/initcpio/functions.  However, changing either one of these files to contain
    if [ -x /bin/plymouth ]; then
    /bin/plymouth update --status="$@"
    fi
    or its equivalent produces absolutely no results on reboot, even after running
    mkinitcpio -p linux
    Are these the correct files?  Or am I barking up the wrong tree?  I've already tested my Plymouth theme by running the Plymouth daemon and opening up a splash screen in X and using Plymouth's --update=<string> option, and everything works great.  I'm kind of at my wit's end, and would rather not have to install LSB to get this working.  Has anyone else been successful with this, or perhaps knows which direction to point me in?
    Thanks in advance for any advice!!

    Bump.
    ^  No, only joking! 
    I'm posting again to say that I have found /etc/rc.d/functions - and this seems to be the file I'm looking for.  Maybe someone could confirm that before I start mucking around with a file that looks a little to easy to mess up?  And maybe perhaps someone knows and easier way to edit this for sending messages to Plymouth other then putting something similar to
    if [ -x /bin/plymouth ]; then
    /bin/plymouth update --status="$@"
    fi
    into every function (such as status(), stat_fail(), stat_done(), etc.)  I see that /etc/rc.d/functions is called by /etc/rc.sysinit.  Could I possibly change rc.sysinit to be
    #!/bin/bash
    # /etc/rc.sysinit
    . /etc/rc.conf
    # Call functions for Plymouth
    . /etc/rc.d/plymouth_functions
    . /etc/rc.d/functions
    ## Truncated ##
    And then create a /etc/rc.d/plymouth_functions file very similar to /etc/rc.d/functions, except running "plymouth update --status=$@" instead of echo commands?  Then it would be a simple matter of using gEdit's Replace tool (i.e.  "status() ==> status() & plymouth_status()") to edit /etc/rc.sysinit.
    Any ideas on whether or not this would work?

  • Issue with fixed point number output from 9219 module for full bridge measurement (cRIO/FPGA)

    Hi,
    I have a question regarding the fixed point output acquired from a 9219 module (in FPGA on a cRIO) when setup to acquire a strain measurement (full bridge).
    Software: Labview 2009
    Hardware: cRIO-9012 (NI-RIO 3.2.1), NI-9219 module
    The 9219 module is configured in the project as follow:
    Ch0: Full-Bridge +/- 7.8mV/V
    Ch1: Voltage +/- 4V
    Ch2: Voltage +/- 15V
    Ch3: Voltage +/- 60V
    The calibration mode is 'Calibrated' so the FPGA outputs fixed point numbers. 
    My issue is that the precision of the fixed point number for Ch0 (strain) is "(fixed point <+/-32,-1>[-2.5e1,2.5e1]:1.16e-10)", which indicates that the fixed point number is a value between +/- 0.25 and not the +7.8mV/V as I expected?
    The fixed point number does not change in precision whether the range for the strain measurement is set at +/- 7.8mV/V or +/-64mV/V (the two available options).
    As the fixed point number doesn't change precision I'm assuming that changing the range of the strain measurement changes the resolution of the acquired number? And as such I will need to perform additional scaling on the fixed point number to convert it to the expected range?
    There is no mention of scaling of the voltage or strain measurements mentioned in any documentation or examples, with the only scaling example provided for the thermocouple measurements.
    Any help/clarification is much appreciated.
    Regards,
    Mike

    Hello Mike,
    Hopefully I can help clarify some of the behavior you are seeing.
    My issue is that the precision of the fixed point number for Ch0 (strain) is "(fixed point <+/-32,-1>[-2.5e1,2.5e1]:1.16e-10)", which indicates that the fixed point number is a value between +/- 0.25 and not the +7.8mV/V as I expected?
    For calibrated values on the FPGA VI, the returned data is a Voltage measurement, not a directly calculated strain value. Based on the specified ranges for the 9219 in a Full bridge configuration, 250 mV will encompass all possible input values, at the module provided excitation (2-2.7V dependent on the sensor gage resistance).
    The fixed point number does not change in precision whether the range for the strain measurement is set at +/- 7.8mV/V or +/-64mV/V (the two available options).
    As you may notice from the fix-point definition, the fixed point data contains 32-bit precision which is larger than the acquired precision of 24-bits provided by the 9219. The fixed point data-type is coded to accept input encompassing both the range and precision of the instrument; such that, no additional coercion of the input data values is required based on user-defined software settings, i.e. the bridge sensitivities +/- 7.8mV/V or +/-64mV/V. 
    As the fixed point number doesn't change precision I'm assuming that changing the range of the strain measurement changes the resolution of the acquired number? And as such I will need to perform additional scaling on the fixed point number to convert it to the expected range?
    The documentation does not clearly define that by varying the discrete levels of strain input (+/- 7.8mV/V or +/-64mV/V) the range of the ADC on the module is also adjusted. I am working to follow up further on this topic, to provide a clarification on the module documentation. As for scaling, the voltage values acquired regardless of the ADC resolution will still be related strain via the bridge sensitivity. The resolution of the ADC will simply define the smallest measurable change in the strain value. 
    There is no mention of scaling of the voltage or strain measurements mentioned in any documentation or examples, with the only scaling example provided for the thermocouple measurements.
    For converting the acquired voltage values to a strain measurement, I would recommend the documentation linked here for a detailed explanation on strain calculation. Often, users will forward the acquired voltage data as fixed point values through a DMA FIFO to the RT controller on the Compact RIO; such that, they may handle conversion from voltage to strain using floating point math in real-time. 
    I hopes these responses provided a bit of clarity. I will continue to work to provide additional information on the 9219 specification information. Please post back any further questions.
    Cheers!
     Edit: Forgot to add the link.
    Message Edited by Pcorcs on 04-14-2010 04:55 PM
    Patrick Corcoran
    Application Engineering Specialist | Control
    National Instruments

  • Issue with sound effects preference output (no sound)

    HI,
    Weird issue, my macbook will play any music or sound except sound effects like moving items to the trash or when something is done copying to my external drive.
    I checked the sound preferences and everything seems right.
    My Sound Effects panel works and shows the list of sounds.
    "Play alerts and sound effects through:" is there but that list is greyed out (maybe because only one option?). It does say internal speakers
    My Output is through the internal speakers and works fine.
    I thought the problem might have been an external pair of speakers I had used. I hooked them up and selected the internal speakers from the menu and then disconnected the speakers but still silence.
    I like the audio feedback especially with multitasking. Since all other audio plays fine it's not the internal speaker.
    Any ideas?
    Thanks,
    Phillyman
    A typo in the title Message was edited by: Phillyman

    HI Carolyn,
    Thanks for your reply! The weird thing is that this is a brand new system (about a month old). On my other systems I do have some audio software but I've hardly touched this system. I'm pretty sure it once did give me audio feedback. All the boxes are checked in the sound effects panel (including the play user interface sound effects).
    My other systems all have external speakers and I've been too lazy to crawl under the tables and disconnect them. But here my followup. If you have nothing connected is the sound effects through menu: greyed out if you only have one source? In my case it is and I think that has something to do with my problem.
    thanks for any and all help,
    Phillyman
    posted the message while still in the middle of it. Message was edited by: Phillyman

  • Need help with an error message when making changes to an IMAP account

    I have several IMAP accounts in my Mac Mail. Today when I tried to edit the, "Full Name" associated with the account I got an error message that said:
    Invalid Directory
    The account path /Users/kristen/Library/Mail/[email protected]@host365.ISPhost.com is already being used by the account "Silver"
    Did I somehow corrupt something? I'm not sure why making this small change to the full name would cause such an error. Please help.
    Thanks!!

    stop() forcibly kills a thread. You shouldn't use this method because if the thread is in a critical section of code, you can cause data corruption or deadlock.
    Instead, if you need to stop execution from another thread, invoke the interrupt() method.
    Good luck.

  • Issue with Condition dependent PO output

    Hi,
    We're implementing Extended classic version for SRM 5.0.
    As part of the output determination, we need to determine 2 print outputs for Purchase orders. We have 2 purchase organizations and both of them need to have 2 different smartforms for the print. So, we're designing 2 different smartforms. In order to assign the smartforms as per the purchasing org, I've used "Condition dependent output" in IMG settings. But whenever I try to print, it picks up the standard form from the IMG node "Define actions for Document Output" where the standard form is maintained. We did not maintain the custom form in this node because we have 2 forms for print.
    I would like the program to pick up the custom form maintained in " Condition dependent document output".
    I understand that we could use the BADI alternatively. But any help in resolving this problem through the configuration is highly appreciated.
    Regards,
    Lakshmi

    Hi,
    Pls implement the badi "BADI BBP_OUTPUT_CHANGE_SF".
    For sample code/pointers,see the foll links;
    Re: How to change default smartform triggered while printing for shopping cart
    Re: How to change default smartform triggered while printing for shopping cart
    Re: Smartform display
    Re: Add a Printer ?  -> LP01
    Re: Condition Dependent Document Output
    Re: Add a Printer ?  -> LP01
    sending Smart form to Printer  in SRM
    Re: SRM PO's to be printed out with the PO
    BR,
    Disha.

  • Issues with mail when I have to change my yahoo password

    Hello
    I am having problems with mail on my mac.
    1) For some time I have been unable to send photos by email from iphoto.  When I try to do this it says 'the email server didn't recognise your username/password combination'.  I'm not sure how to fix this.
    2) I just had to change my yahoo account password today and now I am frequently getting a box up that says 'The SMTP server "stmp.mail.yahoo.com" rejected the password for user "my email address".  Enter your password again or cancel.
    It doesn't matter if I enter the new password or the old one - I am having this message keep popping up.
    I would appreciate help with this.
    Thanks
    K

    Maybe some help here:
    http://support.apple.com/kb/TS3276
    http://support.apple.com/kb/PH7290
    http://support.apple.com/kb/PH7282

  • Some SBS 2011 users having issues with s/mime messages containing attachments

    We have a contact from the outside world who is obligated to send emails that have attachments as S/mime. Whenever he sends the Executive Staff here an email containing (let's say) a Microsoft Office file, they instead get an attachment named smime.p7m that
    contains a winmail.dat file or instead just get a winmail.dat file attached instead.
    As someone with administrative rights (and I think that's what the deciding factor is), if he sends me the same email and I open it in my client of choice (Eudora in this case), I get the attachment he wants received and also a smime.p7m file with certificate
    information in it. However, if he sends the email with me as a cc: to one of the other users, instead of recipient, I only see what the other user sees.
    If I go into OWA as any of the affected users, it takes a bit of maneuvering (in that I have to click on a dialog that reads "This type of message isn't fully supported in Conversation mode.
    Click here to open the full version, which may show you more details or features"), but I can eventually get to the attachment once the full version pane opens.
    If get into Outlook 2010 as the user "Journaling", I can open the copy that Journaling's mailbox receives and see the attachment just fine too.
    I honestly have no clue what the problem might be, and would be very grateful for any help.

    Hi ,
    Thank you for posting your issue in the forum.
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Best Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • An issue with DAQmx Error messages

    Greetings,
    I'm using a 6602 counter board with DAQmx 7.4, ANSI C API.  A strange issue concerning the errors due to faulty attribute values keeps occuring, that being no error is reported when the (faulty) attribute value is set but only when it is read back afterwards.  Shouldn't the faulty value be reported by the Set function?
    To be specific, I'm creating a period measurement counter input channel with implicit timing, sample mode = finite, then setting the number of samples per channel to 0 (bear with me, I know the 0 value makes no sense here, the point is how the errors are being reported so that they can be handled in a reliable and consistent way).  While DAQmxSetSampQuantSampPerChan(taskHandle, 0) does not produce an error, calling DAQmxGetSampQuantSampPerChan(taskHandle, &SampPerChan) for verification on the very next line returns Error -200077 : "Requested value is not a supported value for this property".  So, my question is why the error is reported by the Getter instead of the Setter?  Is this normal behavior (if so why?) or is something amiss here?
    Jeff

    This is the expected behavior. Validating attributes is tricky when attributes are dependent upon other attributes. There are two main approaches that can be taken by NI-DAQmx.
    One, when every attribute is set, NI-DAQmx could verify the value of that attribute in the context of the task (i.e., in the context of all other attributes). This is problematic for at least a couple of reasons. One, validating the task after every attribute is set is time consuming and not efficient. Two, validating the task after every attribute is set requires that customers set attributes in a specific order such that dependent attributes are set after their dependencies. This would dramatically decrease the usability of NI-DAQmx. In fact, if attributes are mutually dependent, this approach is impossible.
    The second approach is that NI-DAQmx doesn't verify the task until it is forced to do so. Starting a task forces it to be validated. Querying an attribute also forces the task to be verified since the value of an attribute may be dependent upon the value of another attribute.
    As you've noticed, we've taken the second approach with NI-DAQmx. This approach leads to a more efficient execution as well as allow customers to set attributes in an arbitrary order. If you want to force the task to be verified in order to check for errors, you can do so explicitly at the desired time. However, the need to check attributes for errors is most often needed when the application is under development and the NI-DAQmx error reporting features makes it easy to determine which attribute has been set to an invalid value even when that error is not reported immediately.
    Now, in reality, the way NI-DAQmx handles attributes is a bit more complicated than what I just described. Since some attributes are not dependent on other attributes or, since some attribute values can never be valid regardless of the values of other attributes, these attributes are verified when they are set and errors are returned immediately. We refer to this as coarse attribute verification. For example, if you set the sample rate to 100 MHz on an E-Series device you will immediately get an error.
    Hope this helps clarify the behavior.
    geoff
    Geoffrey Schmit
    Fermi National Accelerator Laborary

  • PIXMA922 issue with no paper message

    Printer keeps giving a "no paper" message about upper tray when lower tray is full and is from where I need to print. Is there a way to override the message? Will it always be doing this or can I select the paper tray at when selecting "print"?

    Hi
    This is the xml file sample I have..
    <OutboundPayment>
    - <DocumentPayable>
    - <DocumentNumber>
    <ReferenceNumber>12345</ReferenceNumber>
    + <PaymentReason>
    <RemittanceMessage>XXXXXXXXXXXXX</RemittanceMessage>
    <RemittanceMessage>XXXXXXXXXXXXX</RemittanceMessage>
    <RemittanceMessage>XXXXXXXXXXXXX</RemittanceMessage>
    + <DescriptiveFlexField>
    <Attribute4>999</Attribute4>
    </DescriptiveFlexField>
    </DocumentPayable>
    </OutboundPayment>
    My output is like
    invoice no
    attribute4
    RemittanceMessage
    For eg
    inv no     inv_date inv_descrip AMount
    12345     3/4/08     abcdef          1000
    999
    XXXXXXXXXXXXX(dynamic..sometimes it is 1 line and sometimes 10 lines)
    5555     3/8/08     def          1000
    900
    YYYYYYYYY
    I am using the same concept of
    <xsl:variable name="lpp" select="number(25)"/>
    mentioned here...
    Can you limit returned rows in a loop?
    My issue is that attirbute4 and remittance message combination spoils the count.
    If I have only the invoice no then I have no issue..But I am not able to check the count
    when I have invoice no,attribute4 and remittance message, I have no clue how to keep te count in check
    Can anyone please help me..It is urgent!!!
    thanks
    prasanna

  • Having an issue with itunes purchase, message shows "could not complete itunes store request, requested resource not found." My account has been debited for the price of the download, but I dont have the download.

    Need some help, I was downloading an album when the message "could not complete itunes store request, requested resource not found."  "Error in the itunes store please try again later." My account has been deducted for the amount of the album, but I dont have it downloaded on my computer. Please help!!! Thank you!!!

    Does the purchases show in your Purchased list?
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"? Ones with a green checkmark are solved.
    Next contact iTunes by:
    Contact iTunes

Maybe you are looking for

  • A very strange phenomenon in my N81.

    Hi everybody, Iam confronting a very strange phenomenon in my N81. Messages in my Inbox, My folders and Drafts are regularly, every few days, disappearing. Is there any settings that causes such SMS deletion. Does anybody ran across such phenomena. T

  • Deski 5.1.8

    Hello All, Yesterday, I had to make some adjustment at an BO 5.1.8 application for a customer of oursu2026.Yes, they still exist!! They have some Deski reports with macrou2019s included. These Macrou2019s automatically export the Deski report to .PDF

  • Non-Reloading Loader problem

    In the first frame of that movieclip, I'm importing an external swf with Loader class,(Using actionscript2 but my main flash page using Actionscript3), It is loading well but when i pass to second frame and return to the first frame again, the Loader

  • ARD through Hamachi - Problem

    Hi, I am successfully using ARD 3.1 over Hamachi mostly without problems except one big one. While I can access all options from 'office' to 'home', I cannot observe or control from 'home' to 'office'. All firewall ports (3283 & 5900) were opened on

  • Every time I open a book I get asked for Apple ID and password

    After I have purchased a book and open it I get asked for my Apple ID and password. How can I stop this?