Determine the status of a choicebox

Hello,
how can I determine the status of a choicebox, i.e. if it is in dropdown mode (so you can see all entries) or closed.
I ran into this problem because of the following:
In my applications login dialog I want to close the choicebox (if it is open) when the 'ENTER'-Key is pressed. If it is closed already I want to leave the dialog using the 'OK'-Button.
Has anybody any idea?
Many thanks in advance...
cepuros

It is kinda hard to tell what you've done and want to do without seeing the code. How is your choicebox closed -- is it part of the login dialog box that you physically removed or do you use a flag of some sort to indicate that it is closed but left it in the dialog box)?
Let's suppose that the choicebox is physically present but is set to null (e.g., myChoiceBox=null) if it is closed, you can check to see if the box is null when the ENTER key is pressed and take appropriate action.
V.V.

Similar Messages

  • How to determine the status of  Maintenance Order while working in workflow

    Hello Experts,
       I am working on a workflow to release production related maintenance order.In this workflow I need to determine the status of the Maintenance Order (BOR object BUS2007) whether it has been released or not.I am trying to do this by condition step type.I can't understand which field of BUS2007 object I need to check to know the status of the maintenance order.
    Can somebody help please?
    Regards,
    Manas

    Hi,
    Have you not getting any value in Status Profile attribute.
    For new attribute u need to write coding, getting the value of that released field.
    First, u need to implement by going to Edit->Change Release Status ->To implemented.
    Then check your BO and generate it. If any error occurs in Menu bar Goto->Error List and see what is the error.
    After generation of your BO, test your BO.
    If test works fine, then Delegate with the standard BO.
    To delegate, u need to be in initial screen of SWO1 and goto Settings->Delegate. Give Super type as Std BO and delegate type as your custom BO and use the Std BO in your workflow.

  • Determining the Status of Provisioned Resources from the database

    What is the best way to determine the status of a provisioned resource when looking at the OIM database?
    In the USR_UDF_APPLICATION_P table I see all the fields for the resource, but not the status. What table contains the status?
    Thanks in advance!
    Kerry

    The status of the application will be stored in "ost" table.
    Following query will give u to get all the users who has provisioned to particular resource.
    SELECT usr.usr_login FROM idm.ost,idm.oiu,idm.obj,idm.usr WHERE oiu.ost_key = ost.ost_key AND obj.obj_key = ost.obj_key AND oiu.usr_key = usr.usr_key and ost_status='Provisioned' and obj.obj_name='Application Name'
    Where in OST status, you can give what ever status u want to find.
    Let me know if you have any questions.
    Thanks,
    Venkatesh.

  • How do I determine the status of a bug report whose tracking number is 3919162?

    I was given this tracking # by a tech support guy who passed my problem on to the engineering department as a bug. He told me that I could get the status on the 'pre-release forum' but I can't figure out how. Can someone advise?
    Thanks, Bob

    If you are a member of the pre-release forum, log in there (not here!) and go to the main forum page and look at the left side of the page under Resources, and you will see "Report bugs/features". Click that and go to your page and you will see the status of the bug.

  • How to determine the background job status?

    Hi Gurus,
    My program is as follows:
    1. I have used FM job_open to open a new job.
    2. SUBMIT to call another program which creates the file on application server.
    3. FM job_close to trigger that job.
    Now I want to determine the status of that triggered job (Not through SM37), Once I get a status for complete or cancelled I will be coding based on that.
    So could you please help me out for the issue?
    Thanks in advance.

    hi ,
    check table TBTCO.
    YES. u  can check for STATUS = P- Schedule/S---Released
    regards
    Prabhu
    Edited by: Prabhu Peram on Sep 18, 2008 6:43 PM

  • How to determine the database mirroring role via Powershell?

    Is there a way to determine the current mirroring role of a database via Powershell without the use of t-sql?
    With the Microsoft.SqlServer.Management.Smo namespace and database class I can determine the status, witness and partner of the mirrored database, but I can't determine the mirroring role of the current database. I basically want to get the same result
    as the following t-sql query in powershell without using t-sql:
    SELECT m.mirroring_role_desc 
    FROM   sys.database_mirroring m JOIN sys.databases d
    ON     m.database_id = d.database_id
    WHERE  d.name = 'databasename'
    I find it very strange that there is no class property to check for this, while it is an important property of the database. Of course I can use the output of this query in my powershell script for further processing, but I still hope that there is a property
    where I can get this information.
    TheSultan8

    Just to let you know, I've already found it. Here is a part of the code that I use for checking each mirrored database what mirroring role it has:
    $sqlconnection="MYLAPTOP\SQL2008R2"
    $smo = New-Object ('Microsoft.SqlServer.Management.Smo.Server') $sqlconnection
    $mirroreddbs=$smo.Databases | where {$_.IsMirroringEnabled -eq "True"}
    $sqlversionmajor=$smo.VersionMajor
    foreach ($database in $mirroreddbs)
    # Versions lower than SQL 2008 can't query a database in recovery mode
    if ($sqlversionmajor -ge 10) 
    $dbrolevalue=$database.DatabaseOptions.Properties | where {$_.Name -eq "MirroringRole"}
    $dbrole=$dbrolevalue.Value
    One catch though, this only works on SQL 2008 and higher version.
    TheSultan8

  • How to determine host status in a task via python api

    Hello all,
    using the python api I am having some issues trying to determine the status of a host within a task. For example I have a job, with one task and 10 hosts associated with that task. Eight hosts finish the task, 2 fail. However via the api I can only seem to determine the status of the job and the task. What I want is to be able to generate a report that basically matches what you see via the gui (ie 8 hosts ok, 2 hosts failed). The data structure OnStageTaskData gives me a status and a list of hosts, but not a status for each host. (Note I am not using any of the depricated functions/data structures). Currently my code looks like (minus the api init, etc)...
    # list all the jobs for last week
    joblist = api.GetJobs()
    for job in joblist:
    # if the job occured in the last week
    if job.c_time > reportstarttime:
    print "\nJob name %s Time %s " %(job.name, time.ctime(job.c_time))
    try:
    jobdetails = api.GetOnStageJob(job.id)
    except COsApiJobNotFoundException:
    print "Can't find job %s details" %job.name
    continue
    for tasks in jobdetails.job_data.tasks:
    for hostid in tasks.task_data.target:
    try:
    hostinfo = api.GetHostGroup(hostid)
    except OsApiHostNotFoundException:
    print "Can't find host details %s" %tasks.task_data.name
    print "Hostname %s Status %s" %(hostinfo.name, tasks.status)
    which generates output like...
    Job name chg233146-sol9 Time Sun Jan 13 10:31:42 2008
    Hostname tacnomsrv02 Status Failed
    Hostname tacpthsrv01 Status Failed
    anyone have another way to doing this or suggestions? Or is this kind of info not available via the api? Thank you.

    Hi ConnectSolutions,
    As you correctly pointed out, there is some bug in our code
    that keeps the room active and you dont receive any events or
    notification if you are entering as guest and waiting and the host
    arrives. Also, since you havent entered yet i.e your role is still
    5 i.e. UserRoles.LOBBY , you can't access any of the UserManager's
    collections and will get a length of 0 always. We will be fixing
    this with priority .
    But you can get around the problem as of now, by having a
    small shared model of yours ( any collectionNode or sharedModel
    will do) where you create a node and publish a message on it from
    the Owner's side whenever the owner/host enters to notify everyone
    that he has entered. Just remember to set the accessmodel of
    NodeConfiguration of node on which you are publishing to LOBBY ie.
    role = 5 , and make the publishModel = 100 so that only owners can
    publish on this node. In this way , any users waiting will be
    receiving this message and will know the host has arrived. If you
    can't get this sharedModel concept to work, let me know. I will try
    to run on my side.
    And as of our side regarding actual fix, we will fix this use
    case and put in the next drop of SDK and also update in forum about
    it.
    On the host side though, he is always notified when he enters
    if there are pending users knocking to enter. See the KnockingQueue
    example in case you want to explore that.
    Thanks
    Hironmay Basu

  • Unable to open delivery reports in Exchange 2013 SP1. Gives warning "The status for the recipient can't be determined because of a temporary error. Please try again later."

    This seems to be occurring with all users (have tested a few, all display the same exact error message).
    When I click on "Message Delivery Report" in Outlook 2010 or 2013, it points me to the ECP and displays this message "Warning The status for the recipient can't be determined because of a temporary error. Please try again later." I'm
    not sure which log files to look at. The last time I remember it worked was before I applied SP1, I think CU3.
    Our environment is two servers running Exchange Server 2013 Std. SP1 (847.32) in a DAG.
    Thanks.

    Hi,
    From the error description, I would like to clarify the following thing:
    Delivery Reports is a message tracking tool that you can use to search for delivery status on email messages sent to or from users in your organization's address book, with a certain subject. In Exchange 2013, you can track messages for up to 14 days after
    they were sent or received. Please make sure the message you are tracking isn't older than 14 days.
    Here is an article for your reference:
    Track messages with delivery reports
    http://technet.microsoft.com/en-us/library/jj150554(v=exchg.150).aspx
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • Determine the read/unread status of a message in a users inbox

    Is there any way to see the current status of a read/unread message attribute. The email is confidential and the user is not supposed to see it. The sender wants assurance that the email was not read. He wont accept a screen shot as the email could always
    be marked as unread.  I have tried MSMAPI but the attribute doesn't seem to be listed, though I cant determine the Hex code meaning. Thanks for any leads.

    "read"
    is just a flag on the message (PR_MESSAGE_FLAGS), it can be changed and it cannot guarantee you if the message was actually read. Confidential mail should be encrypted or IRM-protected, so you can blame the sender as much as the recipient.

  • The status bar is checked in view still unable to determine the size of itunes library.

    The Status Bar in checked in view and I am still unable to determine the size of library in Itunes.  Songs are not numbered.

    pziecina wrote:
    Hi
    The size of your text is set to 100% in your body elements css, this means that for Safari you will get a default font size of 16px, (providing you have not changed the browsers default settings).
    Change the body element font-size to 12px in the css and see what happens.
    PZ
    www.pziecina.com
    I've run out of helpful stars to hand out to all of you nice people. Thank you so much, and as the post quoted here also demonstrates, there are 'overrides' in CSS. It struck me this morning as I have been thinking about this, the very first thing to introduction to CSS is that the meaning of Cascading Style Sheets is that there is an order of priority in command, and the troops closest to the front lines get the final say. I would think that the statement in the document would be the final word, but apparently it's the CSS sheet that takes priority in this case.
    I think my thinking has been in reverse on this rule, not unusual for me, but now I need to re-educate myself thanks to this problem.
    Ken

  • How can the status of cache get call be determined?

    Is it possible to determine the underlying error from a cacheloader from the cache.get() call?
    Previous thread on this subject, 'how a cacheloader error be known from getter', contains an invalid link to some sample code. However, tried Subclassing ReadWriteBackinMap and implementating the onLoadFailure() the method to throw a runtime exception just results in a addition log file entry.

    Ok, have it working now, issue in my code

  • Error while updating the status record of IDOC in SAP

    Hi All,
    I am facing this problem. I have done outbound processing and IDOC was sent successfully from SAP to EDI system and it was processed in EDI and now EDI system wants to send the status back to SAP with a status message and the status number that we are using is '24' and we have mapped all the fields in the status table EDIDS and made sure that EDI system sends all those and I think Counter field can not be determined by EDI system so EDI system used the counter '1' since it can not determine how many counters are already there in SAP and unless we pass the value to this counter field we were getting the error. After passing all the values the status of the IDOC is updated with the status '00' instead of '24' and we do not know why it is happened and I would like to know how SAP converts the status record that is received from the EDI system.
    Please let me know how the status record will be translated into SAP from EDI system and I ahve followed basically EDIDS structure and the IDOC status is updating in SAP but with wrong status number and the alignemnt also missing in SAP fields like if I give some text in the EDI it is splitting and storing in 2 fields.
    Please help me in this and I think I have explained the problem in a detail manner.
    Thanks,
    Ramesh.

    Hi Naresh,
    Thanks for the reply and my question is since EDI system is able to send the status back to SAP from EDI system and only problem is it is updatinf the status wrong and I have checked the EDIDS table also and the entry is creating with another counter and please confirm me that it is because of EDI does not support the status record update so that I can confirm to the client that there is nothing wrong in the way SAP functions and EDI system can not update the status code in the SAP.
    Thanks,
    Ramesh.

  • Changing the status of Equipment in a follow up action

    Hi All,
               I have a requirement in which a function module will be triggered for a particular Follow up action.
    In this FM we have to determine the equipment and the Maintenance Order , if both are available , status of the equipment
    should change to 'A' , status of maintenance - order = 'Technically completed' and Maintenance Notification = 'Notification Completed' .
    How can this be done.? I am able to change the status of Maintenance order and notification but can anyone help me in
    determining the equipment and changing its status to 'A'. ?
    Thanks in advance.
    Vasuki

    Hi Gajesh,
                     The process is as follows :
    1) During Calibration of a product,depending on the technician's User decision , 3 follow up actions are created.
    2) Each follow up action has one FM associated with it, which is customised in      SPRO > Display IMG > Quality Management > Quality Inspection > Inspection Lot Completion > Define follow-Up Action .
    3) In the first case ( first Follow up action when the inspection is successful) the first FM is triggered. In this FM we have to perform the following steps :
                                   a) Determine the Maintenance Order and the equipment.
                                   b) Incase both are available, status of equipmnt should be changed to 'A',
                                       Maintenance Order should be changed to 'Technically completed' and
                                       Maintenance Notification to 'Notification Completed' .
    If you need further info pls let me know.
    Thanks,
    Vasuki

  • How to block the status mail for an inbound Idoc to a specific user

    Hi,
    I have to stop sending the error status mail to a specific user depenidng on Partner Type. This will trigger when an inbound Idoc contains status error(message type INVOIC &ORDRSP).This user needs other mails which are getting triggered with the same Idoc for the same partner. Basically, the requirement is to block only the status mail for that user. The statndard task for this is TS70008125 and it uses the agent determination rule 30000001 (Idoc Administrator).in WE46, this task is assigned to process code EDIR. I have copied the task to a custom task and changed the agent determination rule. I would like to know how will I configure this task so that this custom task will trigger for the status error, without altering other workflows for the same message type & the partner type. Or is there any other way to block the mail?
    Thanks,
    Santosh

    Hi,
    I have done the required coding to exclude the specific agent from the rule,copied the task and its ready. My question is how do I map this custom task to a particular partner type, for the message type INVOIC in WE20? (The message type used for the inbound Idoc is INVOIC). I checked the Partner profile in WE20. Most of the process code is using function module as the processing type.
    Thanks,
    Santosh

  • How to get the status of a window?

    Is there a way to get the status of a display window? I'm looking specifically for whether or not it is open and what image is being displayed in it.
    If there is no easy way to do this, can it be added to the list of suggestions for the next version?

    Right now there is no way to determine these attributes from software. When I went to enter a suggestion to R&D, I found that a very similar one was submitted recently. I added your suggestions to the current one. I'm sorry there isn't an easy solution.
    Kyle V.

Maybe you are looking for

  • Cffile

    I am using a cffile to delete a file from a directory on my server. On occasion I get an error stating that the file doesn't exist when in fact it does. I am using an absolute directory path: here is an example for my code.     <cfif isDefined("Form.

  • Asset Acquisition Error: Global Company is not supported

    Dear All i am trying to post and asset acquisition through F-90 when i try to save the document i am getting the following message Global company XXXXX is not supported Message no. GI102 Diagnosis The direct posting function could not find the global

  • Media player plug in will not install in server 2008

    after installing firefox 3.6 in server 2008, not the server 2008 r2 but the original. the firefox it self runs great BUT you can not listen to music in any web site using the media player plug in because the plug in refuses to install saying it can n

  • CALL_FUNCTION_NOT_ACTIVE when login

    Hi experts: I got a deadly error when I login SAP. When I using t-code=SPAM to add patches of sap(the patch is SAPKB62036), the network was cut off with my incautious, now there is a deadly error when I login SAP: ABAP/4 runtime error Error code CALL

  • Sony: Lens Profile Creator knows the subject distance, ACR does not

    When making a lens profile for a Sony alpha DSLR, lens profile creator identifies the focus distance, and processes each distance accordingly. However, when loaded in ACR (or PS lens correction filter), the software does not display the distance. Why