What User authorization objects needed for connecting to SAP from xMII?

We eneter a SAP user and password for connecting to SAP from xMII to retrieve the metadata of the incoming IDocs.
When I specify a user with SAP_ALL user profiles, the IDocs are received properly in xMII. If I specify a user with privileges to run only certain transactions, IDocs are not received in xMII.
What user authorization objects are needed for this user to connect to SAP from xMII?
Thanks,
Sara

Sam,
I turned on the SAP System trace for this user and figured out the following auth. objects are required for receiving IDocs in xMII:
C_TCLA_BKA
S_RFC
S_CTS_ADMI
B_ALE_MAST
S_IDOCDEFT
The following auth. object is required for making JCO call to SAP from xMII:
C_AFRU_AWK
Thanks,
Sara

Similar Messages

  • What technical components are needed for integration of SAP BI and BO?

    Hello,
    What technical components are needed for integration of SAP BI and BO?

    Hi,
    you need to setup a BOBJ server (eg. BusinessObjects Enterprise XI 3.1 or BO Edge 3.1) and then install the BusinessObjects integration Kit for SAP on the same machine your BOBJ server runs.
    In order to build reports you can either use Crystal Reports (eg Install Crystal Report Designer 2008 V1 if you have an XI 3.1 server installed), WebIntelligence (Install the Business Objects XI 3.1 Client Tools in order to be able to build universes), BusinessObjects Voyager or XCelsius. Please note that you have to always install the BOBJ integration Kit for SAP (should be the same version as your server and client installation) on your clients AFTER you installed one or more of the above client tools.
    Please take again a look at the following link for more detailed information (from Ingo) on this:
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a00ee3b2-5283-2b10-f1bf-8c6413e0898f]
    Regards,
    Stratos

  • What cable do I need for a full migration from a 2011 MacBook Pro to a new current one-wireless migration way too slow.?

    What cable do I need for a full migration from a 2011 MacBook Pro to a new current one-wireless migration way too slow.?

    All you need is an Ethernet cable.
    Just plug it into both machines. Don't bother with a crossover cable, just a plain old Ethernet cable will do. The Ethernet ports on the Macs are smart and will adjust appropriately.

  • Help needed in Connecting to SAP From Eclipse

    Hi All,
    Currently, we have a requirement where we need to retrieve data from SAP System and need to upload the same in a Third Party Application (Java based system).
    We are able to create an account in Java Application using Eclipse IDE by hard coding the Account details. We are stuck up in establishing the SAP connection and retrieving the details and then creating the extracted account details in Java application from Eclipse.
    Any pointers on this will be of great help.
    Regards,
    Eureka

    Hi Eureka,
    Please refrain from creating cross-posts in parallel forums, moreover this question is JCo-related and is not directly connected with Java EE 5. The Help needed in Connecting to SAP From Eclipse in the Java Programming forum would be enough. Please continue the discussion there.
    Regards,
    Vladimir

  • What cables do I need for Apple TV streaming from my iPad to my tv

    What cables do I need for Apple TV, streaming fom my iPad to a HD tv?

    if you have an Apple TV it's don over wifi as in wireless so no cable would be required apart from the hdmi cable the Apple TV connects to the tv with

  • What chords do i need for a data migration from macbook 2008 to  macbook air 2012

    My 2008 macbook has a firewire port and my new macbook air 2012 has a thunderbolt port. I have a thunderbolt cable but i can't find an adapter to firewire or the firewire cord? Should I return the thunderbolt cable and surrender the 100 bucks for one-on-one or go through the tedious process of using my external hard drive as the 'messenger boy'?

    There's all sorts of ThunderBolt to FireWire adapters out there. Here's one on Amazon. http://www.amazon.com/Apple-Thunderbolt-to-FireWire-Adapter/dp/B008RXYOKY/ref=sr _1_11?ie=UTF8&qid=1346277186&sr=8-11&keywords=thunderbolt+firewire
    You'd also need a FireWire 800 to 400 adapter. http://www.amazon.com/elago-FireWire-400-800-Adapter/dp/B002TF0ZDQ/ref=sr_1_8?ie =UTF8&qid=1346277133&sr=8-8&keywords=thunderbolt+to+firewire

  • What is authorization object and how to create it for a table

    Hi All,
    What is authorization object and how to create it for a table?
    Thanks

    Hi
    Authorization
    For authorization checks, there are many ways of linking authorization objects with user actions in an SAP system. The following discusses three possibilities in the context of ABAP programming.
    Authorization Check for Transactions
    You can directly link authorization objects with transaction codes. You can enter values for the fields of an authorization object in the transaction maintenance. Before the transaction is executed, the system compares these values with the values in the user master record and only starts the transaction if the appropriate authorization exists.
    Authorization Check for ABAP Programs
    For ABAP programs, the two objects S_DEVELOP (program development and program execution) and S_PROGRAM (program maintenance) exist. They contains a field P_GROUP that is connected with the program attribute authorization group. Thus, you can assign users program-specific authorizations for individual ABAP programs.
    Authorization Check in ABAP Programs
    A more sophisticated, user-programmed authorization check is possible using the Authority-Check statement. It allows you to check the entries in the user master record for specific authorization objects against any other values. Therefore, if a transaction or program is not sufficiently protected or not every user that is authorized to use the program can also execute all the actions, this statement must be used.
    AUTHORITY-CHECK OBJECT object
                            ID name1 FIELD f1
                            ID name2 FIELD f2
                            ID namen FIELD fn.
    object is the name of an authorization object. With name1, name2 ... , and so on, you must list all fields of the authorization object object. With  f1, f2 ... , and so on, you must specify the values that the system is to check against the entries in the relevant authorization of the user master record. The AUTHORITY-CHECK statement searches for the specified object in the user profile and checks the useru2019s authorizations for all values of f1, f2 ... . You can avoid checking a field name1, name2 ... by replacing FIELD f1  FIELD f2 with DUMMY.
    After the FIELD addition, you can only specify an elementary field, not a selection table. However, there are function modules available that execute the AUTHORITY-CHECK statement for all values of selection tables. The AUTHORITY-CHECK statement is supported by a statement pattern.
    Only if the user has all authorizations, is the return value sy-subrc of the AUTHORITY-CHECK statement set to 0. The most important return values are:
    ·        0: The user has an authorization for all specified values.
    ·        4: The user does not have the authorization.
    ·        8: The number of specified fields is incorrect.
    ·        12: The specified authorization object does not exist.
    A list of all possible return values is available in the ABAP keyword documentation. The content of sy-subrc has to be closely examined to ascertain the result of the authorization check and react accordingly.
    REPORT demo_authorithy_check.
    PARAMETERS pa_carr LIKE sflight-carrid.
    DATA wa_flights LIKE demo_focc.
    AT SELECTION-SCREEN.
      AUTHORITY-CHECK OBJECT 'S_CARRID'
                      ID 'CARRID' FIELD pa_carr
                      ID 'ACTVT' FIELD '03'.
      IF sy-subrc = 4.
        MESSAGE e045(sabapdocu) WITH pa_carr.
      ELSEIF sy-subrc <> 0.
        MESSAGE e184(sabapdocu) WITH text-010.
      ENDIF.
    START-OF-SELECTION.
      SELECT  carrid connid fldate seatsmax seatsocc
        FROM  sflight
        INTO  CORRESPONDING FIELDS OF wa_flights
        WHERE carrid = pa_carr.
        WRITE: / wa_flights-carrid,
                 wa_flights-connid,
                 wa_flights-fldate,
                 wa_flights-seatsmax,
                 wa_flights-seatsocc.
      ENDSELECT.
    Regards
    Hitesh

  • What cables do I need to connect my 2013 macbook pro to my HD tv? I know I need mini display to HDMI, but male? female HDMI??? and also, do I need a separate cable for sound?

    what cables do I need to connect my 2013 macbook pro to my HD tv? I know I need mini display to HDMI, but male? female HDMI??? and also, do I need a separate cable for sound?

    Actually you need a Thunderbolt to HDMI adapter. It will carry both audio and video.
    This one will work: Mini DisplayPort | Thunderbolt® to HDMI® Adapter w/ Audio Support

  • What cable do i need to connect my macbook pro to the hdmi input on my tv?.

    what cable do i need to connect my macbook pro to the hdmi input on my tv?.

    hi Sam
    It's actally an HDMI adapter that Apple sells.
    You hook the small adapter up to your MBP and then HDMI cable to your TV. Please note adapter is for HDMI compliant for HDMI rev 1.3 and above:
    My TV, which has DVI port also, besides HDMI gets its best resolution by DVI of which also sell at Apple store for the MBP.
    Bottom line is check w/ your TV manufacture to be sure your flat screen supports 1920 X 1200.
    Let 'er rip and...
    cheers

  • What cable do I need to connect a 2nd Monitor from the thunderbolt port?

    Hi I have got one of the brand new iMac's with thunderbolt ports - what cable do I need to connect my Imac to a 2nd display either VGA or DVI - also is there a budget version about as well as I am sure its going to cost a lot from the apple store     

    Thanks I understand that I need another cable and have that from when I connected my old PC to the 2nd monitor.
    http://store.apple.com/us/product/MB570Z/A?mco=MTY3ODQ5OTY  - is this the one I need if going to DVI
    I just dont want to waste more money on a cable that says its for an imac to 2nd screen and find it doesnt fit
    For info my iMAC is the latest version (27" with the 2 thunderbolt connections and 1 firewire)
    Thanks

  • What adapter do i need for my macbook pro for a presentation

    what adapter do i need for my macbook pro for a presentation

    What model/Year MBP do you have and what are you connecting it to?
    Ciao.

  • What cable do I need to connect iPhone /iPad to a receiver

    What cable do I need to connect iPhone /iPad to my receiver

    Any stereo audio cable will work strictly for audio, just like your headphones.
    If you want to use AirPlay Mirroring you need an AirPlay - compatible receiver, or an AppleTV.
    Denon, Marantz, Pioneer, Onkyo, Yamaha and others all manufacture AirPlay compatible receivers.

  • What driver do I need to connect to Brother MFC-9325CW

    what driver do I need to connect t0 Brother MFC-9325CW?

    I believe the Brother drivers are included in the OS installation. Try installing the printer. As you go through the process the Mac will tell you if it discovers the printer. That tells you do not need a driver.
    If this is a new printer being connected for the first time, I personally prefer to connect with a USB cable and complete the first steps. Wireless printer connections are much more work, and can be done after you have a functioning printer.

  • What adapter do I need to connect my 2009 Macbook Pro to my 2007 iMac?

    What adapter do I need to connect my 2009 Macbook Pro to my 2007 iMac? I get really confused with all of the different cables out there an I want to make sure I get the correct one.
    Macbook Pro Model is: Late 2009, 2.26 GHz Intel Core 2 Duo, 8 GB 1067 MHz DDR3, OS X 10.9.4 (13E28)
    iMac Model: Late 2007, 2.4GHz Intel Core 2 Duo, 4 GB 667 MHZ DDR2 SDRAM, OS X Mountain Lion (10.8.5)
    Thanks!

    The 2007 iMac does not support cabled input. see > Target Display Mode: Frequently Asked Questions (FAQ)
    Like Niel suggest's, your only option is to use a network based connection like > ScreenRecycler

Maybe you are looking for