Control appearing as disabled

My problem stmt is as follows:
1. I am creating a simple form containing 2 label and 2
input fields.
2. These 2 input fields are mapped to a view context in
which is structured bind to a local dictionary
structure.
when I deploy & run above the display just show
disabled controls.
Kindly suggest on the same.
Thanks
Vipin

Hi,
U change the cardinality of the node to 1:1 or 1:n and bind to Input field.
Hope this helps,
Regards,
Vijayakhanna Raman

Similar Messages

  • My iphone 4S doesn't show the volume controls when playing videos and the speakers don't sound. But if I plug in the earphones then I can hear fine and the volume controls appear on screen. Please someone help.

    After a week or so of installing IOS 7 now I having this problem, the speakers don't work for videos, music or apps sounds, but they work fine for using the speaker phone. It's definitely some software issue as the volume control appears when i plug in the earphones, but disappears when unplugging them, same happens with the volume buttons on the side, they don't work when trying to use the speakers, but the work when using the earphones. Please help if you have a workaround for this. I don't want to carry my earphones all the time to listen to videos and music.

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    Try the following to rule out a software problem
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack or other hardware problem.
    Apple Retail Store - Genius Bar
    If not under warranty Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price                  
    A third-party place like the following will replace the jack for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the jack yourself
    iPod Touch Repair – iFixit

  • Hello all,  I bought an iPhone 5 in the US and brought it back to Brasil. Now I'm trying to use Siri, but once I press the "home" button "voice control" appears and it only works for me to call my contacts. The manual guide tells me to go to Settings Gene

    Hello all,
    I bought an iPhone 5 in the US and brought it back to Brasil. Now I'm trying to use Siri, but once I press the "home" button "voice control" appears and it only works for me to call my contacts. The manual guide tells me to go to Settings>General>Siri. At the General menu "Siri" doesn't appear. What should I do to set Siri up if it doesn't appear at settings>general?
    Thank you,
    Melanie.

    Go to Settings>General>Restrictions and make sure Siri is set to On.

  • Checkbox in REUSE_ALV_HIERSEQ_LIST_DISPLAY appearing in disabled mode.

    Hi
    I have created check-box in REUSE_ALV_HIERSEQ_LIST_DISPLAY which is appearing in disabled mode. I want to change it into select-able mode. Please advise.

    Hi Manu,
    you can set that field editable by making change in field catalog -
    wa_fieldcat-edit = 'X'
    Regards,
    Harsh Bansal

  • Why does our apple id appear as disabled on apple tv after it worked, fine and has money from a gift card?

    Why does our apple id appear as disabled on apple tv after it worked, fine and has money from a gift card?

    Gee, why don't you ask your bank

  • "Control HW Communications Disabled" while using PRM1-Z8

    Hi,
    I was wondering if anyone has experienced difficulty and/or knows of a way to solve the following:
    We have a PRM1-Z8 rotation controller in our lab. We can use APT User to control that perfectly but the Labview does not work.
    I did exactly the same thing in the User Guide to Labview & APT but the Labview keep giving out error message.
    Error; [Code = 10109]
    Control HW Communications Disabled
    A software call has been made to a control which is not currently communicating with any hardware. This may be because the control has not been started or due to incorrect serial number or missing hardware.
    The VI was attached.
    I've searched in the forums and verifed that:
    1. The SN is the same as we saw in APT user.
    2. The error is always there no matter the APT User is running or not.
    3. The error is always there no matter the loop in the VI is there or not.
    4. I am using MG17 motor as the ActiveX Object
    If anyone can help it would be much appreciated.
    Thanks
    Renjie
    Attachments:
    Error message.png ‏285 KB
    assist2.vi ‏11 KB

    Hi Rhou7,
    This error is actually an event panel generated by the APT program.  The first step I would suggest is to finish wiring some of the code and add error handling to ensure that it is not related to the LabVIEW programming. To demonstrate this I modified some of your code (see attached VI) following the APT guide found at this link. You may consider following all of the steps in that guide to completion to ensure that the LabVIEW program is stable first. 
    David C
    Attachments:
    assist2_edit.vi ‏14 KB

  • Scheduled job appears as Disabled!

    Hi,
    Need help on this issue that i am unable to resolve.
    1> I installed Oracle DB 10g
    2> installed OWB 10g R2
    3> created mappings that run perfectly
    4> Installed Oracle Wrokflow Server
    5> Configured mapping and assigned the schedule to them
    6> Provided necessary privileges to job owner and creator
    7> Deployed the schedules successfully
    BUT!! the jobs do not trigger
    I checked in DBA_SCHEDULER_JOBS and found that the job i deployed appears as Disabled.
    I created another job, that too appeared as disabled. When I enabled the job manually it started running.
    Is it that there is some step i am missing so that the jobs are created as disabled? Is it required that I enable the jobs manually everytime?(thats not possible by the way)
    Please help.
    Goga

    iOS: Unable to update or restore - Support - Apple

  • Default appearance of disabled items

    Hi, i would like to have some informations on visual attributes of disabled items :
    --Is it possible to change the default appearance of disabled items?
    --How oracle forms manage visual of disabled items?
    --Is it possible to change background or foreground color of disabled items?
    Thank you very much.
    Edited by: Tabit7 on Jul 19, 2011 6:30 AM

    This seems a pretty simple thing to test. For example, I created a sample form and in the When-New-Item-Instance trigger I added the following code:
    :BLOCK1.ITEM1 := 'TEST';
    Set_Item_Property('BLOCK1.ITEM1',BACKGROUND_COLOR,'r255g255b000');  /* YELLOW */
    Set_Item_Property('BLOCK1.ITEM1',FOREGROUND_COLOR,'r255g255b255');  /* WHITE */Good so far. Background is Yellow and Forground is White. Then I disabled the item.
    Set_Item_Property('BLOCK1.ITEM1',ENABLED, PROPERTY_FALSE);and the text Forground color changed to light black or dark grey. So to answer your questions:
    --Is it possible to change the default appearance of disabled items?Yes - but, not all attributes of the disabled item can be modified.
    --How oracle forms manage visual of disabled items?The basic appearance of the item doesn't change except for the forground color.
    --Is it possible to change background or foreground color of disabled items?Background color = YES, Forground color = NO.
    If there are other attributes you want to change, Font Style, etc, I suggest you try to set the property and see what happens. As it turns out, you can also change the FONT_SYTLE of a disabled item as well. ; )
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Please, I need help in this,How to make a tree control appear from right to left ??

    i working on Arabic project in which we use a tree control and i  want it to display its branches from right to left .
    i tried to rotate it but it doesn't work because the disclosure triangle still appear on the left .
    i ask if there is any thing to mirror the tree control ,and ask if this mirroing will work or not?

    You'll need to modify the layout logic of your renderer.
    Here's a simple example that extends the default tree renderer and overrides the updateDisplayList method(). It will probably need more work. Set textAlign="right" on your Tree control when you use this renderer. You'll also need to supply a disclosure icon that points in the opposite direction.
    package
        import mx.controls.treeClasses.TreeItemRenderer;
        import mx.controls.treeClasses.TreeListData;
        public class RightToLeftTreeItemRenderer extends TreeItemRenderer
            override protected function updateDisplayList(unscaledWidth:Number,
                                                      unscaledHeight:Number):void
                super.updateDisplayList(unscaledWidth, unscaledHeight);
                var startx : Number = data ? TreeListData( listData ).indent : 0;
                startx = unscaledWidth - startx;
                if ( disclosureIcon )
                    disclosureIcon.x = startx - disclosureIcon.width;
                    startx = disclosureIcon.x;
                if ( icon )
                    icon.x = startx - icon.width;
                if ( label )
                    label.x = 0;

  • Copying Control Fields are disable in SAP SD

    Hi Friends,
    I am having problem with copying control in SAP SD. While using T- Code VTAF, VTFF etc for copying control, I found all the standard fields are disable but I am able to do all the sale processing. Therefore me doubt is; when there is not even a single field is available in the copying control then how I am able to run all the activities. If these are hidden and maintained in background then how I can able to see the existing fields in copying control. Please reply as soon as possible and clear my doubt. I shall be great thankful to you for this.
    Regards,
    Bharat B

    Hi Frank,
    Thanks for yours kind response to my doubt but the question is still not solved. as i already explain in my question that the available standard fields are disable means they are not in display mode, else these are hidden/invisible, so please try to give me the appropriate answer for that..and one more thing i want to add i.e. standard fields means..the values avialable for source fields and target fields as per the sap standard..as there is no copyning control existing in the system..For instance; copying control from OR to F1, F2 etc, LF to F1, F2 etc are not shown in the system but i am able to process all the sales activities like sales order creation, Delivery Document and Billing Document creation, so i know that stuff that if the copying control is not available then system won't be aloww me to do the single transaction for sales processing..I know this is bit time consuming and cofusing too but i am having faith in YOU. I think now you have understood my problem..so please provide me the solution for that. I shall be great thankful for this.
    Thanks and Regards,
    Bharat B

  • Copying Control Fields are disable

    Hi Friends,
    I am having problem with copying control in SAP SD. While using T- Code VTAF, VTFF etc for copying control, I found all the standard fields are disable but I am able to do all the sale processing. Therefore me doubt is; when there is not even a single field is available in the copying control then how I am able to run all the activities. If these are hidden and maintained in background then how I can able to see the existing fields in copying control. Please reply as soon as possible and clear my doubt. I shall be great thankful to you for this.
    Regards,
    Bharat B

    Hi Friends,
    Thanks for yours kind response to my doubt but the question is still not solved. as i already explain in my question that the available standard fields are disable means they are not in display mode, else these are hidden/invisible, so please try to give me the appropriate answer for that..and one more thing i want to add i.e. standard fields means..the values avialable for source fields and target fields as per the sap standard..as there is no copyning control existing in the system..For instance; copying control from OR to F1, F2 etc, LF to F1, F2 etc are not shown in the system but i am able to process all the sales activities like sales order creation, Delivery Document and Billing Document creation, so i know that stuff that if the copying control is not available then system won't be aloww me to do the single transaction for sales processing..I know this is bit time consuming and cofusing too but i am having faith in YOU. I think now you have understood my problem..so please provide me the solution for that. I shall be great thankful for this.
    Thanks and Regards,
    Bharat B

  • IOS 4.2.1 - video controls appear on screen upon starting video, bug?

    Hello,
    I finally updated my 3G Touch to iOS 4.2.1 - had been a 3.1.3 holdout for a while.
    One thing I happened to notice was that immediately after selecting a video for playback, the on-screen controls will appear, whereas this did not occur in 3.1.X.
    It's not an end-of-world scenario, but moreso a minor nuisance (especially if using a detachable screen cover like myself) to clear the controls at, say, the beginning of a television program so as to not interfere with the video.
    (And not wanting to wait the several seconds to clear itself... sometimes that is crucial plot you're missing right there...)
    Was this introduced with iOS 4 (like I said, this did not occur in 3.1.X), or is this a bug worthy of reporting to Apple?

    Hello,
    I finally updated my 3G Touch to iOS 4.2.1 - had been a 3.1.3 holdout for a while.
    One thing I happened to notice was that immediately after selecting a video for playback, the on-screen controls will appear, whereas this did not occur in 3.1.X.
    It's not an end-of-world scenario, but moreso a minor nuisance (especially if using a detachable screen cover like myself) to clear the controls at, say, the beginning of a television program so as to not interfere with the video.
    (And not wanting to wait the several seconds to clear itself... sometimes that is crucial plot you're missing right there...)
    Was this introduced with iOS 4 (like I said, this did not occur in 3.1.X), or is this a bug worthy of reporting to Apple?

  • Table control enable and disable rows

    Hi,
    I want to keep the table control in disabled mode initially.
    When user press the add button,the row next to where data is already present should alone be enabled for data entry.
    In PBO event i was able to disable the entire table control.but when i could not find a way to identify the first blank line to enable it for data entry.
    Please help.
    Thanks
    Ambily

    Hi Ambily,
    follow the below steps
    declare a data : w_flag  type c. in the global
    and next write the code the PBO
    PROCESS BEFORE OUTPUT.
    * Module screen GUI-Screen&Status and Screen Logic
      MODULE status_<Screennum>.
    * Table control for OUTPUT
      LOOP AT <table-control> .
        MODULE Modify_screen.
      ENDLOOP.
    Module modify_screen output.
    * Table control reading values from input screen & displaying on screen
      READ TABLE <table>   INDEX <tablecontrol>-current_line.
    If w_flag is initial.
        LOOP AT SCREEN.
          IF screen-name = <Tablecontrol Line>.
            screen-input = 0.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    wndif.
    Endmodule.
    "next in PAI mark the w_flag to 'X'
    Prabhudas

  • Tree control: How to disable the selection of a child item

    Hello everyone,
    Im having trouble with disabling the selection of a child item in a tree control. I dont know if its possible but havent found any answers on this forum regarding this issue.
    Example:
    Parent tag 1
        child item 1
        child item 2
    Parent tag 2
        child item a
        child item b
    What i would like to do is being able to select the parent tags but not the child items, because i use the name of the selected item in my program to determine which actions are allowed and those that are not. To avoid this problem i look at the first 4 letters of the name and this way i can determine if it is a parent tag or child item and take appropriate action. Im able to do this because the parent tags have fixed names. But even though nothing happens in software if i select a child item it still lights up, so for the user of the program it looks as if the child items is selected but the program doesnt do anything(because i made it that way). Thats why i want to be able to disable the selection of the child item or at least make the selection colour of the child item transparant so it doesnt look like it is selected.
    Can anyone help me with this problem, if there are parts of my question you dont understand, just ask.
    greetz
    Ynse.

    Muks,
    your last image disables the whole tree.
    To programmatically disables an item use ActiveItem.Disabled? property.
    Unfortunately this only has two states, Enabled and disabled (thus grayed).
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Custom image in search control appears blurred in IE10

    hi,
    We are facing a unique issue of few users seeing blurred image for the search icon in the search  control. if the user clears the cache, it appears correctly but he susequently comes back to search page, it again blurs.
    We had replaced the default image with custom image.

    hi Inderjeet,
    Please find my replies inline below
    Do we have BLOB cache enabled. 
    [SRao] no
    Does other browsers works fine
    [SRao] yes
    Does all the users face same issue
    [SRao] yes. Even for this user it works fine few times. We tried zeroing down to the network level but still it keeps poping up everynow and then.
    Can you check what happens when we use Fiddler tool
    [SRao] Fiddler shows all well. we get http 200 ok when access the url of the image.

Maybe you are looking for