Auction is deleted from bidders view in SRM 7

Hi All,
       I am having two problems while doing BID invitation: We are using SRM 7 (upgraded from SRM 3)
1) When BID invitations are created for Live auction, this is visible from Bidders login(Portal), we are able to submit the bid, But as soon as the BID ends, it is disappearing from the Bidders portal. Also in the purchaser login if we click rewards button then change status button is disable, Could you please guide what are the check points i need to go through.
2) My 2nd problem is for vendor evaluation an email is going out to the users inbox, but users are not able to open the form, Any idea why this is happening? Am i missing any config.
Looking for your valuable suggestions as always. Thanking you
PuspaSourav

When BID invitations are created for Live auction
Did you mean an auctions were created?
But as soon as the BID ends, it is disappearing from the Bidders portal
Did you search for Event Status = "Ended Auction" in bidder's view?
Also in the purchaser login if we click rewards button then change status button is disable
If possible, write the exact names of the buttons just to clarify. For example does "rewards button" mean "Responses and Awards" button? Does this "change status button" actually read "change status"?

Similar Messages

  • Delete from inline view

    Hello members,
    No sorry, this is not about key preservation.
    Instead, I have two tables T1 and T2. I want to delete rows from T1 where primary key is also in T2.
    I thought that if I select only from T1 then I would delete from T1. But as it turns out it is the first table mentioned in FROM clause that gets deleted from.
    SQL> create table t1 (x number primary key, c1 varchar2(1));
    Table created.
    SQL> create table t2 (x number primary key, c2 varchar2(1));
    Table created.
    SQL>
    SQL> insert into t1 values (1,'a');
    1 row created.
    SQL> insert into t1 values (2,'b');
    1 row created.
    SQL> insert into t1 values (3,'c');
    1 row created.
    SQL> insert into t2 values (1,'X');
    1 row created.
    SQL> commit
      2  /
    Commit complete.
    SQL>
    SQL> delete (select t1.x from T2, t1 where t2.x = t1.x);
    1 row deleted.
    SQL> select * from t1 union all select * from t2;
             X C
             1 a
             2 b
             3 c
    SQL> rollback
      2  /
    Rollback complete.
    SQL>
    SQL> delete (select t1.x from T1, t2 where t2.x = t1.x);
    1 row deleted.
    SQL> select * from t1 union all select * from t2;
             X C
             2 b
             3 c
             1 X
    SQL> rollback
      2  /
    Rollback complete.
    SQL>
    SQL>
    SQL> select * from v$version where rownum = 1;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    SQL>Maybe I was home sick when Ms. Teacher covered this, maybe I just wasn't paying attention.
    Or something else? - Are there any logic and/or rules involved here, that I never heard of?
    Best regards
    Peter
    Edit:
    Seems that the select list has nothing to do with it, at all.
    This will delete from T2
    delete (select null from T2, t1 where t2.x = t1.x);And this will delete from T1:
    delete (select null from T1, t2 where t2.x = t1.x);Edited by: Peter on Apr 24, 2012 6:01 AM

    Actually this is about key preservation.
    In 9.2 documentation Oracle stated...
    "You can delete from a join view provided there is one and only one key-preserved table in the join."I do not recall whether this was actually the case in 9i but I think this was probably an outstanding doc bug. By 10g the documentation had changed to...
    "For a DELETE statement, if the join results in more than one key-preserved table, then Oracle Database deletes from the first table named in the FROM clause"I believe it would be more complete to say.
    "For a DELETE statement, if the join results in only one key-preserved table, then Oracle Database deletes from that table. If the join results in more than one key-preserved table, then Oracle Database deletes from the first table named in the FROM clause"

  • Remove buttons (edit/delete) from bizcard view of ess application

    Hi,
    Can anybody tell me how to remove buttons (edit/delete) from the bizcardview of ess apllications? I am using JDI/developer studio for the changes in source code.
    Thanks,
    Sameer

    Hello Sameer,
    I am working on EP7.0 ,NW04s . I am also looking to modify the Bizcard screen for Family Members overview . I want to hide the Edit and Delete button for Divorsed Spouse ...Were you able to hide the buttons?
    Please let me know how can that be achieved ..
    Any help would be highly appreciated.

  • Distribution Model (ALE) - Message type has to be deleted from model view

    Hello,
    I want to delete a message type from an existing model view in the distribution model (of the maintenance system).
    But when I mark the concerning message type and press Edit->Delete the message 'Action cannot be carried out on the nodes selected' occures. Deleting the complete model view would work...
    Does anyone know how I can get this without setting up a new model view?
    Many thanks in advance,
    Juergen

    hi,
    >>'Action cannot be carried out on the nodes selected'
    you get this message if you try to delete a message type
    from a model view that was not created on your system
    (it has been replicated and it's maintained on another system)
    so you can only delete this message type on the system that has
    "master" distribution model
    if it's not master then it's usually grey and you can only delete if it's black in change mode
    >Deleting the complete model view would work...
    if you try that you will see info that it's not the "master" system for this model
    check it and let me know
    Regards,
    Michal Krawczyk

  • STO - Not deleted from Product View ATP Column

    Hi,
    We have a situation where the old and Processed STO ( Goods Receipt done and Final Delivery Flag set) is still displayed Product View(APO) in the ATP column.
    When we delete this item it gets CIFed again over from ECC. This happens only with the orders where partial qty is delivered. 
    What do we do to get this deleted permanently?
    Regards
    A
    Edited by: Asokan Tharmalingam on Jul 30, 2010 5:08 AM

    Hi A,
    Delivery completion flag is to be checked at item level also for the PO. Please get help from R/3 side. The STO cannot be removed from APO unless it is closed in R/3.
    regards,
    B

  • About the delete of joined view

    if create a view refering to a single table, then the delete operation to the view will delete the corresponding row in the refered table, but when i create a view by joining two tables, the result seems to be confused.
    create view ev select e.ename,d.loc from emp e,dept d where e.deptno=d.deptno;
    delete from ev where loc like 'N%';
    then 3 row was deleted from the view with 3 rows deleted in the emp table, but nothing happened in the table dept which supposed to be also delete;
    Why, or is these any principles dealing with the deleting this kinds of view. and I tried, the insert of this view is forbidden.

    nothing happened in the table dept which supposed to be also delete
    Sorry, according to who exactly? According to your opinion of how this ought to work without actually reading the documentation?
    DELETE from a join view requires that the view contains one (and only one) key-preserved table and that is the table that is DELETEd from.
    If you wanted to modify this behaviour (e.g. to DELETE from both tables) you could consider using an INSTEAD-OF trigger.

  • How can i find the option to delete a recent print job from the "View Job History

    1. Photosmart 5510 e-ALL-IN-ONE SERIES
    2. Window 7 64 bit
    How can i find the option to delete a recent print job from the "View Job History

    Hello alfmswongg,
    Currently there is no option to delete print jobs from the "View Job History" section of ePrintCenter.  
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • How to Create/Modify/Delete a query view from the web template in BI 7.0

    All:
    In BW 3.5, the <b>Query Selection View</b>  web item was introduced for users to create a query view to save the navigational state of a query. This web item was also available to modify and delete an existing query view.
    The Query Selection View web item <u>does not</u> exist in BI 7.0. I see the drop down web item can be used to display the query views associated to a query.
    Can anyone share how to create,modify,save or delete a <b>query view</b> on the web in BI 7.0
    Thanks,
    Kumar

    Sanjay, we experienced the same issue. Below are a few pieces of information that may be of help: 1-The Save As button on the 0ANALYZER template saves the query to the portal. From Bex Web or Bex Analyzer, you have no access to these saved views. We created a ZANALYZER copy of the 0ANALYZER template and removed the Save As button. 2- If you right mouse click on any item in the query results grid of Bex Web, you get a small menu. Clicking on the menu item Save View will save the view to BI. You do not have the ability to delete the saved views from Bex Web. However, you can delete them from Bex Analyzer. This was not an option for us since most of our users are using Bex Web. 3- On the same menu, clicking on Bookmark, saves the navigation and also opens the Internet Explorer Favorites maintence window. The navigation is saved as an entry into the users Internet Explorer favorites where they can organize and delete their entries. However, deleting the favorite does not delete the entry for the bookmark in BI. The bookmarks are stored in table RSWR_DATA. Program RSWR_BOOKMARK_REORG can be used to manage the saved bookmarks. We are loading RSWR_DATA into a chracteristic so that we can query the information in order to help us manage it. I hope this helps you and others that appear to be struggling with the issue of saved views in Bex Web.

  • Error while deleting UIElements from existing view of webdynpro project

    hiiii everybody,
    I have an existing project which i need to modify.so when i am trying to delete some UIElements from existing view and saving the metadata, itz showing error as for example:
    1)Group Group2 header is missing
    2)wdThis cannot be resolved.
    please do help out.
    Thanks and regards,
    Parama.

    Hi,
    First error comes when you deleted Group header but Group UI is there.
    For Second one, check the names of UI elements different or not.
    Regards
    LakshmiNarayana

  • How do i view photos in the cloud that i have deleted from my device?

    how do I view photos i have backed up in the cloud but have deleted from my phone?

    Welcome to the Apple Community.
    If you've deleted them from your phone, they may have been removed from your back up, if you have them in photo stream, you should recover them as quickly as possible.

  • HT204150 is it possible to retrive a stored contact once its been deleted from your iphone? i deleted a number from my phone like 2-3 months ago and now i need it back. is it possible to retrive this contact or either view my past call log from around the

    is it possible to retrive or download a number/contact after its been deleted from your iphone? i deleted a number about 2-3 months ago and
    now i really need it back. is it possible to retrieve this number or maybe view or bring up my entire or past call log which would have this numer in it?

    If it's not on icloud.com any longer you can't restore it from iCloud.  (Contacts are only synced to your iCloud account, and are not included in the iCloud backup.)

  • How do I un-embed a video? I deleted the youtube video from ibooks author on my iMac, but it won't delete from the ipad ibook view. It shows up in my book as a blank bar until I tap it, then it plays the video.

    How do I un-embed a youtube video? I deleted the youtube video from ibooks author on my iMac, but it won't delete from the ipad ibook view. It shows up in my book as a blank bar until I tap it, then it plays the video. I made a new page after deleting the original page in which I inserted the video; it still shows up. Only the advertisement from the video plays.

    delete the media widget in Author
    re-preview to your iPad
    hope this helps...

  • I want to search Time Machine for an appointment that has been deleted from my current view of iCal.  Can I "restore" a previous version of iCal without losing all the entries I've made to the calendar since that prior date?

    I want to search Time Machine for an appointment that has been deleted from my current view of iCal.  Can I "restore" a previous version of iCal without losing all the entries I've made to the calendar since that prior date?

    No. I tried it on my Time Machine (I had just made one change today, so I knew I would not be left in the lurch if I failed) and when I clicked on restore I got this message:
    It seems you have several options.  I chose 'Keep Both'.  I suggest that you proceed with your search.
    Ciao.

  • Yahoo/att email from my ipad2 are deleted from the server view.

    When reading my yahoo/att email from my ipad2 they are deleted from the server view. Is there any way to keep this from occuring? I have my home pc set to not delete upon reading to allow manual retention as needed.

    If you recently added back your email account it was most likely set up as an IMAP account - renowned for the seamless sync across your device - yes I am being a little sarcastic there - at the technology not at you
    The oft recommended way to "force" the email to be POP is to add your email address in there incorrectly - misspelling works fine - and then it asks whether you want a POP or IMAP account
    Try that - delete the account - you will not lose your emails in there
    Then re add and follow the steps I recommended and see if that solves your issue

  • My iPad 2 only keeps a set number of emails for me to view eventually deleting from the screen. How do stop this as it syncs with my phone and mac book pro neither of which do this?

    My iPad 2 only keeps a set number of emails for me to view eventually deleting from the screen. How do stop this as it syncs with my phone and mac book pro neither of which do this?

    Thanks for that. Much more constructive than the last comment. It's only the restriction code I can't recall, not the access passcode. So I can currently access the device, just not age restricted content. Does that's make a difference? I also wondered if anyone knew how many attempts you get to try to get it right. Now tried 21 times and so far nothing bad has happened but I am concerned I'll eventually be completely locked out of the device. That doesn't seem in the spirit of things though. Surely it's foreseeable that a child could repeatedly try to guess the code so I can't see that it would be right to lock the device down completely in that circumstance, particularly if the access code is being typed in correctly every time.
    Thanks

Maybe you are looking for

  • Error in writing to directory when installing

    Hi, I encounter an error when installing Oracle 9.2.0.6 client on Window 2000 Professional machine. After I execute setup.exe about 3-5 secs, an error message is showed which displays "Error in writing to directory c:\docume~1\....\Temp\OraInstall200

  • WAN light not working!

    My Network extender just currently stopped working out of the blue. My WAN light is not coming on at all, my ethernet cable is plugged in correctly. I even switched out the cable just in case the cable went bad. I have reset the system and still no W

  • Please help explain SAP Benchmark Terminology

    Hello, I am looking for help in understanding the terminology of some benchmarks for SAP applications.  I have read and re-read several pages on their website, including http://www.sap.com/solutions/benchmark/index.epx but still are not 100% clear. 

  • Refused payment for a monthly subscription I have ...

    Hi,  Every month I get an email telling me that my payment has been refused. The problem is that I don't have such subcription. How could I stop that from happening? Thank you

  • Matrix row focus

    Hey All, Can anyone tell me how I can set the focus of my matrix to the most recent row that was added to my UDO? I have a UDO that could have a few hundred line items and I want to move the screen to the most recent line item so that the user does n