How many RFC Destinations / RFC Sender Channels

Hello everybody!
I have several RFC --> XI --> JDBC/FILE/SOAP integration scenarios. For each scenario I have one RFC Destination created (pointing to XI) in SM59 in R/3. For each RFC Destination I have created one RFC Sender Channel in XI.
But this doesn't make sense, don't you agree? I should have only one RFC Destination in R/3 to XI, right?
If that is the case:
1) Should I also have only on RFC Sender Channel in XI?
2) What about load balance? What about concurrence? With only one RFC Sender Channel I have to set "Initial Connection" propertie to a big value to be able to handle several RFC calls (to different RFC Functions) in parallel. Is there a limit (a maximum value) I can use in "Initial Connection" propertie?
Thanks
Julio

hi julio,
<b>Yes</b>. We can have only one RFC to point to Same XI System and in the XI, we need <b> only one</b> RFC Sender too.
<i>For LoadBalancing and concurrence, refer the links:</i>
1) https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c3d9d710-0d01-0010-7486-9a51ab92b927
<i>Limitations regarding RFC Sender</i>
http://help.sap.com/saphelp_nw04/helpdata/en/58/11e6418b7eca17e10000000a155106/content.htm
<i>Bonus Link: </i>
Re: RFC Adapter as Sender
regards,
nikhilbos

Similar Messages

  • How many types of RFC's?

    how many types of rfc's wat r they?

    hi
    A remote function call is a call to a function module running in a system different from the caller's. The remote function can also be called from within the same system (as a remote call).
    RFC consists of two interfaces : A calling interface for ABAP Programs and a calling interface for Non-SAP programs.
    Any ABAP program can call a remote function using the CALL FUNCTION...DESTINATION statement. The DESTINATION parameter tells the SAP System that the called function runs in a system other than the caller's.
    RFC CLIENT and RFC SERVER
         RFC client is the instance that calls up the Remote Function Call to execute the function that is provided by an RFC server.
         The RFC Interface takes care of :-
      -  Converting all parameter data to the representation needed in the remote system
    Calling the communication routines needed to talk to the remote system.
    Handling communications errors, and notifying the caller, if desired ( using EXCEPTIONS paramater of  the CALL FUNCTION).
    You can use the CALL FUNCTION statement to call remote functions by including an additional DESTINATION clause.
    CALL FUNCTION ‘remotefunction’
              DESTINATION dest   
                   EXPORTING f1 =
                 IMPORTING  f2 =
               TABLES t1 =
               EXCEPTIONS
    The field ‘dest’ can be either a literal or a variable. Logical destinations are defined in the RFCDES table via transaction SM59 or via the menu path: Tools ->Administration,Administration->Network->RFC destinations.
    Calling remote functions locally :-
    ( i.e. call a remote function within the same system )
    The two options to do this are –
    CALL FUNCTION...DESTINATION = 'NONE'
    CALL FUNCTION... [no DESTINATION used]
    Calling remote function modules BACK :-
        The remote function can invoke its own caller (if the caller is itself a function module), or any function module loaded with the caller.
        You can trigger this call-back mechanism   using
        CALL FUNCTION... DESTINATION 'BACK‘.
    Synchronous RFC – The calling program continues the execution only after the called function is complete.
    Asynchronous RFC - The calling program continues the execution without waiting for return from the called function.
           Eg: CALL FUNCTION ‘remotefunction’ STARTING NEW TASK ‘taskname’.
    Transactional RFC - The called function module is executed exactly once in the RFC server system.Each function call is seen as a transaction in the target system. Transactional RFCs use the suffix IN BACKGROUND TASK .
           Eg : CALL FUNCTION ‘remotefunction’ IN BACKGROUND TASK
    regards
    vijay
    reward points if helpfull

  • How many types of rfcs are there

    Hello,
    Can any body explain about how many type of rfcs are there. give the difference also.
    Thanks.

    Hi,
    Check this info.
    These are the types of RFC
    Asynchronous RFC (aRFC)
    Synchronous RFC (sRFC)
    Transactional RFC (tRFC)
    Queued RFC (qRFC)
    Parallel RFC (pRFC)
    Asynchronous RFC :
    This is used when you need to increase the performance of ABAP program by having system call more than one function module in parallel than forcing the program to wait for results .
    Transactional RFC
    This let you group one or more function module call together o tRFC LUW and ensure that fucnction module within LUW is called once . In contrast to aRFC and sRFC the tRFC belonging to tRFC LUW are executed in order .
    tRFC is always used if a function is executed as a Logical Unit of Work (LUW). Within a LUW, all calls are
    1.Executed in the order in which they are called
    2.Executed in the same program context in the target system
    3.Run as a single transaction: they are either committed or rolled back as a unit.
    Implementation of tRFC is recommended if you want to guarantee that the transactional order of the calls is preserved
    Asynchronous remote function calls (aRFCs) are similar to transactional RFCs, in that the user does not have to wait for their completion before continuing the calling dialog. There are three characteristics, however, that distinguish asynchronous RFCs from transactional RFCs:
    • When the caller starts an asynchronous RFC, the called server must be available to accept the request.
    The parameters of asynchronous RFCs are not logged to the database, but sent directly to the server.
    • Asynchronous RFCs allow the user to carry on an interactive dialog with the remote system.
    • The calling program can receive results from the asynchronous RFC.
    You can use asynchronous remote function calls whenever you need to establish communication with a remote system, but do not want to wait for the function’s result before continuing processing. Asynchronous RFCs can also be sent to the same system. In this case, the system opens a new session (or window). You can then switch back and for between the calling dialog and the called session
    RECEIVE RESULTS FROM FUNCTION Remotefunction is used within a FORM routine to receive the results of an asynchronous remote function call. The following receiving parameters are available:
    IMPORTING
    TABLES
    EXCEPTIONS
    The addition KEEPING TASK prevents an asynchronous connection from being closed after receiving the results of the processing. The relevant remote context (roll area) is kept for re-use until the caller terminates the connection.
    Transactional RFC (tRFC) and Queued RFC (qRFC).
    tRFC is used mainly to transfer ALE Intermediate Documents (IDocs).
    Transactional RFC:
    If an error occurs during a synchronous remote function call, the system cannot tell at what point the error occurred (most crucially, whether the function module was actually processed in R/3 before the operation failed). Restarting a failed call is therefore a dangerous thing to do, since you risk duplicating a completed function call.
    To alleviate this problem, you can use transactional RFC, which guarantees that each function call you issue will only be executed once, even if you submit it repeatedly to the R/3 System. The system implements this safeguard by assigning a unique transaction ID (TID) to each transaction that you submit. When you attempt to process the transaction, the system checks whether that TID has already been processed. If it has, the transaction is ignored.
    Disadvantages of tRFC
    - tRFC processes all LUWs independent of one another. Due to the amount of activated tRFC processes, this procedure can reduce performance significantly in both the send and the target systems.
    - In addition, the sequence of LUWs defined in the application cannot be kept. Therefore, there is no guarantee that the transactions are executed in the sequence dictated by the application. The only guarantee is that all LUWs are transferred sooner or later.
    Queued RFC:
    When you use transactional RFC, you cannot guarantee the order in which the function calls will be processed in the system (it is quite possible that one call might overtake another). For cases where you need to specify a particular processing order, you can use queued RFC, which is an extension of transactional RFC. In qRFC, you place each function call in a logical queue. A function call cannot be executed until all of its predecessors in the queue have been processed. Queued RFC calls are processed asynchronously
    Therefore, Queued RFC is better than Transactional RFC.
    Remote Function Call:
    RFC is an SAP interface protocol. Based on CPI-C, it considerably simplifies the programming of communication processes between systems.
    RFCs enable you to call and execute predefined functions in a remote system - or even in the same system.
    RFCs manage the communication process, parameter transfer and error handling.
    http://help.sap.com/saphelp_47x200/helpdata/en/22/042860488911d189490000e829fbbd/frameset.htm.
    Remote Function Call (RFC) is the standard SAP interface for communication between SAP systems. The RFC calls a function to be executed in a remote system.
    Synchronous RFC:
    The first version of RFC is synchronous RFC (sRFC). This type of RFC executes the function call based on synchronous communication, which means that the systems involved must both be available at the time the call is made.
    Transactional RFC (tRFC) and Queued RFC (qRFC). tRFC is used mainly to transfer ALE Intermediate Documents (IDocs).
    Transactional RFC:
    If an error occurs during a synchronous remote function call, the system cannot tell at what point the error occurred (most crucially, whether the function module was actually processed in R/3 before the operation failed). Restarting a failed call is therefore a dangerous thing to do, since you risk duplicating a completed function call.
    To alleviate this problem, you can use transactional RFC, which guarantees that each function call you issue will only be executed once, even if you submit it repeatedly to the R/3 System. The system implements this safeguard by assigning a unique transaction ID (TID) to each transaction that you submit. When you attempt to process the transaction, the system checks whether that TID has already been processed. If it has, the transaction is ignored.
    Queued RFC:
    When you use transactional RFC, you cannot guarantee the order in which the function calls will be processed in the system (it is quite possible that one call might overtake another). For cases where you need to specify a particular processing order, you can use queued RFC, which is an extension of transactional RFC. In qRFC, you place each function call in a logical queue. A function call cannot be executed until all of its predecessors in the queue have been processed. Queued RFC calls are processed asynchronously
    For more information on RFC, please go through the link.
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/1bd5b6a85b11d6b28500508b5d5211/content.htm
    Have a look at this link.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCFESDE2/BCFESDE2.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/22/042860488911d189490000e829fbbd/frameset.htm.
    Rewords some points.
    Rgds,
    P.Nag

  • How many types of rfc there

    hi guru
    how many types of rfc there
    thanks
    subhasis

    Hi Subhasis  ,
      There are 5 types of RFC.
    Here is a link to a very good documnet on RFC
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f078394a-4469-2910-c4bf-853c75674694">RFC Document</a>
    Regards
    Arun

  • How many mails i can send at a time per day using APEX mail system?

    HI,
    I am working on application, when i have written a process to send mail, i have a project where i have to send mail at a time for all the email id's
    given list there are upto 5000 email id's where text body also include certain set of data from a report. thinking at a time 3000 its difficult i divided
    it region wise, but still each region have 2000 odd email id's. during testing when i run the process just 950 mails i could send then i got a error
    saying "ORA-20001: You have exceeded the maximum number of email messages per workspace. Please contact your administrator." so please
    can any one help me to know How many mails i can send at a time per day using APEX mail system?
    Thanks in advance
    Gowthami

    Hi jfosteroracle,
    You are getting the error may be the following reason,
    Check the following,
    Login as ADMIN and Goto -->Manage Instance-->Instance Settings--> Mail-->Maximum Emails per workspace
    Actually this number denotes the Number of mails can be sent per 24 hour for the workspace,It may exceeded.
    It may be the reason.
    Thank you.     
    Regards,
    Gurujothi
    Edited by: Gurujothi on Jun 27, 2012 5:54 AM

  • How many emails can i send in one day with icloud

    how many emails can i send out in a day using icloud.com?  I want to send about 800 emails to all the parents at my children's school.  I am using pho and swiftmailer to send the emails.
    thanks.

    Up to 200 messages and 1000 recipients (see http://support.apple.com/kb/ht4863).  This is because it's designed for personal rather than business use.

  • RFC Exception COMMUNICATION_FAILURE with Message RFC destination RFC does n

    Hi all , i did a small application in webdynpro abap  by calling BAPI . MY application  is when i enter the studentid and click the submit button i shoutl get student details .
    but when i'm clicking the submit button i'm gettting the error
    "RFC Exception COMMUNICATION_FAILURE with Message RFC destination RFC does not exist. Occurred " can any one help me out.

    hi rajeev.....
        i am sure that you would have used service call.
       in service call, in the destination part, you would have given a name. the service call automatically creates a destination in this name. but your user id would not have had that rights. so only you get this error. either use a already existing destination or get the access for that.
    ---regards,
       alex b justin

  • One TRFC connection how many idoc we can send?

    Hi Experts,
    singel TRFC connection,how many Idoc can we send?appreciate any can tell me size also?
    Thanks
    Narendra

    Hi Narendra,
    As far as i know you can configure it. Check this link Transaction WE14 Max. Number of IDOCs in program RSEOUT00 - ABAP Connectivity - SCN Wiki
    Regards.

  • HT201342 Is there any way to find a log of the send e-mail from ICloud.. to analyse how many email has been send and deleted within a day from send items

    Is there any way to find a log of the send e-mail from ICloud.. to analyse how many email has been send and deleted within a day from send items

    Thx Winston,
    I can count the send item. But let me try to explain why did I ask this question.
    I had a trouble in sending e-mails from icloud on 22/2 and when I saw in my send item there were no emails.
    But the mesgs to whom I emailed received and out of which only few of them didn't got the email. So I wanted to know the log abt the outflow of the mesg with subject and the receipants email id and the list with attachment or not.
    How and where will I get the information apart from send item and draft mesg and the outflow undelivered?
    Regards
    Sarfaraz

  • How to send data to RFC Destination(RFC SENDER Adapter)

    Hi ,
    Scenario:  R/3 Backendà RFC Sender Adapterà XIàsome other system.
    I have configured the RFC destination (of the type TCP/IP) at R/3 System and have registered the Program ID (specified in the RFC destination) in the XI server and using it in the configuration parameters of the RFC Sender Adapter.
    Problem: I do not know how I can send data to the RFC destination. (Should I use a report program/ ABAP Function Module?) Can anybody provide me with a sample code of Report Program/Function module (whichever is required), how to send data to the RFC Destination, so that it may be picked up by my RFC Sender Adapter.
    Thanks and Regards,
    Siva Maranani

    I have one query for you that
    I am trying to develop a scenario in SAP XI
    SAP R/3 ( RFC function module) sends a synchronous request to the XI and SAP XI will send this request to a third party web application using HTTP receiver adapter.
    I am able to send the data/message and it is successfully received at the third party web application.
    But I am facing one issue that I am unable to receive any message/data in my RFC module back.i have seen in sxmb_moni that the two messages are displayed in successfuly processed but in SAP R/3 side nothing get happedned
    Can you tell me how to use some waiting mechanism in function module to wait for the response from SAP XI.
    Regards
    Gopesh

  • RFC destination for Sender System  in R/3 4.6c

    Hi All,
    I am trying create a RFC destination in R/3 4.6 system which will be used as sender RFC communication channel in Xi scenario. However i dont seem to have all the options such as activation type,gateway host and service which used to be there in SAP Enterprise or mySAP ERP systems. Can some one guide me to create an RFC destination in 4.6 system that will be used as a sender RFC system?

    Hi Arul,
           One more important point u have missed.
    Program ID,
    When ur configuring sender service from RFC,The most important point is Program ID.
    Use some name and create it.Use the same name in SM59.
    s such its very crucial .Activate them .make sure the destination for that programID is what u expect.
    Reghards
    chandra shekar

  • How many addresses can i send an e mail to in one go? is there a limit?

    I am trying to send a mail to all my contacts in one go. is there a limit on how many addresses can be entered into the to/cc or bcc lines in one go?

    Every mail service provider imposes such limits. The limits for iCloud are given here:
    iCloud: Mail specifications
    For legitimate bulk mailing, you should use a hosted service such as "MailChimp."

  • How many Emails can you send at once with Apple Mail?

    I found out that road runner will allow me to send 1000 email in a 24 hour period. The question is, can I put 950 email addresses in the bcc and send it, or is it too many e mails at once. How many or what is the max emails you can send at once? Thanks

    Hi Gabriel38, and a warm welcome to the forums!
    Try less than 100 at a time, (less than 50 for some ISPs).
    You may get your answer here, but It's quite acceptable to start a new topic of your own, feel free to start a new topic to attract more helpers to your particular situation, here's a link if as is often the case, it's hard to find out where to do it...
    http://discussions.apple.com/post!default.jspa?forumID=753

  • How many photos can I send at a time?

    It seems like only one at a time. Some times two?
    I tried to send multiple photos by text [5 pictures]
    It wouldn't send. No notification or anything. I don't like to send it one at a time. Not cool!!!!!!!!!
    Is it just my phone? Can anyone else send multiple pictures? Would love to know.

    TheGreatOne wrote:
    Wildman wrote:
    There is a 1.2 mb size limit on sending files, the size of files determine how many files can be attached and sent. Here is a post I found over on Incredible area about this issue, check it out... http://community.vzw.com/t5/DROID-Incredible-by-HTC/video-size-limit-on-MMS-htc-incredible/td-p/202887
    Just curious,does this include email too? like same size limits when sending by email through the messaging app
    From what I have understood about the email client , it responds off the email providers size limit when sending email but sending larger files from your device without using wifi may take forever to complete, I have sent out 5-6 mb presentations through my yahoo accounts that originally have a 10 mb limit but it is wiser to use wifi to send files of this size because if signal is weak or lost file can sometime become corrupt but it appears that they still send.

  • Restrict how many emails can be send at a time by Email job RSCONN01

    Hello All,
    Is it possible to restrict how many number of emails can be sent out from SAP by the email send job? My requirement is - if there are 20000 emails sitting in the send queue, can the dispatcher send out 2000/3000 emails only every time RSCONN01 job runs (currently this job runs every 10 mins). So when the first time job runs, 2000 emails are sent out. After 10 mins when the job runs again, next 2000 emails are sent out. 
    I looked at the variants for RSCONN01, and there is no field which provides this restriction.
    Any help?
    Thanks,
    Fahad

    I  think there is a solution:( but i can not test)
    Activate parrallel processing:server group with 1 availablel  process.
    Maximum Package Size                         2000
    Minimum Package Size                           1
    Maximum No. of Send Requests            1
    Let me know if this is usefull.

Maybe you are looking for

  • MDX Error: timeout during allocate / CPIC-CALL: 'ThSAPCMRCV' (NW 7.0)

    Hello everyone, while trying to execute an MDX Statement on NW 7s SAP BI i ran into the "timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'" error. I searched these forums for a solution an found SAP Note 1032461. The Problem is: it only applys to old

  • MSI K9N2G Neo-FD

    http://www.newegg.com/Product/Product.aspx?Item=N82E16813130182 I have been thinking about getting this motherboard to replace a fried ATX EPoX motherboard, however.. I notice on the MSI site itself that it suggests it's a Micro? On the other hand, N

  • Exporting DV back to a Samsung VP-D351

    Hi, Could anyone tell me if they have been successful in exporting DV back to a Samsung VP-D351 camera within iMovie? I can transfer DV from the D351 to the iMac but after editing the movie I cannot copy it back to the camera, I’ve tried all the sugg

  • G_VERIFIER with alv Grid

    Hi All, I am having an ALV grid on a screen. I am declaring the variable g_verifier in the class as below CLASS lcl_event_receiver DEFINITION DEFERRED. DATA: g_verifier TYPE REF TO lcl_event_receiver. But its giving error g_verifier is unknown.It is

  • Difference between report 3.0 and 6i

    Hi all, What is the major difference between report 3.0 and 6i and What is the major difference between report 6i and 9i. Please somebody Thanks, KK