Action on zoom event

Hi
I have developed a flash-RMA which shows some text. The RMA is embedded  in a pdf. I discovered that sometimes, when zooming in acrobat/reader  the text is not displayed correctly (i.e. linebreaks shift, somtimes the  last line of text drops out of the viewingrange).
I have a redrawing-function in my flash-as which forces a correct redraw  of the text and fixes this problem. However, so far I have to trigger  this function per hand (i.e. using a button).
What I need now is an eventlistener, which calls the function  automaticly whenever a zoom-event occurs. I know how to call  AS-functions, but I have no clue about event-listeners in Acrobat.

You're right, there was a problem with the file.... I can't recall what it was, or how I fixed it, but it was just a minor issue. Anyway, it is the file you can download under http://www.docunamic.de/files/9912/9847/9610/docunamic_video_pdf_seeberger.pdf that originally gave me trouble. When switching languages it worked just fine, but once I started zooming the PDF parts of the text sometimes disappeared like described above.The version you can download has the fix applied, but if necessary I can provide a simplified version to illustrate the problem.
It seems like the Zoomfactor of the PDF is not consistently applied to the scaling of flash-text. That's the basic issue.

Similar Messages

  • Issue in execution of Dynamic action on change event

    Hi,
    Greetings.
    I have scenario, where I have one select list (P_CATEGORY) and one shuttle control (P_ROOMS) on page.
    The values of the shuttle list is being populated based on the selected value in select list.
    The left pane of shuttle control's value based on LOV and source of the shuttle item is a plsql function, which returning colon separated value list.
    So that returned values shown in the right pane of shuttle.
    The LOV values are getting being populated using cascading LOV i.e based on the of Select List item. But the Shuttle source values not getting auto refresh and for achieving that I've created a dynamic true action on change event of Select list.
    The dynamic action is with :
    Action : Set Value
    Set Type : PL SQL funciton body
    Page items to submit : P_CATEGORY (this is select list)
    Escape Special Character : Yes
    Suppress Change event : Yes
    Affected Elements -
    Selection type : Item(s)
    Item(s) : P_ROOMS
    This is perfectly working on Firefox but not working on IE9 & Google Chrome.
    I've debugged in both IE9 & Google chrome and found the dynamic action get executes ajax call and the values get back but not rendering on the screen. i.e not assigning to the item.
    So can you please advice me what will be a workaround for this issue?
    I am using Application Express 4.1.0.00.32 .
    I'll appreciate your prompt response.
    Thanks & Regards,
    Jaydipsinh Raulji

    I don't understand why this is not working withouth seeing an example, there might be multiple processes working on the item.
    Anyway if the value is returned check if the value is in the session aswell. If it is in the session but not on the page that means you will need to find a way to bring it from the DB to the page. You can do this by adding an action to your DA:
    Action: Execute PL/SQL code
    PL/SQL code: NULL;
    Page Items to Return: your shuttle item

  • Action & onMouseClicked Button Events

    Hola!
    There's something I don't understand why happen.
    A button with action and onMouseClicked events:
    Stage {
        title: "MyApp"
        scene: Scene {
            width: 100, height: 100
            content: [
                Button {
                    text: "Button"
                    action: function() {
                        println("action!!");
                    onMouseClicked: function(e: MouseEvent): Void {
                        println("onMouseClicked!!");
    }During execution, if I press the button, it will print:
    action!!
    onMouseClicked!!
    Good! All right!
    But, if I add and Alert popup in action event, like that:
    Stage {
        title: "MyApp"
        scene: Scene {
            width: 100, height: 100
            content: [
                Button {
                    text: "Button"
                    action: function() {
                        println("action!!");
                        Alert.inform("action!!");   // <--------------------------------------
                    onMouseClicked: function(e: MouseEvent): Void {
                        println("onMouseClicked!!");
    }the onMouseClicked event function will not execute anymore.
    Why?? O_o

    Hola!
    There's something I don't understand why happen.
    A button with action and onMouseClicked events:
    Stage {
        title: "MyApp"
        scene: Scene {
            width: 100, height: 100
            content: [
                Button {
                    text: "Button"
                    action: function() {
                        println("action!!");
                    onMouseClicked: function(e: MouseEvent): Void {
                        println("onMouseClicked!!");
    }During execution, if I press the button, it will print:
    action!!
    onMouseClicked!!
    Good! All right!
    But, if I add and Alert popup in action event, like that:
    Stage {
        title: "MyApp"
        scene: Scene {
            width: 100, height: 100
            content: [
                Button {
                    text: "Button"
                    action: function() {
                        println("action!!");
                        Alert.inform("action!!");   // <--------------------------------------
                    onMouseClicked: function(e: MouseEvent): Void {
                        println("onMouseClicked!!");
    }the onMouseClicked event function will not execute anymore.
    Why?? O_o

  • Zoom event capture in TreeMap

    Hi,
    In my code I've declared TreeMap instance and registered an
    event handler to capture the zoom event like following:
    _treeMap.addEventListener(TreeMapBranchEvent.REQUEST_ZOOM,
    branchZoomHandler);
    However, in the TreeMap UI, when I zoom a tab, then the
    control goes to branchZoomHandler() declared in TreeMap class
    instead of the event handler declared in my own class.
    Is it possible to capture and handle the ZOOM event in my own
    class? If so, it'd be helpful if you provide the sample code for
    the same.
    Thanks in advance,
    Madhav

    Hi..
    Can you try with getting key code(event.keyCode is 8) for Backspace
    See
    http://stackoverflow.com/questions/2353550/how-to-capture-a-backspace-on-the-onkeydown-event

  • Actions  for  flv event cue point

    I have an flv playing back from component in a nested
    timeline (an actionscript 2 proj) and I want at the end of the
    video to gotoAndPlay the label"vidend" in the this timeline. I
    embedded the the event cue point called "end" on the last frame of
    video when I encoded it in my new CS3.I placed the following on the
    first frame of the nested timeline... The video plays fine but does
    not trigger the action. Any suggestions???...I 've found reams of
    info on navigation events but this is the result of everything I
    could find on the adobe site and I still not there.
    I'd really appreciate any direction anyone can give me.
    //leave this as is
    var listenerObject:Object = new Object();
    listenerObject.cuePoint = function(eventObject:Object):Void {
    //change this info..."end" is the name that you called your
    cuepoint when
    //you embedded it into the video
    if(eventObject.info.name == "end"){
    //tell your movie what you want it to do once your cuepoint
    has been hit
    this.gotoAndPlay("vidend");
    //_root.SessionPlay.mov_loadcard.gotoAndPlay("vidend");
    //my_FLVPB is the name of your video on the stage, the rest
    stays as is
    my_FLVPB.addEventListener("cuePoint", listenerObject);

    I have an flv playing back from component in a nested
    timeline (an actionscript 2 proj) and I want at the end of the
    video to gotoAndPlay the label"vidend" in the this timeline. I
    embedded the the event cue point called "end" on the last frame of
    video when I encoded it in my new CS3.I placed the following on the
    first frame of the nested timeline... The video plays fine but does
    not trigger the action. Any suggestions???...I 've found reams of
    info on navigation events but this is the result of everything I
    could find on the adobe site and I still not there.
    I'd really appreciate any direction anyone can give me.
    //leave this as is
    var listenerObject:Object = new Object();
    listenerObject.cuePoint = function(eventObject:Object):Void {
    //change this info..."end" is the name that you called your
    cuepoint when
    //you embedded it into the video
    if(eventObject.info.name == "end"){
    //tell your movie what you want it to do once your cuepoint
    has been hit
    this.gotoAndPlay("vidend");
    //_root.SessionPlay.mov_loadcard.gotoAndPlay("vidend");
    //my_FLVPB is the name of your video on the stage, the rest
    stays as is
    my_FLVPB.addEventListener("cuePoint", listenerObject);

  • Recording actions with zoom and screen mode

    PS CS6 under Win7 x64Pro
    Very long time Photoshop use and one-time programmer. OK with the process of creating actions, but haven't written any PS scripts.
    I do lots of retouching of old B&W photographs. My initial setup after opening a new image is always the same:
    Create new layer and assign same name each time.
    Zoom to actual pixels.
    Home key to move to top left.
    F key to set view to full screen with menu bar (to stop inadvertent scrolling when near the edge of the window).
    and finally select the Healing Brush.
    I have tried to create an action to do all the above, but when I try recording one (either using shortcut keys or menus) it only registers the create and name-layer elements and ignores the rest.
    How can I automate the whole set?

    akribie wrote:
    For completeness, it is only possible to include tool selections when recording an action if "Allow Tool Recording" is enabled in the Action panel flyout menu, which is not the default.
    All now working fine except for the final HOME step, which I haven't managed to record. But I can live with that.
    No some tools can be recorded being selected via using/recording their shortcut key.  However all can not perhaps because the shortcut key may be ambiguous because you can shift+Shortcut between a group of tools that have the same shortcut key so the shortcut by itself would select the last active one in the group whichever that happens to be. The tool bar tool Button Icon also changes with tool use.   However Tool presets are not ambiguous they identify the exact tool and the settings for the tool use.  That is why I wrote to create a tool preset and record selecting that preset in your action.
    "Allow Tool Recording" is not very useful, is not well implemented and in fact will be disabled if you install Adobe Scriptlistener Plug-in.  The "Allow Tool Recording"option  will record tool usage. ie record your brush strokes.  How much data get recorded seems to be a function of your machine processing power. So actions recorded on a powerful machine would swamp less powerful machines. Also brush stroke relate to document size and zoom level color etc. Some settings are not even captured and documents vary in size. So the feature would only work for documents the same size and when you record the  things and setting the option fails to capture in the recording. IMO Adobe wasted time and money developing that feature that is of so little use and value. I install the Scriptlistener Plug-in do not mind that allow tool recording is not an option I have.  For I have never use it or even downloaded a useful action that used the allow tool recording feature. I looked at tool recording when Adobe first announced the new feature recorded some actions then categorized the feature as useless.
    I don't understand your final Home step what you trying to do.
    Crafting Actions PackageUPDATED Aug 10, 2014 Added Conditional Action steps to Action Palette Tips.
    Contains
    Action Actions Palette Tips.txt
    Action Creation Guidelines.txt
    Action Dealing with Image Size.txt
    Action Enhanced via Scripted Photoshop Functions.txt
    CraftedActions.atn Sample Action set includes an example Watermarking action
    Sample Actions.txt Photoshop CraftedActions set saved as a text file.
    More then a dozen Scripts for use in actions
    Example
    Download

  • How to stop an event action when other event happen ?

    This is my first swing program
    I want to design an application with two buttons,"start" and "stop"
    Pressing "start" will start listing data
    Pressing "stop" will stop listing data immediate
    What should I do??
    I try to use a flag like the following:
    ==============================
    btnStartActionPerformed() {
    while(1) {
    if (loop_break) break;
    btnStopActionPerformed() {
    loop_break = true;
    ==============================
    but btnStopActionPerformed() will not start until btnStartActionPerformed() is finished
    What should I do?

    I agree with the thread comment...
    But if you are going to use a while loop, you can do this:
    loop_break = false;
    while(!loop_break) {
    }But if you need to stop anywhere inside the loop, you need to use if statements to check that flag between every action the while loop contains. Otherwise, you're limited to breaking whenever you check the flag, of course, or as above, before the next loop iteration.

  • Ordering actions in amouse event

    Hello,
         In my .swf file, when a mouse event occurs, I would like events to happen. However, I would like them to happen ion a certain order, instead of happening all at once.
    My code has objects appearing and one object moving diagonally up and left at the same time. However, I would like to have the objects appear, then have the one object move left,then up.
    Here is my code:
    I have more code in the mouse event, but it is arbitrary.
    So is there any way to order the events?
    Thank you.

    It appears yopu are using the Tween class, so what you can do is have the first tween occur and assign a MOTION_FINISHED event listener to that tween so that you can use its event handler to intiate the next tween.

  • Can a Vision image display's "zoom to fit" action be seen by an event structure?

    The "Image Display" indicator from the "Vision" palette has a right-click (context) menu option of "Zoom to Fit".
    Is there any way to capture the selection/execution of this action with an event structure?

    I don't believe there is a way to do this with an event structure.  However, there is an image window property node for the zoom to fit option.  You can wire the output boolean into the input of a case structure and execute a different set of code depending on whether or not the zoom to fit option is selected.  This should give you the same functionality as an event structure.  Please let me know if you have any further questions.
    Regards,
    Chris L
    Applications Engineer
    National Instruments
    Certified LabVIEW Associate Developer

  • How can i set action on UITaBar and get event from that

    Hi All,
    I m doing one apps in which i have to add three UITabBarItem and this is UITabBarSystemItem.
    Now i cannot understand that how can i set action and get event from the?
    And how can i set various views on three tab bar item.
    I have to use UITabBar means i have to use UINavigationController+UITabBar
    My code id
    tabBar =[[UITabBar alloc] initWithFrame:CGRectMake(0,370,320,50)];
    tabBar.backgroundColor =[UIColor blackColor];
    UITabBarItem *search =[[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemSearch tag:0];
    UITabBarItem *recents =[[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemRecents tag:1];
    UITabBarItem *favorites =[[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemFavorit es tag:2];
    tabBar.items =[[NSArray arrayWithObjects:search,recents,favorites, nil] retain];
    tabBar.selectedItem = search;
    [myView addSubview:tabBar];
    [tabBar release];
    I add a action:
    UITabBarItem *search =[[UITabBarItem alloc] InitWithTabBarSystemItem:UITabBarSystemItemSearch tag:0 action:@selector(select:)];
    So it error: Warning -no'InitWithTabBarSystemItem:tag:action:' method fount
    So any can help me regarding it?

    Thanks RickMaddy very much.
    I read and do with sample at the View Controller Programming Guide . But when run it only view TabBar with title but haven't got any TabBarItem on it. I searched a few example about TabBar and i did, but i want do a form with a button then press on button it view a form with 2 TabBarItem on TabBar and press each TabBarItem will show correlative form page 1, page 2.
    UITabBarController *tabBarControl = [[[UITabBarController alloc] initWithNibName:nil bundle:nil] autorelease];
    tabBarControl.title = @"Tab bar";
    ViewControl1 *view1 = [[[ViewControl1 alloc] initWithNibName:@"ViewControl1" bundle:nil] autorelease];
    ViewControl1 *view2 = [[[ViewControl1 alloc] initWithNibName:@"ViewControl2" bundle:nil] autorelease];
    tabBarControl.viewControllers = [NSArray arrayWithObjects:view1,view2,nil];
    [self.navigationController pushViewController:tabBarControl animated:YES];

  • How to set Lov item property (Action type,event,parameter etc) in PR when page load

    Hi gurus
    I am new to OAF, First I need to explain my scenerio.
    I need to make some field mandatory or non mandatory based on one LOV item (Pick list or message choice list).
    for this i extended the controler and apply the changes, but in this case what heppen, It will effect only when i open the list (pop list) and click on more (Available in poplist) and it will open a new form and i select value from that form. But when I open the poplist and select the value from the same list rather going to more option (it does not open new form), then there are no effect. I though the issue with refreshing when selecting value from the same list.
    To resolving this issue what i did
    1. go to page == > the same LOV
    2. Change the Client Action properties (
         Action type  = fireAction
         event          = xxevent
        submit = true.
    After doing this when i run the page from my OAF enviroement , every thing is OK. Then I transfer the Controler to Server machine and change the controller and run the same page from the server, it has the same refreshing issue, Then I thought because I did not transfer LOV such properties so this is hepening,
    Now I want to initilize such properties in Page load or what I need to do, Please advise me.
    Regards,
    Haq

    Edward,
    Thank you for the suggestion! It directly lead to my solution wherein I used CASE statements for the column in my Region SELECT such as the following:
    WHEN (:P2_GRADING_METHOD = 'CR/NC' OR scs.scs_pass_audit = 'P') AND GET_GRADE_B93 (sac.stc_final_grade, sac.stc_verified_grade) IS NULL THEN htmldb_item.select_list_from_lov (5, 'Enter Grade', 'GRADE_LOV_CRNC','onBlur="return validate_grade(this,''FW_DATE_'||ROWNUM||''')"','NO',NULL,NULL,'GRADE_'||ROWNUM)
    When the column is NULL, the Select List (LOV) contains the entry 'Enter Grade' and that is the value displayed on page load. I bypass the value 'Enter Grade' during Submit Processing where database updating occurs.
    I did not find the need to enter values for p_null_value and p_null_text since I don't believe that it would cause the 'Enter Grade' value to display on page load for null value columns but rather would enable the user to select 'Enter Grade' from the list and have a specified return value stored in htmldb_item array.
    Again, thank you for the help!

  • CreateListItem Action at work flow not trigger Event reciever

     
      Hello ,
    I have two Lists (List1 , List2).
    I have attached Workflow by SharePoint designer to List 1 .
    I have attached event receiver (Item was added) to list 2 .
    In the workflow . I use "CreateListItem"  to create new item in list 2.
    I have test the work flow . The item is added in List 2 , but the Event receiver not triggered .
    if I Create new item in List2 from browser , the event receiver is triggered.
         so  why  "CreateListItem" action not triggered event receiver ?
        Thanks
    ASk

    Hi himo,
    I made a test in my environment and when I start workflow in List1, then the event receiver in List2 is Triggered.
    Here are my test steps:
    1. Create a workflow for List1 in SharePoint Designer using CreateListItem action set the Title field to "Test" which is in List2.
    2. Create an event receiver for List2 with the below code
    public override void ItemAdded(SPItemEventProperties properties)
    string siteUrl = "http://sp2013sps/sites/testdevsite";
    ClientContext clientContext = new ClientContext(siteUrl);
    List oList = clientContext.Web.Lists.GetByTitle("List2");
    ListItem oListItem = oList.GetItemById(1);
    oListItem["Title"] = "My Updated Title.";
    oListItem.Update();
    clientContext.ExecuteQuery();
    base.ItemAdded(properties);
    3. Deploy the event receiver.
    4. When I execute the workflow in List1, then the title field in List2 will be updated to "My Updated Title". The event receiver has been triggered.
    I suggest you recreate a new List and follow the steps to above to check whether it works.
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Dot1x "authentication event fail action authorize" missing vlan info in show running-config 3750 12.2.55-SE7

    has anyone seen this on their dot1x configurations where the vlan info is missing on the show running-config? see port fast 2/0/3 below. the 3750 POE switch is running 12.2.55-SE7.
    interface FastEthernet2/0/1
     switchport access vlan 18
     switchport mode access
     switchport nonegotiate
     switchport voice vlan 101
     srr-queue bandwidth share 10 10 60 20
     srr-queue bandwidth shape 10 0 0 0
     priority-queue out
     authentication event fail action authorize vlan 34
     authentication event server dead action authorize
     authentication event server dead action authorize voice
     authentication event no-response action authorize vlan 34
     authentication host-mode multi-domain
     authentication order dot1x mab
     authentication port-control auto
     authentication violation restrict
     mab
     mls qos trust dscp
     auto qos voip trust
     dot1x pae authenticator
     dot1x timeout quiet-period 3
     dot1x timeout tx-period 3
     dot1x timeout supp-timeout 3
     storm-control broadcast level 1.00
     spanning-tree portfast
     spanning-tree bpduguard enable
    interface FastEthernet2/0/2
     switchport access vlan 18
     switchport mode access
     switchport nonegotiate
     switchport voice vlan 101
     srr-queue bandwidth share 10 10 60 20
     srr-queue bandwidth shape 10 0 0 0
     priority-queue out
     authentication event fail action authorize vlan 34
     authentication event server dead action authorize
     authentication event server dead action authorize voice
     authentication event no-response action authorize vlan 34
     authentication host-mode multi-domain
     authentication order dot1x mab
     authentication port-control auto
     authentication violation restrict
     mab
     mls qos trust dscp
     auto qos voip trust
     dot1x pae authenticator
     dot1x timeout quiet-period 3
     dot1x timeout tx-period 3
     dot1x timeout supp-timeout 3
     storm-control broadcast level 1.00
     spanning-tree portfast
     spanning-tree bpduguard enable
    interface FastEthernet2/0/3
     switchport access vlan 18
     switchport mode access
     switchport nonegotiate
     switchport voice vlan 101
     srr-queue bandwidth share 10 10 60 20
     srr-queue bandwidth shape 10 0 0 0
     priority-queue out
     authentication event fail action authorize
     authentication event server dead action authorize
     authentication event server dead action authorize voice
     authentication event no-response action authorize vlan 34
     authentication host-mode multi-domain
     authentication order dot1x mab
     authentication port-control auto
     authentication violation restrict
     mab
     mls qos trust dscp
     auto qos voip trust
     dot1x pae authenticator
     dot1x timeout quiet-period 3
     dot1x timeout tx-period 3
     dot1x timeout supp-timeout 3
     storm-control broadcast level 1.00
     spanning-tree portfast
     spanning-tree bpduguard enable
    interface FastEthernet2/0/4
     switchport access vlan 18
     switchport mode access
     switchport nonegotiate
     switchport voice vlan 101
     srr-queue bandwidth share 10 10 60 20
     srr-queue bandwidth shape 10 0 0 0
     priority-queue out
     authentication event fail action authorize
     authentication event server dead action authorize
     authentication event server dead action authorize voice
     authentication event no-response action authorize vlan 34
     authentication host-mode multi-domain
     authentication order dot1x mab
     authentication port-control auto
     authentication violation restrict
     mab
     mls qos trust dscp
     auto qos voip trust
     dot1x pae authenticator
     dot1x timeout quiet-period 3
     dot1x timeout tx-period 3
     dot1x timeout supp-timeout 3
     storm-control broadcast level 1.00
     spanning-tree portfast
     spanning-tree bpduguard enable
    interface FastEthernet2/0/5
     switchport access vlan 18
     switchport mode access
     switchport nonegotiate
     switchport voice vlan 101
     srr-queue bandwidth share 10 10 60 20
     srr-queue bandwidth shape 10 0 0 0
     priority-queue out
     authentication event fail action authorize
     authentication event server dead action authorize
     authentication event server dead action authorize voice
     authentication event no-response action authorize vlan 34
     authentication host-mode multi-domain
     authentication order dot1x mab
     authentication port-control auto
     authentication violation restrict
     mab
     mls qos trust dscp
     auto qos voip trust
     dot1x pae authenticator
     dot1x timeout quiet-period 3
     dot1x timeout tx-period 3
     dot1x timeout supp-timeout 3
     storm-control broadcast level 1.00
     spanning-tree portfast
     spanning-tree bpduguard enable
    interface FastEthernet2/0/6
     switchport access vlan 18
     switchport mode access
     switchport nonegotiate
     switchport voice vlan 101
     srr-queue bandwidth share 10 10 60 20
     srr-queue bandwidth shape 10 0 0 0
     priority-queue out
     authentication event fail action authorize vlan 34
     authentication event server dead action authorize
     authentication event server dead action authorize voice
     authentication event no-response action authorize vlan 34
     authentication host-mode multi-domain
     authentication order dot1x mab
     authentication port-control auto
     authentication violation restrict
     mab
     mls qos trust dscp
     auto qos voip trust
     dot1x pae authenticator
     dot1x timeout quiet-period 3
     dot1x timeout tx-period 3
     dot1x timeout supp-timeout 3
     storm-control broadcast level 1.00
     spanning-tree portfast
     spanning-tree bpduguard enable

    The vlan info isn't missing, you have the option of either specifying which VLAN you want it dropped in to, or you can just say authorize the vlan that is configured with the 'switchport access vlan' command.

  • Custom action event does not triggers

    Hai ,
    i have BAPI which results the data in a table when the screen loads initially .after i will inster one record to this bapi clicks on save the record is going to saved .
    i have a button (refresh ) on the same table when user clicks the refresh button the inserted record has to populate in the table.
    Table form -> create toolbar -> refrsh -> custom action -> self
    in event trigger i have selected refresh .im passing the input values again to same bapi as  date1 , date2 , pernr .
    im not able to see the updated record in the same table .
    when i refresh the browser iam able to see the updated record in the table
    any inputs .
    Regards ,
    venkat p

    Hai Govindhu ,
    timer doesnot works for me .
    signal in & signal out i have taken passed similar parameters , signal out event name is Refresh ,
    wht abt signal in event does not takes as it mask ,
    any inputs for this .
    Regards ,
    venkat p

  • Event based action (Lead forward)

    Hi,
    I am trying to send an email notification (through actions) when an event (in PCUI) is executed. The event is LEA_DISPATCH in lead distribution.
    Any suggestions/ help will be much appreciated.
    Thanks,
    Reshma

    The transaction is LEAD. In PCUI, there is a "forward" button on top of the lead record - which triggers event 'LEA_DISPATCH' when clicked. Yes, I have assigned an action profile to the Lead transaction and I know how to create an action for email notification. What im struggling with is setting a schedule/ start condition to verify this particular event (LEA_DISPATCH) has been triggerred i.e. The forward button has been clicked for this particular lead record.
    Appreciate any help or suggestions.
    Thanks,
    Reshma

Maybe you are looking for

  • White halo around image

    Hi there, I have a font set to a  large size 1065 pt as it's for a banner - however I am getting a slight grey white border around the image, kind of like a faint stroke but the stroke is turned off. Turning a stroke on matching my font colour doesn'

  • Forms drop down menu

    I'm trying to create a marketing piece/template with a drop down list for my sales staff to select thier photo & contact information.  How can include this information when they select thier name from the drop down list?  I'm guessing it's some sore

  • App to monitor hard drive activity?

    Hi, I posted here: http://discussions.apple.com/thread.jspa?threadID=2001256&tstart=0 about my Seagate external firewire 800 drive that keeps waking up from sleep, apparently unecessarily. I have seen one other person with this problem with a Lacie D

  • Any possibility of getting records have been updated by another user

    is there any possibility of getting the error --records have been updated by another user.please requery to see the changes. i am getting this error when no other user connected to same data base and only one session is opened. i am getting this erro

  • Packing a delivery via idoc

    Hello, I am trying to understand how to pack a delivery via idoc. I am using message type SHPCON and idoc type DELVRY03. I see a segment E1EDL37, but field EXIDV is mandatory, how does external system know the value for EXIDV, which SAP generates dyn