Is there any way to read the field name,through the property binded to it.

Hi
I want to know that,is there any method exits with which i can find the field names of the screen,if i have the property attribute with me.
as my req is to make the validation for the property attr,& check  how many fields are binded with the single property attr,i have read the property attr dynamically,now need to find the fields linked,& need to check how many fields have not field value,& through the error msg.

just read the attribute binded to properties using code wizard ( Control + F7).
Code generalted will be like :
DATA lo_nd_cn_check TYPE REF TO if_wd_context_node.
    DATA lo_el_cn_check TYPE REF TO if_wd_context_element.
    DATA ls_cn_check TYPE wd_this->element_cn_check.
    DATA lv_ca_check LIKE ls_cn_check-ca_check.
  navigate from <CONTEXT> to <CN_CHECK> via lead selection
    lo_nd_cn_check = wd_context->get_child_node( name = wd_this->wdctx_cn_check ).
  get element via lead selection
    lo_el_cn_check = lo_nd_cn_check->get_element(  ).
  get single attribute
    lo_el_cn_check->get_attribute(
      EXPORTING
        name =  `CA_CHECK`
      IMPORTING
        value = lv_ca_check ).
Here i have read attribute CA_CHECK.

Similar Messages

  • I have lost my iPhone.  Is there any way I can track it down through the GPS?  Does apple provide this service, or AT

    WE have phone tracker on my husbands iphone, and it shows the phone is here in the house, but so is my husbands phone.  How do I know that it is referring to his phone or mine?

    Tell him to turn his phone off and see if the 'tracked' phone disappears...

  • Is there any way to search for a term using the Firefox search field, and have the results automatically open in a new tab?

    Is there any way to search for a term using the Firefox search field, and have the results automatically open in a new tab? When there was support for Google Toolbar, I was able to do this; now, whenever I want to search for something, I have to open a new tab to do it, and cut-and-paste my search into the search field in the new tab. I used to be able to highlight, drag, and drop something into the search field and have it automatically open in a new tab. This is enough for me to switch to Chrome . . .

    Set a preference to have searches from the Search Bar (upper right) automatically open all searches in a new tab
    #type '''about:config''' in the URL/Location/Address bar and press the Enter key
    #if you see a warning, accept it (promise to be careful)
    #Filter = '''browser.search.openintab'''
    #in the lower panel, double click the item (or right-click and choose "Toggle") to change the value to "true"
    #close the about:config tab and test
    #See:
    #*For help with opening/using about:config, also see: http://kb.mozillazine.org/About:config
    #*Also see: http://kb.mozillazine.org/About:config_entries (click on "Browser", scroll down to browser.search.openintab)
    '''Search Bar''': http://support.mozilla.com/en-US/kb/Search+bar
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    About Google toolbar............
    Google decided that they will no longer produce the Google Toolbar for Firefox 5 and newer version. It is best to move on to other alternatives than to try any "hacks" to the toolbar that may or may not perform in the future. Future versions of Google toolbar will only work with IE7-9. Google Toolbar is not available on any other browser, even Google's own browser.
    *http://googletoolbarhelp.blogspot.com/2011/07/update-on-google-toolbar-for-firefox.html
    *https://support.mozilla.com/en-US/kb/google-toolbar-not-compatible-firefox?s=google+toolbar&r=0&as=s
    *http://www.google.com/support/toolbar/bin/answer.py?answer=1342452&topic=15356%29
    *Google Toolbar 8 FAQ (IE only): https://www.google.com/support/toolbar/bin/answer.py?hl=en&answer=1111588
    '''''To access your Google Bookmarks visit''''' www.google.com/bookmarks.
    Alternatives:
    *http://kb.mozillazine.org/Using_Google_Toolbar_features_without_toolbars
    *https://addons.mozilla.org/en-US/firefox/addon/googlebar-lite/
    *https://addons.mozilla.org/en-US/firefox/addon/gbookmarks-google-bookmarks-fo/

  • I have written a binary file with a specific header format in LABVIEW 8.6 and tried to Read the same Data File, Using LABVIEW 7.1.Here i Found some difficulty.Is there any way to Read the Data File(of LABVIEW 8.6), Using LABVIEW 7.1?

    I have written a binary file with a specific header format in LABVIEW 8.6 and tried  to Read the same Data File, Using LABVIEW 7.1.Here i Found some difficulty.Is there any way to Read the Data File(of LABVIEW 8.6), Using LABVIEW 7.1?

    I can think of two possible stumbling blocks:
    What are your 8.6 options for "byte order" and "prepend array or string size"?
    Overall, many file IO functions have changed with LabVIEW 8.0, so there might not be an exact 1:1 code conversion. You might need to make some modifications. For example, in 7.1, you should use "write file", the "binary file VIs" are special purpose (I16 or SGL). What is your data type?
    LabVIEW Champion . Do more with less code and in less time .

  • Is there any way to find a lost phone if the battery is dead?

    Is there any way to find a lost phone if the battery is dead?

    No there is no way mate. Sorry.

  • Is there any way to overclock an A64 by adjusting the multiplier?

    Is there any way to overclock an A64 by adjusting the multiplier?
    I have an Athlon64 3200+ (Socket 754) and a MSI K8T Neo-FIS2R.
    Seems to be a sweet overclocker, but my RAM cannot run at much more than the normal 200 (400) MHz, so FSB overclocking is no good for me.
    /Salmoneus

    hmm the a64 is locked so you cannot use a cpu multipier to have only cpu go faster..
    i oc with the fsb....but noticed that i may actually be over running my power, at high oc's(233)  if i unplug at least 3 hard drives, and some fans it will run microsofts memmory tester...but not with them in.
    you may be able to oc if you drop your mem speed down in bios to 333 or 200.
    so when you oc the memm will clib from there...i have seen good results from that.
    one person was able to catch my 232 results from dropping down to 200 mem speeds.

  • Is there any way to read XML directly from a Web Page ??

    i have a url, which on sending request, shows XML in browser.
    Now i need to read this XML in browser and then manipulate it according to my need and display it on another page.
    actually the process is. :
    1) i have to first retrieve an xml from other site. (XML will only be shown in browser)
    2.)then i have to read the Xml and show it in according to my requirements.
    Is there any way to read XML directly from a Web Page ??
    is their logic to accomplish this.
    e.g in Servlet i can do somewhat like this :
    String wholeXml=Somemethod(url);
    Please Advice

    the average Java XML parser will accept an InputStream, so just open an URLConnection to the webpage, get the inputstream from it and feed that inputstream to the XML parser. If the URL has valid XML data, it will get parsed without problems.

  • I have the app "viPlay" on my iPad and iPhone. Is there any way that it could be available for the Apple TV? I'd like to access my personal videos from my hard drive using the Apple TV through the 'viPlay' app.

    I have the app "viPlay" on my iPad and iPhone. Is there any way that it could be available for the Apple TV? I'd like to access my personal videos from my hard drive using the Apple TV through the 'viPlay' app.

    Welcome to the Apple Community.
    Nobody here will have any information about that since the community is only made up of users like you or I. Anything else is mere speculation and speculation is not permitted here under the Terms of Use for these communities.
    Any responses you may receive may well be removed and would be wholly unreliable in any case.
    If you believe that Apple's product may be enhanced in anyway you can leave feedback here.

  • I have bought a used macbook, to bad i do not have the admin password. is there any way to bypass this issue with out the Mac OS X disk? (without loosing my obtained files?)

    i have bought a used macbook, to bad i do not have the admin password. is there any way to bypass this issue with out the Mac OS X disk? (without loosing my obtained files?)   I NEED HELP BADLY PLEASE....

    What version of the Mac OS X are you running. Go to the Apple in the upper left corner and select About This Mac and post the version.

  • Is there any way (or app) where I can change the qwerty keypad to the telephone textpad?

    Is there any way (or app) where I can change the qwerty keypad to the telephone textpad?

    Hi! You can't do it without jailbraek. And I offer you "don't try it"!

  • I wanted to know how to view the gifts I've sent to people and (if possible) know if they received and downloaded them. Is there any way to do that, other than asking the person?

    I wanted to know how to view the gifts I've sent to people and (if possible) know if they received and downloaded them. Is there any way to do that, other than asking the person? Obviously I want the gift to be a surprise (for my best friend specifically) so asking them if they received it would ruin that.

    Have you tried resetting your iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

  • HT201364 i have all the requirements except 8gb of available space. my mac only has 4gb capacity.is there any way to get a smaller version of the mavericks software?

    I have all the requirements except8gb of available space. my mac only has 4gb capacity.is there any way to get a smaller version of the mavericks software?

    That refers to free disk space, not RAM. If your computer has 4GB of RAM, that's enough. If it only has 4GB of free disk space, you need to delete content from the internal drive; for best results, free up at least 20GB.
    (97356)

  • The computer that had my iTunes account on has broken, and was thrown away. All the media I bought are on my iPhone only - is there any way to re-open my iTunes on the new computer or to download them off my iPhone? Thanks!

    The computer that had my iTunes account on has broken, and was thrown away.
    All the media I bought on it are on my iPhone only - is there any way to re-open my iTunes on the new computer or to download them off my iPhone?
    I'm worried that if I lose my iPhone all will be lost. Please help!
    Thanks,
    Alastair

    Buy yourself a backup drive. Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer is structured around you maintaining your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, matching the device content to the content on the computer. The exception is purchased content.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only media purchased from iTunes Store
    For transferring other items from an i-device to a computer you will probably have to use third party commercial software unless you have an older model iPod. Examples (check the web for others; this is not an exhaustive listing, nor do I have any idea if they are any good):
    - Senuti - http://www.fadingred.com/senuti/
    - Phoneview - http://www.ecamm.com/mac/phoneview/
    - MusicRescue - http://www.kennettnet.co.uk/products/musicrescue/ - Mac & Windows
    - Sharepod (free) - http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2 - Windows
    - Snowfox/iMedia - http://www.mac-videoconverter.com/imedia-transfer-mac.html - Mac & PC
    - Yamipod (free) - http://www.yamipod.com/main/modules/downloads/ - PC, Linux, Mac [Still updated for use on newer devices? No edits to site since 2010.]
    - Post by Zevoneer: iPod media recovery options - https://discussions.apple.com/message/11624224 - this is an older post and many of the links are also for old posts, so bear this in mind when reading them.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive - https://discussions.apple.com/docs/DOC-3141 - dates from 2008 and some outdated information now.
    Copying Content from your iPod to your Computer - The Definitive Guide - http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/ - Information about use in disk mode pertains only to older model iPods.
    Get Your Music Off of Your iPod - http://howto.wired.com/wiki/Get_Your_Music_Off_of_Your_iPod - I am not sure but this may only work with some models and not newer Touch, iPhone, or iPad.
    Additional information here https://discussions.apple.com/message/18324797

  • I've just bought Office 365 Personal, without realising there is a University version. I'm due to start University in two weeks, is there any way I can convert my account to the University version? Or uninstall my current version and replace it?

    I've just bought Office 365 Personal, without realising there is a University version. I'm due to start University in two weeks, is there any way I can convert my account to the University version? Or uninstall my current version and replace it?

    Contact Microsoft and ask them.  These forums are for troubleshooting technical issues with Apple products and not related to Office or your question in any way.

  • With just ONE inatentive sweep of my finger one page of my note was disappeared! Is there any way it can be recovered without using the help of iCloud backup?

    1. With just ONE inattentive sweep of my finger one page of my note disappered. Further more, the same page in my iPad was deleted automatically too! How could this happen? Is there any way it can be recovered without using the backup feature from iCloud? The data is vey important to me?
    2. I havn't connect the power code to my iPad yet, the backup copy in the iClout was before the accident as I checked in iPad. Is there any way that I could open my notes in iCloud backup so that I can copy the missing page and move back to my iPad and iPhone?
    Thanks a lot for any help!
    Xueyu

    Sorry, no. The only way to restore this note is to restore from a backup that contains it.

Maybe you are looking for

  • Apple TV2 missing analog audio output for multi-zone system

    Found out the hard way that most receivers can't support digital audio in multiple zones (i.e., Zone 2). Since Apple TV2 (ATV2) dispensed with any analog output, if you have a whole-house system that depends on mult-zone to distribute audio to variou

  • Best practice for securing confidential legal documents in DMS?

    We have a requirement to store confidential legal documents in DMS and are looking at options to secure access to those documents.  We are curious to know.  What is the best practice?  And how are other companies doing it? TIA, Margie Perrigo Co.

  • Dark Pixel Line In Captured Image

    Hello, I am trying to use a high speed machine vision camera (AVT guppy PRO F503C) to analyze touch screen LCD user interface modules for pixel defects, foreign particles, scratches, etc... However, this process is hampered by a dark line of pixels w

  • Connecting to windows PC

    I was in the process of restoring my used 20gb ipod when it it seemed like my computer froze. Now, I both my ipod won't recognize the USB cable (brand new) and the computer won't recognize ipod. I don't know whether it is charging because it seems th

  • On screen advertising

    Am I the only one appalled at the ad showing a fellow having a heart attack? As a relatively recent widow I am appalled at the insensitivity of this. Am also extremely bothered by all the ads. I feel I pay a fair price for the service and don't expec