Deviation acceptance date expired in MIGO

Hello All,
When i am doing GR for a Schedule agreement. I am getting this Error "Deviation acceptance date expired".
I have checked other threads before posting in forum.
Here material is not shelf life managed material. But still i am getting this error.
Kindly help me out to over come this error
Regards,
Manoj

message no Showed here is ZEMIN_MSG043 is it customized message

Similar Messages

  • Zone data expires not updating in DNS

    I am struggling a bit with the Lion DNS system.
    Using Lion Server 10.7.3 no matter what I set as the hours for "zone data expires", it reverts to 4 hrs.
    I opened the db.zone file in /var/named . The other three fields update fine. But the expire entry is stuck for all the zone files. Some odd script bug?? Permissions ?? I run three other name servers, 1(panther) 2 (snow leopard). Never had issues like this before.
    I cannot even do a manual override. The next time the admin utility touches the record it resets the expire data to 4 hours.
    The second issue with the zone files is the SOA zone. It defaults to the domain name instead of the primary name server. I can hand edit that and it seems to stick. I cannot find anywhere in the adminn tool where you can explicitely set the the master zone record. (ns1.masterdns.com). Once the file is edited, the SOA record is recognized. Perhaps a different problem, but it seems to be similar in that the zone files are not being constructed properly.
    Thanks for any insight or solutions.

    hi bwusr,
    direct update, so it's master data,
    is it attribute or text ? perhaps there's invalid character or lower case,
    check in monitor tab detail.
    and when you said not updated to data target,
    you check by right click 'maintain master data' ?
    or you mean it's not updated to reporting ?
    execute change run ? rsa1->tools->apply attribute/hierarchy change.
    hope this helps.

  • MB_MIGO_BADI change header data in tcode MIGO

    HI Experts,
    I have a requirement to change the feild posting date(BUDAT) in the header data while doing migo.
    For this i have implemented a badi MB_MIGO_BADI->IF_EX_MB_MIGO_BADI~PAI_HEADER. This method has the field is_gohead-budat. but when i'm changing the value in the method,  its giving an error message saying you cannot change filed BUDAT.
    Can anyone help me how to achieve this change?
    Regards,
    Satyam

    HI Harald,
    Thanks for your active reply.
    I tried exit  EXIT_SAPLMBMB_001. But it is not getting called while doing MIGO. I tried putting a break-point.
    I followed the following procedure. Kindly correct me if I'm wrong.
    1. In tcode CMOD, I created the project: ZMD.
    2. In Enhancement assignment i have given the enhacement name as MB_CF001.
    3. In component section the exit EXIT_SAPLMBMB_001 has include ZXMBCU01.
    4. I have written the following code in the include :
         break-point.
            if sy-UZEIT GE '000000' AND sy-UZEIT LE '060000'.
             XMKPF-BUDAT = sy-datum - 1.
              endif.
    5. I activated the project ZMD.
    When i execute the tcode MIGO and post the document, ideally it should stop at the break-point. If it does not stop than that means the exit is not being called during the run time.
    Could you kindly guide me on this.
    The movement type for the GR is 101 and is done for outbound deliveries.
    Thanks & Regards,
    Satyam

  • Retrieving acceptable date format

    I'm developing a script using SAP GUI Scripting API,
    There are some fields on user's screen which must be filled with a date.
    For some users, these fields accepts date in MM.DD.YYYY format, while for some others the accepted format is DD.MM.YYYY.
    My question is: How can I know which date format is accepted by a GuiComponent in order to make the correct input?
    Could not find any method or property in any component that could give me a clue.
    (I'm having troubles with decimal values too, once I cannot determine if the separator is a dot or a comma, but I suppose solving the date problem may lead to solving this one too.)
    Thanks in advance.

    Hi Ycarus,
    there are as always several solutions. One of these might look like this:
    For example, is the date entered as follows:: 01.03.2011
    on error resume next
    session.findById("wnd[0]/usr/. . .").text = "31.12.9999"
    if error.number > 0 or error.number < 0 then 
      session.findById("wnd[0]/usr/. . .").text = "03.01.2011"
    else
    session.findById("wnd[0]/usr/. . .").text = "01.03.2011"
    end if
    on error goto 0
    To find out whether a comma or a decimal point to be used as a separator, you could take a similar approach.
    Regards,
    ScriptMan
    Edited by: ScriptMan on Mar 28, 2011 11:10 AM

  • Change acceptance date in I-recruitment

    I accepted an applicant in iRec but input the wrong date for acceptance. Now I want to change the date so that the applicant can be hired earlier than the accept date.
    But in fact, the applicant should be accepted on 2012-03-02 as he got onboard on 2012-03-05. With the wrong date of acceptance, the hiring date has to be postponed to at least one day after 2012-03-10, e.g., the earliest hiring day is 2012-03-11 in this case.
    We can’t update the date in iRec. Could you help to provide a solution to ensure that the issue can be fixed and the applicant can be hired on time.

    Hi,
    You can change the date from Core HR form.
    Search for the Applicant ->Click on Other->Application and change the Accepted status and update the Date.
    Thanks

  • TextField that accepts dates in DD-MM-YYYY format

    I need to create a texfield that accepts dates in DD-MM-YYYY. Also, if the input does not correspond to a date, I want to trap focus in the control....
    Thanks,
    V

    Oops, sorry for the previous post, it is not the code i am using...
    Here it is:
    import com.id.swing.mask.JMaskField;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.text.ParseException;
    import javax.swing.JComponent;
    import java.awt.Toolkit;
    import javax.swing.JOptionPane;
    import java.text.SimpleDateFormat;
    import java.sql.Date;
    import java.util.Locale;
    import java.awt.event.FocusListener;
    import java.awt.event.FocusEvent;
    public class IdDateMask extends JMaskField implements FocusListener {
    protected SimpleDateFormat m_sdfDbPattern;
    protected SimpleDateFormat m_sdfUserPattern;
    protected String m_userDatePattern = "ddMMyy";
    protected String m_mask = "{[0-1]}#/{[0-3]}#/##";
    protected boolean m_canBeNull;
    public IdDateMask(String mask, String userPattern) {
    super(mask);
    super.setLocale(new Locale(System.getProperty("id.pyrites.user.language"),
    System.getProperty("id.pyrites.user.country")));
    m_userDatePattern = userPattern;//ie ddMMyy
    m_canBeNull = true;
    initialize();
    protected void initialize(){
    setForeground(new Color(51, 0, 255));
    setDisabledTextColor(new Color(0, 0, 0));
    setColumns(8);
    setPreferredSize(new Dimension(84,20));
    setMinimumSize(new Dimension(27,20));
    setMaximumSize(new Dimension(128,20));
    m_sdfDbPattern = new SimpleDateFormat("yyyy-MM-dd", getLocale());
    m_sdfUserPattern = new SimpleDateFormat(m_userDatePattern, getLocale());
    m_sdfUserPattern.setLenient(false);
    public void focusGained(FocusEvent e) {
    this.setBackground(new Color(255,204,204));
    public void focusLost(FocusEvent e) {
    isValidDate();
    this.setBackground(Color.WHITE);
    public boolean canBeNull() {
    return m_canBeNull;
    public void setCanBeNull(boolean value) {
    m_canBeNull = value;
    public boolean isValidDate() {
    boolean retVal = false;
    try {
    String theStr = super.getText();//ie: 310802
    if(!canBeNull()) {
    if (theStr.equals("")) throw(new Exception());
    else m_sdfUserPattern.parse(theStr);//ParseException can be thrown here
    } else {
    if(!theStr.equals("")) System.out.println(m_sdfUserPattern.parse(theStr));//ParseException can be thrown here
    return true;
    } catch (ParseException ex) {
    System.out.println("IdDateMask - verifyDate() - ERROR: " + ex.getMessage());
    Toolkit.getDefaultToolkit().beep();
    try {
    JOptionPane.showMessageDialog(IdDateMask.this,
    java.util.ResourceBundle.getBundle("com/id/pyrites/client/resources/Bundle", getLocale()).getString("MSG_DATE_notValid") + m_userDatePattern,
    java.util.ResourceBundle.getBundle("com/id/pyrites/client/resources/Bundle", getLocale()).getString("MSG_DATE_notValidDlgTitle"),
    JOptionPane.ERROR_MESSAGE);
    } catch(Exception e) {
    System.out.println("IdDateMask - verifyDate() - I18N - ERROR: " + e.getMessage());
    JOptionPane.showMessageDialog(IdDateMask.this,
    "MSG_DATE_notValid" + m_userDatePattern,
    "MSG_DATE_notValidDlgTitle",
    JOptionPane.ERROR_MESSAGE);
    // super.setText("");
    // this.requestFocus();
    return false;
    } catch (Exception ex) {
    System.out.println("IdDateMask - verifyDate() - ERROR: " + ex.getMessage());
    Toolkit.getDefaultToolkit().beep();
    try {
    JOptionPane.showMessageDialog(IdDateMask.this,
    java.util.ResourceBundle.getBundle("com/id/pyrites/client/resources/Bundle", getLocale()).getString("MSG_DATE_notNull"),
    java.util.ResourceBundle.getBundle("com/id/pyrites/client/resources/Bundle", getLocale()).getString("MSG_DATE_notNullDlgTitle"),
    JOptionPane.ERROR_MESSAGE);
    } catch(Exception e) {
    System.out.println("IdDateMask - verifyDate() - I18N - ERROR: " + e.getMessage());
    JOptionPane.showMessageDialog(IdDateMask.this,
    "MSG_DATE_notNull",
    "MSG_DATE_notNullDlgTitle",
    JOptionPane.ERROR_MESSAGE);
    // super.setText("");
    // this.requestFocus();
    return false;
    public void setToday() {
    setValue((new Date(System.currentTimeMillis())).toString());
    public void setText(String value) {
    setValue(value);
    public void setValue(String value) {
    if(!(value == null) && (!value.equals(""))) {
    //We receive the yyyy-MM-dd format...
    //The format of the displayed date is m_userDatePattern
    //So, we have to transform YYYY-MM-dd into for example ddMMYY
    //Let's do it.
    try {
    //If the field is empty, a ParseException is thrown
    String valueToDisplay = m_sdfUserPattern.format(m_sdfDbPattern.parse(value));
    super.setText(valueToDisplay);
    //Next we have to localize it according to medium format
    } catch (ParseException ex) {
    System.out.println("IdDateMask - setValue("+ value +") - ERROR: " + ex.getMessage());
    Toolkit.getDefaultToolkit().beep();
    try {
    JOptionPane.showMessageDialog(IdDateMask.this,
    java.util.ResourceBundle.getBundle("com/id/pyrites/client/resources/Bundle", getLocale()).getString("MSG_DATE_notValidInput") + value,
    java.util.ResourceBundle.getBundle("com/id/pyrites/client/resources/Bundle", getLocale()).getString("MSG_DATE_notValidInputDlgTitle"),
    JOptionPane.ERROR_MESSAGE);
    } catch(Exception e) {
    System.out.println("IdDateMask - setValue("+ value +") - I18N - ERROR: " + e.getMessage());
    JOptionPane.showMessageDialog(IdDateMask.this,
    "MSG_DATE_notValidInput" + value,
    "MSG_DATE_notValidInputDlgTitle",
    JOptionPane.ERROR_MESSAGE);
    } else {
    super.setText("");
    public String getText() {
    return getValue();
    public String getValue() {
    //Return date with format yyyy-MM-dd
    //But i have a String of format m_userDatePattern
    try {
    if(canBeNull() && (super.getText().equals(""))) return "";
    else {
    String outputDateStr = m_sdfDbPattern.format(m_sdfUserPattern.parse(super.getText()));
    return outputDateStr;
    } catch (ParseException ex) {
    System.out.println("IdDateMask - getValue() - ERROR: " + ex.getMessage());
    Toolkit.getDefaultToolkit().beep();
    try {
    JOptionPane.showMessageDialog(IdDateMask.this,
    java.util.ResourceBundle.getBundle("com/id/pyrites/client/resources/Bundle", getLocale()).getString("MSG_DATE_notValid") + m_userDatePattern,
    java.util.ResourceBundle.getBundle("com/id/pyrites/client/resources/Bundle", getLocale()).getString("MSG_DATE_notValidDlgTitle"),
    JOptionPane.ERROR_MESSAGE);
    } catch(Exception e) {
    System.out.println("IdDateMask - getValue() - I18N - ERROR: " + e.getMessage());
    JOptionPane.showMessageDialog(IdDateMask.this,
    "MSG_DATE_notValid" + m_userDatePattern,
    "MSG_DATE_notValidDlgTitle",
    JOptionPane.ERROR_MESSAGE);
    return "";
    public void setEnabled(boolean value) {
    super.setEnabled(value);
    //color section
    public void setBackgroundText(Color c) {
    setBackground(c);
    public void setForegroundText(Color c) {
    setForeground(c);

  • Enter date PO acceptance date from vendor W/O unreleasing PO.

    Hello Everyone !!
    My client wants to enter date of PO acceptance from vendor.
    In standard we can use order acknowledgement field but client doesnt want to unrelesed PO so we cannot edit PO.
    And same date should be available while running report.
    please arrive at best possible solution to this issue.
    Abhijeet Kadam

    Abhijeet Kadam wrote:
    client doesnt want to unrelesed PO so we cannot edit PO.
    If you can't edit the PO, then how can you maintain the acceptance date for the PO ?
    If you do not want to maintain the acceptance date in PO, use your own custom table where you can maintain the the PO number and acceptance date and the same will be pulled in report.

  • Accepting date as a measuring point

    Please guide as to how does one accept date field as an input in measuring points.Have made a characteristic with date format,yet while creating a measuring point with the said characteristic , displays an error
                                     " Only characteristics with a Numerical  format can be used "
    awaiting an early reply,

    Hi pshthecoolest ,
    You cant declare DATE with Date format as Characteristics , as per Std SAP.
    Work around will be Create Char CT04 DATE , with Numeric format with Template  (8), assign appropriate unit of Measurement , that you need to create separately t code CUNI.
    But above all why you required to put reading as a Date in measuring point ?
    Riyaj
    Edited by: riyajmaner on Feb 8, 2011 12:51 PM

  • No message for validation error "format", type "date", field "date-expired"

    Dear
    Guys,
    i am getting the following error : ((No message for validation error "format", type "date", field "date-expired"))
    When trying to upload adobe connect 7 license to the adobe connect 7 configuration wizard. the problem occurs because my server was install on Arabic Saudi Arabia date format while installation, but if i change the windows date format to US then the problem still occurs, and formatting windows is not possible, could anybody help??
    Regards

    Thank you for replying,
    No i am not on host mode, a have installed it deferent times ago successfully, but the only problem now is that during the installation windows server 2008 the default language, time and date. Was set Arabic Saudi Arabia. And even changing it does not solve the problem, as i mentioned above.

  • Why oracle "to_date" accepts Date-parameters

    I tested out function "to_date" as you see below and I see that Oracle allows me to give to that function parameter with textual data type and also allows to parameter's datatype to be Date.
    Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    SQL>
    SQL> select to_date(sysdate) as s from dual;--21.10.2010
    S
    21.10.2010
    SQL> select to_date(sysdate, 'DD.MM.YYYY') as s from dual;--21.10.2010
    S
    21.10.2010
    SQL> select to_date('21.10.2010', 'DD.MM.YYYY') as s from dual;--21.10.2010
    S
    21.10.2010
    SQL> select to_date(to_date('21.10.2010', 'DD.MM.YYYY')) as s from dual;--21.10.2010
    S
    21.10.2010
    SQL> I entered into Search engine "http://www.lycos.com/" phrase "oracle to_date function" and it gave me link to documentation of that function:
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions183.htm
    and the documentation says:
    >
    Purpose
    TO_DATE converts char of CHAR, VARCHAR2, NCHAR, or NVARCHAR2 datatype to a value of DATE datatype.
    >
    My question is: why the function accepts Date data types? what occures behind curtains when Date is passed in? Or what explanation there is, that documentation seems to lie?
    Also, have you too noticed that the forum has been oftenly down near past days?

    Any function that accepts a VARCHAR2 can be passed a DATE. Oracle will simply implicitly cast the DATE to a VARCHAR2 (using the session's NLS_DATE_FORMAT). The same way that it would implicitly cast a NUMBER to a VARCHAR2.
    Of course, if the implicit conversion of the date to a string doesn't match the explicit format mask passed to TO_DATE, you'll have a problem. If your session's NLS_DATE_FORMAT was 'MM.DD.YYYY', for example, the TO_DATE would fail because Oracle would implicitly cast the date to a string in the format MM.DD.YYYY and then try to convert that to a date using the format mast DD.MM.YYYY.
    Justin

  • Accepting data in dos mode

    now in india, java is being taught in ICSE syllabus as computer application. I find it very difficult to accept data during run time
    in dos mode to teach the use of control structures.

    A lot of people do, that is the motivation behind the BlueJ development environment.
    http://www.bluej.org
    Did you have a question to ask too?

  • How to query delivery date expired po?

    i want to get the list of po which delivery date expired, does sap provide the function?

    Maybe you can try to check in ME2N, in selection screen enter : delivery date < current date.

  • Bid acceptance date

    Hi,
    I'm in a SRM 4.0 project, and wonder if any of you can help with the following: in the query 0BBP_QUO_Q001 Bidder's Bids in Detail, we can check Acceptance Status, however we only have the bid date, it is not possible to see the acceptance date. Does any of you can help me?
    Thanks,
    Cheers,
    Ana

    No Answer

  • I can't renew a expire Illustrator CS Subscription month to month my credit card date expire i just renew but is still suspend

    I can't renew a expire Illustrator CS Subscription month to month my credit card date expire i just renew but is still suspend

    Moving this discussion to the Adobe Creative Cloud forum.
    A3f if you are facing a billing issue with your account please contact our support team directly at Contact Customer Care.

  • Is there any way to extend the roaming data expiration period?

    The title says it all:)
    Is there any way to extend the 30-days roaming data expiration period?

    No, this is not controllable directly by apps or by users (and 30-days is not contractual).
    If your app needs to store data in the cloud perpetually then you'll need to use your own server.
    If the app is installed then roamed data will still be saved on the client systems until the user removes it.

Maybe you are looking for

  • What is the best external hard drive to use with a macbook?

    I am looking to buy an external hard drive for my macbook pro (2010).  I understand that some hard drives have issues when used with Lion. Does anyone have any suggestions for which is the best to buy?

  • Remove quotation marks from a keyword

    Hi, need a help on this.... I build a whole tree for my keywords and in some of them, I used more them one word in the same keyword, separated by comma. eg:  whale, whales The problem is when I do that, it creates a quotation mark and the other softw

  • Which accounting software is compatible with MacBook ?

    I am willing to buy a macbook but i use tally 5.4 presently as an accounting software.If it does not work, kindly let me know the name of the software or also the software requirements.

  • ITunes recently stopped locating almost ALL of my music files.

    I've never had a problem with this until recently. When i go to play a song, an error message comes up that says, "The song 'name of song here' could not be used because the original file could not be located. Would you like to locate it?" Then I go

  • TLS.close() hangs forever.

    Hi, i am facing a problem while trying to connect to Sun One Dir Server using TLS Connection. When ever i connect to the Sun Dir Server using TLS and , when i try to close the TLS connection using the TLS.close() API, the control never returns back f