Handling Report Message

Hi all,
i am using report 6i and i want to abort the run of report,
so i use return(false) in before-parameter-form trigger
i stoped report run but i still have an error message,
how can suppress the message:
rep-1419 'beforepform': pl/sql program abort??
thanks for any help.
best regards
samer

Unfortunately, there is no way to suppress this message.

Similar Messages

  • Best practices for handling large messages in JCAPS 5.1.3?

    Hi all,
    We have ran into problems while processing larges messages in JCAPS 5.1.3. Or, they are not that large really. Only 10-20 MB.
    Our setup looks like this:
    We retrieve flat file messages with from an FTP server. They are put onto a JMS queue and are then converted to and from different XML formats in several steps using a couple of jcds with JMS queues between them.
    It seems that we can handle one message at a time but as soon as we get two of these messages simultaneously the logicalhost freezes and crashes in one of the conversion steps without any error message reported in the logicalhost log. We can't relate the crashes to a specific jcd and it seems that the memory consumption increases A LOT for the logicalhost-process while handling the messages. After restart of the server the message that are in the queues are usually converted ok. Sometimes we have however seen that some message seems to disappear. Scary stuff!
    I have heard of two possible solutions to handle large messages in JCAPS so far; Splitting them into smaller chunks or streaming them. These solutions are however not an option in our setup.
    We have manipulated the JVM memory settings without any improvements and we have discussed the issue with Sun's support but they have not been able to help us yet.
    My questions:
    * Any ideas how to handle large messages most efficiently?
    * Any ideas why the crashes occur without error messages in the logs or nothing?
    * Any ideas why messages sometimes disappear?
    * Any other suggestions?
    Thanks
    /Alex

    * Any ideas how to handle large messages most efficiently? --
    Strictly If you want to send entire file content in JMS message then i don't have answer for this question.
    Generally we use following process
    After reading the file from FTP location, we just archive in local directory and send a JMS message to queue
    which contains file name and file location. Most of places we never send file content in JMS message.
    * Any ideas why the crashes occur without error messages in the logs or nothing?
    Whenever JMSIQ manager memory size is more lgocialhosts stop processing. I will not say it is down. They
    stop processing or processing might take lot of time
    * Any ideas why messages sometimes disappear?
    Unless persistent is enabled i believe there are high chances of loosing a message when logicalhosts
    goes down. This is not the case always but we have faced similar issue when IQ manager was flooded with lot
    of messages.
    * Any other suggestions
    If file size is more then better to stream the file to local directory from FTP location and send only the file
    location in JMS message.
    Hope it would help.

  • OSB - Error handling, report via service callout?

    I'd like to use Report Action on any error happened in my services. I'd also like to keep only one Report Action to be able to change its configuration later easily if needed.
    As it seems currently, if I add the Report Action to the Error Handler of the service directly, it logs the error code/reason/etc correctly, but if I move the Report Action to a separate service and add a service callout to the Error Handler instead of calling the Report Action directly, I lose the error information (I get the report message but error code/reason/details will be all NULL in the database).
    Am I doing something wrong here? Is that a limitation of the product? Is there any solution to keep the report actions centralized in this case?
    Thanks..

    hi guys,
    thanks for all the suggestions though it's still not working here. Hopefully clarifying the situation:
    a) service -- error handler -- report error
    b) service -- error handler -- service callout -- report error
    a) works, b) does not.
    The syndromes for not working is that the reported message has error code, reason and detail all empty (NULL if I look directly in the database). I suspect the problem is with my service callout in scenario b).
    The service callout originally was made using the following parameters:
    Request document variable: body
    Response document variable: response
    SOAP request header: header
    SOAP response header: rheader
    Reading your suggestions I tried to set the request document variable from 'body' to 'fault', but it did not help either: I get the report message but still no error information in the message.
    How exactly should this service callout look like to properly transfer the error details to the called pipeline?

  • "Application has not registered to handle incoming messages on the Signaling Session," Diagnostic ID 24041

    Hi
    We have set up a Lync with connection to pbx. From our scenario we used the Lync 2013 Mobile client (android) to call to our ip phone, but when the ip phone answered, the call drops. We received this error from our Lync diagnostic report "Application
    has not registered to handle incoming messages on the Signaling Session," Diagnostic ID 24041. Hope you can help us to interpret this error and suggest any possible solution.
    thank you

    Hi Edison,
    Looks like REFFR is not supported between the gateway and mediation server.
    You can try to disable REFFER support and test the issue.
    In addition, to better understand the issue, you should check the logs.
    Also double check Lync server configuration item for CSMobilityPolicy and CSTrunkConfiguration .
    Best regards,
    Eric

  • Event Handling for messages

    I would like to know how to handle events for messages i maintained in zmesg01.
    messages are follow:    when gv_spfli is initial
                                 "No such flight available.
                                when  gv_scarr is initial.
                                  "Flight name not available          with help of raise event ?
    pls suggest.
    *       CLASS lcl_mytestclass DEFINITION
    class lcl_mytestclass definition.
    public section.
       data: gt_spfli type table of spfli initial size 20,
               gt_scarr type table of scarr initial size 20.
       methods: get_data.
       events: data_not_found.
    endclass.                    "lcl_mytestclass DEFINITION
    *       CLASS lcl_mytestclass IMPLEMENTATION
    class lcl_mytestclass implementation.
    method: get_data.
       select * from spfli into table gt_spfli.
       if ( sy-subrc <> 0 ).
         raise event data_not_found.
         endif.
    select * from scarr into gt_scarr
    for all entries in gt_flight where  carrname = gt_spfli-carrname.
    if sy-subrc  <> 0.
    " How to call event for flight_name_not_found ?"
    raise event flight_name_not_found.
      endmethod.                    "get_data
      endclass.                    "lcl_mytestclass IMPLEMENTATION
    *       CLASS handler DEFINITION
    class handler definition.
    public section.
       methods handle_event
               for event data_not_found of lcl_mytestclass.
    endclass.                    "handler DEFINITION
    *       CLASS handler IMPLEMENTATION
    class handler implementation.
    method handle_event.
       write: / 'Data not found'.
    endmethod.                    "handle_excess
    endclass.                    "handler IMPLEMENTATION
    data: oref type ref to lcl_mytestclass,
         h1   type ref to handler.
    start-of-selection.
    create object: oref, h1.
    set handler h1->handle_event for all instances.
    call method oref->get_data.
    Thanks in advance.
    Anee.

    Hello Anee
    Events are not used for this kind of message handling.
    If you want to collect all messages then use a message handler (see sample report ZUS_SDN_ABAP_OO_MSG_HANDLING ).
    Alternatively, you may define an exception class and raise a class-based exception which contains the detailed error message.
    The following sample report is based on the more elaborate Wiki posting
    [Message Handling - Finding the Needle in the Haystack|https://wiki.sdn.sap.com/wiki/display/profile/2007/07/09/MessageHandling-FindingtheNeedleintheHaystack]
    *& Report  ZUS_SDN_ABAP_OO_MSG_HANDLING
    *& Thread: Event Handling for messages
    *& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1052131"></a>
    REPORT  zus_sdn_abap_oo_msg_handling.
    TYPE-POOLS: abap.
    *       CLASS lcl_mytestclass DEFINITION
    CLASS lcl_mytestclass DEFINITION.
      PUBLIC SECTION.
        DATA: gt_spfli TYPE TABLE OF spfli INITIAL SIZE 20,
                gt_scarr TYPE TABLE OF scarr INITIAL SIZE 20.
        METHODS: constructor.
        METHODS: get_data
                       IMPORTING
                     value(id_carrid) TYPE s_carr_id.
        METHODS: has_messages
                   RETURNING value(rd_result)  TYPE abap_bool.
        METHODS: display_messages.
        EVENTS: data_not_found.
      PROTECTED SECTION.
        DATA: mo_msglist    TYPE REF TO if_reca_message_list.
    ENDCLASS.                    "lcl_mytestclass DEFINITION
    *       CLASS lcl_mytestclass IMPLEMENTATION
    CLASS lcl_mytestclass IMPLEMENTATION.
      METHOD constructor.
        me->mo_msglist = cf_reca_message_list=>create( ).
      ENDMETHOD.                    "constructor
      METHOD has_messages.
        IF ( me->mo_msglist->is_empty( ) = abap_false ).
          rd_result = abap_true.
        ENDIF.
      ENDMETHOD.                    "has_messages
      METHOD display_messages.
    * define local data
        DATA:
          ld_handle           TYPE balloghndl,
          lt_log_handles      TYPE bal_t_logh,
          ls_profile          TYPE bal_s_prof.
        " Get log handle of collected message list
        ld_handle = me->mo_msglist->get_handle( ).
        APPEND ld_handle TO lt_log_handles.
    *   get a display profile which describes how to display messages
        CALL FUNCTION 'BAL_DSP_PROFILE_DETLEVEL_GET'
          IMPORTING
            e_s_display_profile = ls_profile.  " tree & ALV List
    *   set report to allow saving of variants
        ls_profile-disvariant-report = sy-repid.
    *     when you use also other ALV lists in your report,
    *     please specify a handle to distinguish between the display
    *     variants of these different lists, e.g:
        ls_profile-disvariant-handle = 'LOG'.
        CALL FUNCTION 'BAL_DSP_LOG_DISPLAY'
          EXPORTING
            i_s_display_profile          = ls_profile
            i_t_log_handle               = lt_log_handles
    *       I_T_MSG_HANDLE               =
    *       I_S_LOG_FILTER               =
    *       I_S_MSG_FILTER               =
    *       I_T_LOG_CONTEXT_FILTER       =
    *       I_T_MSG_CONTEXT_FILTER       =
    *       I_AMODAL                     = ' '
    *     IMPORTING
    *       E_S_EXIT_COMMAND             =
          EXCEPTIONS
            profile_inconsistent         = 1
            internal_error               = 2
            no_data_available            = 3
            no_authority                 = 4
            OTHERS                       = 5.
        IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDMETHOD.                    "display_messages
      METHOD: get_data.
        SELECT * FROM spfli INTO TABLE gt_spfli
          WHERE ( carrid = id_carrid ).
        IF ( sy-subrc NE 0 ).
    **      RAISE EVENT data_not_found.
          IF 1 = 2. MESSAGE e154(bc_datamodel_service). ENDIF.
    *   Flight not found (table SFLIGHT)
          CALL METHOD me->mo_msglist->add
            EXPORTING
    *          is_message   =
              id_msgty     = 'E'
              id_msgid     = 'BC_DATAMODEL_SERVICE'
              id_msgno     = '154'
    *          id_msgv1     =
    *          id_msgv2     =
    *          id_msgv3     =
    *          id_msgv4     =
              id_detlevel  = '1'
    *        IMPORTING
    *          es_message   =
        ENDIF.
        IF ( gt_spfli IS INITIAL ).
        ELSE.
          SELECT * FROM scarr INTO TABLE gt_scarr
          FOR ALL ENTRIES IN gt_spfli
            WHERE  carrid = gt_spfli-carrid.
        ENDIF.
        IF ( gt_scarr is initial ).
          " How to call event for flight_name_not_found ?"
    **        RAISE EVENT flight_name_not_found.
          IF 1 = 2. MESSAGE e159(bc_datamodel_service) WITH '&all'. ENDIF.
    *   Airline & not found
          CALL METHOD me->mo_msglist->add
      EXPORTING
    *          is_message   =
        id_msgty     = 'E'
        id_msgid     = 'BC_DATAMODEL_SERVICE'
        id_msgno     = '159'
        id_msgv1     = '&all'
    *          id_msgv2     =
    *          id_msgv3     =
    *          id_msgv4     =
        id_detlevel  = '2'
    *        IMPORTING
    *          es_message   =
        ENDIF.
      ENDMETHOD.                    "get_data
    ENDCLASS.                    "lcl_mytestclass IMPLEMENTATION
    *       CLASS handler DEFINITION
    CLASS handler DEFINITION.
      PUBLIC SECTION.
        METHODS handle_event
                FOR EVENT data_not_found OF lcl_mytestclass.
    ENDCLASS.                    "handler DEFINITION
    *       CLASS handler IMPLEMENTATION
    CLASS handler IMPLEMENTATION.
      METHOD handle_event.
        WRITE: / 'Data not found'.
      ENDMETHOD.                    "handle_excess
    ENDCLASS.                    "handler IMPLEMENTATION
    DATA: oref TYPE REF TO lcl_mytestclass,
         h1   TYPE REF TO handler.
    PARAMETER:
      p_carrid    TYPE s_carr_id DEFAULT 'AA'.
    START-OF-SELECTION.
    START-OF-SELECTION.
      CREATE OBJECT: oref, h1.
    **  SET HANDLER h1->handle_event FOR ALL INSTANCES.
      CALL METHOD oref->get_data( p_carrid ).
      IF ( oref->has_messages( ) = abap_true ).
        oref->display_messages( ).
      ENDIF.
    END-OF-SELECTION.
    Regards
      Uwe

  • Itunes wont open/ immediate "send error report message"

    So I had a problem with me trying to install itunes 7.3 because of a missing itunes.msi. I followed the instructions i found from this forum as follows
    "1. Go to http://www.ccleaner.com/ and download and install CCleaner. Run this program and click Run Cleaner. This program will remove most of your temporary files.
    2. Go to http://download.microsoft.com/download/e/9/d/e9d80355-7ab4-45b8-80e8-983a48d5e1b d/msicuu2.exe and download and install Windows Install Clean Up utility. Click on iTunes and click Remove. Do the same for Quicktime.
    3. Now you need to manually delete all of your iTunes and Quicktime files. This can take a very long time. Just go to C: and start searching through.
    4. Go to the Run box and type in "regedit". Go through all of the folders in there and delete all iTunes and Quicktime files.
    5. Go to Add/Remove Programs and Remove iTunes and Quicktime.
    6. Download iTunes again and install it."
    I then tried to open itunes and immediately a message pops up asking if i want to send an error report to microsoft. It seems as though step 4 might have truly made things worse.
    Someone please help
      Windows XP  

    After you get the send error report message go to:
    Start -> Control Panel (In classic view which can be enabled by clicking view classic.) -> Administrative Tools -> Event Viewer.
    Select the Application log and look for the most recent errors (Marked by a red X).
    Double click on the error and it will show you a full description. For an error similar to the one you are recieving it should report a 'faulting module' in the error.
    Please paste that here. This will help us help you.

  • Firefox crashed, now won't start, crash reporter message every time

    Greetings,
    I was using firefox as usual and all of the sudden it crashes and it's now gone and everytime I try to start up a new browser the same crash reporter message comes on:
    "Firefox had a problem and crashed. We'll try to restore your tabs and windows when it restarts."
    I've restarted, created a new profile..nothing works. Cannot access safe mode. Cannot access anything. In fact, when I try to access older bookmarks which I backed up and saved on a flashdrive and want to view them, the same error pops up with the crash report. I'd like to know if my bookmarks (old and recent) can still be accessed and backed up and that I can solve this problem and use firefox again soon.
    Below is the report contents I just copied and pasted
    AdapterDeviceID: 2a42
    AdapterVendorID: 8086
    Add-ons: {BBDA0591-3099-440a-AA10-41764D9DB4DB}:3.1,{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}:2011.7.1.3,{972ce4c6-7e08-4474-a285-3208198ce6fd}:6.0.2
    AvailableVirtualMemory: 4128313344
    BuildID: 20110811165603
    CrashTime: 1316491109
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1313684313
    Notes: AdapterVendorID: 8086, AdapterDeviceID: 2a42, AdapterDriverVersion: 8.15.10.1872
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 38
    StartupTime: 1316491109
    SystemMemoryUsePercentage: 75
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL:
    Vendor: Mozilla
    Version: 6.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 :
    MSAFD Tcpip [UDP/IP] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IP] : 2 : 3 :
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 :
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    RSVP TCPv6 Service Provider : 2 : 1 :
    RSVP TCP Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP UDPv6 Service Provider : 2 : 2 :
    RSVP UDP Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD RfComm [Bluetooth] : 2 : 1 :
    This report also contains technical information about the state of the application when it crashed.
    Please Help!
    Sincerely,
    Matt

    More details:
    The regular/non-extended Hardware Test returned no problems, despite taking hours for what was supposed to be a 3-5 minute test. I haven't dared run the extended.
    I also tried removing third-party RAM and using the original configuration, then just the third-party and no Apple, etc.. It's not the RAM, as the problem is exactly the same.
    I'm going to call up Apple support when I can, but just looking for other things I can check or possibly do until then, or just insight on what the problem could be.
    Is it most likely the graphics card? Could it be an issue with the core hardware?

  • Itunes get "Send Error Report" message

    Alright so when I try and open itunes I get a send error report message. I've tried updating it and that doesnt work and I've already tried reinstalling it. I thought quicktime was the error so I went to try and remove it from my computer. As it was loading to remove quicktime I got a "fatal error" message and quicktime could not be deleted.
    Help please?
    Message was edited by: Joshua Malin

    Itunes has encountered a problem and needs to close
    the first thing that i check for when people report getting that message when they try to launch their itunes is a broken QuickTime.
    try to open your QuickTime. does it launch properly, or do you get an error message?
    if you get an error message, the first thing we'll try is a careful standalone QT 7.1 reinstall.
    download and save a copy of the QT 7.1 standalone installer to your hard drive. (we'll run the install from there rather than online.) switch off antivirus and antispyware applications prior to the install.
    Quicktime 7.1 Standalone Installer
    if that install goes through okay, does your itunes launch properly again?
    (if you get an error message on the QT standalone reinstall, let us know what it says. include error message numbers if you're getting any.)

  • Itunes 7 error report message

    i recently downloaded the new itunes, and it messed up everything. I ran the install program and when i tried to run the program, i get an error report message. It says that the program cannot open. I have tried unistalling, and redownloading, and nothing works. I also tried to revert to 6.01 version, but that didnt work either.Im running a dell, with os windows xp. any help would be much appreciated.

    let's get a crash log to the Apple Engineers for a look.
    Typically, you'll need to configure Dr. Watson on your PC in order to generate crash logs. Windows start menu -> Run. Type in "cmd". Hit return. At the prompt in the command line window that comes up, type in
    drwtsn32 -i
    And hit return.
    This will create crash logs in Documents And Settings\All Users\Application Data\Microsoft\Dr Watson\. There'll usually be a file in here called "drwtsn32.log"
    prior to collecting the itunes crash log, delete any existing crash logs in there. (we want to make sure we send the correct crash log.)
    Generate the crash, collect the crash log, and send it as an attachment to this email address.
    in the email to Roy, be sure to include the following information:
    - A link to the thread on Apple Discussions where the issue is being discussed
    - The username you are using in the thread
    - The version of iTunes you are using or trying to use
    - A concise description of the issue you are seeing
    - The exact text of the error message you are seeing (if you are seeing one)

  • ITunes "Send Error Report" Message/Quicktime Problem

    This is a problem that has only occured after I updated my iTunes to 7.0.2. Some songs in my library, and all of my videos that I have bought through the Music store cause the "Send Error Report" message to come up and iTunes closes down immediately.
    I read another thread that a similar problem was occuring to a customer, and one of the admins requested him to un-install Quicktime and delete 2 files out of the registry. Then re-install quicktime through the "Repair" section of the iTunes installer. I followed these steps and the problem seemed to be fixed, but then they were "re-corrupted" I guess after I restarted my computer.
    Do you have any idea what would be wrong? I know it is not spyware/viruses because I have several programs to check/delete them.
    Thanks for your help
    -jcavanagh.

    Bump for the 3rd time.
    Quicktime will not even open, on a sidenote. It starts to load, then I hear some sort of beep..then it closes. I have tried re-installing multiple times and the problem continues.

  • Firefox won't open I get a "Mozilla crash reporter" message instead.

    I bought a new computer and downloaded Firefox. I had brought my settings over with Easy Transfer and everything worked a few times. Now when I try to open FF it immediately shuts down and gives me an crash reporter message. It doesn't actually open up it just goes directly to the crash reporter message. I've done that a few times. I uninstalled the program and then did a new download a few times and it's still happening. Please help. I've never gotten a response from m numerous crash messages I've sent in and I've posted on this forum and then can't find it. I feel like I've fallen through the FF black hole. Do I exist??

    See http://kb.mozillazine.org/Firefox_crashes and [[Firefox crashes]]
    If you have submitted Breakpad crash reports then post the IDs of one or more Breakpad crash reports (bp-xxxxxxxx-xxxxxxxxx-xxxx-xxxxxxxxxxxx).<br />
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.<br />
    You can open the <i>about:crashes</i> page via the location bar, just like you open a website.<br />
    See: http://kb.mozillazine.org/Breakpad (Mozilla Crash Reporter) and [[Mozilla Crash Reporter|Mozilla Crash Reporter: Breakpad]]

  • Handling faulty messages in PI 7.0

    Hi Gurus,
    my interface is 3rd party app->PI->SAP.
    i used proxy on sender side and on receiver side I used HTTP adapter.
    Each time my PI will ping that application using the URL and get the batch xml file but if there is no data in the 3rd party application,how should i handle the faulty message.
    the message if it fails to retreive the new bach,which is coming from the application is not in the xml format how can i handle the message
    Thanks,
    Jay

    Your sender is abap proxy and receiver is HTTP and the mode is synchronous.
    >what should i do with this message.do i need to use the fault message type to hold this message but I need not send this to >anyone or..Can I configure alerts so that PI users will understand
    Yes you can pass the fault mesg from reciever(third party) to sender (proxy). That woud be helpful.
    If the receiver (third party) is sending fault message as response then create fault message on the sender side and map the response of third party to sender side (proxy) proxy message.  So that proxy will interpret that message as fault message.
    Basically you will have request, response and fault messages for both sender interface (proxy ) and reciver interface (third party http).  As you know, Fault messages are useful to provide meaningful application errors.
    Refer this [link|http://help.sap.com/saphelp_nwpi711/helpdata/en/48/5946db5f693912e10000000a42189b/content.htm] for constructing fault message structure.

  • Handling fault messages in BPM

    Hi,
    I am using BPM for a RFC to SOAP scenario to handle Fault messages. (Please have a look at my previous post also SOAP Fault message )
    I have created an exception block in BPM to catch the fault message from SOAP service. Inside the exception block i need to map the fault message to RFC response. But fault message is not accessible in Exception block.
    Let me know if you have any idea to solve this.
    Thanks,
    Uma

    Uma:
    Let me make clear the requiremt. You have RFC Import(aka Request message) and Export(aka Response + Exception) and you have Web Service with Request, Response, Fault messages. And you want to send the fault messages back to the RFC in addition to the response. I was wondering, If we do the following mapping without BPM, does that fulfill your requirement.
    RFC-Import <----
    > SOAP Request
    RFC-Export <----
    > SOAP Response
    RFC-Export <----
    > SOAP Fault
    Can you let me know if you face any problems with this one. I have seen your other thread and was wondering, whats the problem is. May be I didn't understand the requirement properly. Please clarify me

  • BPM handle empty message in send step

    Hi, Friends:
    I have a following BPM sceario(PI7.1 EHP1)
    It mainly has following steps:
    Receive -> Transformation (Multi-Mapping) -> Fork (4 branches: one send step each branch)
    The multi-mapping result is to generate 4 types of messages based on logic.
    Sometimes all 4 types of message generated, and sometimes only one type of message generated.
    When there is a message not generated, the send step generate error which is not caught in exception branch.
    I searched forum, so far not lucky to find solution.
    Any idea how to  handle empty message (do not send it) in send step?
    Regards
    Liang
    Edited by: Liang Ji on Dec 7, 2010 8:42 PM

    Hi, Abhishek:
    The reason to use Fork is that all the branches can be reached.
    By using switch, it only judge one input value and only one condition turns true.
    Actually in most cases, the number of my input value is more than one, saying two or more message types generated.
    And this is not multi-line situaion, because the messages generated are different types.
    Your reply remind me to add switch inside fork.
    Regards
    Liang
    Edited by: Liang Ji on Dec 8, 2010 5:32 PM

  • Can't open PDF's on my Mac coming in on MS Outlook 2010. Reinstalled Adobe software 4 x and still get "Adobe PDF Preview Handler" error message.

    Can't open PDF's on my Mac coming in on MS Outlook 2010. Reinstalled Adobe software 4 x and still get "Adobe PDF Preview Handler" error message.

    No. Reader will not damage files. It is only meant to read pdf files. PDF files are frequently damaged when sent as email due to encoding issues.

Maybe you are looking for