2 file sources to one SAP system.. Is BPM req?

Hi All,
           I have a scenario where I am getting file from two diff file sources, I have to perform N:1 mapping on them to send it to one SAP system?
do i need BPM, if both the files are available at the same time?
do i need BPM, if both the files are not available at the same time?
XIer

Hi,
If we go for N:1 mapping, then without BPM its not possible.
<i>do i need BPM, if both the files are available at the same time?</i>
Yes - The BPM process will complete immediately.
<i>do i need BPM, if both the files are not available at the same time?</i>
Yes - But in this case the BPM process will not complete, it will wait until it receives the second message. Also it depends how u define the condition in Fork step.
Best regards.
raj.

Similar Messages

  • Need of XI to send an XML from one SAP system to another SAP system

    Dear colleagues,
    I work in the SRM solution.
    In SRM there is a Purchaser and Supplier scenario called Supplier Self Services.
    The Purchaser creates a Purchase order and sends it to the supplier in form of an XML file.
    The purchaser system and supplier system are the same SAP system but different clients.
    Example: Purchaser client is 300 and Supplier client is 330 and both of them are on the same system.
    I have a very basic question.
    Currently we have the XI system which acts as an interface to send the Purchaser PO XML to the Supplier as XML.
    a)My question is in case the XML structure is identical across both the clients, then what is the need of XI system?
    b) Is it not possible to send XML from one client to another without an XI system? there si no need of any message mapping required since I am expecting the same XML structure in both clients.
    Please clarify the need of XI system in the following scenario. Is it not possible without XI?
    Many thanks.
    Best regards,
    Srivatsa

    Hi Srivatsa,
        YOu can send the XML message from one sap system to another sap system even without an XI system in between.
    But the use of SAP XI (Or any other middleware) is recommended because, it gives you the following advantages.
    1) Better monitoring and alerting mechanism. XI provides you robust set of tools that let you monitor the status of the messages that are exchanged.
    2) Direct communication between systems is referred to as Point to Point communication, which has its own disadvantages as against Hub and SPoke model (Message exchange using XI).
    3) Message delivery is guaranteed if you have XI in between.
    If the target system is down, the sender sap system will not try multiple times to post the message.
    But if you use XI, it can be configured to send the message multiple times, till it succeeds.
    Regards,
    Ravi Kanth Talagana

  • Maintenace Plan - Scheduling Impact - Migration one SAP system to another

    Hello All
    I need a small help, we are migrating from one SAP system to another and will be creating maintenance plan (counter, multiple counter and time based) as a 1:1 copy of the source system in the destination system,
    1.  I have a requirement that all future schedulling orders (schedulled but not created)  that are visible in IP24 in source system with a future date should be also visible when the new plans are created and migrated in the new sap system with a same date.
    Can some one suggest the way to go ahead on this?
    2.   Also if in a source system we have a maintenance order open (follow up of a plan) how do i create it as an open order following up from the maintenance plan in the new SAP system.
    Thanks
    Manu

    Hi,
    For this to achieve you need to schedule maintenance plans in new system with completion date / Plan start date of last completed call for cases where Completion confirmation is checked / Not checked. This is for plans with single package.
    If the plan is of multiple packages, then you need to perform start-in-cycle using the last completed package and the dates as mentioned above.
    Permutations and combinations keep on varying if the plans in old systems are counter based, multiple counter based, cycle sets with different dimensions are used.
    You need to work out the schedule dates for each combination.
    Thx

  • Sending mail from one Sap system to another

    Hi all,
    plz explain me how can i send mail from one SAP system to other SAP system.
    Thanks in advance
    Venkat

    Hai Venkat
    Go through the following Code
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
      DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
      DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
      DATA: DOC_CHNG  LIKE SODOCCHGI1.
      DATA: TAB_LINES LIKE SY-TABIX.
      DATA L_NUM(3).
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Delivered Mail'.
    Mail Contents
      OBJTXT = 'Object text'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
      LOOP AT ITAB_DATA.
        CONCATENATE ITAB_DATA-PRODUCTOR
                    ITAB_DATA-VBELN
                    ITAB_DATA-POSNR
                    ITAB_DATA-MATNR INTO OBJBIN.
        APPEND OBJBIN.
      ENDLOOP.
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'ORDERS'.
      APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'TXT'.
      OBJPACK-OBJ_NAME   = 'WEBSITE'.
      OBJPACK-OBJ_DESCR  = 'ORDERS.TXT'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
    target recipent
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
    copy recipents
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      RECLIST-COPY     = 'X'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = DOC_CHNG
           TABLES
                PACKING_LIST               = OBJPACK
                OBJECT_HEADER              = OBJHEAD
                CONTENTS_BIN               = OBJBIN
                CONTENTS_TXT               = OBJTXT
                RECEIVERS                  = RECLIST
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
    Thanks & regards
    Sreenivasulu P

  • Client transport from one sap system to another one

    When I want to make a client transport from one sap system to another (i.e. the source system is a system without a enhancement package and the destination system is with ehp5) can it be that there come critical conflicts in the modules (like FI, CO or HCM or other ones)?

    Hi Damian,
    It is not recommanded to import TRs from SAP system not at equal level.
    Get both the systems at same level if possible.
    But still if you have senario like this , pls ask to transport owner about changes included to undersatnd criticallity
    Regards,

  • Transferring Development from One SAP system to another?

    I was wondering if it was possible to transfer an entire Package or a Transport with its development contents from one SAP system to another?
    It would be preferred if the method doesn't require connectivity, like for example to be able to export everything in a package to an XML-file that could be imported into an empty package on another system.
    It would need to handle all development parts, such as Reports, Function Modules, Classes, Special Classes (such as Exception Classes), Shared Objects and Persistent Objects (Yes, I like objects ), Unit Tests, Data Dictionary definitions for tables, table types, structures, data elements and so forth.
    It this in any way possible?

    Hi
    I believe u can only create a request containing all abap object of the package: u can do it by SE80.
    After releasing the request u need to pick up the data file and the cofile and past these files to the target system.
    So u can add and then import the your request in the queue of the development of the target system by trx STMS.
    Probably u need to ask a little help to your basis in order to copy and past the files from and to SAP server (I don't know if you've the authorizations).
    The name of datafile is like D<request number>.<system id>
    and the path
    /usr/sap/trans/<SYSTEM ID>/data
    the cofile name is K<request number>.<system id>
    and the path
    /usr/sap/trans/<SYSTEM ID>/cofile
    Max

  • Migrate Closed Sales Data from one SAP system to Other

    Hi,
    We have a requirement to migrate Closed Sales Order data from one SAP System to the New SAP system.
    Please share your thoughts on the considerations / DOs and Donts for such cases.
    Appreciate your response.
    Kind Regards,
    Tanuji

    Hi,
    If you want to migrate closed SOs..then first consider why? and from what date i.e how long back?
    Following are the considerations:
    1) You can't get the creation date same as your previous system dates--this might lead to incorrect reporting. So you'll have to check if its really worth?
    2) You might want to have a reference no somewhere in the new transactions from the previous system.
    3) If you want to migrate the deliveries, invoices then you've to consider also GL migration as well as payments.
    Regards,
    Raghu.

  • MATERIAL LINK TO ONE SAP SYSTEM TO ANOTHER SAP SYSTEM FOR IDOC TRANSFER

    Hi Experts,
    How the  MATERIAL LINK TO ONE SAP SYSTEM TO ANOTHER SAP SYSTEM FOR IDOC TRANSFER?
    Scenario : when 2nd system create the invoice,it will create a po in the 1st system.
    51 error msg we are getting material does not exists.but the material is available in the receiving plant.
    Please suggest

    If you say the material master is available in the 1st system (where you create the order), then the material number in the IDOC  may not match with the material number in your database.
    leading zeros. material number stored as alphanumeris instead of numeric.

  • How to connect one SAP system to Non-SAP system(Example:Window's7)?

    Hi Experts,
        In general, One SAP system can connect another SAP system through RFC.How to  connect One SAP system  to Non-SAP system(example:window's 7) and is it possible through RFC?
    Thanks and Regards,
    Nageswar

    Hello  Wolfgang Schaper,
    Thank you so much for quick response.
    As you told I am trying to work with BRFplus/DSM to call decision services from nonABAP systems,so I tried with RFC.But it is not possible as you told.
    Please give any solution Without using Web Services, is there any ways to connect from SAP system  with the Non-SAP Systems.

  • Migrate PY and TM cluster data from One SAP System to another

    Hi Experts,
    Could you please suggest me some options to migrate PY and TM cluster data from One SAP System to another? My requirement is to move all the cluster data (Active and Inactive ees).
    I see that PU12 is an option. Anybody used that to migrate between SAP systems. Please provide some details
    Points guaranteed
    I see that using PU12 you can export only PCL2 Clutsers. Are there any ways to move the other clusters like PCL4 ?

    Hi,
    As far as data transfer, If have all normal configuration settings in your targeted system you can use LSMW (Use T.code AS91 in LSMW for recording)  to transfer your data in your both cases.
    Hope it resolves your both the issues.
    Regards,
    Murali

  • DATA Migration Strategy of Inventory from one SAP system to another

    Hi,
    We are migrating data from one sap system to another due to business split . I would like to know what are the considerations, dos and donts for inventory/stock balance  migration.
    Appreciate your responses on the same.
    Kind regards,
    Tanuja

    Hi
    Here are some of the links for Data migration in SAP which may be really helpful for you..Please have a look at them.
    http://www.packtpub.com/article/data-migration-sap-business-one-part1
    http://www.sap-press.de/download/dateien/1468/sappress_migrating_your_sap_data.pdf
    http://sceisqaweb.sc.gov/documents/Agencies-Approach-and-Plan-for-Data-Conversion.pdf
    Thanks.

  • Redirect EDI PO's from one SAP system to another

    Hi Guys,
    I have a requirement wherein we have to redirect EDI PO's from one SAP system to another. What should my approach be? Since both the systems have the PO's setup, how can I differentiate the logic in such a way that latest system where we're migrating the code behaves in a same way as it is currently doing in two systems. I hope I didn't confuse you
    Prineet

    I might be not the only one unable to understand the question - what are you asking exactly? To my knowledge, it's not possible in SAP to simply route the IDocs from one system to another - you'd need to map your EDI middleware to the correct system. But migrating the code is something completely different. So what is the question?

  • Migration of Planned Orders from one SAP system to another one

    Hi,
    A quick help needed.
    We are migrating SAP data from one SAP system to other due to business split. Regarding PP data, can Planned orders be migrated as it is from one SAP System to another? What is the impact if we do so?
    Appreciate your response.
    Kind Regards,
    tanuji

    hi ,
    As suggested , you can propose to migrate only Firmed Planned orders from SAP  to SAP system .
    How to acheive it ?
    You can use below BAPI to extract details of planned order from Table PLAF and upload in TARGET SYSTEM
    BAPI_PLANNEDORDER_CREATE
    Please note  newly created Planned order in Target system would not have BOM EXPLOSION and Scheduling .
    If need , Make a BDC recording as a add on step to explode Bom and Schedule by clicking those icons in Planned order .
    Technical Team can do this .

  • Copy a program from one sap system to another

    hi all,
       i need to copy a program from one sap system to another..along with the text symbols, selection-texts and includes without any transport request release...how can i do that?
    thanx in adv

    Hi,
    You need to Download the Program first in to Local desktop then upload the same to another server, we can not move the code directly from a server to another server without a Transport request.
    but you can call the program from other server using RFC destination, create a RFC for that server and create a function module in the server which the program is there and use the SUBMIT statmet in that function module, then from the other server call this function module using RFC destination
    Regards
    Sudheer

  • Replicate changes from one SAP System to another

    I have a requirement in which I have done some changes in one SAP System and it is not getting reflected to the other one. Please note that the SAP System which I am refering to is the one we get from SM51 Transaction code. Please note that the SAP System ID and the client is the same.
    Thanks
    Arghadip

    Yes I am able to view all the systems but how can I replicate the changes from 1 to another. We had done the changes in system A but it is not getting reflected in system B. Is there any ways to replicate it.
    No Experts to answer this question?????
    Thanks
    Arghadip

Maybe you are looking for

  • Calling report from form. Need PDF output

    I am calling a report from a form using RUN_PRODUCT. I need to display the form in PDF format. When the user clicks the button in the form to run the report, acrobat reader should open up and the report displayed there. Please help. Thanks

  • I keep getting 'We could not complete your iTunes store request, the network connection was reset'.

    My connection is fine so why can I not purchase any songs?

  • How can I mount / fix my Windows 7 partition?

    So a while ago my Win 7 partition was "unmounted" and it wouldnt show up in my Finder. When I tried mounting it in Disk Utility it would never work. I would click Mount, and it would't do anything. I wasn't really bothered by it since the partition w

  • Word and excel documents in iphone

    I cannot use wireless connection to download documents to my iphone, as I am not allowed on the organization's network via iphone. Is there an application that I can use to make the iphone visable on the pc screen so I can drag and drop my documents?

  • Escalation Layer don't work

    Hi I have a problem with all incidents, i can't escalate incidents! I have 3 Techs and they i all members of Default Incident Team and member in Supervisors, Administrators Tech1 is in Layer1, Tech2 in Layer 2 and Tech 3 in Layer 3 I dont matter how