Regarding : How to add a user to portal group with the help of webdynpro .

Hii ,
I am working on an application in which with the help of an action( Button)  we r adding a user in Ztable in R/3 , as well as  group in portal.
The user r successfully creating in Ztable but from portal side No user is assigned to Portal group.
I need coding solution for " How to add a user to portal group with help of webdynpro"
Any usefull link will also do.
Pls anyone have any solution ??
Thnks in advance.
Rewards r waiting for u .

Hi,
Use UME api to add user to portal group.
Using UME API:
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40d562b7-1405-2a10-dfa3-b03148a9bd19
Regards,
Naga

Similar Messages

  • How to read a passward protected excel file with the help of database connectivity tool kit

    hi, i was reading an excel file with the help of database connectivity tool kit in labview 8.0
    i made tabels in the excel file nand made odbc connection and specified the workbbok name.
    now my problem is how to read the same file if i specife a pasword to that excel file ?

    Hi,
    Check out this thread about opening a password-protected Excel file using ActiveX. This should take care of it for you!
    Amanda Howard
    Americas Services and Support Recruiting Manager
    National Instruments

  • How do I find out how many fans are there in a router with the help of CLI? Specifically cisco3845 with ios c3845-spservicesk9-mz.124-3b.bin

           I have an issue where show env o/p is as below, I suspect the FAN 1 which shows failed is not present in router, how do i find out with the help of CLI , how many fans are present in router.
    #show environment all
    SYS PS1 is present.
           Fan status: Normal
           Input Voltage status: Normal
           DC Output Voltage status: Normal
           Type: AC
           Thermal status: Normal
    SYS PS2 is present.
           Fan status: Normal
           Input Voltage status: Normal
           DC Output Voltage status: Normal
           Type: AC
           Thermal status: Normal
    AUX(-48V) PS1 is absent.
    AUX(-48V) PS2 is absent.
    Fan 1 Failed
    Fan 2 Normal
    Fan 3 Normal
    Fan Speed is Normal
    Alert settings:
    Intake temperature warning: Enabled, Threshold: 55 Core temperature warning: Enabled, Threshold: 70 (CPU: 90)
    Board Temperature: Normal
    Internal-ambient temperature = 28, Normal CPU temperature = 41, Normal Intake temperature = 22, Normal Backplane temperature = 19, Normal
    Voltage 1(3300) is Normal, Current voltage = 3284 mV Voltage 2(5150) is Normal, Current voltage = 5153 mV Voltage 3(2500) is Normal, Current voltage = 2525 mV Voltage 4(1200) is Normal, Current voltage = 1203 mV
    Nominal frequency

    This means that FAN1 has failed.
    Fan 1 Failed
    Feb 14 07:31:01.996 GMT: %FAN-3-FAN_FAILED: Fan 1 had a rotation error reported.
    Feb 14 07:31:21.996 GMT: %FAN-3-FAN_FAILED: Fan 1 had a rotation error reported.
    Feb 14 07:31:41.995 GMT: %FAN-3-FAN_FAILED: Fan 1 had a rotation error reported.
    Feb 14 07:32:01.994 GMT: %FAN-3-FAN_FAILED: Fan 1 had a rotation error reported. Feb 14 07:31:01.996 GMT: %FAN-3-FAN_FAILED: Fan 1 had a rotation error reported.
    Feb 14 07:31:21.996 GMT: %FAN-3-FAN_FAILED: Fan 1 had a rotation error reported.
    Feb 14 07:31:41.995 GMT: %FAN-3-FAN_FAILED: Fan 1 had a rotation error reported.
    Feb 14 07:32:01.994 GMT: %FAN-3-FAN_FAILED: Fan 1 had a rotation error reported.

  • How to find R/3 field  tech name with the help of BW fields.

    Hi ,
    How will i come to know that particular R/3 field is mapped to BW field.
    for .e.g
    I have BW Fields in Cubes , how can i see the R/3 field tech names for that .I can see in Infosource , but for few areas i am not able to find the infosource in sap help.com.
    Pls let me know how to find the R/3 Fields for BW Fields?
    Regards,
    Nithi.

    Hi
    These are the following approaches used
    1.) Check the SAP BI Content website "http://help.sap.com/saphelp_nw70/helpdata/en/3d/5fb13cd0500255e10000000a114084/frameset.htm". From here find your datasource . here u can get a list of fields in the datasource along with your R3 field and infobject.
    2.) Go to Transfer rules structure of the cube or DSO, there u wuld  be able to see all fields in Datasource structure fields, See the left pane and right pane. there u will se ur R3 fields and Infoobjects of BW along with their mapping.
    3.) Follow this process
    in R/3 system - use tcode SE11 ->ROOSFIELD -> GIVE Extract Structure & Field Name > Check Records with Version D and A.
    NOTE : Make sure the fields of the datasource in R3 are not hidden , otherwise you wont be able to vierw ur data.
    From
    ManesH

  • Wlst add a user to a group

    Hi,
    I have problems with wlst to add a user to a group
    The method "addMemberToGroup" of the security MBean DefaultAuthenticator doesn't seem to be accessible from wlst.
    Here's the part of the code (note that the group and user already exist, i am sure of it)
    myusername="BIGREZADMIN"
    group="BigRezAdministrators"
    cd("/")
    cd("weblogic.security.providers.authentication.DefaultAuthenticator/Security:Name=myrealmDefaultAuthenticator")
    try:
    cmo.addMemberToGroup(group,myusername)
    except Exception:
    dumpStack()
    And what I get:
    AttributeError: addMemberToGroup
    Also tried like this:
    cd("weblogic.security.providers.authentication.DefaultAuthenticator/Security:Name=myrealmDefaultAuthenticator")
    objs =jarray.array([group,myusername],java.lang.Object)
    strs =jarray.array(["java.lang.String","java.lang.String"],java.lang.String)
    try:
    invoke('addMemberToGroup',objs,strs)
    except WLSTException:
    dumpStack()
    and here's what I get:
    [java] weblogic.management.ManagementRuntimeException: javax.management.OperationsException: no such operation: addMemberToGroup
    I have also tried inverting attributes of the addMemberToGroup without success. The createUser("user","password","desc") and createGroup("group","desc") work fine but I don't manage
    to add a user to a group with WLST.
    Am I doing it the wrong way?
    Thanks,
    Luc

    Hello Luc,
    I am able to easily add a user to a group w/o a problem. I did this,
    connect("weblogic","weblogic")
    cd("SecurityConfiguration/mydomain")
    cd("weblogic.security.providers.authentication.DefaultAuthenticator/Security:Name=myrealmDefaultAuthenticator")
    cmo.createUser("foo","weblogic","foo-1")
    cmo.createGroup("mygroup","hello")
    cmo.addMemberToGroup("mygroup","foo")
    Thats it, did not get any exception. Try printing the cmo to see if the
    cmo is currectly populated.
    Thanks,
    -satya
    Luc Dewavrin wrote:
    Hi,
    I have problems with wlst to add a user to a group
    The method "addMemberToGroup" of the security MBean DefaultAuthenticator doesn't seem to be accessible from wlst.
    Here's the part of the code (note that the group and user already exist, i am sure of it)
    myusername="BIGREZADMIN"
    group="BigRezAdministrators"
    cd("/")
    cd("weblogic.security.providers.authentication.DefaultAuthenticator/Security:Name=myrealmDefaultAuthenticator")
    try:
    cmo.addMemberToGroup(group,myusername)
    except Exception:
    dumpStack()
    And what I get:
    AttributeError: addMemberToGroup
    Also tried like this:
    cd("weblogic.security.providers.authentication.DefaultAuthenticator/Security:Name=myrealmDefaultAuthenticator")
    objs =jarray.array([group,myusername],java.lang.Object)
    strs =jarray.array(["java.lang.String","java.lang.String"],java.lang.String)
    try:
    invoke('addMemberToGroup',objs,strs)
    except WLSTException:
    dumpStack()
    and here's what I get:
    [java] weblogic.management.ManagementRuntimeException: javax.management.OperationsException: no such operation: addMemberToGroup
    I have also tried inverting attributes of the addMemberToGroup without success. The createUser("user","password","desc") and createGroup("group","desc") work fine but I don't manage
    to add a user to a group with WLST.
    Am I doing it the wrong way?
    Thanks,
    Luc

  • How can  I  restrain the user login portal once, in the same time ???

    Hi
    I need to restrain the user can't repeat to login portal ....
    to reduce portal loading
    How can I restrain the user login portal once, in the same time???
    Which attributs in Identity Manager or amconsole I can do it to restrain the user ??
    tks

    Does your portal support anonymous access? If so, make sure you are using the authlessanonymous mode. This mode only creates one session that is shared for all anonymous users. This is much more efficient than anonymous access, which creates a session for each anonymous user.
    I have no other recommendation for limiting users to a single login. In general, web applications do not behave like this. What if a user closes their browser without logging out? Does the user have to wait until the session times out in order to log back in again?
    The same thing is true for users that are mobile. If a user leaves their office without logging out and then attempts to log in with a laptop in the conference room, then access will be denied in your implementation. Users do not expect this type of limitation being built into the system.
    If you are having problems scaling, then you need to look at your architecture and perhaps add some more resources. Also, make sure you are making efficient use of the authlessanonymous access mode as stated above.
    - Jim

  • How to  restrain the user login portal once, in the same time??

    Hi
    I need to restrain the user can't repeat to login portal ....
    to reduce portal loading
    How can I restrain the user login portal once, in the same time???
    Which attributs in Identity Manager or amconsole I can do it to restrain the user ??
    tks

    Does your portal support anonymous access? If so, make sure you are using the authlessanonymous mode. This mode only creates one session that is shared for all anonymous users. This is much more efficient than anonymous access, which creates a session for each anonymous user.
    I have no other recommendation for limiting users to a single login. In general, web applications do not behave like this. What if a user closes their browser without logging out? Does the user have to wait until the session times out in order to log back in again?
    The same thing is true for users that are mobile. If a user leaves their office without logging out and then attempts to log in with a laptop in the conference room, then access will be denied in your implementation. Users do not expect this type of limitation being built into the system.
    If you are having problems scaling, then you need to look at your architecture and perhaps add some more resources. Also, make sure you are making efficient use of the authlessanonymous access mode as stated above.
    - Jim

  • How to add multiple users to a role in ECC 6.0

    How to add multiple users (say 1000) to a role in ECC 6.0?

    Hi
    You can actually add multiple users to a role using transaction SU01. From SU01, use the menu Environment->Mass Changes.
    Here you can manually add the users, select them by address or authorisation data. Once you have your user list, you can then add or remove roles and/or profiles.
    Secondly , You can use SU10 to do mass changes to multiple users including role assignments per logical systems
    Also check the following link:
    http://www.sap-img.com/bc021.htm
    I hope this should do it
    regards
    Chen

  • How to use MDM users in portal?

    Hi All,
    How to use MDM users in EP, my requirement is,
    i have an users, if the user log's in portal, depending on the portal user login, we need to assign a perticular region for that user such as europe, south america, asia....,
    before he log's in portal we need to confirm that user belongs to perticular region in MDM.
    we maintain users in MDM, when an europe user log's in portal we need to assign him europe system so that he can login in to that europe system. when a asia user log's in portal we need assign him asia system, so that he can login in to that asia system.
    how to do this in portal
    Regards
    jagadeesh

    Hi Jagaeesh,
    You need to configure sso between MDM and EP. You can do it with the help of UID method as there is no logon ticket method available with MDM 5.5.
    And for region specification, you can create different portal desktop, framework, theme for diffreent region users inside portal and define portal's master rule as per accordingly by creating user groups inside portal and assigning different desktops to different region user's.
    Then, create contents (like roles, worksets, pages, iviews, km contents) inside portal according to region and assign those contents to different groups as per requirement.
    So that, deplending on region user's, when they login into portal would see different content inside it.
    Regards,
    Sen

  • How to add a User Defined Field in OUBI

    Dear Experts
    I would like to find out how to add a user defined field into OUBI from a Customer Care & Billing source system. If anyone could list the steps involved or point me toward a source of documentation that sets out the steps involved it would be much appreciated.
    Cheers
    Tim

    Is there anyone out there who has had experience using OUBI with CC&B?

  • How to Add a user defined field in transaction-PKMC?

    Could anyone tell me the step by step process of how to add a user defined field in transaction-PKMC?
    Moderator message: please do some research before posting.
    Edited by: Thomas Zloch on Jan 16, 2012

    Is there anyone out there who has had experience using OUBI with CC&B?

  • How to add a user defined HTTP header field?

    Hi, everyone!
    I want to add a user defined HTTP header field to a HTTP
    response header.
    I use the following statements in testHeader.jsp
    response.addHeader("myheader", "123");
    response.sendRedirect("middleHeader.jsp");
    in middleHeader.jsp,
    out.print(request.getHeader("myheader"));
    But the output in middleHeader.jsp is null!
    How to add a user defined HTTP header field to a HTTP
    response header? Are there some sample codes?
    Cheers,
    George

    the send redirect actually creates a new request (through the client) and thus a new response
    thus the headers you set in the response are gone for the next request/response
    You can try servletDispatcher.forward

  • How to add a user to the wheel group?

    How to add a user to the wheel group in leopard?

    In Leopard, users can be added to system groups using 'dscl'. For example, while logged into an "admin" account, the command below can be entered using "/Applications" > "Utilities" > "Terminal.app" to add a user "username" to the "wheel" group:<pre>
    sudo /usr/bin/dscl . -append /groups/wheel GroupMembership username</pre>
    If you prefer a GUI, "Workgroup Manager.app", included with the Leopard version of the "Server Admin Tools" can be used.
    http://www.apple.com/support/downloads/serveradmintools105.html

  • How to add a user to an existing group????

    Can't seem to find how to add a user to an existing group (staff). I am trying to share data (rw) between my admin account (root) and a development user. On any other UNIX system I would just add the user name in the /etc/group file & logout/login in. It don't work here!
    Suggestions??
    thanx
    mt

    OS X doesn't use /etc/groups. This file is present but does nothing AFAIK.
    Leopard uses directory services to handle groups and users.
    membership in groups with GID>500 can be handled from GUI in system preferences->accounts. other groups can be handled from terminal with dscl (directory services command line). do man dscl for details.
    to add a user to a group you'd do
    sudo dscl . append /groups/groupname GroupMembership username
    However, there should be no need to do it with "staff". every user with an account on your computer is a member of staff by default.

  • How to add iphone user agent in safari browser running on windows xp

    How to add new user agent (iphone user agent) to safari browser(version 3) which is running on windows xp os .
    thanks in advance

    UPDATE:  We were able to further identify the root cause of the problem to be when anonymous access is turned off and the subweb is set up to use basic and integrated authentication (IIS settings).  To test this, we removed integrated authentication (leaving only basic authentication in place) and the problem was fixed.  However, this is not a viable solution as we need to use integrated authentication (for various other reasons).

Maybe you are looking for

  • Snow Leopard 10.6.4 not showing Windows 7 Machines on Finder's Shared

    Hi, After a long, LONG, LOOOOOOONG time searching for an answer and trying different settings all over making a Mac OS the Master Browser finally solved the problem for me. This is not about sharing, this is not about any of the other thousand issues

  • Converting .rdf data model to xml output thru conc program

    Dear Members : I am trying to convert .rdf data model(Reports 10g) into XML tag, by creating Concurrent Program Report Definition, setting output type as XML.But when running the CP, getting following error: XML Parsing Error: XML declaration not wel

  • Assembly failed due to Broken DCs

    Hi All, I have around 8 activities which were waiting for import on cons, after importing them (remember cons is not configured for runtime systems) in the assembly stage for all the activities assembly failed. On checking i came to know the <b>track

  • Bytes to image at server

    Hi I am doing client server application which send image from client to server... i am able to send image bytes from client to server ..But at server I am not able to display image which i sent from client............. Can you guys plz tell how i can

  • 10g Forms in Normal Mode

    Dear All, I have installed first time Oracle Developers Suite 10g 10.1.2.0.2. When I try to open Forms these open in Web mode. Is there any way to open forms in Normal Mode. Developers Suite is installed in Windows 2003 OS. Also how to use forms from