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

Similar Messages

  • Restrict the creation of documents in the cfolders after the Bid End Date

    Hi All,
    The System allows the bidders to create documents in cfolders even after the Bid Submission deadline has reached, whereas the Quotation would not be submitted as the Bid Submission date is in the past. Is there any way to restrict the creation of documents in the cfolders after the Bid Submission End Date?
    Waiting for your reply,
    Mary

    Hi Mary,
    In the competitive scenario in the first screen itself there are fields for "Due date" and "Due time". Once these entries are maintained, that particular collaboration will get freezed then and no documents or bids can be submitted post that time.
    I hope this will solve your query.
    Regards,
    Nishit Jani
    Award points only if you find the information useful.

  • 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);

  • Enable to edit purchase ordre created on reference to bid accepted

    Hi expert,
    When i create a purchase ordre from a bid accepted. The system give me a number of my purchase order, but i can't open it.
    When i try to edit my purchase order i have this message.
    Please any help
    Thanks

    When i create my Purchase order on reference to a bid response i have this line items:
    Hierarchy
        Service 1
        Service 2
    The hierarchy schould get OUT or OUTL?

  • 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

  • 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

  • WorkFlow Help for BID Acceptance

    Hello Experts,
    I am having an issue with SRM standard workflow for BID acceptance. The workflows I am referring are these.
    WS79000010 – Without approval,
    WS79000002 – One-step approval
    We have implemented WS79000010 – Without approval, and we want to implement a custom workflow for bid acceptance to send some notifications for some business reasons.
    When I accept a BID(BUS2202), and when I check the event trace in "SWEL" tcode, there is an event with object type BUS2200 and an object GUID. But when I check the GUID in BBP_PD, the guid is actually linked to BUS2202 which is actually what i processed.
    I am guessing there is a system issue and I need your help to rectify this. Is there any OSS message which I was not able to find?
    If this is a standard behaviour, then please help me to understand why this is happening and how to go about
    Advance thanks
    Vijay.

    Hi,
    The workflows (WS79000010 – Without approval,WS79000002 – One-step approval)you mentioned are for BID approval.i.e as soon as the bidder created a Bid in the system for a Bid invitation,these workflows should get triggered.
    The OBJECT TYPE for Bid invitation is BUS2200 while for Bid/Quotation is BUS2202.So what you see in SWEL tcode if the event trace for the BID INVITATION (BUS2200) workflow which you might have aslo activated in your system.
    Please check again in tcode SWE2 whether the event linkage is active for the Workflows WS79000010 and WS79000002 after which they should get triggered on the event of BID creation.
    BR,
    Disha.
    Do reward points for  useful answers.

  • 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?

  • Bid Opening Date Removal

    SRM Experts:
    We currently use SRM 5.0 but will be upgrading eventually to 7.0
    The Bid Opening Date can be removed after the RFx is Published.    This allows users to see the Bids that have been submitted.  This is a problem for us and our Auditors don't like it.
    Is there a way to prevent the Opening Date from being removed after the RFx is Published?
    Thanks
    Troy.

    Hi,
    How about hiding the opening date field in RFX UI? So Purchaser can not specify the opening date.
    You can hide fields by customizing in SRM 7.0.
    You can also inplement BBP_DOC_CHANGE_BADI and clear the opening date field.
    Info:
    Date fields in FRx:
    - Start Date
    - Submission Deadline
    - Opening Date
    - End of Bidding period
    Regards,
    Masa

  • Pre bid acceptance and confirmation of paticpation of bidder in LAC

    Dear all,
    As per business requirement, have following queries,
    1. Pre bid acceptance option i.e. user should bid prior to event duration, in order to check whether bidder is able to login on the in the auction.
    2. Event trigger confirmation of particiaption in auction event, which will confirm the bidder is ready to participate in auction event.
    Please help me to address the issue.
    Regards,
    Abhishek

    Hi,
    1. Pre bid acceptance option i.e. user should bid prior to event duration, in order to check whether bidder is able to login on the in the auction?
    There is no option in SRM .You can test this scenario in Quality server as a part of  Integration Testing. If it is working in
    Quality . It should work in PRODUCTION.
    As you are aware :To open Live Auction Cockpit (LAC), u201CJAVA RUNTIME ENVIRONMENTu201D
    is to be installed in the supplier system
    check this link
    www.bemlindia.com/eprocurement/demo
    2. Event trigger confirmation of particiaption in auction event, which will confirm the bidder is ready to participate in auction event.
    There is an option from SRM 7.0 for Bidder participation ,the supplier can click the button ,the purchaser will know that the supplier is participating in the Bid.
    For Live Auction Cockpit  --It is not applicable like bidder participation in LAC. I am not quite sure.check the screen in SRM 7.0
    G.Ganesh Kumar

  • Bid Opening date Pre-poning error

    We are trying to pre-pone the Bid opening date, system is giving error "Date & time is earlier than already given date & time"
    In configuration there are is message control for this message.
    How can we make this error to warning?
    Regards,
    NNK

    Hi Nitin,
    You can go to SRM Server --> Cross-Application Basic Settings --> Message Control in SPRO to do this.
    You can enter the message id, number and change the type.
    Regards
    Saravanan.
    + Please award if useful+

Maybe you are looking for

  • Error message when opening itunes...please help

    I recently tried to purchase music on the itunes store, and was told to do so I had to upgrade to itunes 7, which i had put off for quite a while...however, now that I have done so, I get a error that comes up each time I open iTunes, telling me a ne

  • Take Html Tag's on HTML page

    Hello I have a problem : I want to take the tag attributs in an HTML page so I use the function behind. The problem is that the process don't stop at the end. In the main i take a System.out.println("end"); just before the end and it' printing. There

  • How do I fix an (-1202) error?

    Every time I try to purchase something from the store, it asks me to verify my account and when I try to do that, I get this message: " We could not complete your Itunes Store request.  An unknown error occured (-1202)." I have uninstalled and reinst

  • Automating Subtitles in Premiere?

    Having gone round the forums all day I still can't find an answer to this. I have to produce a duplicate video of my 4 min edit with burned in foreign language subtitles ( not a separate stream or anything). Many examples talk about importing subtitl

  • Datatypes and flat files

    Ola, Can anybody explain in short terms what kind of logic is used in OWB (or Oracle) when a flat file is imported? Does Oracle perform a kind of LEN function to determine what length is necessary for the columns? Why is a date field in the flat file