How many routes shoud i create for synch senario ?

Hello expert!
When i try to create a synch senario with receiver rfc ( file ---> rfc  ),   how many communication channle i need? shoud i creat a back route for the message get from rfc ?
if i need to create a rfc sender cc to trnsfer the exporting value get from the rfc to send back to the file dir?
i'm really confused about the synch senario, any help is appreciated !
thanks !!
BR,
ShengJun

Could not get the link...
From SP 19 on XI 3.0 and SP 10 on PI 7.0, a File - RFC - File ( Asynch - Synch ) scenario can be done without a BPM.
Steps:
Integration Repository
The Integration Repository will be similar to any Synchronous Scenario ( say HTTP - RFC ) . 1 Outbound Synch message Interface and 1 Inbound Synch Message Interface.
Integration Directory
This is where a few differences lie, so let me take some time.
1. The Receiver Determination , Interface Determination will be the same as in HTTP - RFC synch scenario. Create the Sender File Adapter, Receiver RFC Adapter and Receiver File Adapter.
2. Sender Agreement will be for the Sender File Adapter. Sender Agreement uses the Synch Outbound Message Interface.
3. Receiver Agreement will be for the Receiver RFC adapter. Receievr Agreement will use the RFC as thge Inbound Message Interface.
4. We need to add a few modules in the Sender File Adapter.
Go to the Modules Tab of the Sender File Adater, and add the following modules in the same sequence,
Number - ModuleName - Type - ModuleKey
1- AF_Modules/RequestResponseBean - Local Enterprise Bean - 1
2- CallSapAdapter-Local Enterprise Bean - 2
3-AF_Modules/ResponseOnewayBean-3
Parameters
ModuleKey - ParameterName - ParameterValue
1 - passThrough - true
3-receiverChannel - Receiver File Adapter Name
3-receiverService - Receiver Business Service/ System
This is from one of the posts the Bhavesh has posted some time back.
VJ

Similar Messages

  • How many SECONDARY INDEXES are created for CLUSTER TABLES?

    how many SECONDARY INDEXES are created for CLUSTER TABLES?
    please explain.

    There seems to be some kind of misunderstanding here. You cannot create a secondary index on a cluster table. A cluster table does not exist as a separate physical table in the database; it is part of a "physical cluster". In the case of BSEG for instance, the physical cluster is RFBLG. The only fields of the cluster table that also exist as fields of the physical cluster are the leading fields of the primary key. Taking again BSEG as the example, the primary key includes the fields MANDT, BUKRS, BELNR, GJAHR, BUZEI. If you look at the structure of the RFBLG table, you will see that it has primary key fields MANDT, BUKRS, BELNR, GJAHR, PAGENO. The first four fields are those that all cluster tables inside BSEG have in common. The fifth field, PAGENO, is a "technical" field giving the sequence number of the current record in the series of cluster records sharing the same primary key.
    All the "functional" fields of the cluster table (for BSEG this is field BUZEI and everything beyond that) exist only inside a raw binary object. The database does not know about these fields, it only sees the raw object (the field VARDATA of the physical cluster). Since the field does not exist in the database, it is impossible to create a secondary index on it. If you try to create a secondary index on a cluster table in transaction SE11, you will therefore rightly get the error "Index maintenance only possible for transparent tables".
    Theoretically you could get around this by converting the cluster table to a transparent table. You can do this in the SAP dictionary. However, in practice this is almost never a good solution. The table becomes much larger (clusters are compressed) and you lose the advantage that related records are stored close to each other (the main reason for having cluster tables in the first place). Apart from the performance and disk space hit, converting a big cluster table like BSEG to transparent would take extremely long.
    In cases where "indexing" of fields of a cluster table is worthwhile, SAP has constructed "indexing tables" around the cluster. For example, around BSEG there are transparent tables like BSIS, BSAS, etc. Other clusters normally do not have this, but that simply means there is no reason for having it. I have worked with the SAP dictionary for over 12 years and I have never met a single case where it was necessary to convert a cluster to transparent.
    If you try to select on specific values of a non-transparent field in a cluster without also specifying selections for the primary key, then the database will have to do a serial read of the whole physical cluster (and the ABAP DB interface will have to decompress every single record to extract the fields). The performance of that is monstrous -- maybe that was the reason of your question. However, the solution then is (in the case of BSEG) to query via one of the index tables (where you are free to create secondary indexes since those tables are transparent).

  • How many TO need to create for Quality inspection material

    Dear all,
    When we do GR's ,TR is created & material is goes for quality inspection .
    So after UD, PCN is created so for this PCN we need to Create & Confirm TO.
    So my question is what we do for open TR which was created after GR posting.
    DO we have to create TO for this TR.
    I mean how TO get's created in this process?
    Please help me out.
    Regards,
    Rock

    what do you do physically?
    a) do you keep the stock in goods receipt area until it is released from the Q status
    b) or do you putaway that stock into its destination bins before it is released from Q-status
    in both cases you use the TR that was automatically created during goods receipt to create the TO.
    in case a) you just execute LU04 to process the posting change notice to change the stock status from Q to unrestricted  prior to creation of the TO.
    in case b) you create the TO directly and process the PCN in LU04 later when the usage decision was made.
    part B can create some difficulties (especially if you setup automatic processing) as you may get several quants because the material need more than one destination bin, while you just have 1 quant in the GR area 902.  So SAP may not be able to determine the quant that needs to be released from Q status by itself, and user has to select those quants manually.

  • How many partitions will be created for range 1998-2000

    hi experts,
    i have created partition on a infocube with range as 1998 to 2000 im able to see 37 partitions only in DB02 transaction.
    i read  in saphelp document that 38 partitions will be created.
    i.e <1998 and >2000
        3 x 12 = 36 +2 = 38
    but for me all records < 1998 are placed in partition 199801 and max value partition is created i.e >2000.
    so please can anyone explain why this is happening.
    Regards,
    Venu Gopak.K

    Hi Venu,
    Found note 385163 - Partitioning on ORACLE since BW 2.0.
    This has the following logic for creation of partitions. You can see that the first partition "/BIC/EPART_BSP200001" is created to take in the values of Jan 2000 and below (less than Feb 2000).
    The table "/BIC/EPART_BSP" is created as follows:
    CREATE TABLE "/BIC/EPART_BSP" ( ..... , SID_0CALMONTH , .... )
                  storage ( INIT , ...., ....... )
                  partition by range ( SID_0CALMONTH )
           PARTITION "/BIC/EPART_BSP200001" VALUES LESS THAN (200002),
           PARTITION "/BIC/EPART_BSP200002" VALUES LESS THAN (200003),
            PARTITION "/BIC/EPART_BSP200211" VALUES LESS THAN (200212),
    PARTITION "/BIC/EPART_BSP200212" VALUES LESS THAN (200213), PARTITION "/BIC/EPART_BSPMAXVALUE" VALUES LESS THAN (MAXVALUE)
    Interesting...the help docu says there will be 2 additional partitions. The note suggests there will only be 1 additional partition.

  • How many versions ca be created

    Sir,
    In version control for po how many versions can be created for a po
    regards
    amey

    As many as you want.

  • How many vlan can be created on single port of HWIC-2FE

    Hi Guys,
    I have a router 1921 with a HWIC-2FE.
    How many VLAN can I create in each port of HWIC-2FE.  
    Thank you
    Salvo

    I'm not sure what you are referring to. How many VLANs can be untagged while the port is in access? Or how many VLANs can you pass on a trunk?

  • How many heirachies can be created using one dimensional table

    Hi,
    I have one dimension table and one fact table, how many heirachies can be created, is it only one?
    Thank you.

    Hi,
    One dimension can have only one hierrarchy for sure.But create dimension in a such a way(columns should be included in one dimension,example: Year and FYear in Time Dimension) that we can create two branches on Total level.
    Refer this blog..Will solve your doubt....http://gerardnico.com/wiki/dat/obiee/hierarchy#defining_multiple_hierarchies_for_the_same_dimension_logical_table
    Regards,
    Srikanth
    http://bintelligencegroup.wordpress.com

  • I have a presentation to make to a customer and need to know how many educational apps are there for the iPad/iPod?

    I have a presentation to make to a customer and need to know how many educational apps are there for the iPad/iPod? More specifically special education apps.
    Thanks

    Keep in mind as well that not all apps are "created equal".  Some are really good, and others are not very good.  You might also want to look at some education sites for recommendations.  An example of a general iPads in education forum is
    http://ipadeducators.ning.com/
    but I imagine some exist for special education needs as well.  Our healthcare organization is using some apps for working with autistic children and find them very helpful. 

  • How many tables can be created under one user's account?

    Hi everyone,
    I am a newer, I was wondering how many tables can be created under one user's account? Is there a number of tables limitation for the whole system?
    Thanks
    Jun Chen

    The answer is that Oracle imposes no limit on the number of tables that can be created in a single schema. Whatever limits exist are imposed by the hardware and kernel resource limits of a given configuration.
    Russ

  • How many devices can you use for your itunes account?

    how many devices can you use for your itunes account?

    PT wrote:
    Macistotle wrote:
    Unless you have DRM still haunting your tunes ... Then you can only use those songs on 5 devices. Otherwise, connect as many as you like (as stated above).
    No, you can sync your DRM tracks to an unlimited number of iPods (but only authorized to play on 5 different computers/user accounts)
    Patrick
    So I can sync two iPods to my iTunes account and sync the same digital copy movies that come with some o' my DVDs to both ipods? Do movies make a difference really, DRM-Wise? Thanks in advance.

  • How many implimentations can be done for a single BADI definition?

    How many implimentations can be done for a single BADI definition?
    Is there any restriction to impliment a single BADI definition?
    Plz answer with proper explanation....
    Thank you in advance
    REgards,
    Chaitanya

    hi Krishna Chaitanya,
    In a badi if the "Multiple Use" Checkbox is checked then You can have any number of Implementations for the BADI
    Say I have defined a BADI "BADI1"
    and I have 3 implementations
    IMP1
    IMP2
    IMP3
    The order of execution will be IMP1, IMP2 and IMP3
    In a badi if the  "Multiple Use" Checkbox is not checked then You can have ONLY ONE  Implementation for the BADI
    Say I have defined a BADI "BADI1"
    and I have 3 implementations
    IMP1
    IMP2
    IMP3
    Only one Implementation can be active at a time and only that will get executed
    Hope this helps a bit
    Reward if Useful
    Cheers
    Kripa Rangachari.

  • How does the icon get created for a saved file

    In my program I allow saving files using JFileChooser and ActionListener.
    In the constructor of the main class which extends JFrame I also set an icon by saying:
    this.setIconImage(new ImageIcon("image.jpg").getImage());
    This does not only set an icon on the title bar and the minimized window, it also creates an icon on my saved files. However, the image quality for the icon on my saved files is bad, even though the image quality for the other icons is ok. The size of the icon image I am providing is close to the size of the icon image on my saved files.
    How did the icon get created for my saved files? Is it possible to improve the image quality?
    Thanks for looking at this!

    I just realized that
    this.setIconImage(new ImageIcon("image.jpg").getImage())
    did not create the icon for my saved files.
    So what did create it? I did not program it!
    However, I happen to have an icon file Ananya.ico where I have my java project. I use if for my installation file. Did Java use this icon?
    Please help! Thanks!

  • How many pushbuttons u can create in application toolbar in selection scree

    Hi
    How many pushbuttons u can create in application toolbar in selection screen? 
    Thank You

    Hi,
    Use SET PF-STATUS 'ZABC'.
    Double click on it.
    It will display Application toolbar. Create the buttons.
    I think the limitation is bcz of the LABEL of button, if you create buttons with a Single TEXT, then you would be able to create many buttons, including toggle button. The Toggle button would switch the buttons.
    i.e say initially 10 buttons are displayed along with toggle button. You click the toggle button , then remaining 10 buttons are displayed.
    Best regards,
    Prashant

  • How Undo functionality can be Created for curves or Line in Swing?

    Please Help! How Undo functionality can be Created for curves or Line in Swing GUI. In the Java Tutorial, Undo with Text is given. But on implementing the SIMILAR logic of Undo with Text, some Errors come with Undo is to be Created on Swing GUI on the Graphics.

    What about storing the image before to execute the drawing method ? Undoing would be as easy as repainting the stored image ?

  • How many tables ll be created by default

    Hi,
    I would like to know how many tables ll be created by default in RDBMS, when a classic planning application is created.
    Thank you.

    9.3.1 - 83 tables
    11.1.2 - 106 tables
    HTH-
    Jasmine.

Maybe you are looking for