QRFC with ALE for outbound interfaces

I'm working on a client that is using ERP 4.7 (R/3).  We would like to use the ALE qRFC addition to utilize the serialization concept.  In the partner profile, I see a check box that says "queue processing". To our understanding, it enables qRFC  with ALE. But how does the function module (FM) MASTER_IDOC_DISTRIBUTE determine which queue naming function module to call from transaction WE85?  WE85 is a transaction where you define a function module to set your queue name based on the control record or IDOC.  Do you pass the Rule Name from WE85 into the MASTER_IDOC_DISTRIBUTE and thus ALE calls the associated queue naming FM ? If so, what field do you set in the control record?

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/05daa0b5133ca0e10000000a42189c/frameset.htm
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/c7/4efe402762ef6fe10000000a1550b0/frameset.htm
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/c2/4356429c69b430e10000000a155106/frameset.htm
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/e7/555e3c0f51a830e10000000a114084/frameset.htm
Please go through this link.
This would help you..

Similar Messages

  • Inbound interface found more than once for outbound interface

    Hello everybody,
    i have a simple problem.
    I build a interface with XI3.0
    File to idoc
    for each file i need crate 2 idoc.
    It's not a problem when Idoc type is different, but in my case i need crate 2 idoc of same type but with a different mapping.
    so when i upload the file i have this error:
    Inbound interface found more than once for outbound interface
    how can i solve this problem? can i force this step?
    i thought to create a different idoc type or create the 2 idoc in same mapping , but there is not my favourite solution because in case of error , both idoc will be not created.
    any suggestion?
    thanks in advance
    alex

    Hi,
    Instead of exporting and changing the occurrence as suggested by Ravi,
    use the same Idoc twice in mapping as well as Interface mapping.
    Coming to ID part, do every thing as usual.
    The only thing to note is instead of using normal Interface determination, use extended Interface Determination.
    This will solve your problem. The error will not come again. I'm sure.
    Try out and update the thread.
    Regards,
    Jeevan.

  • Hi all, i'm new and facing a problem while creating a new file for Xcode. I can't select the box "with XIB for user interface" if the subclass is "UIViewController".this problem happen after i upgrade Xcode to 4.6 version.Appreciate for any help rendered.

    Hi all, i'm new to Mac book & Xcode. I'm learning and facing problems while creating a new file for Xcode. Before i upgrade the software, i have no issue to create simple steps in apps. After upgrade Xcode to 4.6 version, i'm facing lot's of issue eg.
    1) "the identity "iphone developer" doesn't match any valid certificate/ private key pair",
    2) can't select the box "with XIB for user interface" if the subclass is "UIViewController"..
    Appreciate for any help rendered.

    Mikko777 wrote:So what is the best?
    I wouldn't judge. I've been to Arch for a week, you know? But as said, it's VERY close to it.
    What I dislike after a week is makepkg not handling dependencies automatically (which would be overhead, so probably not appropriate).
    Mikko777 wrote:Also theres KDEmod for modular kde, dunno if its for 64 bits tho.
    Don't actually need that as said ... I see no real benefit of having that other than not beeing a KDE user or having Gentoos useflags.
    Mikko777 wrote:PS:You produce a lot of text and welcome smile
    Yeah. Wonder why I'm still employed? So do I ...

  • "With Xib for user interface" option Disabled

    I was able to use the "With Xib for user interface" a couple of days ago but now when I try to create new object-c file with xib interface, I cant use the checkbox. It is disabled. What may be the problem? How can I create a file with xib again?

    Does the following Stack Overflow question help you?
    How to create new View Controllers in XCode 4.3
    If not, you're going to have provide more information for anyone to help you. What version of Xcode are you using? What type of Objective-C file are you creating? What type of project are you adding the file to?

  • Driver program for outbound interfaces

    hi
    i am having 5 outbound interfaces for which i need to make a driver program
    in my driver pgm i need to make a selection screen which consists of 2 radio buttons
    1 . presentation server
    2. application server
    when we select presentation server all the 5 inerfaces prestation server down load path must execute at a time .
    in the same way if we select application server all 5 interfaces application servers must execute
    can any one help with sample code
    urgent
    regards
    sachin

    Hi sachin,
    can you explain a little more about ur req, like what do you mean by "down load path must execute at a time"
    Regards
    Raj

  • BPM with 2 JDBC outbound interfaces and one inbound file interface

    Hi,
    I have a scenario where data is coming from  different databases into XI and after processing the data it creates a file at the target side. Some calculations are to be done in the middleware and the result will be sent through a file.
    My question is
    1. BPM will be used in this scenario?
    2. There will 2 outbound interfaces(one for each database access), 2 abstract interfaces and one inbound interface(file). Please correct me if I am wrong.
    3. I have to multiply the value of field from one database to a particular value in another database and get the final result. For e.g exchange rate from one database is multiplied to Transaction currency in another database and get the group currency value in the output. Can anyone give the sequence of steps in the intergration process for this scenario as I am new to BPM.
    Thanks,
    Aparna

    Thanks a lot Liang and madhusudana for your responses.
    Since I can use JDBC lookup for this in my nornal scenario I think no need for BPM.
    I have created the advanced UDF for JDBC lookup code. Below is the code.
    String Query = " ";
    Channel channel = null;
    DataBaseAccessor accessor = null;
    DataBaseResult resultSet = null;
    MappingTrace importanttrace;
    importanttrace = container.getTrace();
    // Build the Query String
    Query = "Select home_cur_code FROM  gltrxcp WHERE company_code = '" + a[0] + "' ";
    try{
    //Determine a channel, as created in the Configuration
    channel = LookupService.getChannel("BS_JDBC_send","cc_JDBClookup_rec");
    //Get a system accessor for the channel. As the call is being made to an DB, an DatabaseAccessor is obtained.
    accessor = LookupService.getDataBaseAccessor(channel);
    //Execute Query and get the values in resultset
    resultSet = accessor.execute(Query);
    importanttrace.addWarning("resultset" + resultSet );
    for(Iterator rows = resultSet.getRows();rows.hasNext();){
    Map rowMap = (Map)rows.next();
    result.addValue((String)rowMap.get("HOME_CUR_CODE"));
    importanttrace.addWarning("result" + result );
    catch(Exception ex){
    result.addValue(ex.getMessage());
    finally{
    try{
    if (accessor!=null) accessor.close();
    catch(Exception e){
    result.addValue(e.getMessage());
    But I am not getting the desired result. I am getting result as 'Null'.
    Can you please help in resolving this issue. I have also used trace for find out where it is passing Null and found that 'result' is coming null. Do i also need to parse it before passing it to 'result'?
    Can anyone send sample code for JDBC lookup.

  • Java WS Client for Outbound interface

    Need to create java web service client for an Outbound Interface in PI.  This client will be used in an EJB developed for an inbound interface.  Created Web Service client based on WSDL in the same EJB. However, do not know how to configure logical ports in PI 7.1 (not ehp1); when I deployed EJB, I'm not seeing it in Web Service administration screens of nwa.  
    Would like to configure logical port so that I can change the WS endpoint (url) to a specific instance of PI.
    Any help is greatly appreciated.
    Thanks

    Need to create java web service client for an Outbound Interface in PI.  This client will be used in an EJB developed for an inbound interface.  Created Web Service client based on WSDL in the same EJB. However, do not know how to configure logical ports in PI 7.1 (not ehp1); when I deployed EJB, I'm not seeing it in Web Service administration screens of nwa.  
    Would like to configure logical port so that I can change the WS endpoint (url) to a specific instance of PI.
    Any help is greatly appreciated.
    Thanks

  • Getting the Data for Outbound Interface

    Hello,
    I am doing a outbound interface in which i need to take the Economic Order Quantity , Minimum order quantity , Present cost of the item and Prevoius Cost of the Item(Average costing may be used). The Process of Defining the required fields in Oracle is not yet Started as the Implementation is new. If any body have the approximate idea, where can we get the fields(Oracle Tables) it will be helpful. As this is just a Prototype u are welcome to provide the rough data which may change in future once the process is clearly defined .
    Expecting the Reply.

    Hello Madhav Dhurjaty,
    Thanks for the Reply..
    Economic order is not available in MTL_SYSTEM_ITEMS_B or TL..
    we need to derive by some formula..EOQ = SQRT {[2*(annual demand)*(order cost)]/(annual carrying cost)}
    Annual demand is calculated from the forecast we provide when we perform reorder point planning. Order Cost and Carrying Cost can be obtained when defining items (General Planning).
    But my concern is how to get the Annual demand...
    Awaiting for ur reply..

  • Using inbound service to produce data for outbound interface

    Hi,
    with SAP Enterprise services, we have lots of functionnality provided by SAP which we can use to easily get information
    without having too much custom development done in the backend.
    In our cas for example, we want to use an erecruiting enterprise service to extract data and send it to an external provider in an xml file.
    here are the constraints
    1) Reduce development as much as possible
    2) Use PI to interface with external systems.
    3) External system canot initiate the process.
    It would be nice to reuse SAP content (Enterprise services) in order to extract the data and replicate it to the external system.
    One way to do this would be to have a program which calls the method of the proxy that implements the enterprise service.
    Then the program can just call PI to create a file with the contents returned by the method.
    This is not an elegant solution ...  , I would have liked PI to initiate the call at a specific time and with the response of the call send the xml file to the provider... this seems to be the reverse of what PI does...
    I'm sure there are other solutions... any ideas ?
    This is more of an extract and transfer scenario with PI...
    Thanks.

    Hi Thierry,
    we want to use an erecruiting enterprise service to extract data and send it to an external
    provider in an xml file
    Please consider that the Auto generated proxies in Enterprise services are mostly Inbound( to SAP)
    and have request and response structure.
    When you  are bringing  PI  into picture then you will need to create outbound structures, which you need
    to copy.You will face issues with work around as suggested above , the proxies are not editable
    and to make it editable you will end up creating a copy which will add more work then reuse.
    Also think if the customer wants to enhance few field in the Req/Resp strucutures
    (we need to consider this for sure)enhancing the structure is possible using dependencies
    but it required costom changes.If you are expecting enhancements then better don't use enterprise services.
    As SAP standard is designed to accept request and send response , its always correct to
    request third party (consumer) to ask/trigger  for data,unlike trying to put PI as triggering agent.
    Conclusion:
    Regards,
    $rinivas
    Edited by: Srinivas on Aug 12, 2010 7:27 AM
    Edited by: Srinivas on Aug 12, 2010 7:37 AM

  • Sftp procedure for outbound interface

    Hi experts,
        i have data in internal table.but here my problem is how to send internal table data to destination using SFTP with RSA key.
        pls help me.
    regards,
    prasad.

    Hi experts,
        i have data in internal table.but here my problem is how to send internal table data to destination using SFTP with RSA key.
        pls help me.
    regards,
    prasad.

  • Outbound interface using dataset

    Hi,
         Please send me example program for outbound interface to maintain file in application server.
    Thanks
    Ali

    Hi,
    the code should look like below.
    declare:
    filepath_name TYPE rlgrap-filename,
    internal table itab.
    **Populate data to itab.
    OPEN DATASET filepath_name FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
          IF sy-subrc = 0.
            LOOP AT itab.
              TRANSFER itab TO filepath_name .
            ENDLOOP.
          ELSE.
            MESSAGE i001(00) WITH 'Error writing to file in remote computer'.
          ENDIF.
          CLOSE DATASET filepath_name .

  • Segment creation for outbound Idocs to non-SAP system

    Hi,
    I need to create a custom idoc for outbound interface to a non-SAP system. Here I need to create segments. So, should I create the fields in the segment with the attributes of fields in non-SAP system or fields attributes should be of SAP system.
    For example:
    There is a field invoice number which is of 10 Chars in SAP but in legacy it is divided into 2 fields: invoice prefix of 2 chars and invoice no. of 8 chars. Should my segment contain one invoice field of 10 chars or should it be two fields with 2 and 8 chars?
    In general, always should the segment fields contain field attributes based on receiving system?
    Thanks in advance.
    Sriram.

    Hi
    Should my segment contain one invoice field of 10 chars or should it be two fields with 2 and 8 chars?
    I think it shoild be better to have 2 fields, but probably the result will be the same if you send the idoc by a text file, because both informations should be contiguos, I mean if you have file with a record like this:
    1234567890
    This record can be obtained downloading a segment with 2 fields:
    FIELD1 = '12'
    FIELD2 = '34567890'.
    or single field:
    FIELD = '1234567890'.
    So it'll be the same for tje target system
    In general, always should the segment fields contain field attributes based on receiving system?
    It depends on who has to convert the idoc to the right format for the target system
    I mean you can create a "SAP" Idoc, so the receiving system will have to convert it to the right format
    or
    you can send the idoc in the right format, so the receiving system doesn't need to convert it
    Max

  • ABAP-HR OUTBOUND INTERFACE

    HELLO EXPERTS,
                                      Plz provide me with any sample code for outbound interfaces in abap-hr as i'm new to this concept.
    Thanks,
    Naveen Sharma

    Dear Naveen,
    would you mind checking this site? Perhaps you find some useful information.
    <a href="http://erpgenie.com/abaptips/content/view/302/62/">ABAP Inbound/Outbound interfaces iDoc - User Exits</a>
    Kind regards,
    Zsolt

  • UCCX HR Report for Outbound Calls

    Hi,
    We are using UCCX 9.0.
    In Historical report we able to get the report for outbound call also.
    The issue for the Outbound is calls which are not answered by the remote party There is also a call duration though the CUCM CDR shows zero seconds and the Agent Call Records in CAD shows the call and unanswered.
    Because of this we are not able to identify the matured calls & non matured calls for the outgoing.
    Is there anyway to capture unanswered outbound calls from Historical reports
    Thanks,
    Paul

    I must say that I had similar problems with reports for outbound calls on our CC system...after some writings with TAC we concluded that reports for outbound calls in CC system are much more less informational versus inbound calls. So what I want to say is that probably your reporting is working fine and there is just no info for outbound calls which can be utilized and be usefull for you in your reports...
    BR,
    Dragan

  • Scheduled for Outbound processing - SMQ2 has 0 entries!

    Hi !
    After a XI server reboot because of a JCO communication failure, there were a lot of messages stuck in queues. We executed manually the LUWs and everything went ok, but we still have some messages with "Scheduled for Outbound processing" status in SXMB_MONI (right black arrow icon) and its queues are all empty via SMQ2.
    Those messages were sent EOIO.
    What should we do? restart manually each message in order?
    Thanks!
    Regards,
    Matias.

    Hi Sreenivas!
    There is no audit log, because the message with Waiting status is in Integration Engine, not in Adapter Engine. The audit log for the process of getting the message to enter XI went OK, all steps are in Success in audit log...but there is no audit log for "leaving" XI.
    If I restart each message manually, they go ok...is there any way to ensure the EOIO order and make XI to resend them in order?
    Regards,
    Matias.

Maybe you are looking for