Sending files with and without BPM in one Interface.

Hi All,
I have to send three files to my receiver system. 2 files of same structure after little mapping need to be merged into single file (Using BPM) and once this is successful the third file needs to be posted without any mapping.
I have thought of
1. using two communication channels activated using a UNIX script externally
2. using two comm channels with a activation time difference, i.e the 3rd file should be polled after some time when the first two files polled, but this is not helpful as if the two files doesnt process properly then 3rd file is not desired.
Now my question is can we do this scenario using 1 comm. channel with EOIO , masking or anyother option.
<b>Note: the third file should always be send after the processing of the first two files completes successfully.</b>
Thanks & Regards.

1. put two file in source folder and make synch scenario using BPM ,
2. put third file in some other folder than source folder.
3. after getting successful synch file responce, in the synch receiver file channel run OS command to put third file from other folder to source folder.
hows that ???

Similar Messages

  • Is there an issue going on with the iPhones? And iPads? I cannot send text pics.  I can't get on Facebook, and I can't get on anything that uses Facebook ex Slotomania.  This has been going on for a few days!!!  It is happening with and without upgrades.

    Is there an issue going on with the iPhones? And iPads? I cannot send text pics.  I can't get on Facebook, and I can't get on anything that uses Facebook ex Slotomania.  This has been going on for a few days!!!  It is happening with and without upgrades.

    Contact facebook to address the facebook issues.

  • Execute one cursor with and without different filter condition

    I want to execute one cursor with and without different filter condition
    example :-
    if the account no is null;
         cursor cur is select * from account_master;
    if account no is not null
         cursor cur is select * from account_master where account_no = p_acc_no;

    Braam wrote:
    I want to execute one cursor with and without different filter condition
    example :-
    if the account no is null;
         cursor cur is select * from account_master;
    if account no is not null
         cursor cur is select * from account_master where account_no = p_acc_no;Use Refcursor:
    DECLARE
      refCur     SYS_REFCURSOR;
    BEGIN
      open refCur for 'select col1, col2 from your_table';
      loop
      --Your process logic here
      end loop;
      close refCur;
      open refCur for 'select col1, col2 from your_table where some_condition = is_satisfied';
      loop
      --Your Process logic here.
      end loop;
    END;

  • To create an asynch - synch - asynch flow with XI, without BPM

    I would like to create an asynch -> synch -> asynch flow with XI,
    without BPM.
    The solution with RequestResponseBean and ResponseOnewayBean modules in
    the File sender communication channel works fine.
    But now I would ask you how can I do if my sender is R/3, with IDocs?
    Because we cannot use modules in the IDoc sender communication channel,
    and I don't want to use BPM.
    Could you help me?
    Thanks in advance,
    Ram.

    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    Refer to this blog. You may find a way out.
    Alternatively, I would rather know the reason behind you not using BPM.Coz its the best way to acheive the desired result.

  • How to send file with original name through Mail adapter

    I have to send file with original name as attachment through Mail Adapter. I am picking the file from FTP server through File Adapter. I am not using message mapping because files do not have any standard format.

    Hi,
    Have you solve your problem ?...
    I have exactly the same scenario : pik up a file (file adapter) and send it in attachment by mail adapter without mapping (no IR)...
    I activated Adapter specific paramters properties in the File adapter sender and i can see the FileName tag in DynamicConfiguration section of SoapHeader in SXMB_MONI...
    I want to use MessageTransformationBean... BUT, how can i 'access' to FileName tag ???...
    Thanks...
    I setup modules like this :
    AF_Modules/DynamicConfigurationBean 1
    AF_Modules/MessageTransformBean rename
    sap.com/com.sap.aii.adapter.mail.app/XIMailAdapterBean mail
    1 key.0 write http://sap.com/xi/XI/System/File FileName
    1 value.0 message.FileName
    rename Transform.ContentDisposition attachment;filename=message.FileName
    rename Transform.ContentDescription message.FileName
    rename Transform.ContentType application/csv-tab-delimited-table;name=message.FileName
    But my file name attachment is message.FileName....
    Edited by: Emmanuel JORAND on Sep 29, 2008 9:23 PM
    Edited by: Emmanuel JORAND on Sep 29, 2008 10:25 PM

  • Bex Report with and without BIA . . Fails with a dump EXPORT_TOO_MUCH_DATA

    Hi Folks,
    We have a report thats has been running well in production for more about 18 months. This month it did not complete execution.
    We did implement BIA couple of 4 months back and the run times have drastically reduced after the BIA. Now this query execution results in a Dump with and without BIA.  FYI the underlying cube has 195,876,020 records only.
    Name of Runtime error: EXPORT_TOO_MUCH_DATA
    Short text:     Too much data for export.
    What happened?     Runtime error
        The current ABAP program "CL_RSR_CACHE_DO_SPID==========CP" had to be
         terminated because one     of the statements could not be executed at runtime.
    Error analysis: The dataset stored under an EXPORT/IMPORT ID is restricted
    by
    1. The maximum possible size of 2 GB
    2. The length of a data record and the capacity of the sequence counter. This error occurs only if the capacity of the
    sequence counter does not go beyond 255.
    Source Code Extract:
        1 METHOD if_rsr_cache_data_object~get_xstring.
        2
        3   FIELD-SYMBOLS:
        4     <l_xstring>            TYPE xstring,
        5     <l_sp>                 TYPE ANY,
        6     <l_spinfo>             TYPE ANY.
        7
        8   CREATE DATA r_r_xstring.
        9   ASSIGN r_r_xstring->* TO <l_xstring>.
       10   ASSIGN n_s_spid-r_sp->*     TO <l_sp>.
       11   ASSIGN n_s_spid-r_spinfo->* TO <l_spinfo>.
       12
       13 *... Sp has to be the first component
    >>>>>   EXPORT sp = <l_sp> spinfo = <l_spinfo>
       15          TO DATA BUFFER <l_xstring> COMPRESSION ON.
       16
       17 ENDMETHOD.
    Referred to the below note 0001232573
    which says to have 'RSRCACHE_ITAB_COMPR'  parameter using report SAP_RSADMIN_MAINTAIN
    Note say the below (It might be a little tricky, to find an appropriate value for 'RSRCACHE_ITAB_COMPR' as it heavily depends on the query-specific data structures that are stored in the cache. The general recommendation would be to start with a value of about 5000. Test this with a query, that dumped previously. In case the dump persists reoccurs, reduce the value of the parameter significantly. Otherwise, if no dump occurs but you face noticeably longer runtimes, increase the parameter.)
    We are trying not able to get to the right parameter value. (changed it from 5000, 4000, 3000, & 1000) without much  help.  Did any of you had to change this parameter. How low or High can this parameter be changed?
    We would like to understand if changing any other parameters would help in RSADMIN table would help?
    Any thoughts from the experts would be appreciated
    Thanks,
    FHF

    Hi,
    Are you running the report for all the selections(all the data )?
    execute the report with data selection and check?
    Is the data in the Ic - compressed?
    Regards
    KP

  • VA01: Creation of SD order with several material codes,with and without VAT

    hi guys,
    could someone tell me how to set up the system to not be able to create an SD orders with a mix of VAT condition?
    We don't want a sales order with an combination with and without VAT.
    Pls advise. Thanks.

    could someone tell me how to set up the system to not be able to create an SD orders with a mix of VAT condition?
    We don't want a sales order with an combination with and without VAT.
    H i
    1.The Vat ( Tax ) is applicable on basis of Customer and Mareial Tax classification.
    2. So as far as material is concerned , group all VAT applicable material in One Division
    Say in FMCG Company
    Divisions are Soaps , Skin Care , Shampoo etc
    Create Sub Divsions say for Eg Soaps-------Soaps 1( Taxable) & Soaps 2 .( Non Taxable ) and acordingly for other divisions
    And then Create Sales Areas accordingly.
    All this will need Reorganisation of your Sales Area
    Regards
    Rohit

  • Physical inventory with and without handling unit managment

    Hello all,
    I would like to know what is the difference between physical inventory with and without handling unit management.
    Pl. advise.
    Thanks,
    Maxx

    Assuming you are referring to WM inventory, it is very similar.  Inventory is conducted at the SU level in WM if you are HU managed.  One of the most widely known issues is the lack of ability to post differences of nested HUs at the WM level.  If you are not using nested HUs, the process is the same as storage unit management without handling unit management.

  • STO with and without delivery

    Hi All,
           sorry for troubling you all again. last question on STO.
    1) when STO is required to be with delivery only then only we use IMG > step up stock transport order> Assign Document Type, One-Step Procedure, Underdelivery Tolerance
    there is no need to assign document type in the step--> Assign Document Type, One-Step Procedure, Underdelivery Tolerance,  if it is without delivery in step --  ?  is it like this?
    i created a document type <b>zubd</b> by copying the std UB. and did the setting in the STO with the help of SD consultant.
    i assigned the new STO document type  ZUBD in step
    Assign Document Type, One-Step Procedure, Underdelivery Tolerance
    now when i am trying to assign document type UB in the step;
    Assign Document Type, One-Step Procedure, Underdelivery Tolerance
    <b>the system is giving me error message : an entry already exists with the same key</b>
    am i right if i make the interpetation for STO with and without delivery like this:
    1) for STO without delivery there is no need to do IMG in the step Set up stock transport order. we can use the std doc type UB or the one created by copying UB.
    2)  for STO with delivery we have to do the settigs in IMG for set uo stcok transport order
    thanks and regards
    Kavita

    Hi Kavita,
    You are Right,
    Assign Document Type, One-Step Procedure, under delivery Tolerance
    In this step, you define which document type is to be used for a certain combination of supplying plant and receiving plant.
    <b>There is no need to maintain IMG setting forStock Tranfer Order  Without SD delivery</b>. because main moto of assignment of Document type is to specify which delivery type is to be used.
    for this we allready maintain IMG setting before this srep >Assign Document Type, One-Step Procedure, Underdelivery Tolerance at
    <b>Assign Delivery Type and Checking Rule</b>:
    In this step, you specify whether an SD delivery is to be created in the case of a PO with a certain combination of supplying plant and document type. You can also specify which delivery type is to be used.
    The delivery determines how a delivery is handled.  I.e. stock transfers without a billing document or for stock transfers with a billing document.
    Regards
    Sanjay l

  • Now that Apple no longer supports AppleWorks, how can I change a lot of AppleWorks files to Pages, without doing them one at at time?

    Now that Apple no longer supports AppleWorks, how can I change a lot of AppleWorks files to Pages, without doing them one at at time?

    Maybe these?
    https://discussions.apple.com/thread/3162022?start=0&tstart=0
    http://macscripter.net/viewtopic.php?id=19987
    But why if you're running 10.6 do you need to do this? AW works fine in 10.6 with Rosetta.
    (BTW,  you're in the older iMac PPC forum.)

  • Attempting to install Adobe Acrobat 7 installer isn't recognizing my product serial number as a valid serial number.  I tried entering it with and without the dashes and neither methods work.  What should I do now?

    I bought a new computer and I'm attempting to install my older Adobe products that I still use, Adobe Acrobat 7 is the issue for now.  I followed the instructions on the Adobe site for installing the older apps, but the installer isn't recognizing my product serial number as a valid serial number.  I tried entering it with and without the dashes and neither methods work.  What should I do now?

    You cannot use your original files and serial number.  See the following for the files you need and the associated serial number(s)....
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3 -
    http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

  • When I am abroad (living in Norway) the phone only temporarily  connects to a network. Most of the time is says "no service" in top left corner...I have tried to turn it on/off...with and without sim installed...roaming makes no diff. Can anyone help me?

    When I am abroad (living in Norway) the phone only temporarily (and seldom) connects to a network. Most of the time is says "no service" in top left corner...From advice I have tried to turn it on/off...with and without sim installed...roaming makes no diff. Can anyone help me?

    You're welcome.
    If she has full reception and connection with the same cell phone carrier where you don't - with you both using a SIM card provided by the same carrier while in Norway with an unlocked iPhone, then make an appointment at an Apple Store if there is one nearby to have a diagnostic test run on your iPhone.
    In the interim, I would contact this cell phone carrier in Norway to ensure your iPhone is provisioned properly. They can run a reset for your account that will require powering your iPhone off, so call them with your wife's iPhone for this.

  • How bad does your phone have to be to send it away and get a new one?

    My blackberry 8520 keeps on resetting itself and freezing all the time, does this mean that i can send it away and get a new one for free?
    Regards

    Hi and Welcome to the Community!
    No one can say at an internet distance...only your specific qualified service center can say. Your contract is between you and either your wireless service provider or your authorized reseller...that contract will govern what could or could not be. You need to take it to your service provider for diagnosis and hopefully resolution.
    But, with what you've described, there are a whole host of diagnostic steps that could be attempted here, if you are willing.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • PlayEvent - with and without the TemporalProxyElement

    I looked through the bug base and didn't see anything on this topic:
    I'm testing the way the PlayEvent works and have found a difference between
    using a SerialElement with and without the TemporalProxyElement.
    Test 1:  (standard SerialElement with 3 videos )
    video1:  evt.playState = playing
    video1:  evt.playState = stopped
    video2:  evt.playState = playing
    video2:  evt.playState = stopped
    video3:  evt.playState = playing
    video3:  evt.playState = stopped
    Test 2:  (standard SerialElement with 3 images using TemporalProxyElement )
    image1:  no event fired
    image2:  evt.playState = playing
    image3:  evt.playState = playing
    image3:  evt.playState = stopped
    My thinking these 2 tests should be identical. Is this correct or a bug?
    I don't see any dependable way of using the PlayEvent under these conditions.

    Hi,
    This may be coming from limitation of imageElement (image vs video), but I have a bug file logged here with an example in case, so that our eng can take a look.
    https://bugs.adobe.com/jira/browse/FM-342
    Ryan

  • Difference between with table name with * and without *

    Hi..
    I had seen some of the standard abap that the table name had *, like *ekpo. What is the meaning? What is the difference between with * and without * ? 
    Thanks and Regards,
    Rishika

    Hi rishika,
    1. This is actually a facility provided in abap syntax.
    2. It is usually checked while saving a record.
    3. For eg.
    If we have one variable
    EKKO
    and another *EKKO
    (They both are same only, with same structure)
    (but two different variables)
    4. The functional meaning, for usage purpose,
    of *EKKO is OLDEKKO.
    5. While saving the transaction,
    the data is saved only if there is any change
    in the values.
    IF EKKO <> *EKKO.
    *--- SAVE
    ELSE.
    MESSAGE 'NO DATA CHANGED'
    ENDIF.
    6. We can aswell use any other variale
    eg. oldekko
    oekko
    myekko
    etc,
    7. But for business meaning,
    R/3 has the facility for *
    1. we can use almost everywhere.
    2. just copy paste
    report abc.
    TABLES : T001.
    TABLES : *T001.
    DATA : ITAB LIKE EKKO.
    DATA : *ITAB LIKE EKKO.
    DATA : NUM TYPE I.
    DATA : *NUM TYPE I.
    regards,
    amit m.

Maybe you are looking for