How to find 'I Accept' response while pressing button 'Convert to Auction'

Hi Everybody,
Can anybody tell me that Terms and conditions accept/decline by BIDDER after invoking Live Auction Cockpit (clicking Live Auction) for a Auction where system stores this response of accept/decline. I want this response. Please help me where to find out this???
Thanks in advance,
Satyawan

I think it is the number of outstanding notifications, which may be replies to invitations you sent out, or invitations to you. You can see the notifications list by clicking the envelope icon in the bottom left corner of iCal's window.
AK

Similar Messages

  • How to find out which keys are pressed while a d&d drop occurs?

    Hi,
    while an item is dropped as part of a drag and drop operation, I would like to know if the user has pressed any keys.
    I use a TransferHandler for managing the d&d and this works fine with the system dependent modifier keys for move, copy and link. But as my application needs to perform special actions if, for example, 'p' is pressed while a drop occurs, I'm stuck:
    It looks like there is neither a way to poll for pressed keys [like Keyboard.isPressed('p')] nor are there any key events fired as long as the d&d operation is active.
    I've tried a adding a key listener, adding a key binding and using the KeyboadFocusManager but nothing seems to work.
    Any ideas?
    Thanks,
    Norb

    Hi,
    the question is where the focus would be - because as you know unless there is a record in InputMap and keys are usually only received by focused component anyway. I'd recommend hooking into Swing event queue, something like that:
    Toolkit.getDefaultToolkit().getSystemEventQueue().push(new EventQueue() {
        protected void dispatchEvent(AWTEvent event) {
            if (event instanceof KeyEvent && dragging) {
                // do something
    });

  • SOAP to RFC - Sync Scenario. How to find where the response is going to?

    Hello All
    I have a SOAP to RFC sync scenario.
    In SXMB_MONI,  i see that both the initial message and the response message are successfully processed.
    But, the SOAP sender is not receiving the response message.
    How can i trouble shoot this scenario? How can i findout what is going wrong?
    Most importantly, How can i find out the web address of the SOAP sender? I do not see it anywhere.
    Thanks

    Hi Chandra,
    Please check this blog.
    /people/shabarish.vijayakumar/blog/2008/01/08/troubleshooting--rfc-and-soap-scenarios-updated-on-20042009
    You can by pass your message through a TCPIP gateway , this will help you to see the message contnet and the SOAP header information.
    TCPIPGW application is availabel in one of the SAP notes for Monitoring SOAP adapter. and 2 SAP SDN PI  blogs are also there on how to use this application...
    Regards
    Sunil.

  • How to find the missing fonts while running the script?

    hi,
    I need to create a script to find the missing font. not only for that. Actually i created a script to read the file properties. but i have a problem while running the script.
    I have put "User Interation Level" to never interact. Even i need to check wheather each file have "missing fonts". mean time i never stop the script.
    Is It Possible???
    Regards,
    SubhaOviya

    Here's a shot of the Find Font Dialog:
    Papyrus (highlighted in the list) is missing, and there's a yellow warning triangle to show that. Fonts that ar not missing have an icon to show the type of font. You'll also see it shown as missing in the "Info" box at the bottom of the dialog.
    If you use the Replace With dropdown you will only see fonts listed that are installed on the system. In order to actually use the missing font, rather than substitute a different font in its place, you must obtain and install the missing font on the system.
    Are you seeing something different when you open Find Font?

  • How to find the memory values while debugging

    Hi Friends,
    In an ABAP program I have exported some values to a memory id. in debug mode where can i see these values. Could any one tell me....Helpful answers would be highly rewarded..!!
    regards,
    Ramineni.

    Hi
    In debugger you need to put the memory Id name and you will be able to see values where you export them.
    regards
    Aditya

  • How to find Oracle Seeded Responsibility

    Is this understanding correct that all the rows in fnd_responsibility_tl table with created_by=1 are rows seeded by Oracle, i.e. they are Oracle seeded responsibilities?
    Are there any other responsibilities as well which could be seeded?

    Is this understanding correct that all the rows in fnd_responsibility_tl table with created_by=1 are rows seeded by Oracle, i.e. they are Oracle seeded responsibilities?Correct -- Unless that column was updated manually.
    Are there any other responsibilities as well which could be seeded?Apart from the query you have and the naming convention, I think there is no other way (log a SR to confirm with Oracle support).
    Thanks,
    Hussein

  • How to find out the code behind a button

    Hi,
    What technique should I use to find out what java code is invoked when I click on a button in the portal?
    More concrete: I want to know the code behind the button I'm talking about <a href="https://forums.sdn.sap.com/thread.jspa?threadID=188251">here</a>.
    T h a n k s !
    Jeroen

    I would suggest you use HTTPWatch in your browser to see what is happening behind you button click.
    You can get it here
    <a href="http://www.simtec.ltd.uk/">http://www.simtec.ltd.uk/</a>

  • How to get the index of a pressed button in control array?

    Greetings,
    I have 3 parallel arrays--one containing buttons and the other two containing string indicators.  I'd like to be able to push a button and get the values in the other arrays.  How can this be done?
    (P.S.  Illustrations are great and most welcome, but I do not have Labview on this computer, so I would appreciate it in jpg or screenshots if possible.)
    Thank you!
    Solved!
    Go to Solution.

    Here's what I had in mind. Modify as needed.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    ButtonArray.vi ‏14 KB
    ButtonArray.png ‏11 KB

  • How to find out whether an object can be converted into a Long?

    Hi,
    I am facing a problem which can be summarized by the following. Let's imagine the following method:
    public static int MyCompare(Object anyObj) throws Exception {
        Long X = new Long(3);
        if (anyObj "can be converted into a Long") {
            Long MyConv = anyObj;
            return X.compareTo(MyConv);
        } else {
            throw new Exception("No success");
    }My issues are i) that I don't know how to write the proper test to check whether the anyObj parameter can be conveted into a Long and ii) How do I convert anyObj into a Long properly?
    The method should not return an Exception in the following cases:
    int a1 = 33;
    long a2 = 44;
    MyCompare(a1);
    MyCompare(a2);Can anyone help? Thanks !
    J.

    Hi,
    I have tried to test the suggestion with the following code:
    public class MainLong {
        public static void main(String[] args) {
            int i = 33;
            long j = 44;
            Long k = new Long(55);
            String l = "Trulu";
            System.out.println(MyCompare(i));
            System.out.println(MyCompare(j));
            System.out.println(MyCompare(k));
            System.out.println(MyCompare(l));
        public static int MyCompare(Object inObj) {
            Long Dummy = new Long(30);
            if (inObj instanceof Long) {
                Long Temp = (Long) inObj;
                return Dummy.compareTo(Temp);
            } else {
                return Integer.MIN_VALUE;
    }and I got the following output:
    -2147483648
    -1
    -1
    -2147483648which is all fine except for the call with an int, it should return -1.
    The above are example of objects which can be passed as a parameter to the function. I bet I should test for (anyObj instanceof INTEGER), correct?
    Thanks,
    J.

  • How to Find whether a radiobutton is in button group or not.

    I have 6 radiobuttons.
    3 are added in buttongroup and rest not.
    I want to find whether the clicked button is added in the buttongroup or not.
    Can any one help me in finding the solution.
    Thanks in advance.

    Hi,
    AbstractButton has a method getModel that returns a ButtonModel.
    If the ButtonModel is of type DefaultButtonModel you can get the ButtonGroup by invoking getGroup. The API does not state what is returned when the button does not belong to a group, but I assume it will return null.
    Hope this helps
    Piet

  • How to find the Destination URL of a Button

    I have a text field and a GO button,when I click on the GO button the information from the text field to the URL on the button.
    I want to replicate the same thing on another GO button.
    Basically I need the URI on the seeded GGO button.
    Document:/oracle/apps/cs/knowledge/solution/search/webui/SolBSearchHeaderRN
    Region:SearchCriteriaRN

    what do you mean when you say
    "when I click on the GO button the information from the text field to the URL on the button"
    Do you mean that you see the link of the button as something when you hover over it and it has the value of text field appended to the link ?
    If that is the case, this may not be a simple go button and could be a submit button instead of a simple button.
    Thanks
    Tapash

  • How to find which users only have a single and a specific responsibility

    Hi,
    I have a requirement in my organization that a password restriction have to be implemented. After implementing that, for some users, the password date will have to be nulled out, so that when they login, they will be forced to change their password following that new password rule.
    Oracle's "CP SQL*Plus Expire FND_USER Passwords" concurrent program can not be used as that will expire all the users password at the same time.
    For this, I have to find all the users which have a certain responsibility (check viewing responsibility) and only that responsibility. First day password date null out will be implemented for them only. For the other users (who have check printing responsibility) the password will be nulled out some other day.
    As I am using the following query, I see some of the users have multiple responsibility. How do I find out the users who have only a certain responsibility and nothing else?
    select usr.user_name, res.responsibility_name
    from apps.fnd_user usr, apps.FND_USER_RESP_GROUPS_DIRECT usrrep, apps.fnd_responsibility_tl res
    where usr.user_id=usrrep.user_id
    and usrrep.responsibility_id=res.RESPONSIBILITY_ID
    and usr.end_date is NULL
    group by usr.user_name,res.responsibility_name
    Any suggestion, idea will be very much appreciated.

    Hi,
    I have a requirement in my organization that a password restriction have to be implemented. After implementing that, for some users, the password date will have to be nulled out, so that when they login, they will be forced to change their password following that new password rule.
    Oracle's "CP SQL*Plus Expire FND_USER Passwords" concurrent program can not be used as that will expire all the users password at the same time.Use the same update statement in $FND_TOP/sql/AFCPEXPIRE.sql and include/exclude the usernames you want.
    For this, I have to find all the users which have a certain responsibility (check viewing responsibility) and only that responsibility. First day password date null out will be implemented for them only. For the other users (who have check printing responsibility) the password will be nulled out some other day.
    As I am using the following query, I see some of the users have multiple responsibility. How do I find out the users who have only a certain responsibility and nothing else?See (How To Find Out Which Responsibility Was Granted To A Specific User? [ID 304687.1]).
    Or, see old threads for similar topic (you will find many queries which should be helpful).
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Users+responsibilities+query&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    select usr.user_name, res.responsibility_name
    from apps.fnd_user usr, apps.FND_USER_RESP_GROUPS_DIRECT usrrep, apps.fnd_responsibility_tl res
    where usr.user_id=usrrep.user_id
    and usrrep.responsibility_id=res.RESPONSIBILITY_ID
    and usr.end_date is NULL
    group by usr.user_name,res.responsibility_nameTry this query ..
    SQL> select fu.user_name, count(frvl.responsibility_name)
    from fnd_user_resp_groups_direct furgd, fnd_responsibility_vl frvl, fnd_user fu
    where furgd.responsibility_id = frvl.responsibility_id
    and fu.user_id = furgd.user_id
    and (to_char(furgd.end_date) is null
    or furgd.end_date > sysdate)
    group by fu.user_name
    having count(frvl.responsibility_name) = 1;Thanks,
    Hussein

  • Acceptable Response Times for a Development(ST05 & SE30)

    Hello Everybody,
            Can anybody tell me a way on how to find the acceptable resonpse times for a development in ECC. I mean, when we check the Runtime Analysis, we get the DB and ABAP times. As the data is very less in terms of business now, the reports or the developments are working fine, but tomorrow, the data becomes large these will have the performance issue.
           So, based on this can we generalize and find out the acceptable percentages in  SE30 as well as the times of execution in ST05. And can we combine the outputs of these two and come to a conclusion on the performance of the development.
    Regards,
    Sreenivas

    > but tomorrow, the data becomes large these will have the performance issue
    what do you mean with tomorrow
    Tomorrow, Tues Nov 14 or just future?
    If the first one, then you are probably too late to fix something.
    If the second, the you should be able to extrapolate from measurements with
    10 objects to 100 and 1000 and 10.000.
    Buut be careful besides the linear extrapolation you must take care that there is no nonlinear behavior,
    Nonlinearity: The problem and background
    Performance Problems Caused by Nonlinear Coding
    Z_SE30_COMPARE
    A Tool to Compare Runtime Measurements: Z_SE30_COMPARE
    Nonlinearity Check
    Nonlinearity Check Using the Z_SE30_COMPARE
    Siegfried

  • How to find the user exits called at the time of posting the IDOC?

    Hi,
        Could anyone please how to find the user exits while posting a idoc?

    Hi,
    One way to ahive this is by, be ready with IDOC postiong,
    then go to ST05 transaction and activate the trace after checking Table Buffer Trace.
    Now post the IDOC then deactivate the trace.
    Now come back to ST05 and display trace and search for calls starts with EXIT_.
    Regards,
    Manoj Kumar P

  • How to find event handler for save button in salesorders

    Hi,
    I want perform event based on save button in salesorders.Can you tell me how to find the event handler for
    save button.
    Regards,
    Brahmaji

    Brahma,
    you can find the component, view details by doing an F2.
    open the component, the view will be mostly an overview page i.e., the name ends OP etc.,
    But your method name will be mostly EH_ONSAVE, you need to find exact view.
    F2 does not come up properly for overview pages, you have to look into UI config tool preview and make sure sometimes.
    Regards,
    Masood Imrani S.

Maybe you are looking for

  • NO AUDIO - (Late 2013) iMac with Windows 7 64-bit

    Hey everyone, I have been scouring the forums to find something that will help me, but I have yet to find anything that works. Here is my problem: I recently installed Windows 7 64-bit using bootcamp on my (Late 2013) 27" iMac. I have the latest driv

  • Using PDF files in books

    Does anyone know how I can use PDF files when creating Iphoto books? I am doing various photo books and want to add a few image/design pdf's to the book.

  • Best practices for a trip to South Africa?

    I'm planning on travelling to South Africa in May for about 3 weeks and I was wondering about the various problems that might arise. I used the international trip planner tool and saw that for the voice rate it says: Standard: $2.89. Is that per minu

  • Does anyone know answers to these iPad questions?

    Does anyone know answers to these iPad questions? 1) can you only only install applications from iTunes? Or can you install like on a regular mac? 2) no usb or card reader? you have to have an attachment through the Dock connector? 3) Can it read pdf

  • Convert from Aperture to Lightroom

    I have a "managed" Aperture library with 18,000 Pics. The library is located in my pictures folder on my main HD. I want to convert my collection of pics into lightroom while retaining the keywords that I have assigned. I want to create a "bucket" fi