Unable to capture data in an editable dynamic ALV.

Hi ,
I have created a dynamic editable ALV whose displayed structure can be changed at runtime based on the selection in a drop down list value selector.
Im trying to capture the values entered in the ALV into an internal table before the user changes the structure of the ALV to a different structure.
In the ON_SELECT event handler of the drop down list box , im rasing a data_check event to capture the ALV data.
The problem is that the control is not entering the event handler for the data_check event.
If i raise the data_check event in my save event handler or any other event handler , it works fine.
Can someone please suggest a solution.
Regards,
Newton.

Hi ,
I have figured out that the problem is local to my machine , because the code works fine on other machines.
I guess my internet explorer has some bug.
Regards,
Newton.

Similar Messages

  • Unable to capture data from drop down list in custom added field in migo tcode at item level

    Hi guys,
    need bit help in resolving query related to custom added field in Tcode migo.
    i have added a field in migo at item level ,in this i have used drop down list
    to get data but unable to capture data from drop down list.gown through
    many blogs in scn but unable to resolve.
    Please help me out in this.
    Thanks,
    Umakant.

    Hi,
    U can use following code to fill the list box
    write this code in PBO
    In layout editor please select listbox in dropdown attribute of input field and put some fctcode attribute
    TYPE-POOLS vrm.
      DATA values TYPE vrm_values WITH HEADER LINE.
      TABLES: <ur custom Database table>.
      clear values, values[].
      SELECT * FROM <ur custom Database table>.
        values-text = <TABLE FIELD TO DISPLAY IN DROPDOWN> .
        values-key = <TABLE KEY FIELD TO DISPLAY IN DROPDOWN>.
        APPEND values.
      ENDSELECT.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = '<SCREEN INPUT FIELD NAME>'
          values          = values[]
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    Also please define the following before accessing the listbox value
    data: <listbox input field name> type <table field name>,
            <inputfield name where text to display> type string  in top include
    In PAI, select the text from the table into <inputfield name where text to display>  depending on value selected which will be called when enter key is pressed or any vale is selected

  • User In Planning unit Hierarchy unable to see data form in editable mode

    hi all,
    we are facing a problem in planning unit hierarchy in Hyperion planning, where we have 4 users, Hierarchy is define as
    hierarchy: budget approved
    version: approved
    Entity: Finance
    Senario:Budget
    haroon asghar ( owner)
    adeel javid (Reviewer)
    Naeem asghar (Reviewer)
    Imtiaz (Reviewer)
    Issue is that,after start the budget activity (promotional path) by Admin, the data form editable to Owner haroon asghar
    but after completing his work by haroon,when he promote the planning unit ,the next user in Hierarchy "Adeel javid" unable to see data form in respective planning unit in uneditable data form not only for this user but all rest of the users as well,while i think data form should only uneditable(grayed) for user Haroon Asghar who promote the planning unit.
    we have checked all security rights to the users those are "Write access" but still Adeel javid is unable to enter data,so the budget activity is stop due to this problem.
    when i remove the planning unit then i log in with all user one by one and see all data form required version,scenario and entity were editable to all users mention above
    we want to run budget activity with the above planning unit hierarchy.
    plz any one provide the proposed solution of the said issue
    we are using Product Version     11.1.2.0.00
    Regards
    Anwar

    Reviewers will not be able to write data to the intersection. Reviewers can only review the data and follow-up with a Reject, Promote, Sign off, Delegate, Originate or Freeze.
    Please refer Article ID 1226783.1 in MOS.
    HTH-
    Jasmine.

  • Unable to capture data from Serial port using LVRT2010 in single core pentium 4 machine

    I am using application written in Labview using windows Labview
    Runtime environment 2010. Application creates a tunnel to intercept data from
    Serial port.
    My problem is, Currently, I am using single core Pentium
    processor. When I am trying to intercept the data between COM1 and COM7 (COM 7
    is a virtual port) it is not able to capture data.
    When I am running Labview RT environment using dual core
    processor machine it is running normally. I wonder whether it could be the compatibility issues with
    single core Pentium processor.

    Hi Magnetica
    Are both of the machines running the same runtime engine,
    drivers ect?
    Have you had RT applications running on this
    machine before?
    Is the development computer a 64bit machine?
    The processor is a supported model (See link below).
    http://zone.ni.com/devzone/cda/tut/p/id/8239
    Regards
    Robert
    National Instruments UK & Ireland

  • Unable to save data entered in editable field of IW37N output

    Hi Gurus,
    I have made one of the fields in IW37N ALV output as editable using exit IWOC0004. When I enter the values in the field, I am unable to save the data to the order. The orders are getting successfully released but the values entered are not saved in database. Please help.
    Thanks,
    Pramod.V

    Discovered that the problem was with the Adobe version. Updated version to 8.1.1 and installed  Active X control software and things started working.

  • Unable to capture context attributes of editable fields

    Hello All,
    In my application, there are two trans. containers. One holds set of material info fields at top and in the bottom the container holds a table with quantity data of the material.
    The material info container has a edit button and 3 fields are editable and saved from the container. In the bottom container there is button to move to next material. Before moving, I check if any data is changed in material info container and display pop up to save it.
    Now, when i click the save button in the mat info container the ediatbel fields data is passed and gets saved. But, when the same save method is called from the confirmation pop up in the bottom container table the editable fields data is not passed. No idea on the reason behind this behaviour.
    The code used to retrieve the data is      
    nd_vipos_mat_master->get_static_attributes(
                IMPORTING
                  static_attributes = lr_vipos_mat_info ).
    Kindly assist.
    Regards,
    Sharath

    Hi ,
    When you are saving data using popup, you must have subscribed an action with popup button. I hope it is not the same action which you are using with SAVE button.
    You can try subscribing the same action for popup which you used in Save button. Ex: if on saving directly, you are calling action "OnSave" and from popup, the triggered action is "OnActionSaveFrom Popup".  So dont use this new action while subscription with popup button. use "OnSave" with popup button also.
    if it is working with save button, it should be fine with popup also.
    Thanks
    Vishal

  • Editable & Dynamic ALV

    Hi,
    I have the situation where I want to create an editable ALV whose column fields will be known during run time. So, here I'm using Dynamic Internal table concept.
    Let me give a picture how my present program works,
    Inside the fieldcatalog, ifc I have passed the deep structure of type lvc_s_styl, by pointing to the reference table and reference field.
    Then I'm using the below code,
    CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog           = ifc
          i_length_in_byte          = 'X'
        IMPORTING
          ep_table                  = dy_table
        EXCEPTIONS
          generate_subpool_dir_full = 1
          OTHERS                    = 2.
      ASSIGN dy_table->* TO <dyn_table>.
      CREATE DATA dy_line LIKE LINE OF <dyn_table>.
      ASSIGN dy_line->* TO <dyn_wa>.
    And I got the dynamic Internal table having one field (let it be the first column of that internal table) corresponding to the deep structure where we need to pass the fieldname and style = cl_gui_alv_grid=>mc_style_enabled.
    Suppose, I have an internal table containing all the fieldnames (consider there are 5 fields) to be in editable mode, lets say, itab.
    FIELD-SYMBOLS <t_celltab> TYPE ANY.
    DATA ls_stylerow TYPE lvc_s_styl .
    DATA lt_styletab TYPE lvc_t_styl .
        LOOP AT itab INTO wa.
          ASSIGN COMPONENT 1 OF STRUCTURE <dyn_wa> TO <t_celltab>.
          CLEAR ls_stylerow.
          ls_stylerow-fieldname = wa-fildname.
          ls_stylerow-style     = cl_gui_alv_grid=>mc_style_enabled.
          INSERT ls_stylerow INTO TABLE lt_styletab.
          INSERT LINES OF lt_styletab INTO TABLE <t_celltab>.
        ENDLOOP.
    And the last bit of code is not working.
    My question is simple, How can i assign an internal table (type lvc_s_styl) containing values, to that deep structure field of that dynamic internal table?
    Thanks in advance!
    Edited by: kishan P on Oct 5, 2010 9:22 PM

    I had a similar requirement and was able to get this to work.  This may help.
    create a local field symbol.
    field-symbols: <l_celltab> type lvc_t_styl,
    data:  li_celltab type line of lvc_t_styl.
    Then assign the contents (assuming you already declared this celltab of type lvc_t_styl in your fieldcatalog and therefore into your <dyn_wa> table.
    assign ('<dyn_wa>-celltab') to <l_celltab>.
    loop at <dyn_wa>-celltab into li_celltab.
      insert li_celltab into table <l_celltab>.
    endloop.
    I hope you find this helpful.  I have this working for me in a complex ALV I wrote a few years back.

  • Capture Date Editing

    Hi!
    Though I read the other messages about dates in LR, I didn't find any valuable answer for my problem:
    Editing Capture Date with the shift process works fine. When I want to edit to a specific date, that is another story:
    I have a lot of Tiff files, that come from negativ scans.
    If I select only one picture in the library grid, every thing goes right.
    If I select more than one picture (ctrl A, or using "shift click" or "control click"), I have very surprising results.
    Sometimes all the Capture Dates are updated in the right way. Fine.
    BUT sometimes, only few of them (one, two ore more at the beginig of the selection) are set to the right specific capture date, the other files getting various dates and times, in a quite unexpected maner. The dates could be set in any year (sometimes 2008..), sometimes only the day is shifted with one step, teh time may be set to any value (nothing goes with DLT shift).
    I tried to check for any relation between files that are updated in the good way or not, but I didn't found anything that could make sense.
    Of course, I can edit all my files one by one, but I'd like to find soething else. Because I read in a message that the "Edit Capture Date" of LR is a mess, I tried some extra softs working on EXIF and IPTC informations, but it seems that they can only change things for JPEG, not for TIFF files.
    I use a PC, win XP SP2, pentium P4, 1 Gig ram, and a lot of free space in my hard drives. I use LR 1.2, but I don't remember if I got thoose probs with LR1.1.
    Thanks for any help or information.
    Jerome

    That could be really a good answer..
    I perhaps misunderstood the "edit capture time" functionality. I thought that if I specify the date and the time, thoose values should replace what was recorded before (and not shift them with the same amount of time). That could make sense especialy for the files that have only one date field before editing: there is nothing to "shift", only a field to fill....
    Anyway, I will try to check If the files had the same date/time values before editing or not, and I'll try to look exactly at the values before and after. And I'll go back (tomorrow, I think) for, I hope, the end of the story.
    Thanks a lot for your help.
    Jerome.

  • IPhoto 08 can now edit EXIF Capture Date

    iPhoto 08 is now able to change the EXIF Capture Date on the original files thru the Photo->Adjust Date and Time menu option. It also changes the Created and Modified date to the same selected date on the original file.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

    Björn:
    I tried it on an alias library and the "source" files on the external HD did have their Capture Date changed. How did you get the files from the original (alias based) library into the other?
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • BUG:  Program crashes when trying to edit Capture Date

    For some reason a few photos have bad (seriously bad) dates. Whenever I try to edit these using the edit capture date feature in the metadata menu, the program crashes.

    Hmm.. what is "seriously bad date"? Month has more than 31 days? Not only numeric characters there in date?
    Anyway, I can imagine only two scenarious seeing in LR:
    1. LR shows uncorrect date (as you expect),
    2. LR doesn't show capture date at all.
    Workaround:
    1. Check with some another exif reader what's really written in image file,
    2. Image doesn't contain capture date tag at all or capture date doesn't conform to exif standard (was messed with some exif tool or image editor). Again check with some exif reader (ExifTool recommended).
    Bogdan

  • Unable to capture field values in Master agreement  Line Items

    I am trying to get the field values from master agreement line items page. I have written the following code to get the line item details which is working fine to capture part number and quantity->
    agreementBean = doc.getRootParentIBean();
    lineItemCollection = agreementBean.getLineItems();
    collectionsize = lineItemCollection.size();
    for(i=0;i<collectionsize;i++){
         collectionbean = lineItemCollection.get(i);
         partNum = ""+collectionbean.getPartNumber() ;
         Quantity = ""+collectionbean.getQuantity();     
         throw doc.createApplicationException(null,partNum + " , " + Quantity );
    Now, my problem is that I am unable to capture the following field item values in the master agreement > line items page.
    1. Price Unit
    2. Unit Price
    3. Product Category
    4. Plant
    Please help me to find the values.
    Thankx in Advance.
    Su
    Edited by: subrataindra on Aug 10, 2010 11:11 AM

    This will return the name of the plant.
    .getExtensionField("PLANT").get().getDisplayName(session);
    Check if this returns the product category
    collectionbean.getExtensionField("ITEM_CAT").get().getDisplayName();
    This will Return the Price
    collectionbean.getExtensionField("PRICE").get().getPrice();
    (return type :BigDecimal)
    This will return the currency
    collectionbean.getExtensionField("PRICE").get().getCurrency;
    (Return type:String)
    Similarly to retrieve other fields for which there are no standard functions, use .getExtensionField("Field ID")
    Hope this helps
    Regards,
    Immanuel

  • Unable to capture value inside parameter T_LFBK of FK03 in display mode

    Hi Experts,
    I have to trigger a mail whenever there is a change in fields that are captured in parameter t_ffbk.
    However i am unable to capture the the screen values for this parameter as FK03 is in display mode.Please tell me how can i capture the screen field values in parameter T_LFBK.
    <Point offer removed by moderator>
    Thanks in advance.
    Edited by: Vinod Kumar on Jul 28, 2011 5:48 PM

    Hi Experts,
    I have to trigger a mail whenever there is a change in fields that are captured in parameter t_ffbk.
    However i am unable to capture the the screen values for this parameter as FK03 is in display mode.Please tell me how can i capture the screen field values in parameter T_LFBK.
    <Point offer removed by moderator>
    Thanks in advance.
    Edited by: Vinod Kumar on Jul 28, 2011 5:48 PM

  • Unable to Capture - Live Cam Voice - HELP!

    Suddenly I cannot capture anymore - I can still take images, but when I click to record I get the following message:Unable to capture video. Please check that you have sufficient space on your hard drive and the following are setup correctlyVideo CompressorAudio CompressorI certainly have enough hard drive space. I uninstalled and reinstalled all the software and even then updated the drivers. Nothing seems to work.
    All advice much appreciated. Thanks Giuseppe

    Thanks! Messed around and seems I can no longer record in MWV format but its back working in AVI format...with no compression. I can then edit after if required. Thanks for coming back to me on this one..it is a Great Help when people respond! Regards Giuseppe

  • Unable to capture IdcService on certain webdav actions like copy-paste

    We wrote a simple checkin filter long back for the Dynamix Prefix functionality.
    We have written an If Clause to restrict running this for any services other than CHECKIN related ones, by checking the value of IDCService parameter
    There is a scenario where users copy files present in one folder in UCM and paste it under another folder (thus creating a new content item altogether), using Webfolders.
    In 10g, even this case produced correct Prefix as service name. We used to have "validateStandard" filter used for this activity.
    In 11g, due to some complications and changed filters, we started using "preComputeDocName" filter.
    In 11g PS3, We are unable to capture IDCService here and hence unable to assign Dynamic Prefix. Any suggestions?
    Currently we only fire the code if IdcService contains "CHECKIN_" or "WEBDAV_PUT" or "COLLECTION_COPY"
    Regards,
    Prateek

    Office X is problematic in SL and it's a bit obsolete since it's almost ten years old. Student version of office is relatively inexpensive. BTW, I can't solve your issues, since I moved to Office '04 six years ago.

  • FCP unable to Capture Canon GL2

    Hello -
    My system is noted below. Final Cut Pro is updated to 6.0.4.
    I am unable to capture the video using Canon's GL2 using the current version of FCP. I believe that I have everything configured correctly because I am able to capture audio and video using my father's JVC GR-DV800U video camera. Actually that particular JVC camera seems to work quite well with FCP. But not Canon's GL2. I am able to control camera's Rewind, Fast Forward, Play, etc. So I know that some communication is taking place. However, no picture is present within FCP; no capture either. Instead, I get that dreaded beach ball wheel.
    I believe the FCP settings are correct: Under "Audio/Video" settings, the audio is set to MOTU's 424 (for the 2408 MK3); the DV Capture Preset (and the Sequence) is set to "DV NTSC 48 khz"; Video Playback is set for"Digital Cinema Desktop Preview - Main" with the audio playback set (again) to MOTU's 424 card.
    I am attempting to capture the video to an external hard disk drive using the Mac Pro's firewire port located in the back of the computer. Again, this all works using my father's JVC video recorder.
    *Given the computer setting and operating system, is this a known issue between the FCP and the GL2??* My GL2 is an older video camera. I purchased it quite a few years ago. *It seems like the GL2 may be the culprit. Yes? No?*
    I'm very new to FCP. My background is with SONY's Vegas program (currently I'm up to version 8). Been using the Vegas program for years. My Dell Workstation, unfortunately, is old; it definitely is showing signs of aging. So, to make a long story short, I've decided to invest time and money in a Mac Pro (I use it primarily for music sequencing using the Logic Pro program which I love!) Now I want to learn how to use the FCP which I purchased several months ago. Not being able to have FCP communicate with the GL2 is a minor significance for me, though. I'm in no financial place to purchase a new camera at this time. Luckily, I usually record the video using Focus Enhancement's FS4-Pro with the GL2. So I am not totally dependent on having FCP and the GL2 work together. *Thankfully, the FS4-Pro DOES works well with FCP!!* Too bad I didn't use the FS4-Pro today. Wish I did. UGH
    Could there be a work around in getting the GL2 to communicate properly with FCP??
    Thank you in advance for your thoughtful insights and suggestions.
    Regards,
    Ted Fiebke

    Not all Canon cameras have connection issues, but hanging around this site I've come to recognize their ability to connect in FCP is the most problematic of all the camera brands. If you have a Canon camcorder, and can not get it to connect up with FCP, the following is a way to sort through the issues and get it to work. Some are elegant - some are ugly.
    Before we go any farther
    • You should be using 'Firewire Basic' as the control protocol. If you aren't, go change it and try again.
    • Also, verify that you have a solid installation of Quicktime. You may want to reinstall it using the 'delete receipts' method.
    With some confidence that the software installation and camera settings are correct ... the most direct solution is to purchase another, non-Canon device to use as your capturing machine. The (now discontinued) Sony DSR-11 is highly recommended for DV work. A deck will save wear and tear on the camera's lightweight drive mechanism and will allow you to permanently connect a NTSC/PAL monitor for proper viewing. If you are working with HDV, you may have other issues ...
    Beyond that, the path you take depends on the model of computer you own.
    1. If you have a G5 tower or a MacPro, capture to a second internal drive with only the camera attached. If you need to move material to firewire drive, disconnect the camera. A second internal drive is quite inexpensive these days if you do not already have one.
    2. If you have a G5 tower (PCI) MacPro (PCI), G4 powerbook (PCMCIA) or MacBookPro (Expresscard 43) with an available slot, purchase the appropriate firewire card for the slot. Connect your camera to the card and you should be good to go. The new card creates a unique bus and will avoid collisions with the external drives.
    3. If you do not have a slot or a second internal drive and you are stuck with the camera, welcome to the camera/drive shuffle.
    • shut down and remove the external hard drive(s) from the system
    • connect the camera directly to the firewire port of the computer
    • start the camera then the computer
    • capture to your internal (system) hard drive
    • shut down the camera and computer
    • disconnect the camera and reconnect the external hard drive(s)
    • start hard drive(s) and computer
    • move captured files to external hard drive(s)
    • edit
    If you output back to tape or wish to view your work on an external Video (NTSC or PAL) monitor, you need to set up the camera to use the firewire out as the A/DV converter or VTR - which means reversing the steps:
    • copy the file back to the internal drive
    • shut everything down
    • disconnect the external drive(s)
    • connect the camera to the firewire port (and the TV to the camera if needed)
    • start the camera then the computer
    • play the file.
    One caveat here - You may have difficulty getting the file back to tape without dropping frames. Playing files off of the system drive is very demanding and they may have a hard time keeping up.
    All in all, if you do not have the option for second bus (i.e. iMacs, eMacs, iBooks, MacBooks) you may want to think about a computer with expandable options next time.
    There is the option of capturing using iMovie, but that brings on it's own set of problems and is not recommended.
    Good luck.
    x

Maybe you are looking for

  • PC Computer on list of associated devices

    I have just authorised a Windows computer with my Apple id. The authorization was successful, but when I try to play music, I get an error message that I have the maximum number of DEVICES associated with the account. Now, I know I can AUTHORIZE five

  • Rhvariable.apj file

    Hi, When I try making changes to the variables, either adding or modifying, I receive a message that an error occurred while trying to read data from the rhvariable.apj file. This message occurs every time I press "Save". How do I fix this? Thanks, J

  • Rapidinstall getting struck in Step 3 of 5

    Hi All When I try to install Oracle Applications 11.5.9 on Windows 2003 with Oracle as user, the Rapidinstall is getting struck in Step 3 of 5 while running the command adrundb.cmd. - g performing database charecterset conversion adsvdcnv.cmd There i

  • Setting Up Transport Routes

    Hi, Can you Please send me some Document's or screenshots of setting up Transport Routes between ECC>>> DEV-QA-PRD Systems on [email protected] Thanks in Advance.

  • JSObject error in c# reflection

    hello, I'm using c# and Javascript object to do some pdf manipulation. Please see the below code, I ran into an "Unknown Name" error at the last line when trying to get the "children" object from the BookmarkRoot. Getting the "name" and "color" worke