Working with DropDown event in  Visual Composer

Dear SDN's,
I am working with the dropdown list in Visaul composer.
I am having a scenario like,
I am getting a table of rows from a output of one RFC, in the output table i have a dropdown field whose value can be changed at runtime.I want to pass the value hcanged and the corresponding row as an input to the other RFc.
Current Approach:
I have used a select event from the output port of table to the input port of other RFC. so it is taking the values of that row by selecting the row itself but i want to trigger the RFC after change the value in the dropdown list.
How to do this.Pls suggest me the needful as early as possible,.
Your help will be appreciated.
Regards,
Sireesha.B

I think you need to create a button in the table control and make it a Submit event. Only then it will be triggering the RFC.

Similar Messages

  • Good Morning, I am having issue downloading ebook. Getting message "Adobe digital edition 4.0 has stopped working" with problem event name : APPCRASH. Any ideas how to fix this?

    Good Morning, I am having issue downloading ebook. Getting message "Adobe digital edition 4.0 has stopped working" with problem event name : APPCRASH. Any ideas how to fix this?

    Do you have the most  current dirver for the printer?

  • Eventing in Visual Composer 7.1 Enhancement Package 1

    We are running Enhancment Package 1 on 7.1 and the release note says that client side event is supported.  However I build 2 iViews one with Data Entry text iput and and a signal out and the the sencond one with a signal in and a text field.  I cannot get what I type in to the first iView to pass to the second.  Is there a simple example that illustrates that eventing is working in this release.

    I used the non WEB Dynpro event tested with the following results.
    For an iView that I had build with Visual Composer 7.0 and converted using the CE 7.1.1 converter tool I now see the following. In this case the evnt had the prefix urn: on it
    10:20:12 : urn:com.osisoft.pct.RtPM, AdhocTags, %3CParamsversion%3D%223%22%3E%3CRowParamname%3D%22%5C%5Cgsrtwebparts%5Ccdt158%22%2F%3E%3C%2FParams%3E, undefined
    This same iView on Visual Composer 7.0 delivered the following message using the tool in EP 7.0
    10:52:46 : urn:com.osisoft.pct.RtPM, AdhocTags, <Params><param name="Paramname" value="%5C%5Cgsrtwebparts%5Ccdt158"/></Params>, undefined
    For an iView that I created new with Visual Composer 7.1.1 and tried to use the same tool the tool did not catch the event and nothing was displayed in the log when the event name had urn: on it.
    I rebuilt and removed the urn: and now the tool picked up the event with the following log.
    11:12:29 : urn:com.osisoft.pct.RtPM, AdhocTags, %3CParamsversion%3D%223%22%3E%3CRowParamname%3D%22%5C%5Cgsrtwebparts%5Ccdt158%22%2F%3E%3C%2FParams%3E, undefined
    The XML has changed and the use of urn: is inconsistent between versions.
    Thanks for pointing me to this tool.
    The Web Dynpro version you suggest did not show anything so that is why I tried the non-WebDynpro.
    Gretchen

  • Timer Event in Visual Composer

    Hi,
    I want to refresh a bapi each 12 sec so that it fetch me the latest data.
    So i have attached a timer to the input port of the bapi and a table to out port.
    So now when i deploy i am able to see the data in the table but after 12 sec when again the event is fired, no data is displayed in the table.
    The same senario works perfectly well for other bapis, but i am not able to understand why its not working for a particular bapi.
    So what should i do so as to overcome this problem.
    Regards
    Paresh.

    Hi Paresh,
    just some hints:
    - does the output of the bapi, i.e. what is deliverd to the table,  differ from time to time?
    - change the flag "dynamic port" of your data service, maybe this helps?
    - make sure that the data that is channeld to the bapi by the timer is correct (maybe when the timer fires it delivers a wrong input value? Leading zeroes maybe?)
    - have a look at <a href="/people/marcel.salein/blog/2007/02/01/visual-composer-and-abap-rfcbapi-a-powerful-combination-part-i">Marcel Salein's blog</a> for ABAP-VC-Debugging hints
    In order to give detailed hints, we need more specific information.
    Best regards,
      Benni

  • How do permissions work with iMovie Events folder?

    I'm using iMovie and have one problem: every time I launch iMovie, the software takes a couple of minutes "optimizing movies."   I read in the forums that a way to solve this problem is to change the permsions of the iMovie Events folder so that everyone has read/write access.  This may solve the original problem, but could cause a new problem if i don't understand the implications.
    I'm fairly new to Mac.  My Mac has three types of users:
    me
    staff
    everyone
    We really only have one account on this computer.  I think the other ones (staff and everyone) are default accounts.
    What are the implications of giving staff and everyone read write access??
    Could for example someone on another computer on my home wifi network delete or make changes to those folders and files?
    Is there a way to solve my original problem (stop the "optimizing movies" every time i launch iMovie) without giving staff and everyone write access?
    Thank you.

    You have two options:
    1) Add a Class-Path entry for each plug-in directory, not just the plugins.
    Class-Path: plugins/myDir plugins/yourDir2) Go ahead and put the plug-ins in separate packages - package handling makes doing plug-ins easier in the long run. Two ways:
    package plugins.myDir;    // no Class-Path entry requiredor
    package myDir;            // which works with your current Class-Path

  • Working with custom events

    I am trying to work with the EventDispatcher class to dispatch a custom event to stop a video from playing. The video plays inside a MovieClip with an attached class file called PlayerProfile. I want the video in the PlayerProfile MovieClip to stop playing when the user clicks on another MovieClip called ScrollBox. I'm getting no compile or runtime erros, but the code is not stopping the video. I have seen use of a public static constant to represent the custom event. Is that what I am missing here.
    Any help, as always, is much appreciated.
    Here is the code for the PlayerProfile MovieClip with relevant code in bold:
    package
        import flash.display.MovieClip;
        import gs.TweenLite;
        import flash.events.MouseEvent;  
        import flash.events.Event;
        public class PlayerProfile extends MovieClip
            public function PlayerProfile()
                this.ProfileButton_mc.buttonMode = true;
                this.StatisticsButton_mc.buttonMode = true;
                this.HomeButton_mc.buttonMode = true;
                this.VideoButton_mc.buttonMode = true;
                this.ProfileButton_mc.addEventListener(MouseEvent.CLICK, profileClickHandler);
                this.StatisticsButton_mc.addEventListener(MouseEvent.CLICK, statisticsClickHandler);
                this.HomeButton_mc.addEventListener(MouseEvent.CLICK, homeClickHandler);
                this.VideoButton_mc.addEventListener(MouseEvent.CLICK, videoClickHandler);
                TweenLite.from(this, .5, {alpha:0});
                //adds the listener to receive the stopVideo custom event
                this.addEventListener("stopVideo", stopVideoHandler);
           //method to stop the video
            private function stopVideoHandler(event:Event):void
                this.Video_mc.stop();
            private function profileClickHandler(event:MouseEvent):void
                this.Video_mc.stop();
                this.gotoAndStop("Profile");
                TweenLite.from(event.target, .5, {alpha:0});
            private function statisticsClickHandler(event:MouseEvent):void
                this.Video_mc.stop();
                this.gotoAndStop("Stats");
                TweenLite.from(event.target, .5, {alpha:0});
            private function homeClickHandler(event:MouseEvent):void
                this.Video_mc.stop();
                event.target.root.gotoAndStop("Home");
            private function videoClickHandler(event:MouseEvent):void
                this.gotoAndStop("Video");
                TweenLite.from(event.target, .5, {alpha:0});
    Here is the code on my Main Timeline that dispatches the event, again with relevant code in bold:
    stop();
    //adds listeners to call the profile functions
    this.ScrollBox.addEventListener(MouseEvent.CLICK, clickHandler);
    //functions to advance the movie to the profiles
    function clickHandler(event:MouseEvent):void
        gotoAndStop(event.target.name);
    //code to dispatch the custom event
    this.ScrollBox.addEventListener(MouseEvent.CLICK, stopVideoHandler);
    function stopVideoHandler(event:Event):void
        dispatchEvent(new Event("stopVideo"));

    you have a scope issue.   your PlayerProfile instance is listening for that custom event.  your PlayerProfile instance must dispatch that event for the listener to detect it.  ie, if pp is your PlayerProfile instance on your main timeline, use:
    pp.dispatchEvent(new Event("stopVideo"));

  • Adding action for functioning Dropdown fields in visual composer iview

    Hi,
    I develop a application in Visual composer 7.0. I want to convert the input field in drop down for selecting the different values. I can change the same by selecting the particular input fields in design screen. But I not able to specify the values, Action for the drop down. Can someone explain how to add the Values/Action for functioning the drop down field in the visual composer iView?
    Thanks,
    Kundan.

    Hi,
    you need to configure the element to be a drop down list instead of an input field:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/78bdc557fc199ae10000000a42189d/frameset.htm
    Regards
    Anja

  • Adding action in Dropdown fields in visual composer iview

    Hi,
    I develop a application in Visual composer 7.0. I want to convert the input field in drop down for selecting the different values. I can change the same by selecting the particular input fields in design screen. But I not able to specify the values, Action for the drop down. Can someone explain how to add the Values/Action for functioning the drop down field in the visual composer iView?
    Thanks,
    Kundan

    Hi Babu,
    You want to populate the Drop-Down list dynamically or based on input field value you need to populate a Drop-Down list.
    Regards,
    Nivas209
    Edited by: Nivas209 on Jan 3, 2012 2:53 PM

  • Tabular form with Popuv LOV doesn't work with onchange event

    Hi all.
    I have a problem with tabular forms, Popuv LOVs and javascript.
    I have created one tabular form, I want to put a value in "my_field" field when a user selects a new value from other field called "my_list", I have this code:
    <script type="text/javascript">
    function putValue(pThis)
        var vRow = pThis.id.substr(pThis.id.indexOf('_')+1);
        html_GetElement('f06_'+vRow).value = '0000';
    </script>and this for Element Attributes:
    onchange="putValue(this);"Everything works well when I choose "Display as Text Field", but if I change this option to "Display as Popup KEY LOV" or "Popup LOV" it doesn't work, I mean "my_field" stays without any value.
    I'm using Oracle Application Express Release 4.0 and Oracle 11g
    Please help.
    Regards.

    Hi Peter.
    Thanks, yes, in fact the position of my column changes, but it doesn't work even with the correct element, I have made a lot of proves and it seems that APEX constructs POPUPS LOVS in a different way and that's why "onchange" does not work.
    With this thread: Re: onchange not work on popup lov for a field on collection I have a half solution, It works for existing rows, but it doesn't for added rows.
    I have solved this problem calling a function that set the onchange event to every row when "ADD ROW" button is pressed, now it works without problems.
    Regards.
    Oscar.

  • LV 7.0 extremly unstable while working with user events during edit time

    hi
    i create and register several user events inside an initializing vi and then pass the registered events to the event structure using dynamic events in my top level vi. all works fine untill i do some changes to the registered events, e.g. changing names, datatypes or add/remove some events. when doing so my LV 7.0 chrases after opening the top level vi (exception error, no *.cpp errors). all changes i made are going to nowhere. i understand that after the changes i made the registered events in my init.vi-indicator dosn't match the events in my event structure, but i can't understand that LV chrashes.
    here are my questions:
    1. is it a known problem to LV 7.0?
    2. should i reinstall LV 7.0
    (i have LV 6.x and 7.0 on my machine)?
    3. is there a fix?
    thanks in advance
    greetings
    chris
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"

    Hello Chris,
    I have been looking into your problem and have come across one possible known bug in LV 6.1 that may be showing itself in 7.0. If modifications are made to the typedef of a registered event the vi will crash. I was hoping that you could post a small piece of your code and instructions on how to reproduce the crash. This way I can see if this is the same bug, a programming error, or an installation error. I can then determine if there is still a bug that needs to be looked into by our research team.
    Thanks,
    Caroline
    National Instruments
    Thanks,
    Caroline Tipton
    Data Management Product Manager
    National Instruments

  • How do I Fade in and out, working with Midi events?

    I'm new to logic.
    How do you set certain virtual instruments(midi events) to fade in or out. I have a string arrangement written, and whenever the strings end it is very abrupt and unnatural. I want them to fade out, as opposed to just cutting like they do. I would also like to know how to fade in. Is it the same process?
    Please help me out if you know how to do this.
    Thanks...

    I'm not sure what you mean about fading the instrument and not the notes. I just want to fade out one note/per instrument at the end of certain passages. Care to expound?
    In general, MIDI does not provide a mechanism to control the volume of individual notes.
    In MIDI (and sequencer terms), a note has a note on, a note number (which key was pressed) and how hard you hit that key (velocity). Then a corresponding note off. There is nothing in a note specification that let's you control the volume of a note through it's duration.
    In MIDI terms, you can use a controller MIDI message, typically #7 which is used for volume, and modify that over the time the note is playing. But this is controlling the volume of the instrument not the individual notes - the same as turning up and down the volume on the instrument. All notes that the instrument is playing are affected equally - if you are holding a chord, the entire chord will ramp in volume. You cannot just ramp the volume of one note within the chord using this method.
    (The closest MIDI can get to controlling individual notes volume is with polyphonic aftertouch, but this is not often supported and is a more advanced technique - given that you are new to this I'm going to ignore it for now to avoid over-complicating things. I mention it to stop all the people chiming in with "you're so wrong Beejay you muppet you can do this with poly aftertouch don't you know anything" blah blah).
    Is that more clear?
    Also, if you wouldn't mind, could you give me a step by step on opening the hyperview in the piano roll?
    Open the piano roll, select View -> Hyperdraw -> Volume.
    You can click/draw in it with the pencil tool to create MIDI volume (CC#7) changes.

  • Working with an event

    I have loaded a vhs tape into imovie and it contains the last three months of one year and the first month of the next year in one event.
    How can I if possible separate these two and put them in with the videos of their respective time periods?
    This is all on my Intel Mac if that males any difference.

    See [this post, steps 9b, 9c, 10, 11, 12, 13]
    If you right-click on this event clip, select Reveal in Finder, and drag it into MPEG Streamclip, the linked post should take you from there.

  • Working with mouse events in Strobe's Widget classes

    I'm adding a caption on/off toggle button (classname CaptionButton) to the ControlBar class of Strobe Media Playback 1.5.1, and I'm having a difficult time understanding how mouse events are passed to child widgets of a ButtonWidget. In my CaptionButton class (which extends ButtonWidget), I add an instance of another widget, ListWidget, that extends Widget, and I show/hide this ListWidget with a mouse click event in the CaptionButton. The ListWidget is a composite class with a List component from Flash CS5, and the cell renderers in the List component do not respond to mouse events (over, selected, etc). How do I enable this type of mouse interaction within a Widget class? With the VolumeWidget, it looks like all mouse events are recreated and then controls are manually positioned according to the event properties, but this would be rather difficult with a component that has a virtual layout like List component. Any suggestions would be greatly appreciated.
    -Robert

    Ok, found that WidgetHint sets mouseChildren = false, etc. But I have a new problem---how do I stop autoHide timer while the user is interacting with a child widget? I was looking at the VolumeWidget that is used from the MuteButton widget, but I don't see how it stops the autoHide timer from enacting.

  • Problem with model size in Visual Composer

    Hello madam/sir,
    We are using ECC 5.0 and VC 700.8.0.1. We got error message during
    deployment "Error in compiling Flex application. Branch between 19217
    and 228774 around line 0 exceeds 32K". When we delete several blocks in
    the model, it works good. So tried to delete different blocks so we
    think that the problem is not with specific block but with model size.
    Our model is in one iView. We cannot use additional nested
    iViews because we have HTML View blocks that cannot be in
    nested iView (according to VC documentation). Is there any solution for
    this error? What does it mean?
    Best Regards,
    Sergey Kozyrev

    I agree with Ashutosh, you have to remodeling your model. You can also try to restart VC and deploy your model again, this might also help sometimes (I had sometimes the issue, that I removed any components and then I get the 32K error, after restarting the error disappeared).
    You can also check if you have any global entry list, which you do not use in your model, this also could help to reduce you model size.
    Best Regards,
    Marcel

  • Eventing in Visual Composer

    Hi
    i have a page in which there is a teamviewer and other is an IVIEW which i created using VC.Now can i pass the PERNR selected in Teamviewer to my IVIEW?
    Please help and tell me about what code i have to change?
    Thanx in advance

    Hi
    Have a look at:
    1. /thread/7056 [original link is broken]
    3. VC iView and MSS Teamviewer
    The reading should give you a good idea how to do that
    Kind Regards, Jack

Maybe you are looking for