Event call event

hello,
I would like to know how to call event from another,
I have for the moment 5 individuals actions (manage with event structure) A B C D and E  and
i  need  in somecase that A want to call E, B to call E or  B to call E then quit on quit button.
is there a way to call ( simulate) an event call at end of first really called (by user) ?
can i use flag, event register ? i don't kow what is best solution
Best regards 
Tinnitus
CLAD / Labview 2011, Win Xp
Mission d'une semaine- à plusieurs mois laissez moi un MP...
RP et Midi-pyrénées .Km+++ si possibilité de télétravail
Kudos always accepted / Les petits clicks jaunes sont toujours appréciés
Don't forget to valid a good answer / pensez à valider une réponse correcte
Attachments:
eventcall.vi ‏14 KB

Yes but it send me an error
see attachement
CLAD / Labview 2011, Win Xp
Mission d'une semaine- à plusieurs mois laissez moi un MP...
RP et Midi-pyrénées .Km+++ si possibilité de télétravail
Kudos always accepted / Les petits clicks jaunes sont toujours appréciés
Don't forget to valid a good answer / pensez à valider une réponse correcte
Attachments:
eventcall2.vi ‏19 KB

Similar Messages

  • How to Call Event Handler Method in Another view

    Hi Experts,
                       Can anybody tell me how to call Event handler Method which is declared in View A ,it Should be Called in
      view B,Thanks in Advance.
    Thanks & Regards
    Santhosh

    hi,
    1)    You can make the method EH_ONSELECT as public and static and call this method in viewGS_CM/ADDDOC  using syntax
        impl class name of view GS_CM/DOCTREE=>EH_ONSELECT "method name.
                 or
    2)The view GS_CM/ADDDOC which contains EH_ONSELECT method has been already enhanced, so I can't execute such kind of operation one more time.
                         or
    3)If both views or viewarea containing that view are under same window , then you can get the instance ofGS_CM/DOCTREE from view GS_CM/ADDDOC  through the main window controller.
    lr_window = me->view_manager->get_window_controller( ).
        lv_viewname = 'GS_CM/DOCTREE '.
      lr_viewctrl ?=  lr_window ->get_subcontroller_by_viewname( lv_viewname ).
    Now you can access the method of view GS_CM/DOCTREE .
    Let me know in case you face any issues.
    Message was edited by: Laure Cetin
    Please do not ask for points, this is against the Rules of Engagement: http://scn.sap.com/docs/DOC-18590

  • HT4927 When i upgraded from 9.2.3 to 9.3.1 I had migration issues, where most my photos ended up in a restored event called restored photos. But then they don't come up in faces anymore. So can i upgrade to 9.3.2 and then just rebuild my photo library ?

    When i upgraded from 9.2.3 to 9.3.1 I had migration issues, where most my photos ended up in a restored event called restored photos. But then they don't come up in faces anymore. So can i upgrade to 9.3.2 and then just rebuild my photo library ? I want to upgrade to mountain lion. But concered about my photo library. So I restored my whole computer back to an earlier date, becuase I couldn't figure out how to restore just my photo library. Advice?

    Best way is to restore your backup from before the problem, rebuild it and update it again
    LN

  • Error calling Events

    Hi again
    I have a problem calling an event, the event sends an error to the agent WF_ERROR, but when i try to visualize the error it only give me this...
    XML document must have a top level element. Error processing resource 'http://oraclesrv/pls/wf/wf_event_html.EventDataContents?p_message_id=65AF14CB3011409D836B6403201B5044&p_queue_table=WF_ERROR'.
    What4s the problem ????
    Why can i visualize the error in question???
    Cheers

    When you click on the hyperlink, we are telling the browser that the content type is XML, and it is validating the XML content. In this case, either your content is not XML or is not valid XML. Why don;t you right click and select Save As, and save the file to your local PC and then open up the contents in a Text Editor.
    Hi again
    I have a problem calling an event, the event sends an error to the agent WF_ERROR, but when i try to visualize the error it only give me this...
    XML document must have a top level element. Error processing resource 'http://oraclesrv/pls/wf/wf_event_html.EventDataContents?p_message_id=65AF14CB3011409D836B6403201B5044&p_queue_table=WF_ERROR'.
    What4s the problem ????
    Why can i visualize the error in question???
    Cheers

  • Calling events from scripts in UIX

    Hi,
    I am able to call the ordinary events in the UIX from the script. But I am not able to call the
    <ctrl:event .. >
    from the script.
    Could anyone please tell me how to call them.
    Thank you
    Velpandian

    Velpandian -
    Assuming your page contains a form, you can trigger an event on the server from a JavaScript handler by calling submitForm(). The following sample shows how to send an event both by using the ctrl:event attribute as well as from a JavaScript handler:
    <?xml version="1.0" encoding="UTF-8"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
          xmlns:ui="http://xmlns.oracle.com/uix/ui"
          xmlns:data="http://xmlns.oracle.com/uix/ui"
          xmlns:ctrl="http://xmlns.oracle.com/uix/controller">
    <content>
      <form name="foo" xmlns="http://xmlns.oracle.com/uix/ui">
      <contents>
        <!-- Import the submitForm() function -->
        <importScript names="submitForm()"/>
        <stackLayout>
        <contents>
          <!-- This link sends an event using a ctrl:event attribute -->
          <link text="Send Event" ctrl:event="test"/>
          <!-- This link sends an event using a JavaScript event handler.
               We use submitForm() and specify the event name using
               a parameter.  Note that this means that we need to be
               sure that we also have an "event" hidden field - which
               we add via a formParameter element below -->
          <link text="Send Event from JavaScript"
                onClick="if (confirm('Send event')) submitForm(0, 0, {'event':'test'}); else return false;"
                destination="#"/>
          <!-- Need a form value to contain the event name -->
          <formParameter name="event"/>
        </contents>
        </stackLayout>
      </contents>
      </form>
    </content>
    <handlers>
      <!-- Use a null event handler to set up a session variable -->
      <event name="test">
        <go name="nextPage"/>
      </event>
    </handlers>
    </page>I couldn't find the documentation for submitForm() online anywhere... Here is a copy of the documentation from our source code:
    * Attempts to submits the form, potentially firing validation and notifying
    * any Cabo onSubmit handlers registered on the form, returning
    * <code>true</code> if the submission actually occurred.
    * <p>
    * If the <code>doValidate</code> parameter is false, no validation will
    * be performed, and the form is guaranteed to be submitted.  Otherwise,
    * the form will be submitted if both the validation succeeds and any
    * registered Cabo onSubmit handlers do not return <code>false</code>.
    * <p>
    * @param form The form to submit.  This can either be the name of the form
    *             in the current <code>document</code>, the index of the form
    *             in the current <code>document</code> or the form itself.
    * @param doValidate boolean value specifying whether validation should
    *   occur before the form is submitted.  (As per a common Javascript
    *   idiom, it is acceptable to pass true/false as well as 0/1).  If
    *   this parameter is ommitted, it defaults to true.
    * @param parameters a single Javascript object that specifies
    *   all the additional key-value pairs to submit.  There must be
    *   pre-existing &lt;input type="hidden"&gt; elements as targets
    *   for each of these parameters.
    function submitForm(
      form,
      doValidate,
      parameters
      )Andy

  • Is it possible to save an Event and the informations attached to his medias (favorites, Keywords, Notes) on an external disk where I saved the first version of this Event, without re-copying the all medias on a new Event called fcp1?

    Is it possible to save an Event and the informations attached to his medias (favorites, Keywords, Notes) on an external disk where I saved the first version of this Event, without re-copying the all medias on a new Event called fcp1?

    If they both have the same media, you can just copy the CurrentVersion.fcpevent file.  But then you have two databases with the same UUID, and FCP X will only open one of them.  If you use Carbon Copy Cloner, you can clone just that folder to the external drive, and set it up to only update files that are newer or have changed.

  • How to catch call events?

    Hi, I'm trying to develop a java application for mobile devices (mobile phones) that should automatically Reject when somebody calls (based on some rules).
    I don't know how to catch the "+call event+".
    Can anyone help me ?

    Hi,
    This is not possible using core Java ME (CLDC + MIDP). You can initiate a call in MIDP 2.0 by using platformRequest.
    The optional JSR 253 makes it possible to do what you want do do, but I haven't seen any devices with this JSR implemented.
    http://jcp.org/en/jsr/detail?id=253
    -henrik

  • Calling Event

    Hi Experts,
    I have a simple question.
    I'm having a event which is bounded with a inputfield.
    I want to call this event in the wddoinit.
    When i used code wizard, it prompts me to give WDEVENT.
    How can i call a event in the wddoinit.
    Thnx,
    Suba

    Hi Suba,
    I guess you are talking about specifying an action for an event of a UI element. And it is this action (or event handler) that you want to call from WDDOINIT using code wizard.
    For example for InputField we have one predefined event onEnter. For this event you can specify an action say GO which will act as the event handler (ONACTIONGO). Event handlers can be viewed in the METHODS tab.
    Event       Action       Event Handler
    onEnter    GO           ONACTIONGO
    Use following code to call this event handler explicitly from WDDOINIT:
      DATA : zcustom_event TYPE REF TO cl_wd_custom_event.
      CREATE OBJECT zcustom_event
        EXPORTING
          name = 'ON_ACTION'.
      wd_this->onactiongo(
        wdevent =  zcustom_event
    Regards,
    Chitrali

  • Lync dropping calls- event 32163

    We have (2) Ent. Fe's on latest CU with (2) SQL BE including mirroring + witness for a small deployment. Every so often we get users reporting dropped calls. It appears to me that the users are being switched between the FE's, but why?
    Looking in the Event logs for the 2 FE's we see the following:
    FE1
    Log Name:      Lync Server
    Source:        LS User Services
    Date:         
    12/2/2013 7:19:10 AM
    Event ID:      32163
    Task Category: (1006)
    Level:         Error
    Keywords:      Classic
    User:         
    N/A
    Computer:      lync13-fe1.<company>.local
    Description:
    Local Pool Manager has been disconnected from Pool Fabric Manager.
    Cause: This may happen if many Front-Ends in the cluster have gone down or become unreachable, causing loss of quorum.
    Resolution:
    Ensure that a majority of the Front-Ends configured for this pool are up and running. If multiple Front-Ends have been recently decommissioned, run Reset-CsPoolRegistrarState -ResetType QuorumLossRecovery to enable the Pool to recover from Quorum
    Loss and make progress.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="LS User Services" />
        <EventID Qualifiers="50158">32163</EventID>
        <Level>2</Level>
        <Task>1006</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-02T15:19:10.000000000Z" />
        <EventRecordID>13051</EventRecordID>
        <Channel>Lync Server</Channel>
        <Computer>lync13-fe1.<company>.local</Computer>
        <Security />
      </System>
      <EventData>
      </EventData>
    </Event>
    Log Name:      Lync Server
    Source:        LS Storage Service
    Date:         
    12/2/2013 7:19:12 AM
    Event ID:      32034
    Task Category: (4006)
    Level:         Warning
    Keywords:      Classic
    User:         
    N/A
    Computer:      lync13-fe1.<company>.local
    Description:
    Primary Storage Service host not found for a Storage Fabric Service ID: 1673DC96160257E38E03FFBA7C877C14.
    1673DC96160257E38E03FFBA7C877C14
    Cause: A call to windows fabric to query for this storage fabric service returned null.
    Resolution:
    This condition means a caller of storage service is sending in stale references. The situation should auto correct itself. If the problem persists, notify your organization's support team with the event detail.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="LS Storage Service" />
        <EventID Qualifiers="36774">32034</EventID>
        <Level>3</Level>
        <Task>4006</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-02T15:19:12.000000000Z" />
        <EventRecordID>13052</EventRecordID>
        <Channel>Lync Server</Channel>
        <Computer>lync13-fe1.<company>.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>1673DC96160257E38E03FFBA7C877C14</Data>
      </EventData>
    </Event>
    FE2
    Log Name:      Lync Server
    Source:        LS User Services
    Date:         
    12/2/2013 7:19:24 AM
    Event ID:      32167
    Task Category: (1006)
    Level:         Information
    Keywords:      Classic
    User:         
    N/A
    Computer:      LYNC13-FE2.<company>.local
    Description:
    Primary frontend for routing group {31334115-674A-5EE7-ACEE-C81121B8E01F} has been changed from lync13-fe1.<company>.local to LYNC13-FE2.<company>.local.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="LS User Services" />
        <EventID Qualifiers="17390">32167</EventID>
        <Level>4</Level>
        <Task>1006</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-12-02T15:19:24.000000000Z" />
        <EventRecordID>11425</EventRecordID>
        <Channel>Lync Server</Channel>
        <Computer>LYNC13-FE2.<company>.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>{31334115-674A-5EE7-ACEE-C81121B8E01F}</Data>
        <Data>lync13-fe1.<company>.local</Data>
        <Data>LYNC13-FE2.<company>.local</Data>
      </EventData>
    </Event>
    have checked the network and everything else.  I don't see why it tries switching over?
    running:
    Get-CsPoolFabricState gives the following for the pool (not during the episode)
    Replica Instances for MCUFactory Service
        Address: LYNC13-FE1.<company>.LOCAL - Primary: 3 Secondary: 3
        Address: LYNC13-FE2.<company>.LOCAL - Primary: 3 Secondary: 3
    Replica Instances for ConferenceDirectory Service
        Address: LYNC13-FE1.<company>.LOCAL - Primary: 1 Secondary: 0
        Address: LYNC13-FE2.<company>.LOCAL - Primary: 0 Secondary: 1
    Replica Instances for Routing Service
        Address: LYNC13-FE1.<company>.LOCAL - Primary: 8 Secondary: 8
            Local Groups: Primary: 8 Secondary: 8
            Remote Groups: Primary: 0 Secondary: 0
        Address: LYNC13-FE2.<company>.LOCAL - Primary: 8 Secondary: 8
            Local Groups: Primary: 8 Secondary: 8
            Remote Groups: Primary: 0 Secondary: 0
    Replica Instances for LYSS Service
        Address: LYNC13-FE1.<company>.LOCAL - Primary: 7 Secondary: 8
        Address: LYNC13-FE2.<company>.LOCAL - Primary: 8 Secondary: 7
    Service: fabric:/lync/storage/10613DBEC9445463BFA37C1EA28D0EB9 has no primaries.
    Global Service Count Summary:
    Fqdn: LYNC13-FE1.<company>.LOCAL - Primary: 19 Secondary: 19
    Fqdn: LYNC13-FE2.<company>.LOCAL - Primary: 19 Secondary: 19
    We are near the end of migrating from Lync 2010 but that is still running.

    Here is what I ran and the errors received:
    Reset-CsPoolRegistrarState -PoolFqdn "Lync13.<company>.com" -ResetType FullReset
    Resetting Pool Fabric State.
    Initiating Full Pool Reset on Pool Lync13.<company>.com. This will cause User Data to be re-loaded from Backup Store
    for all Routing Groups and any uncommitted data might be lost. This is a very expensive operation as all Databases need
     to be re-built.
    [Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"): y
    Reset-CsPoolRegistrarState : Cannot find path '\\Lync13-fe2.<company>.local\C$\ProgramData\Windows
    Fabric\\Settings.Xml' because it does not exist.
    At line:1 char:1
    + Reset-CsPoolRegistrarState -PoolFqdn "Lync13.<company>.com" -ResetType FullRese ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (\\Lync13-fe2.ld...c\\Settings.Xml:String) [Reset-CsPoolRegistrarState],
        ItemNotFoundException
        + FullyQualifiedErrorId : PathNotFound,Microsoft.Rtc.Management.Hadr.ResetPoolFabricStateCmdlet
    Reset-CsPoolRegistrarState : Cannot find path '\\Lync13-fe2.<company>.local\C$\ProgramData\Windows
    Fabric\\Settings.Xml' because it does not exist.
    At line:1 char:1
    + Reset-CsPoolRegistrarState -PoolFqdn "Lync13.<company>.com" -ResetType FullRese ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [Reset-CsPoolRegistrarState], ItemNotFoundException
        + FullyQualifiedErrorId : Error resetting fabric state. For details, see inner exception.,Microsoft.Rtc.Management
       .Hadr.ResetPoolFabricStateCmdlet

  • What r the main events called in an alv report.............

    what r the mandatory events called in an alv grid report ................pls lemme know
    Message was edited by:
            'GURU'

    Hi
    there are no mandatory events by default
    chk this prog
    Hi
    chk this sample programs
    report zkiran .
    Global ALV Data Declarations
    type-pools: slis.
    Internal Tables
    data: begin of ialv occurs 0,
    test1(10) type c,
    test2(10) type c,
    end of ialv.
    data: fieldcat type slis_t_fieldcat_alv.
    start-of-selection.
    perform get_data.
    perform call_alv.
    Form GET_DATA
    form get_data.
    ialv-test1 = 'ABC'.
    ialv-test2 = 'DEF'.
    append ialv.
    ialv-test1 = 'GHI'.
    ialv-test2 = 'JKL'.
    append ialv.
    ialv-test1 = '123'.
    ialv-test2 = '456'.
    append ialv.
    endform. "GET_DATA
    CALL_ALV
    form call_alv.
    perform build_field_catalog.
    Call ABAP List Viewer (ALV)
    call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
    it_fieldcat = fieldcat
    tables
    t_outtab = ialv.
    endform. "CALL_ALV
    BUILD_FIELD_CATALOG
    form build_field_catalog.
    clear: fieldcat. refresh: fieldcat.
    data: tmp_fc type slis_fieldcat_alv.
    tmp_fc-reptext_ddic = 'Test1'.
    tmp_fc-fieldname = 'TEST1'.
    tmp_fc-tabname = 'IALV'.
    tmp_fc-outputlen = '10'.
    append tmp_fc to fieldcat.
    tmp_fc-reptext_ddic = 'Test2'.
    tmp_fc-fieldname = 'TEST2'.
    tmp_fc-tabname = 'IALV'.
    tmp_fc-outputlen = '10'.
    append tmp_fc to fieldcat.
    endform. "BUILD_FIELD_CATALOG
    reward points to all helpful answers
    kiran.M

  • How to catch ALL call events with JTAPI

    Hi,
    I have my JTAPI application witch is listening for ALL calls that are placed on CUCM system. Based on this information this software is making some routing decisions. At present getting the information about all calls is very inconvenient - I have to track all events from all phones, so my CTI user has to have ALL phones on its Controlled Devices List.
    Is there more intelligent way of getting all call events without controlling every single device? I am interested in any version of CM or CUCM.
    Regards,
    Andrius Kislas
    CCIE #18338 Voice

    According to the documentation, lineMonitorTones should be available (though that's the 7.0 documentation I'm looking at) - going through a wrapper always add another place where things can go wrong. E.g. we're supposed to get device state events with the latest version but when I tried I still got nothing. If you can handle tapi browser you might want to try it and see if it works, and if so, get in touch with the developer of the lib (I did once... really nice and helpful guy).
    Alternatively, there's no need to catch digits.. you may not even be able to terminate the call in the status you're looking at so you could just listen to call events and get the first one where the call actually starts (as in "all digits dialed") and terminate it then.. it probably won't make much of a difference either unless you want to prevent people from making certain calls and cut them off after a few digits.. but that is better done using partitions and css.. they are meant to prevent people from calling certain numbers and it would be ill advised to duplicate this functionality in your own software (which after all could fail every now and then.. or the app could lose the connection to the server, etc.)

  • BUG: UnhandledEventException when calling event from a link on UIX page

    Here is very simple test you can do to reproduce this:
    1. Create empty workspace and open ViewCOntroller->struts-config.xml
    2. Craete two data pages, dataPage1 and dataPage2
    3. On dataPage1 create a link with ${ctrl:eventUrl(uix,'back')} and create event 'back'
    <event name="back">
      <method method="handleBack" class="view.MyClass"/>
    </event>4. create event handler in a class:
    package view;
    import javax.servlet.http.HttpSession;
    import oracle.cabo.servlet.BajaContext;
    import oracle.cabo.servlet.Page;
    import oracle.cabo.servlet.event.EventResult;
    import oracle.cabo.servlet.event.PageEvent;
    import oracle.cabo.servlet.util.RedirectUtils;
    public class MyClass
      public static EventResult handleBack(BajaContext context, Page page, PageEvent event)
        System.out.print("I am in handleBack");
        HttpSession session = context.getServletRequest().getSession(true);
        Page nextPage = new Page("dataPage2");
        session.invalidate();
        return new EventResult(RedirectUtils.getRedirectPage( context, nextPage));
    }run dataPage1.do and click on a link:
    500 Internal Server Error
    oracle.cabo.servlet.event.UnhandledEventException
    at oracle.cabo.servlet.event.TableEventHandler.handleEvent(Unknown Source)
    at oracle.cabo.servlet.event.BasePageFlowEngine.handleRequest(Unknown Source)
    at oracle.cabo.servlet.AbstractPageBroker.handleRequest(Unknown Source)
    at oracle.cabo.servlet.ui.BaseUIPageBroker.handleRequest(Unknown Source)
    at oracle.cabo.servlet.PageBrokerHandler.handleRequest(Unknown Source)
    at oracle.cabo.servlet.UIXServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:239)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:645)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    if you do not get the same error I am then Donald Duck.

    I have a similar scenario to recreate this same error. I have a link on my page used as an anchor. After I select the link, I select a submitButton and I get the error. If I select the submitButton before I use the link, everything works fine.
    Is this a BUG???

  • BDT events calls. FMCA_PSOB public sector

    Hi experts !
    We have a BDT implemation for contract objects. PSOBWORK. We have created two new aplication ZALO and ZASA, so, now we have 4 aplication PSOB, PAAC, ZALO and ZASA. We have already the image secuences working, the trx only shows the view we want and do not go through the other aplication PBO nor PAI. Everything perfect till now.
    BUT, for the events, even if we set ZALO or ZASA or PSOB or PAAC  as aplication for the event, every events is lauch.
    Example:
    Event ISSTA.
    1010000     PSOB_PSOB_EVENT_ISSTA        X       PSOB
    1020000     PAAC_PSOB_EVENT_ISSTA        X       PAAC
    6111101     ZTRM_TAX_LO_EVENT_ISSTA        X       ZALO
    6111102     ZTRM_TAX_SA_EVENT_ISSTA       X       ZASA
    What we want is that when launching trx PSOBWORK if the object type is SANC only
    ZTRM_TAX_SA_EVENT_ISSTA should be executed and viceversa if object type is LIOB only ZTRM_TAX_LO_EVENT_ISSTA should be executed. But it does not work, all function modules are launch ?
    Any suggestion ?

  • Calendar on iOS 7.1: Cannot Save Event - That event does not belong to that event store.

    Hi All,
    I have an iPhone 5 running iOS 7.1.
    Yesterday, while updating a birthday in the iPhone iOS calendar app (default calendar = GMail), I noticed that the new 'List View' in the iOS 7.1 calendar (and only that view) showed an event called 'New Event' - which has a start date of 2014 and an end date of 2001. If I go into that event, it will show me no title and no location - only, as mentioned, funny start and end times. The 'Delete Event' button is completely missing. This 'New Event' does not come up in any other view.
    Trying to input a ficticious title with a valid start and end time into that event slot leads to a message from the calendar app saying: "Cannot Save Event - That event does not belong to that event store." I have deleted all calendars and re-add them again via settings, with / without soft and hard reset and tried every possible combination. Yet, the event will not disappear.
    The funny thing is that this 'New Event' will still showed up, even when my GMail, work and iCloud calendars were disabled. I have, however, subscribed to a GMail calendar for Australian holidays, and there is a built-in 'Birthday' calendar that pulls the dates from the contacts (I do not use that contact field, though).
    Does anyone have a similar issue? Any suggestions how to fix it?
    Thanks in advance!
    Edit: This 'New Event' does not seem to sync to any calendar other than on the iPhone - not to Gmail, not to work, not to iCloud.

    Had same problem. Although the phone looks off   it actually isnt.  If you actually turn it off and then on again this problem will disappear. I think its a memory overload issue that is solved by clearing the memory by turning it off.
    Worked for me

  • Can't edit any event, no event editor

    It used to be that i could double click on an event to edit it. Right now, iCal is sending me reminders to do something that i no longer need. I want to cancel the reminders (i don't want to delete the event because i'll use it later). I want to get the pop up menu with all choices on it. I want to be able to edit the event. When i tried to do this yesterday, i found that nothing happens when i double click on the event, and when i select the event and go to the Edit menu and choose "edit event," nothing happens. I'm wondering if i accidentally clicked on some kind of finder setting or something that has disabled event editing? How do i get that little pop up menu with all the editing choices on it that i used to get?
    Also, if i create a new event by double clicking in the date field in month view (for example), it creates an event called 'new event." But it will not let me name the event, much less have any other editing options. A google search informed me that i can select the event and hit return in order to be able to name the event but i can't do anything else. If i create the new event by double clicking on a day while in month view, when i look at the event in day view, it has defaulted to 1pm as the time for the event. Every time. If i create another event in month view on that same day, it will add another 1pm event.
    What happened? I used to be able to easily create events with various characteristics by simply double clicking. What am i missing? I tried iCal help, how to edit an event. It just tells me to select things in the Event editor. But i can't get an event editor to open up. That's what i want, the event editor. How do i access it? Maybe something happened the last time i updated the system?

    Post Author: alex94
    CA Forum: Formula
    Ok,
    I figured it out.
    The "Formula Editor"  modal window was being hidden off of the left hand side of my screen.

Maybe you are looking for

  • In eRecruitment - Application wizard F4 Values are not getting displayed.

    Hi, I have created a seperate process template for MBA candidates (external) as per client requirement and in the Vacancy req.when the process template is selected the application wizard is getting displayed ( which has been defined according to new

  • Case sensitive table names

    Hi all, I create a table named "Organism" on my marvel schema. When I do a SELECT * FROM "Organism", I get correct results, but when I try to do DESC "Organism" I get an error message saying the table doesn't exist. Is there something I am missing ?

  • 3G won't mount!

    Greetings everybody, Here's the problem. My 3G 20 GB iPod won't mount on my eMac's desktop. It doesn't show up in iTunes or the Finder. I've tried using the disk mode solution and I get the checkmark, but it still doesn't mount. Returning this iPod i

  • User exit PGI

    Heloo Gurus, I have a scenario where I need to copy some fields from shipment into EIKP table at the time of PGI. Can you gurus help me with the user exit to be used. The process in as follows. Create Sales order VA01 Create delivery VL01n create shi

  • Windows 7 SP1 not listed using Windows Updates

    I have a Vaio VPCEC390X and SP1 for Windows 7 will not upload automatically using windows update. I've uploaded the system updates for my model from the esupport sony site also. What could be preventing this update?  I have checded my settings Im get