Capture label of a radiogroup-Please help.

Hi Everyone,
I created 4 radiogroups(page items) with static LOV. The labels of these radiogroups are dynamically populated using javascript.
How can I retrieve these labels corresponding to the selected radiogroup. I tried different combinations as
:CB_LABEL or &CB_LABEL. - None of them worked.
Any help is appreciated. Thank you in advance,
rgds,
Suma.

Hi Patrick,
This is the javascript in the html header of my page:
<script type="text/javascript">
function getElementsByClassName(oElm, strTagName, strClassName){
var arrElements = (strTagName == "*" && document.all)? document.all :
oElm.getElementsByTagName(strTagName);
var arrReturnElements = new Array();
strClassName = strClassName.replace(/\-/g, "\\-");
var oRegExp = new RegExp("(^|\\s)" + strClassName + "(\\s|$)");
var oElement;
for(var j=0; j<arrElements.length; j++){
oElement = arrElements[j];
if(oRegExp.test(oElement.className)){
arrReturnElements.push(oElement);
return (arrReturnElements)
function f_LabelSwitch(){
var all_labels = html_GetElement('P5_questions').value;
var aLabels = all_labels.split(":")
     var l_labels = getElementsByClassName(document,'a','t10OptionalLabelwithHelp');
     for(var i=0;i<l_labels.length;i++){
               if(l_labels.getAttribute('cb:label')&&aLabels[i]){l_labels[i].innerHTML = aLabels[i]}
     return;
}</script>
And onload of my page I have a fn : onload=f_LabelSwitch();
And on my page I created 4 page items (CB,CB1, CB2, CB3) whose display type is radio group with submit and source is STATIC LOV (YES, Y : NO ,N).
An don submit, I want to create a collection to store the value of CB (:CB which will be Y or N depending on what the user chooses) and also I need label of CB (which would be the retrieved value from the databaseie p5_QUESTIONS-hidden item).
So this is where my problem lies!! Thank you for your time.
rgds,
Suma.

Similar Messages

  • Uploading Bartender Label To Smartform.  Please Help!

    Hello Abap Gurus.  I am in need of help with my current requirement.  My requirement is to create a packing list smartform and then a label from the Bartender software.  The first page of the smartform will have the packing list and I want the second page to contain the label created from the bartender software.  The client wants the packing list program and label to print at the same time. So I created the packing list smartform already and I have created z print programs for RLKOMM40 & RLVSDR40.  I have never used the Bartender software before. My question is how do I upload the bartender label to my smartform.  The bartender label is currently in .btw format, but can be exported in .itf format.   I was advised to upload the .itf format via transaction SO10, but I don't know what I should do next.  Please help as this requirement is urgent. I will award points accordingly.

    Hello,
    On the smartform you can use the uploaded label with tcode so10.
    just open you smartform and create a graphic, and the put the uploaded name there, you can  look for the information with the matchcode help.
    No more to do.
    dont forget to reward
    Gabriel

  • Using HV30 to capture in Premiere Pro CS4, PLEASE HELP!!

    I have cs4, an XH-A1s and an HV30....and a MacPro from 2008.
    I have recently narrowed down my issues with a bad firewire port on my xha1s.
    Can or Cannot I use my HV30 to captureHD footage in Premiere Pro CS4?
    It simply says capture device offline.
    If anyone knows the trick, please fill me in.
    ON EVERYTHING, project settings, camera settings, any info you can give.
    I trust y'alls advice and just need to capture now!!!! lol.
    Any other info you need from me, let me know!
    Thanks so much you guys!!!!!
    Shay in NC

    Hi,
    some of these posts might be helpful
    Rod
    http://www.hv20.com/showthread.php?t=9368

  • Why doeas my voice capture midlet generates echo? please help

    This midlet is for recording voice but it generates an echo of the voice while recording.. and i can't understand why. is there anyone who has any idea? i'd really appreciate any help.. it is required for my term project..
    package com.apress.chapter8;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.media.*;
    import javax.microedition.media.control.RecordControl;
    public class SaveCapturedAudioMIDlet extends MIDlet
    implements CommandListener {
    // the display items
    private Display display = null;
    private Alert alert = null;
    private Command exitCommand = null;
    // players and controls
    private Player capturePlayer = null;
    private RecordControl rControl = null;
    private boolean error = false;
    public SaveCapturedAudioMIDlet() {
    // create the display
    display = Display.getDisplay(this);
    alert = new Alert("Message");
    alert.setTimeout(Alert.FOREVER);
    alert.setString("Capturing for 10 seconds. Say something intelligent!");
    exitCommand = new Command("Exit", Command.EXIT, 1);
    alert.addCommand(exitCommand);
    alert.setCommandListener(this);
    try {
    // create the capture player
    capturePlayer = Manager.createPlayer("capture://audio");
    if (capturePlayer != null) {
    // if created, realize it
    capturePlayer.realize();
    // and grab the RecordControl
    rControl = (RecordControl)capturePlayer.getControl(
    "javax.microedition.media.control.RecordControl");
    // set the alert as the current item
    display.setCurrent(alert);
    // if it is null throw exception
    if(rControl == null) throw new Exception("No RecordControl available");
    // and set the destination for this captured data
    rControl.setRecordLocation("file:///test.wav");
    } else {
    throw new Exception("Capture Audio Player is not available");
    } catch(Exception e) {
    error(e);
    public void startApp() {
    if(error) return;
    try {   
    // first start the corresponding recording player
    capturePlayer.start();
    // and then start the RecordControl
    rControl.startRecord();
    // now record for 10 seconds
    Thread.sleep(10000);
    // stop recording after time is up
    rControl.stopRecord();
    // commit the recording
    rControl.commit();
    // stop the Player instance
    capturePlayer.stop();
    // and close it to release the microphone
    capturePlayer.close();
    // finally, create a Player instance to playback
    // check your device documentation to find out the root.
    // The following will work on devices that have the root
    // specified as shown
    // and start it
    } catch(Exception e) {
    error(e);
    public void pauseApp() {
    public void destroyApp(boolean unconditional) {
    if(capturePlayer != null) capturePlayer.close();
    public void commandAction(Command cmd, Displayable disp) {
    if(cmd == exitCommand) {
    destroyApp(true);
    notifyDestroyed();
    // general purpose error method, displays on screen as well to output
    private void error(Exception e) {
    alert.setString(e.getMessage());
    alert.setTitle("Error");
    display.setCurrent(alert);
    e.printStackTrace();
    error = true;
    }

    hi, i am trying to make a karaoke player with j2me and i want it to be able to record the user's voice while playing the background song.. how can i synchronize these two? what can i do to make it more efficient?

  • PlEASE HELP EASY QUESTION: unload event is not firing at all.

    Hi, onUnload event is not firing in Safari browser. I tried with different ways to capture that event but i failed to capture that event. So please help me on this, give suggestions to capture that event. Or any other event is firing when window is closing. Actually, i need to execute when window is closing. But in Safari the window is closing without firing of any events.

    Safari doesn't execute the unLoad action when closing windows, period!
    It only executes it when loading another page.
    I might be wrong but I think Safari doesn't allow you to close a window with Javascript at all. All close events are blocked.
    Maybe a SWF file can do it somehow. But I'm not sure...

  • Please Help:(,Unable to capture from camcorder using Audigy 2 ZS Video Edi

    Hi there! Well I have been trying to use the Sound Blaster Audigy 2 zs video editor to transfer Hi8 tapes from my camcorder (Samsung SLC860) to my laptop (Compaq presario, AMD Athlon 64 3200+, .25 GB RAM, xp). I have successfully done this before *sort of*. Before i was able to capture video from my camcorder without the sound. But now I cant even capture video! I get an error when using Ulead VideoStudio 8 SE reading: 5065:29:0. Please help, anything would be great! Thank you! Oh, i've tried reinstalling the drivers already, didnt work. P.S. I connect the camcorder to the Creative Audigy using S-Video. I have also tried A/V out from the camcorder to video-in on the Audigy. I have also downloaded VidCap and other driver updates from Creative but those didn't work either. I've tried VidCap other capture programs, none worked. Any help would be great. Thank you!
    Message Edited by DjShadowalker on <SPAN class=date_text>06-06-2006 <SPAN class=time_text>:09 AM
    Message Edited by DjShadowalker on 06-06-2006 :09 AM

    Hi there! Thanks for the reply, unfortunately, I've tried VidCap and it wont let me capture either. The Start button on Step 3 isn't acti've. Its not bold, and when i click on it nothing happens. But under device manager and Sound, Video and game controllers, there are alot of things. They are as followed: Audio Codecs, Legacy Audio Drivers, Legacy Video Capture Drivers, Media Control Devices, Sound Blaster Audigy 2 ZS Video Editor Audio Device, Sound Blaster Audigy 2 ZS Video Editor Video Device, SoundMAX Intergrated Digital Audio, Video Codecs. Do you think any of these could be interfering with one another? If so, which ones can be safely disabled? I've also tried downloading all the necessary updates for VidCap and I've even tried reinstalling the Audigy card many times. I am able to see the preview of the video on both programs VidCap and VideoStudio but I just can't capture. Once again, the error message on VideoStudio is: 5065:29:0. Thank you so much, hopefully I hear from ya soon and this can be fixed.

  • CS3 - Video freezes on Capture and Playback - Please Help!

    Hello all,
    Here's the problem:
    When Capturing footage via firewire from Mini DV, shot in standard DV, within a standard NTSC-DV Widescreen 48k Project, the picture freezes after 1 second.  The audio can still be heard and the footage actually does get captured.  However, after the footage has been conformed, and we load the clip into the Source Window and hit play, the video again freezes after 1 second of play.  Again, the audio keeps playing and you can move the marker anywhere on the clip and see that all the footage is indeed there, but as soon as you go to play it from any point - same thing, the picture freezes after 1 second of play, making editing impossible.  The clip is being captured as an .avi and all capture settings appear to be correct.
    Here's the kicker:
    - HDV video captures and plays back fine.
    - The DV video captured correctly at first, this has been a recent problem going on now for several weeks, after no changes to the system.
    - The biggest kicker - after trying successfully to capture, playback and edit HDV video, we closed Premiere, reopened, tried to play the previously captured DV footage and it played just fine suddenly!!!  Then we closed the program, re-opened and tried again - back to the freezing problem and it never played back fine again...
    Here's the specs (I can give more specifics later if needed, it's my partner's computer):
    Sony PD-150 DV-Cam (but recording on Mini DV in standard DV mode, not DV-Cam)
    Windows 7
    Intel Core i7 3.20 ghz
    Asus X58 Motherboard with onboard Audio and Firewire
    6 GB Ram
    Nvidia Geforce 9 Series with PhysX
    Please help if you have any idea how to solve a crazy problem like this.  Thank you!!!
    Greg

    Now that everything is working, make a full drive image to an external USB hard drive
    I use http://www.terabyteunlimited.com/image-for-linux.htm

  • Can't capture anymore.. please help!

    hi,
    i've been using mdt 2010 in the last 4ish years to deploy several hundreds of machines. now due to some mysterious reason, capturing doesn't work anymore. the visible symptom is a error message containing something about the clonetag registry entry not being
    writeable. i hacked around this by regedit'ing the clonetag value back in, but the result was an image that doesn't join the domain. i also deactivated the "inject mass storage driver" step and the wmp net service, but no luck.
    i don't know why sysprep fails all of a sudden. all i did was update the image with a few software installations and updates. when i try to sysprep without saving the image to the mdt deployment share, it reports that it completed successfully. if i save the
    image, it reboots and continues with the deployment task. which fails with the clonetag error. i've tried it with and without installing the latest windows updates. the image size is around 10 gigs, free space on the ds is around 40 gigs. after an unsuccessful
    capture attempt, the local admin account is locked and the hidden system partition has a drive letter.
    please help me find the error..
    my logs are here (hopefully)
    thanks,
    haklinz

    Hi,
    I'll suggest you to try the following solutions:
    http://supportishere.com/test-for-clonetag-in-registry-error-during-a-capture-of-windows-xp/
    http://social.technet.microsoft.com/Forums/fr-FR/243f3245-5f7c-4f0b-b55b-ddda27081385/failed-to-run-syspref-test-for-clonetag-in-registry-to-verify-sysprep-completed?forum=mdt
    / Yannick Plavonil
    blog: Deploiement Windows
    twitter: @yplavonil
    facebook:
    www.facebook.com/deploiementwindows

  • Image capture deleted all my photos from iPhone without transferring them to the harddisk. So now I've lost 427 photos due to some data error it says. Please help me get my pictures back!?!

    I just wanted to back up my photos since I haven't done so since October 5th. I plugged in my iPhone and let Image Capture transfer the selected photos to the designated folder. Accidently I hit 'Import All but that's not the biggest problem. Apparently I had "Delete all after transfer" on AND 427 photos apparently "failed to transfer" as it said. I didn't think it was such a big problem, but then I noticed : what the ****.The delete all option was ON and now ALL my photos are gone, from the iPhone and NOT on the computer. Except a list of some old pictures I already have three backups and from the new ones between Oct 5 and this day I have a random selection >><!!!
    So please help me! How do I get my pictures back? iPhone Data recovery? Please please help. There are so many nice memories of this month and I'm so ****** that this just happened!

    If you have iCloud backup turned on or if you have recently backed up via iTunes you could restore the phone from either of those sources. Camera Roll photos are included in those backups. Be aware that doing a restore will replace the contents of the phone with the contents of the backup so you would lose anything new on the phone since the last backup. Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support

  • Please Help! More Capturing Problems.

    I'm having some trouble capturing footage from onto Final Cut Express HD.
    Whenever I try to capture, the footage plays on my screen for about a second, freezes and I get this error message,
    "Capture encountered a problem reading the data on your source tape. This could be due to a problem with the tape. Capture has been aborted and you clip has been saved."
    I am left with a five second clip from my tape for my trouble. This has only started happening recently, I am using the same setup that I have done before when it was working. I can capture with no issues on imovie.
    I have called tech support and they sent me a link that shows how to reinstall final cut and delete all the user preference settings. I have tried different tapes, different sources for saving footage and I still have the exact same problem.
    Any more info you need please ask. Please help me, I'm pulling my hair out!
    Thanks!

    Well, I've captured before when the external drives have been connected, but I disconnected them and retried after resetting everything and I still get the same error.
    I've also tried resetting the settings on my XHA1 and deleting all the preferences for final cut express, all the receipts etc. And reinstalling and still I get the same error.
    I am shooting in HDV and have tried capturing with both 'HD down-conv' on and off, comp out is 1080i/576i (as it's always been). Set my FCE setting correctly? I've been through preferences and system settings, apart from selecting easy setup>DV-NTSC Firewire Basic and making sure there is space on capture scratch, anything else I need to look out for?

  • How to get the list element label ? Please help

    Dear all
    I have a problem.
    I need to get the current list element lable
    for example
    the emp_list displays the employee_name and return the employee_id
    I need the following:
    when_list_change , i need to put the label of the selected element in a text item :EMP_NAME_TEXT
    I can put the put the element value easily when the user select an element
    :EMP_NAME_TEXT := :emp_list ;
    I need to put the label not the value
    please help

    Hi,
    Try out the get_list_element_label built-in function.....
    Find info in the on-line help.....
    Regards,
    Simon

  • I have been using GRAB to capture screen displays.  It has just stopped working since the last OSX Upgrade.  Can anyone, please help restore functionality?

    I have been using GRAB to capture screen displays.  It has just stopped working since the last OSX Upgrade.  Can anyone, please help restore functionality?

    Thanks for that.  I did as suggested but when I tried again, it still did not work.  Another  com.apple.Grab.plist appeared in the Library.
    I now have the following files in Library
    file://localhost/Users/peterpatel/Library/Preferences/com.apple.Grab.LSSharedFil eList.plist
    file://localhost/Users/peterpatel/Library/Preferences/com.apple.Grab.LSSharedFil eList.plist.lockfile
    file://localhost/Users/peterpatel/Library/Preferences/
    file://localhost/Users/peterpatel/Library/Preferences/com.apple.Grab.plist.lockf ile
    What do you suggest I do now?

  • Can't find the captured screen file on my Desktop, Please help!

    I'm using OS X 10.5.6 for a while but the problem just occurred recently (it worked fine before) I don't know why. I update the system often.
    I used the ShiftControl+Command3 or 4 shortcut but it doesn't work, I heard the shutter sound but the file doesn't appear on my Desktop. I did use spotlight to find the file but I found only the old captured images. The Grab utility is still fine but it's a lot easier to use the shortcut function.
    If you have a solution, please help!
    Thanks.

    Shift-Command-3 or 4 puts the screen shot as Picture n.png (n being the next available number). Adding the control key to the set instead puts the screen shot on the clipboard to paste in somewhere.
    AK

  • Please help: DVC pro 50 capturing to QT to FCP

    Hi,
    What are the capture specs for best quality DVCPRO50? The DVCpro tapes will be capured elswhere and the client will deliver us a external drive with the files on it.
    Offcourse they should be in best quality and not neccesarilly have to be re-rendered in FPC studio. So what's best?
    - Uncompressed Quicktime files? Or are they way to heavy?
    - Or uncompressed avi's? Not previewable... and heavy?
    - Or Quicktime DV pal? Downgrading Quality. So i guess not.
    - Or another codec wich is superb in quality for DVCPRO and light to handle
    - Or the new QT H264?
    Please help

    I'm in the midst of a huge doc that was shot on dvc pro 50. The original editor dropped by the wayside, but they had rented a deck and captured all the material as dvcpro50. I inisisted that they back up the 2 disks of material and I've been editing away happily.
    DVCpro50 is a digital format and if captured in it's native format, it's as good as it can possibly be.

  • I have an ibook g4 laptop and i cant add   music frommy library to my ipod touch but my ipod shows up on image capture ? please help immiedeatly

    i have an ibook g4 laptop and i cant add   music from my library to my ipod touch4 but my ipod shows up on image capture ? please help immiedeatly

    What OS is on the iPod?
    What version of iTunes is on the computer
    Try using iTunes 10.6.3

Maybe you are looking for

  • IC burnt after giveing to service center

    I have g4 1303au, the problem with my laptop was with LCD display. When power on the laptop there was nothing on the screen so i used the display port to check whether the problem was with lcd or motherboard. When i connected the external display my

  • Event Triggering method in BW

    Hi All, Step1: I want to run a ABAP Program. Step2: I wany to trigger one infopackage. My porblem is I want to execute Step2 only after successfull  ofStep1. Iam able to run Step2 for one time, But in my case I want to run the both steps as a periodi

  • HP Pavilion DV6 Battery Issue.

    Hello,  I'm currently having a recent problem with my HP Pavilion DV6 (A8KO2EA#ABU)  laptops battery stating (plugged in, charging) and being stuck on 8% and not charging whatsoever, if I remove the power cord, the laptop will instantly shut off. I'v

  • Certifications in ODI

    Are there any certifications in ODI?

  • Flashbuilder/flex with ecommerce

    as a fairly new convert to flashbuilder/flex, I am curious if there is a component that works well with products in an ecommerce site.  For example, I have the ability to navigate through an ecommerce web site with categories, sub categories, and pro