Property for fields not working properly.

Hi
I am doing some validation on tab strip.
initially on some value my tab strip is coming,due to visibility binding property.
now i am trying to do visibility binding on individual tabs of tab strip on user based,which is not working.
is there any way to make it work out.
my code:     
   call method wd_context->set_attribute
        EXPORTING
          name  = `PROP_CREDIT`    "Context attr name
          value = space.
to hide a credit view, i had attached a attr to its transparent cont.,& have passed the value space to make it non visible.
but it not working,i am doing this like enabled,visible on 3-4 tables,but noting happening.
pls let me know how to make it work.

HI Vipin,
I have tested ouy this way...
Ihave a TB with 3 tabs, Last tab has got One TC inside which there are 2 other TCs(TC2,3) with Input fields inside them.
I bound the ENABLED property of TC2 to the ENABLE(wdy_boolean) property and coded in DOINIT of view.
I didnt code it in modifyview.
Its working fine for me..
Please test it in some demo application you will get to know the errors.
DATA lv_enable TYPE wd_this->element_context-enable.
* get element via lead selection
  lo_el_context = wd_context->get_element( ).
* @TODO handle not set lead selection
  IF lo_el_context IS INITIAL.
  ENDIF.
* @TODO fill attribute
lv_enable = abap_false.
* set single attribute
  lo_el_context->set_attribute(
    name =  `ENABLE`
    value = lv_enable ).
I guess, there is some thing going wrong  in MODIFYVIEW. for every event this gets triggered right.
Now the TC2 got disabled also the Inoutfield inside it got disabled.
Regards,
Lekha.
Edited by: Lekha on Oct 16, 2009 4:08 PM

Similar Messages

  • Adobe Photoshop Elements 12: dropdown boxes for tools not working properly in Win 8.1

    Elements 12 system requirements are indicated up to Windows 8.  Does that mean it should also work on any Windows 8 upgrades, more specifically 8.1?  The drop-down boxes for the tools are not working properly in the program.  I've installed it, uninstalled it, and installed it again with the same results.  It worked fine on my old computer with Vista.

    Yes PSE12 will work on 8.1
    If problems persist try re-setting the prefs.
    Go to: Edit >> Preferences >> General (Photoshop Elements menu on Mac)
    Click the button Reset Preferences on next Launch

  • "Email for Nokia" Not Working Properly after Firmw...

    The "Email for Nokia – 10 Accounts" also called Nokia Messaging does not work after firmware upgrade. 
    I upgraded my E63 firmware from 400.21.13 to 410.21.10 (the latest).   After upgrade, I installed the Email software, ver 9.07(2), from Ovi store.  The problem starts after I entered my email address and password.  The software imported the email account to the Communication --> Messaging  folder (where you used to read your text message). Before upgrading, the email software manages all my email accouts and synchronise up to 10 emails.  Now that nice email software and user friendly interface no longer show up.  Instead it uses that poor design Communication --> Messaging folder.  It only allows maximum 2 email acct. auto retrieval and NOT working with yahoo mail.  
    Please advise how can I get eh Nokia email works again.  thanks

    Very upset with Nokia's tech support service, taking so long not calling back after contacting them.  Finally I found a work around.  After reinstall the email software, setup a new email account never used with Nokia email before.  Then the software will setup correctly instead using the messaging folder.  This is a bug with the Nokia email software and the new firmware.    OR the Nokia email software is intended to do it that way because it's a trial version.  It just let you try it for the first time of installation. 

  • Why setValueExpression method for inputText not working properly

    Hi,
    JDev Ver : 11g 11.1.1.2.0
    I have set value property of input text using setValueExpression method.
    First time its working fine and setting value properly but when I set blank value using same setValueExpression method then input text automatically become read only.
    I have not explicitly set read only true anywhere in my code.
    For settting value I am using #{bindings.iProductName.inputValue} expression while resetting I am using #{''} value expression.
    Is there any bug with this method or the I have done is wrong ?
    Pls give your comment on this.
    Thanks
    regards,
    devang

    Hi,
    You're doing something very wrong. If you want to reset the value, you reset the value, not modify the expression. So you need to call .setInputValue(null) on the ValueBinding. #{''} is a r-value, thus read-only.
    Regards,
    ~ Simon

  • Dense_Rank() over order by date fields not working properly

    Hi,
    i have a pl/sql statement which looks like this:
    WITH OrderedByDateTable     AS
         SELECT     gsp.*, DENSE_RANK () OVER (ORDER BY A_varChar_col1,
    decode(upper('COMPLIANCETICKSDATE'),'TASKNBR',TASK_NBR,
    'DESCRIPTION', DESCRIPTION,
    'PARTNBR', PART_NBR,
    'PARTSERIALNBR', PART_SERIAL_NBR,
    'SORTDATE', TO_DATE(MIN_EST_DUE_DATE),
    'COMPLIANCETICKSDATE', COMPLIANCE_DATE,
    TASK_NBR
    )DESC NULLS LAST,task_nbr,description,enrtask_id)     AS r_num
         FROM     GT_STATUS_PAGING gsp
    SELECT     *
    FROM     OrderedByDateTable     
    The result that i am expecting is that the dense_rank should order the compliance_date column in desc order and finally gives ranks to the rows.
    But i am getting the resultset in some order all the time, but it is neither ASC or DESC.
    But if for debugging purposes, lets say if i replace the COMPLIANCE_DATE column with DESCRIPTION column again it works perfectly fine giving me the descriptions in DESC order along with the ranks. But for both the date fields above it doesnt work.
    Can anyone please help me on how to solve this?

    user12270778 wrote:
    Hi,
    i have a pl/sql statement which looks like this:
    The result that i am expecting is that the dense_rank should order the compliance_date column in desc order and finally gives ranks to the rows.
    But i am getting the resultset in some order all the time, but it is neither ASC or DESC.
    Can anyone please help me on how to solve this?The problem is an implicit date conversion that takes place.
    Because the first parameters of your decode are strings, the COMPLIANCE_DATE column is also converted into a string. This string is then sorted alphanumerically. The default format mask is often DD-MON-RR. Therefore your date column would be sorted by day, then by the name of the month and so on.
    Fast solution would be to do an explicit conversion from date into strings that match the ordering.
    WITH  OrderedByDateTable     AS
            (     SELECT     gsp.*, DENSE_RANK () OVER (ORDER BY  A_varChar_col1,
                         decode(upper('COMPLIANCETICKSDATE'),
                                   'TASKNBR',TASK_NBR,
                                   'DESCRIPTION', DESCRIPTION,
                                   'PARTNBR', PART_NBR,
                                   'PARTSERIALNBR', PART_SERIAL_NBR,
                                   'SORTDATE', TO_DATE(MIN_EST_DUE_DATE),
                                   'COMPLIANCETICKSDATE', to_char(COMPLIANCE_DATE,'YYYYMMDD HH24:MI:SS'), /* this is the important bit */
                                   TASK_NBR
                                   ) DESC NULLS LAST,task_nbr,description,enrtask_id)     AS r_num
                        FROM     GT_STATUS_PAGING  gsp
    SELECT     *
    FROM     OrderedByDateTable     You should be careful, because the same problem also happens with your SORTDATE column MIN_EST_DUE_DATE.
    Edited by: Sven W. on Oct 25, 2012 6:53 PM

  • Sort Fields Not Working Properly?

    If I do Get Info on a track, and change the Sort Artist to anything, then I Right Click on the track in the library > Apply Sort Field > Same Artist it changes the Sort Artist of all tracks by that artist to what I entered.
    However, I want to delete all the Sort Artist data. I do exactly the same thing, and change the Sort Artist data to nothing on a track. However when I try to apply the sort field to all tracks by the artist it leaves them alone! It doesn't change all the Sort Artists to nothing! It only does this when I enter no data. Any string at all and it works correctly.
    How can I change all the Sort Artists to nothing i.e. delete the Sort Artist data?

    Hi there.
    How about, instead of leaving the Sort Artist field blank, entering a name that is identical to the actual Artist field instead and then use the Apply Sort Field > Same Artist option.
    You can then go to the iTunes View menu > View Options command and uncheck Sort Artist so that it will no longer appear in your iTunes Library display.
    Does that bring you anything in the way of satisfaction?

  • AddListener property for ChoiceBox not working in MAC !!!

    The following piece of code is working fine in Windows but not in MAC. Any idea?
    cb.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<String>() {
    @Override public void changed(ObservableValue<? extends String> selected, String oldValue, String newValue) {
    if(!oldValue.equalsIgnoreCase(newValue))
    refreshScreen();
    Thanks in advance !!!

    There are some issues with combo boxes/choice boxes. Probably this can be of some help:
    http://javafx-jira.kenai.com/browse/RT-23876?focusedCommentId=277530&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-277530

  • Downloading iTunes 7.6 for windows not working properly

    OK, I downloaded iTunes 7.6 for windows 3 separate times. The first time after completing the download, an error message popped up that states: "iTunes cannot run because some of its required files are missing. Please reinstall iTunes." Well I went back to your site two more times to download the software again, each time I get a pop-up that asks if I want to remove iTunes or repair it, each time I select REPAIR and it goes through the download process and says it is complete. Then each time I attach my shuffle, that error message pops up again and says there that iTunes is missing files. SOMEBODY PLEASE HELP!!!! I CANNOT ATTACH MY SHUFFLE TO ACCESS MY MUSIC!!!!

    http://www.oldversion.com/program.php?n=itunes

  • Help for date field not working after upgrade

    hi experts,
    In our BSP application for a page we had an inputfield (date).
    Onvaluehelp for input field we were calling the saphelpdate function.
    however after upgrade this functionality is not working properly as no pop up comes after clicking on the icon.
    we have upgraded to SPS 16 recently.
    please help me.
    regards,
    Arvind.

    Hi, I try upper case but nothing happen. This is all my code by far, I hope you can help me:
    DATA: BEGIN OF T_PCONT OCCURS 0,
          PCONT LIKE ZPSPERMISOS-PSOBKEY,
    END OF T_PCONT.
    DATA: BEGIN OF T_FIELDS OCCURS 0.
            INCLUDE STRUCTURE help_value.
    DATA END OF T_FIELDS.
    DATA: BEGIN OF T_VALUES OCCURS 0,
          VALUE(60) TYPE c.
    DATA: END OF T_VALUES.
    DATA: N TYPE i.
    SELECTION-SCREEN BEGIN OF BLOCK  b20 WITH FRAME TITLE text-b02.
      SELECT-OPTIONS:
        P_CONT FOR  ZPSPERMISOSH-PSOBKEY OBLIGATORY NO-EXTENSION NO INTERVALS,
        P_INT  FOR  ZPSPERMISOSH-PARTNER OBLIGATORY NO-EXTENSION NO INTERVALS,
        P_FEC  FOR  ZPSPERMISOSH-ZFINICN NO-EXTENSION NO INTERVALS,    
        P_RAZ  FOR  ZPSPERMISOSH-ZRAZONFINIC NO-EXTENSION NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK b20.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_CONT-LOW.
      PERFORM P_HELP_P_CONT USING P_CONT-LOW.
    *&      Form  P_HELP_P_CONT
    FORM P_HELP_P_CONT  USING P_P_CONT.
      DESCRIBE TABLE T_PCONT LINES N.
      IF N EQ 0.
        T_FIELDS-FIELDNAME  = 'PSOBKEY'.
        T_FIELDS-TABNAME    = 'ZPSPERMISOS'.
        T_FIELDS-SELECTFLAG = 'X'.
        APPEND T_FIELDS.
        CLEAR T_FIELDS.
        SELECT PSOBKEY FROM ZPSPERMISOS
        INTO  TABLE T_PCONT.
        SORT T_PCONT BY PCONT.
      CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE'
        EXPORTING
          CUCOL        = 10
          CUROW        = 1
          TABNAME      = 'T_PCONT'
          FIELDNAME    = 'PCONT'
        IMPORTING
          SELECT_VALUE = P_P_CONT
        TABLES
          FIELDS       = T_FIELDS
          VALUETAB     = T_VALUES.
    ENDFORM.                    " P_HELP_P_CONT
    Edited by: J. Garibaldi on Nov 25, 2009 11:14 AM
    Edited by: J. Garibaldi on Nov 25, 2009 11:16 AM

  • TS5376 I'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.

    'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.  I have even done a repair to see if that works and it has not.  Has anyone else found a new way to get it working?

    Try Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Centre button is not working properly in my iphone . . what can i do for that ?

    centre button is not working properly in my iphone . . what can i do for that ?

    Get it serviced.

  • My Ipod touch does not work properly.When i charge it,it only works for 5 min.n gets discharge.I showed it to the apple store in banglore n the person told me its fine n It is working properly.Bt its not working properly.Can someone help

    My Ipod touch does not work properly.When i charge it,it only works for 5 min.n gets discharge.I showed it to the apple store in banglore n the person told me its fine n It is working properly.Bt its not working properly.Can someone help

    If after you charge it for about three hours and it only last about five minutes the battery is probably dead or there could be another hardware problem.  I would go back to the Apple store and ask them specifically how can it be OK if the fully charged battery only lasts five minutes.

  • Hi, recently i bought macbook pro with retina display and installed windows 8 professional original software also. but in windows 8 track pad is not working properly. can you help me with providing drivers for trackpad to work on windows 8 professional .

    hi, recently i bought macbook pro with retina display and installed windows 8 professional original software also. but in windows 8 track pad/ TOUCHPAD is not working properly. can you help me with providing drivers for trackpad to work on windows 8 professional .

    Did you download and install the Windows Support software? If you did, did you use the Boot Camp Control icon to set up the trackpad how you want it?
    http://www.apple.com/support/bootcamp/
    https://discussions.apple.com/community/windows_software/boot_camp

  • I purchased the gaming app from app store and I used it for some time but now suddenly the app is not working properly it's not starting properly and just dies down after the start and comes Back to homepage need help please guys help me out with this!

    Guys needed your help with my real racingHD game app it's not working properly even after paying for it I don't know why it's not working having trouble with it cause it won't star smooth need help guys

    Read Mitch's post on the sad ipod in this thread:
    http://discussions.apple.com/message.jspa?messageID=2369954#2369954

  • My trackpad is not working properly already. Is it eligible for replacement?

    My trackpad is not working properly sometimes and it takes too long for my macbook to open

    Whether your MacBook is legible for a replacement depends on the products warranty...
    When did you purchase the product? Was it a new purchase or a second-hand purchase?

Maybe you are looking for