VC: Strategies for Triggering Events

Hello All,
Other than buttons, how can events be triggered in VC?
I am trying to dynamically load a layer once a user clicks on a chart / table without using a button.
Is this possible? What is the official answer from SAP? are there any work arounds for this?
Thanks in advance

Hi,
My model:
BI Query -> Input for Pie Chart
Pie Chart  -> iput for Table (table is hidden) -> Table  is used as Input for popup iview, the logic here is that when the user clicks on the pie chart, the table selection is changed and that is passed to the popup iView. I use a datastore to store value "dummy" with default value zero, this value I pass to popup iview
Popup iview has visibility condition:STORE@dummy==1. Inside the popup iview there is a chart and a query with a signal in.The signal in is passed the dummy value and a variable value for the query from the table. The chart has visibility condition set to STORE@dummy==1
When I set the default value of the datastore to 1 (in the main iView), when I execute the model, my pop up is visible. However if I set the default value to 0, and change it with a *select event (from table out to pop up iView in) with formual STORE@dummy+1, the popup does not show.
This is my problem, I trying to trigger an event that changes my datastore value so that when its passed to the popup iview, the visibility condition will hold true.
Many Thanks,
Sbuda

Similar Messages

  • For triggering events

    Hi frnds ,
    I want to trigger events based on some conditions . i have created a subtype of my bus object . i will trigger my eveny using Funct. MOdule  BBP_EV_API_EVENTS_SAVE . This FM does triggers standard events . What i want to know is if i create my custom event i will fire it by using the same FM then will my event trigger or should any coding needs to be done inside the event in my custom bus object .
    Also is it always necessary that we have to do any coding inside the event for triggering it . Provided that we have done all the configurations in all the transactions like swec , swe2 .
    Thanks
    Rohit

    Hi Rohit,
    >
    ROHIT GUPTA wrote:
    > Also is it always necessary that we have to do any coding inside the event for triggering it . Provided that we have done all the configurations in all the transactions like swec , swe2 .
    You couldn't do any coding inside the event. You probably need to do some coding to trigger the event.
    Regards,
    Martin

  • JavaTV for triggering events?

    Hey everybody,
    as you can read in the topic " synchronizing applications with TV-programs" I'm working on the development of a system to implement a "do it now" and "scheduled" events-analogon for the IPTV-world.
    Since MHP isn't properly standardized for IP, I 'll take look at JavaTV.
    Let me draw a little picture of the situation:
    * when I mean IPTV, I mean the transport of the "classical" broadcast-programs over a IP-netwerk, coming via e.g. an ADSL-line to the STB at home.
    * the coding is MPEG2 (it's an existing network, that's allready capable of presenting EPG, VoD etc... and now I have to add the event-triggering functionality to this; so I have not the flexibility of choosing much properties...)
    * everything should be (preferably) java-based
    Since it's the final goal that the broadcaster has a "push button" at his studio, so when he presses this an event occurs (e.g. red dot appears on screen), the triggers have to be transported IN the MPEG2 stream, and not elsewhere. The only possibility will be the use of private sections, I think.
    So, what part of Java do I have to use (or extend) to have low-level acces to the MPEG2-stream, so I can insert the triggers in the MPEG2-stream?
    And at the STB-side, what will I need there... Is a JavaTV-compatible STB enough? I didn't found any possibilities to parse the MPEG2-stream and get the triggers out in the JavaTV-doc on Sun Website...
    Thank you,
    Piotr

    Hi Piotr,
    I'm going to have to be pessimistic again, unfortunately, and tell you that right now there is no functional version of org.davic.mpeg.sections available for download, I'm afraid. I can give you a set of stub classes to compile against, but they won't do anything useful. The javadoc is available from the MHP web site at http://www.mhp.org/documents//mhp_tam527r31.javadoc_for_MHP1.0.3.zip - this includes a set of stub clases as well, but I'm not sure what the exact copyright situation is with those classes. Since you need a real TS to make use of this package, only real set-top boxes implement it right now,although that may change in the future.
    Using an external stream is posible, but as you say you run in to synchronization problems. I've never looked at how serious these problems would be, but over an IP connection you might be able to get something relatively close if you are careful about the order in which you send packets. Even when you use stream events in private sections, the synchronization will not be frame-accurate because of the delays in propagating Java event objects through the middleware and delivering them to applications. Given this, you at least know that you don't have to get perfect synchronization for it to be useful.
    Steve.

  • Which container element contains the triggering event name?

    hi,gurus,
    i have a workflow template, and i want to use a 'switch' to deal with different triggering event inside the template logic.
    but i can not find a element in the container which supposed to contain the triggering event name.
    could you please help me ?
    br.
    zj

    Hello,
    The element which stores the name of triggering event is '_EVT_NAME' which is present in the event container. To use it in the workflow template, you have to create an element in the workflow container and bind this element to the above mentioned element through the binding for triggering event.
    Thus you can use the workflow container element in the switch.
    Hope this will help.
    Regards,
    Samson

  • Duplicated workflows  for fast triggering event from CRM

    Hello,
    I'm facing an issue when a credit limit sales order is created in CRM.
    They are creating the order and manking a change to it 5 seconds later. Those created and changed events are triggered with a difference of 5 seconds and in background, the first WF is triggered (with the created event) and 5 seconds later other instance of that WF is triggered (with the changed event).
    The problem is that the first WF is not being logically deleted when the seconds one is created (it has a wait step at the beggining of the WF to end in case another instancer of the WF is triggered).
    This is caused by a perfoirmance issue that when the seconds WF is triggered, the first one is still not listening to the changed event.
    Do you know if there's any way to solve this?
    Thanks!

    Hi MatiasAZ,
    In the first workflow(created) check the event. It should be the 'changed' event and proper binding should be there.
    If everything is fine, after the wait for event create a process control with the option as 'Complete workflow'.
    Initially your workflow should have the fork step type with two branches. Maintain the changed event wait step in one branch and created events step in other branch. So that the workflow will wait for 'Changed' event and workflow will be completed if the 'Changed' event occurs in the system.
    Thanks,
    Viji.

  • Triggering event from for-each

    Hi,
    I have a process that takes long to execute, I want to be
    able to send a progress notification to the user with the hope of
    not getting him bored or impatient, for some reason I can't achieve
    it and I don't know where to go for help, if you know how to solve
    this, any help will be greatly appreciated.
    I have some code like this:
    <code in mxml for my application>
    - component declared .. onXEvent="showProgress()"
    - script for showProgress calls refresh for ProgressBar
    Component
    </code in mxml for my application>
    <code for my component>
    for each (var myObject:xObject in MyCollectionOfMyObjects)
    // do some complex logic and calls methods for this item
    // creates and triggers event for progress notification
    </code for my component>
    I would expect to see my ProgressBar advancing as the process
    is completed, but for some reason the process seems to take control
    of the execution and no onProgressEvent is fired until the foreach
    finishes execution. It will run perfectly in the debugger (step by
    step) but it doesn't work at runtime.
    Is there any way I can achieve this in Flex?? Is there any
    event class I can use to solve this issue?
    maybe anyone has done this before or knows a link to more
    information on this subject?
    Thanks in advance
    William Vega
    MCSD / Beginner Flex Developer

    Flash functions execute within a frame. They finish before
    any UI rendering is done. You will have to use callLater , somehow,
    within your loop to give the UI a chance to draw.. There is a more
    detailed answer to this thread somewhere else.
    Tracy

  • Triggering events for the Lost Triggers!!! Going Nuts....

    Gurus,
    Oracle ver 11g
    I am going nuts and crazy here....
    Can you think of any possible reasons that I have lost all my objects that I created for triggers ( approx 65 objects) and how to get back those objects.
    I don't have the script to re-create all those objects again as I did it manually using the Toad and I am 1005 sure I saw all the objects created and was able to see them in sql*developer tool.
    We had a server crash and we had to reboot the server where this oracle is residing, but other than that I am have no reason how the objects disappeared...
    My belief is create trigger is a DDL command Right? so the objects should be there in the DB.but I am not able to see them any possible reasons>?? please advice when time permits
    Thanks
    Sheik

    Thanks ennisb for your reply.
    Do you have an export handy that you could restore from?
    ** No, I am not sure how I could do this. and whether we are doing it. Basically are you asking whether we are backing up the DB daily ( No I guess we are not backing up).
    Is Flashback logging turned on?
    ** Guess Yes, the Flash back is turned on.
    When was this server crash?
    ** I am sure I saw the objects on 8th Apr and were created on 7th and 8th and the Server crash was Y'day ( 09th).

  • Regarding Workflow triggering event.

    Hi,
    Description: I have created a Object type and a event for the same by transaction SWO1, after that i have created a WorkFlow(WF) for which the triggering event is the event i have created in the Object Type. There is a report in which i have used the FM "SWE_EVENT_CREATE" and passed the Object Type, Event Name, Key field values and the creator.
    Problem: When i am executing this report the FM is called and the sy-subrc after call is 0, stating that the call was succesfull, but the WF is not getting triggered when i went to transaction SWI2_FREQ to check this WF is not at all triggered. But when i tested from WF transaction SWDD it is working fine.
    Could anyone please explain me on this. or is there any other way to use an event of a Object Type to trigger WF.
    Thanks and Regards,
    Raghavendra Goutham P.

    hi gauthum,
    try this chks.
    Workflow Trace On/Off - SWU8
    Display              - SWU9
    Delete              - SWU10.
    Work Item Analysis    - SWI1
    Identifying workflow for the work Item :
    Tx : SWI1 - Enter the workiem id which has been identified in workflow log
           The details consists of workflow of the workitem.     
    WorkFlow Errors :
    1. Workflow Not Started           - Using Event Trace we can Identify
    2. Started but No Proceeded           - Wrong Object Keys
    3. Problem in Work Item Execution
         Dialog Work Item          - Agent Determinaion Error ( Position,Role,User )
                             - Role Resolution Error
                               Reqd Element would no be
                               Set in Binding
         Background Work Item      - Make Foreground and Test once Sucessfull make it Back round
    rgds
    nver
    if hlped mark points

  • How to add new attribute for triggering workflow?

    Dear Expert,
    I want to create condition for triggering workflow.
    I am working on travel request workflow, using BUS2089.
    my requirement is to differentiate or make condition of triggering workflow based on trip activity type,
    but I can't find any attribute about trip activity type.
    how to add activity type to be available for create condition?
    thanks

    Hi,
      If am not wrong you are trying to raise event when ever there is a new travel request raised, so the BOR would be availbel in the workflow container to be more preciese it would be available in the event container, so you need to find out the right attribute in the BOR where the trip type is assigned and validate this in the start conditions i mean in the basic data of the workflow where you activate the event linkage.
    Regards
    Pavan

  • Triggering event FMRE-CREATED in an infinite loop

    Hi guys,
    Iu2019m having a big problem in Public Sector Management with Founds Management Government when I create a Found reservation Tcode FMX1.
    My problem is the triggering event FMRE-CREATED  (event to start the Workflow) because when the document is created, this event is generated by the system which is fine, but inside on my Workflow I have a task to change the status with FMRE-SetLock, when this method is executed, automatically trigger an event FMRE-CREATED again, so my WF gets in a infinite loop.
    How can I tell the system to donu2019t trigger this event when the status is changed?
    Thanks a lot
    Felipe Uribe.

    Hi,
    but inside on my Workflow I have a task to change the status with FMRE-SetLock, when this method is executed, automatically trigger an event FMRE-CREATED again, so my WF gets in a infinite loop.
    How you changing the status? Check any Function Module or BAPI to change the status.
    You have acheive it via Start Condition, check are you getting entry in the Table  SWFREVTLOG for Creation.
    If second time creating, check for the entry in the table, if found not allow it.
    Regards,
    Surjith

  • Primavera webcast: Strategies for New Product Development and Innovation

    [Strategies for New Product Development and Innovation Success: Project Portfolio Management for the Industrial Manufacturing Recovery|http://www.bulldogsolutions.net/OracleManufacturing/ORM02252010/frmRegistration.aspx?bdls=23246]
    Jim Brown, manufacturing industry expert and President of Tech-Clarity, will discuss how leading manufacturers are shifting their product portfolios for the economic recovery, emerging from survival mode and resuming growth strategies.
    * Webcast: Strategies for New Product Development and Innovation Success: Project Portfolio Management for the Industrial Manufacturing Recovery.
    * Date: Thursday, February 25, 2010
    * Time: 11 a.m. EDT
    * Registration: http://www.bulldogsolutions.net/OracleManufacturing/ORM02252010/frmRegistration.aspx?bdls=23246
    For questions about this event, please contact Julie Castro at +1 415 608 4677.

    [Strategies for New Product Development and Innovation Success: Project Portfolio Management for the Industrial Manufacturing Recovery|http://www.bulldogsolutions.net/OracleManufacturing/ORM02252010/frmRegistration.aspx?bdls=23246]
    Jim Brown, manufacturing industry expert and President of Tech-Clarity, will discuss how leading manufacturers are shifting their product portfolios for the economic recovery, emerging from survival mode and resuming growth strategies.
    * Webcast: Strategies for New Product Development and Innovation Success: Project Portfolio Management for the Industrial Manufacturing Recovery.
    * Date: Thursday, February 25, 2010
    * Time: 11 a.m. EDT
    * Registration: http://www.bulldogsolutions.net/OracleManufacturing/ORM02252010/frmRegistration.aspx?bdls=23246
    For questions about this event, please contact Julie Castro at +1 415 608 4677.

  • Issue in triggering events in task

    Hi,
    In my workflow there is a fork and after a fork there is a task for which triggering event is defined and this particular event is triggered from zprogram and agent for task is determined using a rule.
    In zprogram logic is written as event (triggering event for task) is triggered when all 4 users in fork presses submit button.
    Problem is when 4th user presses submit button workitem is created in workplace of agent defined for task and in 4th user as well.Workitem should not be created for 4th user.
    Please suggest.
    Regards,
    Kaustubh.

    Hi Rick,
    I have defined single task in all branches of a fork with CONFIRM END OF PROCESSING tick in task. Task is to call ztransaction.
    Problem is if all users in a fork enters into transaction and by clicking BACK comes out without pressing SUBMIT button in ztransaction and clicks COMPLETE WORK ITEM flow will go to task defined after fork which i dont want.
    Flow should go to task after fork only when user presses SUBMIT and COMPLETE WORK ITEM button.
    Hence I have created triggering event for task which gets triggered only after all user presses SUBMIT.
    Please suggest.
    Regards,
    Kaustubh.

  • Multiple BIUs with one triggering event

    Dear Experts,
    I am trying to create a B1i scenario that does something similar to the following:
    1. Journal Entry created in sender system by a user
    2. Journal Entry created automatically in receiver system by B1i
    This much works so far, my question is the next two steps
    3. Another Journal entry created automatically by B1i in sender system
    4. Finally another journal entry created by B1i in receiver system
    So for one triggering event (manual adding of JE in sender) I want B1i to create 3 new documents - basically have 3 bius run from one triggerring event.
    I've had a bit of a look around and haven't really found anything useful; is this easier than I am thinking or will there be some trick to it?
    Thanks in advance,
    njmog1

    To be honest, I solved it in quite an ugly way..
    First, I set it up so that B1i does not ignore the Events created when it creates a document (You can see more on that on page 9 of the guide 03. Extensibility)
    Next I created a new transaction code in Business One journal entries called "B1i"
    So basically I have 4 BIUs, the first one is triggered by an outgoing payment. and B1i creates a journal entry - and I set the memo to be something like "JE created by B1i Step 1".
    For the second BIU, the filter is "Transaction Code equal to B1i and Memo = "JE Created by B1i Step 1" - this creates another JE, and I set its memo to be "JE created by B1i Step 2"
    For the third BIU, the filter is "Transaction Code equal to B1i and Memo = "JE Created by B1i Step 2" - this creates another JE, and I set its memo to be "JE created by B1i Step 3"
    etc. etc.
    It's an ugly solution but I got it done quite quickly, If anyone has any suggestions to improve it, let me know! And if it's not clear to you, let me know what I need to clear up

  • Error in work flow wait for change event

    Error in work flow wait for change event of business object bus1014, Actually this business object is triggering for two transaction one is me21n and another is c201 . am trying to create fork with two branches one is create and another if change occurs wait will trigger, bt when i trigger work flow controll is not after fork, it will stop in fork only. and am not getting my workflow container variable getting instantiate, am getting error in wait. please any one get out of me in this

    Hi Sangeetha
    What is LV_MATERIAL? is it a BO container element? or a class element or a just a simple variable?
    Error message is clear, you are trying to evaluate LV_MATERIAL but it does not contain a value.
    This is a custom workflow as it begins with WS9xxxxxxx... what is LV_MATERIAL used for? what are we expecting it to hold? maybe, from event to workflow binding we can pass the value to it.
    Please share the following:
    1) Definition screen shot of LV_MATERIAL
    2) Screen shot of The step where it is first used - from SWDD
    3) Screenshot of Event to Workflow Binding
    4) name of your base Business Object (seen in the triggering events tab of the WF template in PFTC)
    5) What is the corresponding variable for that BO in your workflow container
    6) Screen shot of WF definition from SWDD - please identify the step going in error in that screen shot
    Regards,
    Modak

  • Duplicate alarms for calendar events on N9

    I noticed I get multiple alarms for calendar events on my N9. For some events, I get four times the same notification. I also sometimes get notifications for deleted events.
    I sync my calendar over bluetooth. Since I had some troubles setting up the sync, I deleted the calendar a few times and synced again. So I have the impression that the alarms of the events of the deleted calendars are still stored in some database. I guess this causes the same alarm to be triggered multiple times and alarms for deleted events to be displayed.
    Is there a way to re-generate the internal alarms database? 
    (I did already upgrade to PR1.1, this didn’t fix it.) 

    I used BT sync with Windows 7 (64 bit), because I was not able to do USB sync (as N9 is not supported by any Nokia PC sync soft). After that I had a real mess: Each event was multiplied to occur multiple times during a day, thoughout each week, throughour each year, e.g. for example meeting scheduled for 10am on October 20, 2011, occurred a number of times on the same day,  and each previous week until 2005 (when my calendar starts).  An event that was scheduled back in 2005 occurred each week throughout 2011.  The same thing happened to my Outlook. So you can imagine a mess that I got with my calendar after syncing with N9. Thanks that I had intact calendar on my Ipad and was able to restore my Outlook.  I had to to manually correct calendar on N9 (because any further attempts to sync with Outlook) resulted in the same mess.  When I say manually I mean that I deleted all entries (takes time) and re-entered only ones that I really needed (such as birthdays, other anniversaries and meetings from October 2011 forward).  After that I did not risk syncing N9 with Outlook anymore in expectation of a decent  sync software from Nokia (which I doubt will come, since even their latest soft Nokia Suite is not supporting N9 (although there some users were able to successfully sync with PC Suite, and some installed previous version of Ovi Suite, upgraded it to Nokia Suite and it works now for them -- but not for my very special N9).  Having fianlly lost confidence in Noikia I decided to become a happy user of iPhone (with all or at least most soft needed being put in place by Apple or 3rd parties).

Maybe you are looking for

  • How to take back resources from speech engine

    i make an application in swing in which i use jsapi text to speech which read and speak the selected file. but when synthesizer starts speaking it takes all resources back from jframe hence buttons not worked till speech completed thats why i am unab

  • Why can't i find this in iTunes or the App Store??

    i'm not getting any results when i search for it either?? very curious.

  • LaserJet Pro MFP M127fw ePrint failures

    We bought this printer several months ago.  My boss wanted a printer that could be printed to remotely.  I advised him to get one of the many Google Cloud Print ready printers out on the market, but the salesman at where ever he purchased this printe

  • Printing line only after all the records of line item are finished

    HI I have the following table : FieldA   FieldC       FieldD 10           1               CM 10           3               CCM 20           6               M Right now i am able to print in samrtform like this FieldA   FieldC       FieldD 10          

  • Is there any way you can stop itunes duplicating visible albums

    I back up my phone few time and taken every thing off and reload it? for some reason itunes keeps duplicating visible albums and i can't get rid of them? Also i mix one my albums up and won't let me get rid of album with 4songs in? Please help? thank