Role for the user used in SOAP adapter

Hi,
What are the roles required to the user used for user authentication in a soap adapter.

hi,
if you want to be more specific this is the only role required:
xi_adapter_soap_message (on the adapter engine)
Regards,
Michal Krawczyk

Similar Messages

  • Roles for the user to Edit the Dimension without being an administrator

    Dear Users,
    I have a query based on Planning security.
    I want the user to edit the dimensions and members in planning application. However, the user cannot be administrator.
    I have created a user and assigned the role of "Interactive User" on Planning roles and of "Dimension Editor" on Shared Services access. With this provisioning user the "Administration-->Dimension" is grayed out for the user.
    Please suggest if roles can be assigned to the user in order to Edit the Dimension without being an administrator?
    Regards,
    Praveen.

    I am sure this question gets asked over and over, they need to be an administrator.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Not able to fetch Roles for an user using HWF Identity XPath

    Hi,
    I am not able to fetch list of roles for a specific user using Human Workflow, Identity XPath. Using Script Activity when I am trying to call the menthod, the method doesn't return Role details. Any help will be appreciated...

    That's the rules of how it works.  A request has 1 request form per resource for all users on the request.  Those fields must all be marked as available in bulk as well to be viewed if you have more than 1 user on the request.  If you need to provide different values based on the user, your best option is pre-populate adapters on the process form and use logic to populate the fields.  You will not be able to manually provide different values during the request.
    -Kevin

  • What would be the web servendpoint for a scenario using sender SOAP adapter

    Hi,
    I have setup a scenario to consume a Service interface in SAP namespace. This is a asynch inbound SI which is not point to point enabled which means the WSDL we get are only the definitions with no endpoints. So I exported it as an external definition which I will then use as sender interface so the scenario looks like this:
    Third Party -> SOAP Sender Adapter -> Outbound SI(Imported WSDL) -> XI Box (Mapping etc) -> Inbound SI -> XI Receiver Adapter -> ABAP box
    Once all has been setup, for SOAP sender adapter for third party to send data the URL looks like this.
    http://host:port/XISOAPAdapter/MessageServlet?channel=party:service:channel
    But I dont think so this is the endpoint beacuse if I give this in browser I only get an OK status from XI box, what should I give to third party they can use as WSDL endpoint to generate the proxy/stub on their side to send data to SAP.
    Regards, Shadab

    This is a asynch inbound SI which is not point to point enabled which means the WSDL we get are only the definitions with
    no endpoints. So I exported it as an external definition which I will then use as sender interface so the scenario looks like this:
    Third Party -> SOAP Sender Adapter -> Outbound SI(Imported WSDL) -> XI Box (Mapping etc) -> Inbound SI -> XI Receiver
    Adapter -> ABAP box
    Inbound (receiver-end) Service Interface is to be developed from an imported WSDL......not the Outbound (Sender-end) Service Interface.....you actually did the procedure which needs to be done when SOAP is at receiver-end.
    If you are clicking the WSDL tab in Service Interface and then taking it as the required WSDL then note that this is not the one.....it is to be generated from ID --> Tools --> Display WSDL (it will be based on the outbound SI)......this will have the end-point which you you mentioned
    Now you give this WSDL to the sender application (it will have the end-point) and ask them to develop their coding accordingly.
    If you need to view that WSDL in explorer, then you have to publish it somewhere....like in Service Registry (or WSnavigator)
    Regards,
    Abhishek.

  • IOException: invalid content type for SOAP: TEXT/ using Sender SOAP adapter

    Hi all,
    When I am using Sender SOAP adapter, i am getting (MessagingException: Could not parse XMBMessage. Reason: java.io.IOException: invalid content type for SOAP: TEXT/HTML using connection SOAP_http://sap.com/xi/XI/System) exception.
    From my RWB I can see:
    2009-05-25 16:18:39 Information The message was successfully retrieved from the call queue.
    2009-05-25 16:18:39 Information The message status was set to DLNG.
    2009-05-25 16:18:39 Error Failed to parse the XI system response.
    2009-05-25 16:18:39 Error The message was successfully transmitted to endpoint com.sap.engine.interfaces.messaging.api.exception.MessagingException: XIMessage creation failed (inbound). Reason: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Could not parse XMBMessage. Reason: java.io.IOException: invalid content type for SOAP: TEXT/HTML using connection SOAP_http://sap.com/xi/XI/System.
    2009-05-25 16:18:39 Error The message status was set to FAIL.
    2009-05-25 16:18:39 Error Returning to application. Exception: com.sap.engine.interfaces.messaging.api.exception.MessagingException: XIMessage creation failed (inbound). Reason: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Could not parse XMBMessage. Reason: java.io.IOException: invalid content type for SOAP: TEXT/HTML
    Please help if possible! Thanks!
    Mayank

    Hi,
    Check in SLD your integration engine business system have the following
    pipeline url : http://server:httpport/sap/xi/engine?type=entry
    check Http port also
    After that go to TCODE - SXMB_ADM - integrationn engine configuration and check if your server is configured as HUB with the same url or not.
    Thanks
    Kasturika Phukan

  • How to assign the role for created user  thru dynpro App

    Hi All
    How to assign the role for currently created user from Webdynpro App.
    when i enter into the portal after creating the user
    i am getting the following messgae in the portal
    "No portal roles are assigned for this user.If this problem persists, contact your system administrator."
    how to assign the user defined role for the created user from dynpro App
    Regards
    Dhina  Kar J
    Edited by: Dhinakaran Jeyachandran on Feb 1, 2008 12:19 PM
    Edited by: Dhinakaran Jeyachandran on Feb 1, 2008 12:35 PM

    In the User Administration section of your portal find your newly created user and below select "Assigned Roles" tab then press <Modify> button and look through available roles on portal then just simply add and save. But if you want to do it programmatically see below:
    IUserAcountFactory userFactory = UMFactory.getUserAccountFactory();
    // IUser - read only but with IUserAccount is possible to set up user data
    IUserAccountSearchFilter userFilter = userFactory.getUserAccountSearchFilter();
    userFilter.setLogonUid("superuser", ISearchAttribute.LIKE_OPERATOR, false);
    ISearchResult sr = userFactory.search(userFilter);
    for (final Iterator i = new PrincipalIterator(sr); i.hasNext();) {
      IUserAccount user = (IUserAccount) i.next();
    Execute the same search for IRole (or IGroup if needed) get the unique id of them and use newRole(...) and addUserToRole(...) methods from IRoleFactory.
    Of course you don't need search for this principals if you know uniqueness of them. Use appropriate factories to get'em all by this unique id.
    All the features see in  [javadocs|http://help.sap.com/javadocs/NW04S/current/se/index.html]

  • HOW MANY ROLES ARE ELGIBLE FOR THE USER

    hello gurus,
    how many roles can we assign to the user... what is the maximum limit of the roles  and profiles for the user.
    thanks in advance!
    sri

    Dear Srinivas,
    About roles it's indeed not to easy to tell..just imagine the scenario:
    1. Maximum number of profile is 312 ... (however due to some known bug system reads about 300). So, let's say 300 profile maximum can be assigned to an user
    2. Now you can have single ABAP role which generally one-to-one to profile. So, this theory says if you are only assigning single ABAP roles, you can assign maximum 312 (or 300) roles.
    3. But, you might also have Composite ABAP role. A composite ABAP role can have one or more Single/Composite ABAP role. So, one Composite ABAP role can correspond to any number of Profile which is determined by number of individual Single roles under than composite role. So, when you are assiging Composite ABAP role, you have to take care underlying number of profiles and make sure total does not exceed 312 (or 300 without note correction)
    4. Now, last part of complication (and my favourite one). Sometimes, there is an empty Role which does not have any ABAP authorization assigned to it. But, this type of roles are used to map a authorization role in JAVA system. These roles does not have any Profile (as it does not have any ABAP authorization). Now, that brings my confusion ..What happens you assign 300 ABAP profiles via ABAP Roles and another 20 empty role for JAVA system without profile. You see my point
    Hope this clarifies a bit
    Cheers !!
    Satya.

  • How to disable the validity of a particular Role for 100 users, in a single

    Hi
    How to disable the validity of a particular Role
    which is assigned to 100 users. (disabling the role of change the validity of the role )
    at present am doing manually, by entering into each user and changing the validity of the role
    Thanks.

    > How to disable the validity of a particular Role for 100 users, in a single ...
    ... shot?
    Assign a reference user to the 100+ users and create events in the factory calendar which assigns and removes the role from the reference user only.
    The downside is that it is not scalable for many of the same concepts at the same time, because a dialog user can at one logon time only have one reference user assigned to them.
    Cheers,
    Julius

  • Transported Roles not Visible for the User Log-in

    I have three roles in the development system.  These roles show up in the top level navigation for the users in the dev system.  All these roles and the underlying BSPs are transported to QA successfully.  I could assign them to users without any problems, but when the users log-in they can not see any of these roles at the top level navigation (In fact, they just get a blank screen).  "Entry Point" setting and "Sort Priority" is maintained for all the three roles.
    As a test, I created a new role with the same BSP links in QA itself and assigned it to the users.  This shows up in the top level navigation for the users.  I am wondering what's wrong with the transported roles!  If someone could help me here that would be great and I will assign points to helpful replies.  I have a very basic knowledge in portal.

    After applying SP12 in the portal landscape (EP 6.0), the role transports only work in our test environment, but not in production.  Even the manual corrections suggested in OSS note 1002832 didn't help.  I can preview all the iviews in the roles with my user id (admin id), but as soon as I log-in with the end user id nothing shows up [Not even the top level navigation tabs show up].  The following is the portal authorization methodology I chose.
    1. I assign users to the user groups
    2. I assign user groups to the roles
    I want to emphasize that all is well in our test environment, it is the production environment that shows inconsistency.  Let me know if anyone has any pointers.

  • How to define roles for the reports that i have created using WAD?

    Hi all,
    Can anyone let me know how to define roles for the reports generated using WAD. And what is the procedure for creating and defining roles. Is this process take care of Bw consultant nor the basis guys.
    Can anyone let me know the entire procedure about the roles in bw 3.5
    thanxs
    haritha

    Following links might helps you
    create a role
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/bi/authorizationinSAPNWBI&

  • Problem while assigining the role to the user

    Hi,
    I have creadted one new user and role. then add some worksets which exists in another folder.
    when logged to the new user i can able o see the worksets with error message.(which is working fine with old user)
    Please help me how to add the worksets to the new role.
    Error Message
    com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE: Name or password is incorrect (repeat logon)
         at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:455)
         at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:989)
         at com.sap.mw.jco.JCO$Client.connect(JCO.java:3193)
         at com.sap.mw.jco.JCO$Pool.initPool(JCO.java:4662)
         at com.sap.mw.jco.JCO$PoolManager.getClient(JCO.java:6060)
         at com.sap.mw.jco.JCO$PoolManager.getClient(JCO.java:6015)
         at com.sap.mw.jco.JCO.getClient(JCO.java:8663)
         at com.sap.mw.jco.webas.WebDynproExtension.addClientPool(WebDynproExtension.java:133)
    Please tell me how to solve this problem.
    Edited by: Srinivas Reddy K on Feb 13, 2008 8:49 AM

    Hello Srinivas,
    The issue is not with the user, the problem is with the JCo connection user,
    navigate to Content Administration-> Web Dynpro-> Maintain JCo connections.
    and Test all the JCo connections which are green and make if there is any error click on edit and check whether the user and password you gave for the connections are working or not.
    If the test fails, go to SU01 t.code and change the password or unlock the user. it will resolve the issue.
    Most of the cases the user used is locked.
    Hope this helps,
    Cheers-
    Pramod
    Reward Points if Helpful.

  • Is there a way to see the string returned by SOAP adapter at the Reciever

    Hello Friends
    I have a scenario as follows
    Sender:        Outside Client   -
    >>  Soap Adapter   -
    >XI   --->   RFC Adapter   ---> ZBAPI.
    The outside client sends an id to search through XI using SOAP adapter which inturn calls a ZBAPI
    to look for the record in the table and sends the found record back to XI and from there to the outside client via SOAP adapter.
    I have made sure that the ZBAPI is being contacted successfully.
    However, the return data is not coming to the client.
    Is there a way to findout what xml string is being received at the receiver SOAP adapter.
    I have checked the zbapi, mapping etc., and everything is ok.
    Any suggestion or feedback will be highly appreciated.
    Thanks
    Ram

    You should be able to see the Request and the response in SXMB_MONI.
    Just make sure that synch logging is turned on in MONI. Add the entry LOGGING_SYNC with value as 1 in SXMB_ADM --> Integartion Engine Configuration.
    Regards
    Bhavesh

  • You can get Roles but can you get the Role of the user

    Can you display or hide items dependant on the roles of the logged in user is assigned too.
    I know you can do this for the menu using menu.json
    "visible": true,
            "applyIf": {
                "userHasRoles": ["Administrators"]
    But what about for other elements inside the app. Is there a way to get the roles of the user logged in.
    Is this missing as a feature or am I missing some pieces.

    I just want to hide or remove a page element ie if(adminUserRole != 'Admin') {$('#element').remove}. Just some way to see the roles of the admin user that is logged. But yes early days.
    On a side note BC are looking to launch the project and advertise the store on the 17th is this not a bit ahead of themselves if there is a potential that apps functionality may be reduced because of new policies, restrictions etc even if only temporarily. Once apps hit the masses this may cause some tension when people loose functions they once had.
    Edit :Ok BC have already changed the date of the launch. I jumped the gun in saying this as they have it all under control.

  • Standard WebClient UI business role for the CRM 7.0

    Hello Gurus
    where can we get the below mentioned thing....i tried in service market place but i did not get
    The predefined authorization roles are provided as attachment BP_CRM_ROLES.ZIP to the collective note of this SAP Best Practices version. Download and unzip the roles to your local directory
    after dowloading we need to uplaod in to PFCG roles
    (The purpose of this activity is to copy a standard WebClient UI business role and to assign a new authorization role to it. The WebClient UI business role is designed to centralize the authorizations, navigations, and content of the CRM WebClient UI.
    The business roles will be adapted to the Best Practices scenario scope)
    i am struck of ove here
    regards
    Sreeram

    Hi Sreeram,
    The roles you want to assign to the user you have to select for your scenario. The best practice role assigned to an user to navigate to the webclient. The other roles you assign to the user to give authoraization for your scenario. If you will go to C04 document you can get the standard roles which will be assigned to one particular user. For the standard user let sal SALES_MAN we assign the standard roles as peer the best practice as SAP_CRM_UIU_FRAMEWORK ,SAP_CRM_OR_ADMIN, SAP_CRM_OR_USER and BP_SLS_MANAGER. If you need other authorization for the user then copy the standard role and assign the authorization manually in transaction PFCG.
    Hope this will help you.
    Thanx
    Chinmaya

  • Assiging Roles to the User

    Hai All,
    I am new to EP I have some predefined users and when I am trying to login using those users I am getting  message <b>"No portal roles are assigned for this user.If this problem persists, contact your system administrator"</b>.When I am trying to assigne roles to the user I am getting the message <b>"Internet Explorer cannot open the Internet site http://xi1:50000/irj/portal. Operation aborted"</b>.
    I my self is handling the server too, so Please Help me out..
    Suma

    Have you patched you server as this was a problem on SP9.
    You need to patch your server first.
    Paul

Maybe you are looking for

  • Single-user mode freeze

    I am trying fsck a mac mini. When I start up in single-user mode, the keyboard(Bluetooth and usb) do not work. I have to unplug the cpu. Does this mean it's broke?

  • Image colour changes when opening in Adobe Flash

    Hi folks I'm a complete novice when it comes to Flash so I hope you can help me out. I've been trying to open a jpeg image in Actionscript 3.0 which opens without any issues however part of the lettering in the image appears to display as a different

  • What is the specifications on the new SSD for Macbook Air 6,2?

    I have purchased 2 from Amazon and both are to long by about a half inch. It appears Apple has change the configuration on the newest MacBook Air 13 inch. I need to know what to order online.

  • Wrong assign messages in the collector logs

    Hi, Does anyone know what causes this type of errors to show up in the vCenterDC_Errors.log file for the embedded data collector? 2014-04-02T08:01:23.180-0400 ERROR [(32) HostsClustersAndVMTemplatesInventorySyncJob on VC 528] [propertyContent.Propert

  • 10.4.9???

    All right. So, there have been some posts about problems with the latest update. Is it safe to go ahead and get it? Or should I wait?