Combo box is not activating in the detail for second item

hi
i have a detail block in which am using listitem with list style poplist. for second item its not getting activated by clicking directly. But if we are navigating through the first item its getting activated. Is there any way to activate it directly.
thnks in advance

i have master detail form. In which detail section starts with a listitem with liststyle poplist.
For first time entry there no pblem at all.
But when we query the the data and want to add more detail to add in detail block then yle clicking in the first list item in detail block remain inactive.
we can make it active only yle we press enter key from the previous record. But clicking in the combo box directly is not possible.
is there any solution to make it active the listitem
Thnks

Similar Messages

  • Mail messages in my In Box are not appearing in the list of messages.

    Mail: SOME mail messages in my In Box are not appearing in the list of messages.  Instead, there's a blank line in its place if already read, or just the blue dot if unread.  But when I click on the line, the message's column/header detail appears (and I can open it).
    (Coincidental or not, immediately prior to this situation, I established a New Rule that mail coming from my son's email address should be Moved to the IN Box as they had been going to Trash.  None of the emails I'm questioning have any reference to his email address in them.)

    Continuation of info (from GDTGG): When I leave that mail message and click on a different one, the blank line marking its place once again appears for the message.  (There was a similar problem posted by someone else in 2009 entitled "Inbox Has Blank Lines" but with no apparent solution that I could find.)

  • VBA Userforms – Getting errors when item from combo box is not selected

    Hi there
    Thank you in advance for taking the time to check this out.
    Objective:
    I have 2 combo boxes, one is dependent on what has been selected in the first combo box (dynamic named range), they work fine except for an irritating error when the user accidentally clicks in the empty
    Cmbox_IncCategory and it won’t allow the user to go back to the
    cmbx_Category_Type box if the user forgot he had to make a selection from that first before selecting the
    Cmbox_IncCategory.
    The error that pops up is “Invalid property value”.
    I tried having text in there to say “please select from Cmbox_IncCategory first, but that didn’t fix it.
    I tried to ‘If error resume next’ but that didn’t like it either. Now I am stumped.
    Main combo box= cmbx_Category_Type
    2nd combo box (displaying a list dependent on what was selected in Main combo box)= Cmbox_IncCategory
    I know there must be a way to fix it so that if a user clicks on the combo box, but doesn’t make a selection it won’t lock up the form.
    Yes, it is a mandatory field, and I was considering using a message box to advise the user that this must be completed, but I am not sure how to do it (and avoid the errors
    Here’s the current code I have for the combo boxes.
    Me.Cmbox_IncCategory = "" 'Clears the contents of the 2nd combobox when another category is chosen
    On Error Resume Next
    'I can't seem to have the Incident Category combobox to be empty when the form is open _
    I have tried Cmbox_IncCategory.Value = "", but I get an error. I then tried Cmbox_IncCategory.text = "" _
    but also get the error. I don't know how else to get it to work .. I tried both codes in the _
    form_initialize, but get an error ... I'm stumped !
    Select Case Me.cmbx_Category_Type
    Case "Crime"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_CRIME"
    Case "Property Damage - Minor - NS"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_PROPRTY_NS"
    Case "Property Damage - Significant - S"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_Proprty_S"
    Case "Safety"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_SAFETY"
    Case "Security Breach"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_BREACH_S"
    Case "Support"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_SUPPORT"
    Case "Vehicle"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_VEHICLE_S"
    End Select
    End Sub
    I’d be really grateful if someone could help me out, or perhaps direct me to where I might find some coding that will achieve the result I am seeking.
    This links to
    My Sample form
    With much gratitude,
    TheShyButterfly
    Hope you have a terrific day, theShyButterfly

    Hi Peter,
    Thank you for your quick response :) Brave man! :)
    Both combo boxes are blank to start with (because nothing has been selected). If I click on the first combo box (cmbx_Category_Type) which lists the main events/category types, but I don't select any thing, and I click in the secondary box
    (Cmbox_IncCategory) and then click on any other control, I get an “Invalid property value” error. When I click OK on the error (a few times) and I return to the code window, it gives no indication where/what is breaking
    the code/causing the error. I have no choice but to exit the form by stopping in the code window.
    If I click on the first textbox, (cmbx_Category_Type), and then do the right thing and make a selection, then I have no problems with the secondary textbox (Cmbox_IncCategory).
    As I am not that up on VBA I am trying to follow your instructions... I have changed the code as follows, removed and replaced the rowsource name, but I encounter the very same problem.
    When I changed my code from Me.Cmbox_IncCategory="" to yours myCombo.ListIndex = -1  (changing the combo box name to reflect my combo box name) and adding the second line of code ...
    Me.Cmbox_IncCategory.ListIndex = 0 I still got the same behaviour and error.
    I even tried moving each row of the named rows down one row (so that there would be a 'blank' row which could be selected to get out of trouble, but it wasn't very successful either.
    Have you opened my form to see what happens, I included the link so whoever was looking at my problem (and yes, I have many I know), could see for themselves what it is doing/not doing.
    The code now reads as below (is this what you meant?) - the results were as I mentioned above.
    Me.Cmbox_IncCategory.ListIndex = -1 'Clears the contents of the 2nd combobox when another category is chosen
    Me.Cmbox_IncCategory.ListIndex = 0
    ' On Error Resume Next
    'I can't seem to have the Incident Category combobox to be empty when the form is open _
    I have tried Cmbox_IncCategory.Value = "", but I get an error. I then tried Cmbox_IncCategory.text = "" _
    but also get the error. I don't know how else to get it to work .. I tried both codes in the _
    form_initialize, but get an error ... I'm stumped !
    Select Case Me.cmbx_Category_Type
    Case "Crime"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_CRIME"
    Case "Property Damage - Minor - NS"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_PROPRTY_NS"
    Case "Property Damage - Significant - S"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_Proprty_S"
    Case "Safety"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_SAFETY"
    Case "Security Breach"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_BREACH_S"
    Case "Support"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_SUPPORT"
    Case "Vehicle"
    Me.Cmbox_IncCategory.RowSource = "Inc_Cat_VEHICLE_S"
    End Select
    End Sub
    I appreciate your patience :) I am growing in knowledge, but its a slow process. Please let me know if there is anything else I can help clarify for you :)
    This links to
    My Sample form
    Thanking you again
    TheShyButterfly
    Hope you have a terrific day, theShyButterfly

  • Some pages of my website are not active from the home page

    Built my website with iweb.  When I go to the site the tabs to all the pages show, but several of them are not active from the home page.  If I go to one of the active pages I can then click on the other pages.  Is there a way to fix this?  I've tried reloading the entire site, but several of the tabs remain inactive from the home page.  Any help would be greatly appreciate - Thanks,  Jodi

    Thanks Roddy - I tried moving it down and it didn't work - That line is in the Template I used to build the site and is on every page.  I did finally get the command A to work, but there's nothing covering those bottom three tabs.
    However, when I put my mouse in the area of the box where it has my name (the image you sent me above) it shows a link desktop/site/booker_files and I noticed I have one of the rss feed blue arrows, but I can't seem to delete it.  I wonder if that has something to do with it.  It does the same thing on the website if you hover with your mouse. 
    Truly appreciate your help.
    Jodi

  • Combo box entries not refreshing as per new data

    Hi,
    I am using Oracle SOA PS3 version.
    I have created an Updating ordered List report on a DataObject. I created a filter on a field 'NAME' and made that filter associated that to a prompt. The prompt is visible as a drop down on top of a report.
    Before I open the report there is no data in DataObject and the combo box does not show any options. But after the report is opened data comes into the dataObject and the rows appear in report also. But when I try to see the entries in the combo box, I dont see anything there.
    The entries in combo box are not getting refreshed dynamically as per the newly arriving data. Any idea of how to get this done .. ?
    Any Information on this will be helpful.
    Thanks,
    Raj Kumar

    Hi,
    Do the below checks,
    1) Check if you have maintained correct Key values where the data is stored in your report.
    2) Check if you have data for the specific combination of dimension members using EVGET function
    3) Check if the data is there in the backend for the specific combination of dimension members using the transaction RSA1
    4) Create new Report of that type and check if the data is flowing.
    Hope this helps,
    Regards,
    G.Vijaya Kumar

  • Resource com.sap.aii.af.svc with type service, not active on the server

    Hi Forum,
    in my X1 server, in rwb, it gave error:
    HTTP request failed. Error code: "503". Error message: "Service Unavailable [http://xyz:50000/AdapterFramework/rtc,
    on further analysis we find that:
    <b>  Application cannot be started.
      Details:   com.sap.engine.services.deploy.container.ExceptionInfo: Application sap.com/com.sap.xi.mdt cannot be started. Reason: it has hard reference to resource com.sap.aii.af.svc with type service, which is not active on the server.</b>
    and the service/component com.sap.aii.af.svc is not present as the error says,
    In visual admin, in the services list i couldnt find this particular resource,
    pls instruct me how to deploy/start this service com.sap.aii.af.svc ,

    Hi,
    Please check out the user authorization and role and also check that you are maintaining the passwords in all places where required.
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • Container MigrationContainer is not active at the moment

    Hi All,
    Below mentioned error encountered while deploying SAP-CRMDIC component using the file SAPCRMDIC17_0-10002941.SCA. It ended up in "ERROR" status in JSPM.
    Problem might be due to the "inactive container". Could you please let me know a easiest method to deploy the SAP-CRMDIC component.
    predecessor system -
                         com.sap.engine.services.deploy.exceptions.ServerDeploymentE
    xception: Container MigrationContainer is not active at the moment and it is not
    possible to update sap.com/crmmigrxcm.
                            at com.sap.engine.services.deploy.server.application.Upd
    ateTransaction.getConcernedContainers(UpdateTransaction.java:485)
                            at com.sap.engine.services.deploy.server.application.Dep
    loyUtilTransaction.commonBegin(DeployUtilTransaction.java:265)
                            at com.sap.engine.services.deploy.server.application.Upd
    ateTransaction.begin(UpdateTransaction.java:166)
                            at com.sap.engine.services.deploy.server.application.App
    licationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
                            at com.sap.engine.services.deploy.server.application.App
    licationTransaction.makeAllPhases(ApplicationTransaction.java:326)
                            at com.sap.engine.services.deploy.server.DeployServiceIm
    pl.makeGlobalTransaction(DeployServiceImpl.java:3190)
                            at com.sap.engine.services.deploy.server.DeployServiceIm
    pl.update(DeployServiceImpl.java:671)
                            at com.sap.engine.services.deploy.server.DeployServiceIm
    plp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1278)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInter
    nal(DispatchImpl.java:330)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(Disp
    atchImpl.java:201)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProces
    sor.request(P4SessionProcessor.java:137)
                            at com.sap.engine.core.service630.context.cluster.sessio
    n.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.ja
    va:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunn
    er.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(Act
    ionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessCon
    troller.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute
    (SingleThread.java:104)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(Sin
    gleThread.java:176)
                         For detailed information see the log file of the Deploy Ser
    vice.
    11/02/12 19:54:04 -  ***********************************************************
    Feb 12, 2011 7:54:04 PM  Info: End of log messages of the target system.
    Feb 12, 2011 7:54:04 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE App
    lication) *****
    Feb 12, 2011 7:54:04 PM  Error: Aborted: development component 'crm/migr/xcm'/'s
    ap.com'/'MAIN_CRM50VAL_C'/'7630861'/'2', grouped by :
    Caught exception during application deployment from SAP J2EE Engine's deploy ser
    vice:
    java.rmi.RemoteException: Cannot deploy application sap.com/crmmigrxcm..
    Reason: Container MigrationContainer is not active at the moment and it is not p
    ossible to update sap.com/crmmigrxcm.; nested exception is:
            com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Con
    tainer MigrationContainer is not active at the moment and it is not possible to
    update sap.com/crmmigrxcm.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDepl
    oyerImpl.performAction(DeploymentActionTypes).REMEXC)
    Feb 12, 2011 7:54:04 PM  Info: Starting to save the repository
    Feb 12, 2011 7:54:05 PM  Info: Finished saving the repository
    Feb 12, 2011 7:54:05 PM  Info: Starting: Update: Selected software component 'SA
    P-CRMDIC'/'sap.com'/'MAIN_CRM50VAL_C'/'1000.5.0.17.0.20100820072113''/'2' update
    s currently deployed software component 'SAP-CRMDIC'/'sap.com'/'MAIN_CRM50VAL_C'
    /'1000.5.0.14.0.20090211084319''/'1'.
    Feb 12, 2011 7:54:05 PM  Error: Aborted: software component 'SAP-CRMDIC'/'sap.co
    m'/'MAIN_CRM50VAL_C'/'1000.5.0.17.0.20100820072113''/'2':
    Failed deployment of SDAs:
    development component 'crm/migr/xcm'/'sap.com'/'MAIN_CRM50VAL_C'/'7630861'/'2' :
    aborted
    Please, look at error logs above for more information!
    Feb 12, 2011 7:54:05 PM  Info: Starting to save the repository
    Feb 12, 2011 7:54:05 PM  Info: Finished saving the repository
    Feb 12, 2011 7:54:05 PM  Info: J2EE Engine is in same state (online/offline) as
    it has been before this deployment process.
    Feb 12, 2011 7:54:05 Error: -
    At least one of the Deployments
    failed -
    Thanks.

    Hi,
    You would need to start the services MigrationService and MigrationContainer using following commands.
    - connect via telnet to the system: telnet <hostname> 5<instance number>04
    - authenticate with administrator username/password
    - jump <server_id>         Server ID can be obtained from the Visual Administrator/or from System Information Page.
    - startservice MigrationService
    - startservice MigrationContainer
    Then retry the deployment.
    Regards,
    Srikishan

  • Why GWt suggest box is not working in the latest versions of Firefox ? It was working only in Firefox 3 and not other versions. could you please assist in this regards.,

    Why GWt suggest box is not working in the latest versions of Firefox ?
    It was working only in Firefox 3 and not other versions. could you please assist in this regards.,

    jbren wrote:
    I repeatedly have problems with playback on my STB's. Go thru all the motions, inhouse agent, fix multi room dvr problems. Unplug unit, unplug dvr, etc. etc. etc.  The DVR'd show will play on the DVR but not on the STB's. What's up with that?
    Sorry to hear the auto fix suggested early did not fix your problem. So we can get more information from you, I have copied your post to our private support board. Please refer all correspondences to there from here on out. You can easily get to the private support one of two ways. In the email you signed up for the forums with, you will receive a link to click on. Make sure you are already signed into the forums before clicking on this link. Another way of getting there is by clicking on your username anywhere you see it in the forums. This brings you to your account profile. Scroll down to the section labeled "My Support Cases" . In there you will see the link to your case.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • I updated my iphone 3gs to ios 5.0.1 from ios 4 , now its saying that sim is not activated but the sim is still inside

    i updated my iphone 3gs to ios 5.0.1 from ios 4 , now its saying that sim is not activated but the sim is still inside
    PLSS HELP ME OUT !!!!

    Sounds like your phone was hacked to work with any network. Doing the update re-locked it to the original carrier. All you can do now is contact the carrier it is locked to to see if they have an unlocking policy. Note that if it's AT&T they do not offer unlocking. otherwise find an un-activated sim for the original carrier and you can use it as an iPod.

  • Yahoo e-mail page is distorted and hard to read (once in a while its OK) - box does not extend to the right side making e-mail info hard to read. Info displayed in the reading panel is OK.

    When I open the Yahoo email page, the box does not extend across the screen and the script is distorted making it hard to read the source, subject etc. The reading panel info reads OK. All other pages of Yahoo are not distorted.

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

  • Not to show the detail records even though the mater records are existing.

    Dear Oracle
    I would like not to show the detail records even though the mater records are existing. Is there any block preperty I can set?
    Thanks

    I don't know the reason why you would want to do that but if you do not want to any record in the master block in
    a master-details format, then you could achieve this by setting the WHERE clause property in the block.
    e.g., master block DEPT (base table DEPT) and detail block EMP (base table EMP)
    table DEPT is as follow
    dept_id (pk)
    dept_name
    table EMP is as follow
    emp_id
    emp_name
    dept_id (fk)
    then you can set the WHERE clause in the DEPT block as follows
    exists (select 1 from emp a where a.dept_id = dept.dept_id)
    hope this help

  • Value of two combo box is not persistent on change of a third combo box

    Hi All:
    I have flex page in which i have 3 combo boxes. I would be
    selecting first 2 combo box and when i select the third combo box ,
    i would get the value of previous two combo selection and display
    data accordingly.
    My problme here is when i do a change in 3rd combo box the
    values of other combo boxed are defaulted to "Select..." without
    maintaining my previous selection.
    I am stuck in this for a while. I would really appreciate if
    you can help me out in this.
    Thanks
    Kan

    there's a typo.  fix it or remove it:
    var a:Number;
    var b:Number;
    function First(evt:Event):void{
        a = evt.target.value;
    trace(a);
       compareF();
    cbFirst.addEventListener(Event.CHANGE, First);
    function Second(evt:Event):void{
        b = evt.target.value;
        trace(b);
    compareF()
    cbSecond.addEventListener(Event.CHANGE, Second);
    function compareF(){
    If (a > b){
         trace("a is greater")
    else
         trace(b is greater);

  • CreativeCloud.exe doesn't work anymore. It seens to be not activated in the system tray.

    Hello and sorry for my english. My name is Jean-Pierre BRETHES and I have a problem with the creativecloud.exe program which doesn't want anymore to start. (since a while now) The icon in the system tray doesn't appear and it still to be gray (not red). When I clic to lunch the program nothing happen. When I try to reinstall it the download end by a windows "error 50" and everything is stopped.
    AT the beginning I wanted to download In design  program to try the PAO functionalities. Thank to help me. My email adress is <removed email - kglad>. Have a nice day. JP

    Hello and sorry for the delay. Thank you for your answer. I did what you wrote and everything is fine now. Really thank you for that. I fully understood regarding my email address in my message. I will not anymore do this error.
    Have a nice day.
    Sincerely, Jean-Pierre BRETHES
    De : kglad 
    Envoyé : dimanche 6 juillet 2014 23:33
    À : Jean Pierre BRETHES
    Objet :  CreativeCloud.exe doesn't work anymore. It seens to be not activated in the system tray.
    CreativeCloud.exe doesn't work anymore. It seens to be not activated in the system tray.
    created by kglad <https://forums.adobe.com/people/kglad>  in Downloading, Installing, Setting Up - View the full discussion <https://forums.adobe.com/message/6527054#6527054>

  • Problems Shared Services:Registered application is not active at the moment

    Hi!
    I have a problem with Hyperion Shared Services (HSS) and Hyperion Performance Socrecard (HPS), my projecto from HPS appears like if not it was registered in HSS.
    The error is: Registered application is not active at the moment. Please consult your system administrator.
    The information was migrated from other server, now already run configuration utility and configurate my proyect, but not appears in HSS.
    Optional: This is necessary for assign sercurity roles by Domain?
    Thank you very much.

    Did you get this resolved .
    Vinod

  • SSO logon not possible; logon tickets not activated on the server

    When I am on RWB
    1)  click "component monitoring" ->"display all"
    2) click "CCMS"
    I get a popup says:
    "SSO logon not possible; logon tickets not activated on the server"
    I find some threads about this on SDN but they are about
    EP. My case is PI7.0SP08.
    Please advise how to overcome this issue?
    Thanks w/ points.
    Message was edited by:
            jennifer lee

    hI,
    do you have the follwoing in our SXMB_ADM if not add them.
    SXMB_ADM->IntegrationEngine configuratin-> edit the speicifc configuratin then add the follwoing
    Category:RUNTIME Parameters: logging Value:1
    If its done. check this alos...whether your browser settings will accept the cookies or not. for SSO logon ticket method you need to have cookies accepted by our browser so check it. in internet page slect TOOLS ->internet options then ckeck for cookies settings.
    How to Enable Single-Sign-On for XI 3.0 at:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/69d95112-0d01-0010-8297-fa31feea26e0
    /people/alexander.bundschuh/blog/2007/01/16/principal-propagation-in-sap-xi
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5c/b7d53ae8ab9248e10000000a114084/content.htm
    regards
    manoj kumar

Maybe you are looking for

  • Colour problems when opening PEF files in ACR

    I have the problem that when I open a (Pentax) raw image in ACR the colours (particularly blue it seems to me) go awry. If I open  the image in Pentax Photo Browser the image is displayed correctly. If  I convert the image to jpg in Pentax Photo Lab

  • Trial Balance, P&L and Balance sheet at plant level and profit center Level

    HI Expert, My Client has multiple plants under same company code, hence need the Trial balance, P&L and Balance sheet at plant level Is it possible in sap to have the Plant level financial report without using the Business area concept. Secondly  eac

  • New Vendor in EBP 3.0

    Hello Friends We have 2 existing vendors and are now attempting to define a new vendor. We have created the Vendor in our backened R/3 4.6c system and replicated it successfully to EBP.  We can create a SC with items from this vendor and subsequently

  • Why is my mac freezing, why is my mac freezing

    my mac keeps freezing and i have to turn it off to make it work again, also the screen is disfigured and flickering in different places

  • Centralising pictures on canvas PSE8

    Hi, I am trying to design a nice large picture for the inlaws xmas present.   I hope to have a white background with a number of smaller photos arranged within the canvas.  I have set the canvas size to 30'' x 20'' and want to get a the first photo e