Netweaver Gateway user creation and self registration Procedure

Dear All,
Can you please provide the complete step by stpe by process for creating netweaver gateway user creation and self registration process
by useing templates.
Thanks & Regards.
      aYYaPPa.

Hi Sriram
Thanks for immediate response.
I went throgh that link whcih is posted by you.
But i need some more explosure to undesrtand user creation by using that templates
Thanks,
Ayyappa.

Similar Messages

  • Companies and self-registration.

    Hi,
    I would like to implement self-registration module at
    the portal (EP6SP2) with an option to TYPE the name of
    the company the user belongs to, which can be used later
    as "company" in the portal meaning. It is almost like this
    (http://help.sap.com/saphelp_ep60sp2/helpdata/en/8e/53921c6d00064b8c58e528fd914dd4/content.htm),
    with one big BUT. The list of the companies cannot be
    defined in ume.tpd.companies property of ume.properties
    file before the users will type it. It have to grow up
    with the portal and the new companies the users type in.
    Is it possible to add companies to that list programmatically?
    To save server restart after that?
    Meanwhile I add a company the user typed at the self-
    registration procedure as an attribute of IUserMaint,
    but if I'd like to use it as companies in the portal
    concept - I can't.
    Thank you,
    Yuri

    Yuri,
       I am facing a similar problem. Were you able to find any solution. The situation is bit more complex at my end. I have approximately 5000+ Suppliers and each of them will have one designated Admin who will be handling the User Administration of users registering from that supplier (could be 1 to 10 from each supplier). Also he will need to assign them roles. Now before he can assign them roles he himself will need to have 'Role Assigner' rights. But i still need to figure out how would the users be able to specify the company during the registration because without that how will the portal know which administrator to redirect him to.
    Any thoughts ?
    Vishal
    Message was edited by: Vishal Vadodaria

  • Difference between SAP NetWeaver Gateway 2.0 and SAP NetWeaver Gateway productivity accelerator for Microsoft

    Hi Experts ,
    Can anyone tell me the difference between SAP NetWeaver Gateway 2.0 and SAP NetWeaver Gateway productivity accelerator for Microsoft ?
    Best Regards,
    SK

    SAP  Netweaver Gateway 2.0 is a product for Exposing ERP data as OData for external consumption which is independent of any Microsoft product. Using this you can model OData services and Expose them for light weight consumption. You can use this in use cases where  you just want to consume the OData in some client or so, and you do not want any kind of accelerators to help you in development or in your integration.
    GWPAM is an interoperability framework from SAP that leverages SAP NetWeaver Gateway and Microsoft technologies enabling customers and partners to easily and quickly compose solutions that consume and extend SAP throughout Microsoft technologies for on premise and on demand deployment. With GWPAM you get components like
    GWPAM Visual Studio Add-On,GWPAM Template,GWPAM Project,GWPAM Outlook Add-In which are very much Microsoft specific.

  • Roles for user in supplier self-registration

    Hello everyone,
    I was checking the configuration guide for Strategic Sourcing and for Servece Procurement and I have a doubt.
    For supplier self-registration is needed an anonymous user, but in the guide for Strategic Sourcing says that the roles for this user are SAP_EC_BBP_CREATEUSER and SAP_EC_BBP_CREATEVENDOR, however, in the guide for Service Procurement says that the roles are SAP_BC_BASIS_MONITORING and SAP_EC_SUS_ADMIN_VENDOR
    What are the right ones?
    Thanks,
    Ivá

    Hi,
    The user should  have the  roles: SAP_EC_BBP_CREATEUSER & SAP_EC_BBP_CREATEVENDOR.
    This user is maintainted in ROS client BSP service ROS_SELF_REG in Log on Data
    with ROS client, user ID and password.
    BR,
    Disha.
    Do reward points for useful answers.

  • ISE and Self Registration

    Ciao,
    is it possible to send user and password credentials, created by self registration, via mail or SMS ?
    For example:
    - user connect open ssid,
    - open browser and ISE, after redirect, present http guest portal with self-registration,
    - user compile form of self registration with email or phone fields,
    - credentials are send via email (not displayed as default).
    Thanks,
    Regards,

  • User creations and authorizations in ECC 6

    Hi,
         how to create users and authorizations? is it necessary to give authorization of SAP_NEW  to  new users?
    regards,
    suresh

    SAP_NEW automatically assigns relevant authorizations to a user in cases where there have been changes to authorizations brought in by support packages or upgrades.  This enables users to carry out their tasks as before even though there may be additional authorization checks required to perform the same task.  SAP_NEW only allows users to execute functions which are permitted by their assigned roles and/or authorization profiles.
    To create users and roles and assign roles to users (or users to roles) you can use transaction codes:
    SU01 - Create / Maintain users
    SU10 - Mass user maintenance
    PFCG - Create roles (which themselves can consist of other roles or authorization profiles)
    Keep in mind that SAP systems are based on a "Positive Authorization Principle" meaning that a user can only perform a certain task if he is specifically assigned that authorization.
    Edited by: Yiannis Petevis on Jan 27, 2009 11:24 PM

  • How to maitain user creation and authorization in Portal from CUA

    Hi ,
    I want to create portal users in CUA i.e. instead of creating users in portal I want to maintain user administration from CUA and also want to assign the required portal roles from CUA
    what configuration I need to perform.
    Please help.
    Sandip

    Hi Sandip,
    Please refer to User Information System  for CUA
    http://help.sap.com/saphelp_nw04/helpdata/en/52/671261439b11d1896f0000e8322d00/frameset.htm
    Hope it helps
    Regards
    Arun

  • User self-registration in the portal

    I am developing an Intranet site for a very large organization using OPortal 3.0. Since is impossible to manage personally every request to add users to the portal (over 3000 potential users) I need to provide a self-registration procedure so users can register themselves to the portal with certain basic privileges.
    Does anybody knows how can I implement such a procedure..?
    Fernando

    Hello Fernado,
    Look topic name "Using API's for Single Sign On" at this forum.There is an answer to your question.Also you can:
    'Create a procedure which does insertion to the tables portal30.wwsec_person$ and portal30_sso.wwsec_person$'.My procedure is:
    CREATE OR REPLACE PROCEDURE PORTAL30_SSO.CREATE_USER
    (username IN VARCHAR2)
    as
    begin
    insert into portal30.wwsec_person$
    (user_name,db_user,created_by_dbuser,created_by_user,password,sso_user_type)values (upper username), 'PORTAL30_PUBLIC','PORTAL30_PUBLIC','PORTAL30','guest','USER');
    insert into portal30_sso.wwsec_person$
    (user_name,db_user,created_by_dbuser,created_by_user,password,sso_user_type) values (upper(username),'PORTAL30_SSO_PUBLIC','PORTAL30_SSO_PUBLIC','PORTAL30','hy?<K2K0~4FA810F520ACB67945FFFA7F03925269','USER');
    end;
    After that create a form to this procedure and publish as portlet.Now put this portlet your 'Welcome' window.Here they will have default password 'guest'.Also you can take another parameters like name,lastname,address,etc.
    Don't forget to give public privilege to this procedure.

  • OIM 11gR2 - Self Registration Locale and Timezone

    Hi,
    I would like to prepopulate locale (usr_locale) and timezone (usr_timezone) when a user registers using self registration. I created a PrePopulationAdapter, updated SelfCreateUserDataset.xml in MDS, registered the plugin containing the adapter, restarted OIM, purged cache.. but the adapter is not triggered.
    I did the exact same thing for the Role field (which was already using a prepopulation adapter OOTB and I changed the adapter class) and it worked fine.
    I'm wondering if those fields (usr_locale and usr_timezone) are not prepopulatable from self registration ?
    Is there another way of setting their value automatically (I mean nor the end user, nor the approver filling the field)  ?
    SelfCreateUserDataset.xml :
    <AttributeReference name="Role" attr-ref="Role" type="String" widget="dropdown" length="255" required="true" available-in-bulk="false" lookup-code="Lookup.Users.Role">
    <PrePopulationAdapter name="XnetRolePrepopulateAdapter" classname="fr.xxx.XnetRolePrepopulateAdapter"/>
    </AttributeReference>
    <AttributeReference name="usr_locale" attr-ref="usr_locale" type="String" widget="text" length="80" required="false" available-in-bulk="false">
    <PrePopulationAdapter name="XnetLocalePrepopulateAdapter" classname="fr.xxx.XnetLocalePrepopulateAdapter"/>
    </AttributeReference>
    <AttributeReference name="usr_timezone" attr-ref="usr_timezone" type="String" widget="text" length="100" required="false" available-in-bulk="false" mls="false">
    <PrePopulationAdapter name="XnetTimezonePrepopulateAdapter" classname="fr.xxx.XnetTimezonePrepopulateAdapter"/>
    </AttributeReference>
    Thank you,
    Gaël

    I think you can but that would definitely require a cutom UI using ADF. Following could be the possibility:
    - As the user is not yet logged in, so there would be no way to identify as who the user is (patient or doctor) ?
    - So you may have one field with drop-down type patient/doctor at the top, once the user selects that field, you can show different attributes there after
    - As how to do it, refer to the OIM11G documentation for customizing UI

  • ISE 1.2 Guest Self Registration

    We are in the middle of an ISE deployment.  We are currently on version 1.2, Patch 3.  One of our use cases for ISE is Guest Access.  I am trying to understand more about self registration functions in ISE.  What are the capabilities? Can a user access a self registration page, enter credentials such as an email address, or phone #, and receive an email or text message with the guest account credentials?

    yes Guest can acess self registration page and enter his name company email phone etc...and do self registration and can get the credentials via mail and sms
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-2/user_guide/ise_user_guide/ise_guest_pol.html#pgfId-1482408

  • Portal Self registration issue

    Hi guys,
    I had activated Portal self registration with companies feature. what i did is ,  i assigned one role (ess portal role in which all my ess screens are covered) to authenticated group and  every_user_core_role to anonymous group and did necessary configuration in configtool . The problem i am facing is that my self registered users are able to see my portal role without any approval (via approve/ deny in user administration) which i want to show them after approval . PLs guide what might me the issue.
    Regards,
    Shwetang Saxena.

    Hello Soni!
    Please review and follow the steps mentioned here:
    Companies and Self-Registration with Approval (SAP Library - User Management of the Application Server Java)
    https://cw.sdn.sap.com/cw/docs/DOC-110636
    Hope this helps,
    Edison

  • User creation in portal

    HI,
    Can we change the registration flow in the portal, so that a mail is sent to the email address and only when the user clicks on the link in the mail, the user account becomes active. Until the user clicks on the link and activates his account the user account should not be active.
    Can we implement this in SAP EP?

    Hi,
    You could do it via the UME API, but you would have to code it yourself.
    You could create the user via the admin functionality (but with the standard email generation disabled for user creation) , and manually lock it, or create the user via a custom WebDynpro or JSP front end that users the UME API to create and lock the user.
    Then use a mail API to generate the email with a URL to a servlet running on the Portal server, which extracts an id of the user from the URL (either the username in unencoded form which is a bit dodgy, or using some unique number that you store against the user to be activated to associate the two) and again use the UME API to unlock the user.
    Should be fairly straightforward providing you are confident with:
    1 - Deploying a web application to J2EE engine containing a servlet.
    2 - Can figure out how to use the UME API
    3 - Can use a mail API like Javamail, which is straightforward
    Cheers,
    Steve

  • Branding the confirmation message after Self Registration in OIM

    Hi All
    Can you please let me know how can I brand (change) the confirmation message I am getting after the user having the Self registration .
    I want to change the following message
    Congratulations, testuser
    Your registration request has been sent.
    Your registration tracking request number is: 38
    You can use this tracking number to check the status of your registration in the Track Request section.
    Registration Summary:
    Name:      testuser
    Email Address:      [email protected]
    User Login:      testuser
    Thanks

    Change the two line in two file Agent.properties & Agent_en.properties on each node if it is cluster.
    find these wo line and change.
    Note[REGISTRATION_REQUEST_SUCCESS].text = Your registration request has been sent. Your registration tracking request number is: {0}
    <br>
    Note[REGISTRATION_CONFIRMATION_TEXT].text = <br><b>Congratulations</b>, {0} <br>Your registration request has been sent.<br><br>Your registration tracking request number is: <b>{1}</b><br>You can use this tracking number to check the status of your registration in the Track Request section.<br><br><b>Registration Summary:</b><br>
    Take a back up of oim.ear. Also you have to know packing and unpacking of jar and war
    These file you can find under
    $OIM_ORACLE_HOME/server/apps/oim.ear/iam-consoles-faces.war/WEB-INF/lib/OIMUI.jar//oracle/iam/selfservice/uself/agentry/resources/
    Restart your OIM manage server.
    HTH.

  • Windows 8 Sysprep - Can't skip local account creation and autologon fails, wrong admin password.

    Using Windows 8 x64 Enterprise, Sysprep pauses to ask me to create a local user, which I don't want.
    If I enable SkipSystemOOBE and SkipUserOOBE in OOBE under Microsoft-Windows-Shell-Setup sysprep (in oobe mode) will skip user creation and autologon works.  But it only works correctly once.  If I run sysprep again, when it tries to autologon
    it will say that I have the wrong password for the local account.  After I type in the password manually it works.  If I use the same password for the local administrator account as for the autologon account, it looks to have the encrypted password
    twice with an equal sign after it.
    What I need to know:
    How to skip local user account creation (we run on a domain but I have it connect through scripts later)
    How to fix the autologon issue
    Do I need the local administrator account enabled for this to work?
    I have my unattend.xml file attached.
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <AutoLogon>
    <Password>
    <Value>[removed]</Value>
    <PlainText>false</PlainText>
    </Password>
    <Username>[removed]</Username>
    <LogonCount>2</LogonCount>
    <Enabled>true</Enabled>
    </AutoLogon>
    <FirstLogonCommands>
    <SynchronousCommand wcm:action="add">
    <Order>1</Order>
    <CommandLine>c:\folder\abatchfile.bat</CommandLine>
    <RequiresUserInput>false</RequiresUserInput>
    </SynchronousCommand>
    </FirstLogonCommands>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
    <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    <NetworkLocation>Work</NetworkLocation>
    <HideLocalAccountScreen>true</HideLocalAccountScreen>
    <ProtectYourPC>3</ProtectYourPC>
    </OOBE>
    <TimeZone>Eastern Standard Time</TimeZone>
    <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
    <RegisteredOrganization>Company Name</RegisteredOrganization>
    <RegisteredOwner>CompanyName</RegisteredOwner>
    </component>
    <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <UserLocale>en-US</UserLocale>
    <UILanguage>en-US</UILanguage>
    <SystemLocale>en-US</SystemLocale>
    <InputLocale>en-US</InputLocale>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ComputerName>*</ComputerName>
    </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:[removed]/sources/install.wim#Windows 8 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

    The user accounts-creation page in Windows Welcome is suppressed if a user or a group is added to a local security group. Add a user or a group to a local security group by doing one of the following:
    Create a local user.
    Add a domain user to a local security group with the Microsoft-Windows-Shell-Setup | UserAccounts unattended installation setting.
    To suppress the user accounts-creation page in Windows Welcome, without creating a local user, use one of the following workarounds:
    Workaround 1
    If the computer is already joined to a domain, use the following XML example to add the Domain Users security group to the Local Users security group.
    <DomainAccounts>
     <DomainAccountList wcm:action="add">
      <DomainAccount wcm:action="add">
      <Group>Users</Group>
      <Name>Domain Users</Name>
      </DomainAccount>
      <Domain>FabrikamDomain</Domain>
      </DomainAccountList>
    </DomainAccounts>
    Because joining a domain automatically adds the Domain Users security group to the Local Users security group, the DomainAccounts command does not affect the membership of the Local Users group. However, using this XML example to join a domain will also suppress
    the user accounts-creation page in Windows Welcome.
    Workaround 2
    Use the Sysprep/Quit command to set the following registry value to 1:
    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\OOBE\UnattendCreatedUser
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • New user creation in AE- user group not getting assigned

    Hi All,
    Here is a typical case, wherein when we create a new user with AE for the production system, the user gets created and the roles are also assigned but the user group is not getting assigned. The user group is being fetched from a table from the backend and all that is working fine. Infact in order to test the configurations we even created a new user in the production instance of AE giving the development system as the target system for user creation and in this case the user was successfully created and the user group is also assigned. The problem is arising only when the target system is production system.
    Connectors are all working fine, but we are unable to think of a reason. Can somebody help us on this?

    Hi Vani,
    If you are provisioning the user group using user defaults, check  that production system is selected in the user defaults configured. Configuration -> user defaults. You can define any user default system, but for perticuticular user defaults that is applicable define all the systems, in which you want user defaults to be provisioned.
    Kind Regards,
    Srinivasan

Maybe you are looking for

  • Unable to evaluate workflow rule - Value too long for field

    Need help with a workflow error for a record update before the record is saved. There are 3 calculations that would be done in a particular order - all on number fields. Each time, I am overwriting existing values. The individual numbers could have u

  • Less than a Month into BT and already shocked

    I am so shocked by BT I signed up for broadband as I really liked the upload speed compared to virgin media or Sky but wow am I regretting it now.  I signed up and everything was delivered and setup just as they said it was and even my infinity 2 spe

  • Authenticating agains AD with Kerberos, by a user with an explicit UPN

    Hello My situation : I have a 2008 functionnal level domain with a technical name, lets say tec.domain.com I have for this domain configured an alternate UPN : domain.com (that is only a DNS domain name, not an existing AD domain) My users have a Sam

  • About light speed in WD ABAP

    Hi All, Does anybody have an idea on light speed rendering in Webdynpro ABAP, if so give me the details. Regards, Anil kumar G

  • Adobe Photoshop CS6 has stopped working - when printing

    I get the message "Adobe Photoshop CS6 has stopped working" regularly when I try to print a Photoshop document.  I end up having to recreate the document which usually then prints even though I have just dragged the layers across.  How can I resolve