Pre-populate Portal sign-on screen

Is there a way to pre-populate the portal sign-on screen with user-id and password ? We are in the process of migrating users to SAP portal, and are looking at re-directing (auto login if possible (or) pre-populate login fields at the least) them to the new site when they access the old site.
I reviewed the HTMl source of the portal login page, but did not see a way to pass parameters in the URL.
Thanks in advance for any suggestion !

Hi Srikanth,
You can send your user name & password to the portal as url parameters like:
http://<server>:port/irj/portal?j_user=your_user_name& j_password=your_password
Hope this helps,
Best Regards,
Nibu.

Similar Messages

  • Use formsweb.cfg to pre-populate database field on login screen?

    Hello,
    Is it possible to configure formsweb.cfg to pre-populate the 'Database' field on the Oracle forms login screen? I still want users to be able to overwrite what's entered there but just have it populated with something by default.
    Thanks,
    Andrew
    Edited by: Andrew V on Nov 16, 2011 12:33 PM

    Hi,
    In Forms 10g you can set the userid parameter to something like "@DATABASEID LOGON_SCREEN=YES", where databaseid is your database server.
    In Forms 11g this doesn't work so well, but I got round this by doing the following in our menu form, if you haven't got a single menu form then you may need to do this in all your forms where the user isn't already logged on when the form opens.
    First off you need to set the userid parameter to something like "@DATABASEID".
    Next an on-logon trigger is required in your menu or first form, I used the following:
    on-logon trigger
    DECLARE
    cn VARCHAR2(80);
    BEGIN
    ** Get the connection info
    ** If userid paramater in formsweb.cfg is set to '@<database>' or
    ** '@<database> login_screen=true' then this will put <database> into database field
    ** in default logon form
    cn := Get_application_property(CONNECT_STRING);
    if instr(cn,' ') > 0
    then
    cn := substr(cn,1,instr(cn,' ')-1);
    end if;
    LOGON(null,'@'||cn,TRUE);
    if form_success
    then :global.login_success := 'TRUE';
    end if;
    END;
    Also, to deal with the situation where a user decides to click cancel in the logon screen, you need to put the following at the start of your wnfi trigger.
    when-new-forms-instance trigger
    default_value('FALSE','global.login_success');
    if :global.login_success != 'TRUE'
    then
    erase('global.login_success');
    exit_form;
    end if;
    erase('global.login_success');
    Edited by: Ady Keeling on Nov 16, 2011 2:38 PM

  • Need to pre-populate and Extract data from static PDF form

    Hi Jasmin or Jayan or anyone else that can answer.
    I have a requirement to use Digital Signatures.  Because of that, the forms must be static PDFs and the form variables will be “document form”.  I want to pre-populate the form via an SQL query and custom render process and render it as PDF so that the submitter can apply a digital signature when he/she is done and ready to submit for approvalSubsequent approvers will also digitally sign the form.  I know that I will specify the custom render to render only once and thereby preserve the signature(s) on the form.  I do, however, need to extract data from the form to control the business process.  I cannot access the data in the form the same way I do with an xdp and I also cannot pre-populate the same way I do with an xdp. 
    Any suggestions on how to attack this?

    Parth, one problem with your approach is he will submit PDF and therefore you won't be able to put the PDF in a variable that's suppose to contain just xml.
    The prepopulation should be the same. If you start off with an xdp, then you will call a render service that merges data with your xdp to create a PDF.
    Now when you submit, you will submit the entire PDF back in the Document Form variable. In Workbench, you can use the FormDataIntegration service to extract data from that PDF that's being stored under Document Form var/object/document and put it in an xml variable. Then you can just use xPath to do your condition.
    I'm assuming you'll just pass that same Document Form variable to the next step, because if you do any change to the PDF it'll brake the signature.
    Let me know if I missed anything.
    Jasmin

  • Why do basic dates pre-populate on a create order with reference?

    When manually creating a production order with reference to another, we sometimes have basic dates pre-populate and greyed out/protected when the 1st screen comes up.   Most of the time the dates are open for input and unpopulated.  Certain materials cause this to happen.  We do not know why.  Can you tell me what causes this?  We need to know how to predetermine this circumstance to use a BDC. 
    Thanks,
    Ada

    Hi Caetano,
    Thank you for your response.
    I have checked, I have already assigned the work center and the operation in OPJG.
    I have created a task list group in CA11 in which I have filled in the work center, the base quantity and the machine time.
    When I try to create a production order, the standard sequence and the operation are created (it was not the case before). But the Start date is still not updated. I have the following error message :
    "Not all standard values maintained
    Message no. C7067
    Diagnosis
    You have not maintained all standard values in the operation.
    Procedure
    Maintain the standard values in the operation."
    Please consider that I am a junior PP consultant and if it is possible thanks to be clear and precise in your responses.

  • Pre-populate the process form as part of Role Alignment - Need suggestion

    Hi,
    As part of implementation we are going to take over the Provisioning of AD (Via Groups-->Access Policy) using OIM which was initially configured to provision manually. Now as part of migration we required to assign a base group to the users who has already AD reconciled resource (and align it with policy via SQL updates -->POL_key is process form, OIU_POLICY_BASED in OIU table). We are doing this as part of direct SQL updates. The other part of the requirement to align the process form values using the configured pre-populate adapters (for e.g. if the current value of any attribute is X and the prepopulate adapter suggest that it should be Y then the migration should also update this attribute.) We tried to use the prepopulateProcessForm API of tcFormInstanceOperationsIntf but it seems this is working only when the System Validation is in Pending state. The other option we are thinking of putting java code and then call the prepopulate adapter by passing each input params and updating tha value via API if any update is required. Just wondering if there is anything else we can use as part of bext practices. If anyone has done this kind of implemntation please let us know your inputs. Thanks

    Hero,
    You want to ...
    1. create users
    2. give them privileges
    3. assign them to groups
    4. assign a default groups to users
    You will need to do this in the following sequence of steps...
    1. Populate the user entries in OID, and assign the default group
    2. Create the groups in OID and assign the users to them
    3. Assign the appropriate portal privileges to the groups
    For step 1 and 2, I'll have to refer you to the OID Administrator's Guide for Release 9.0.2.
    This document contains a lot of good information, but in particular, you'll want to review Appendix I ...
    "Migrating User Data from Application-Specific Repositories". This addresses the LDIF migration tool
    and describes the schema elements needed for the IAS user accounts.
    For step 3, the easiest way would be to assign the privileges to the groups through the user interface. Once the groups are defined
    in OID, you can select them via the Portal UI to assign the portal privileges to them.
    The proper place to locate portal instance-specific groups is under the portal instance group base, which is
    cn=portal_groups, cn=groups, <subscriber_base>. The following white paper
    may be helpful to understand the organization of the directory information tree.

  • PP03 - Custom OM Action - Pre-populate fields on Infotype 1013

    I have a requirement to configure a OM action via PP03.  One of the infotypes getting created is the 1013 Employee Group/Subgroup related to the position.  I need to have the screen pre-populate both the Employee Group and SubGroup values when this screen pops up.  On the PA side, you can do this multiple ways.  However, on the OM side, I'm not sure what way this could be done?

    Keith,
    I cannot access the system right now.
    I can update you on Monday the earliest.
    Let's wait for others' responses.
    Regards,
    Dilek

  • How to pre-populate fields for new entry in table maintenance

    Hey everyone,
    I have a table maintenance set up that I would like to pre-populate two date fields when the user creates a new entry or copies an existing entry.
    I can do this by adding a PBO module for the maintenance screen but then if the screens are regenerated my changes are lost so this is not ideal.
    I've also found that I can use the events (05 and 21 I believe) to set the dates but using these events I can not fill in the values in the screen so this is also not ideal.
    Is there an event that can be used to pre-populate fields in a table maintenance screen? If not, what is your suggested method for accomplishing this?
    Thanks in advance! I appreciate any help!

    Hi,
    Please use the below links...
    [Table maintenance Field Validations;
    [http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=93454609]
    Thanks,
    Manish

  • Pre-Populate Text Filed Adobe X Pro Form

    All,
    I appreciate any assistance you can give. I am looking for a way to have text fields pre-populate information after a user selects an item from a dropdown menu.
    For example:
    Dropdown menu 1: User selects South Carolina
    Drop Down menu 2: User selects product name
    Text fields populate with the product information.
    Dropdown 1 and 2 will dictate what product information will be displayed.
    Is this possible? I have attached a screen shot to see what I am looking to do.  Please let me know!  Thank you!!!

    The product information would have to be in the form and not linked to an external source. So lets say the user selects SC on dropdown 1. They then select Timberline on dropdown 2. The SC selection will be rule to have a specific set of product options to have in the dropdown. When the user selects Timberline in dropdown 2, the information in the text fields would have to auto-populate for information only available in the SC state and that specific product. 
    For text box 1 (header is Colors Available) this would generate the words Black, White, Green, Blue. These would be loaded possibly in that text box? These colors are available for SC.  Now, if the user would select NC in dropdown 1, and Timberline in dropdown 2, it would display a different set of colors available in text box 1 (Colors Available) such as Orange, Grey, etc.
    This is essential how it would work for the text fields. The triggers would be based on the state and product selected in the drop down boxes which would autopopulate the rest of the text boxes per section.
    Does this help?  Thank you for the reply.

  • Pre-populate account pin number

    Hi,
    I would like to be able to create a user account and pre-populate the windows 8.1 sign-in pin number:
    And can this be done for a domain user?
    Dave.

    Pin is local to the device and is managed by the user.
    ¯\_(ツ)_/¯

  • Pre-populate (bulk load) the OID

    gurus,
    i'm using following -
    Database --> Oracle 9i
    Portal --> Oracle Portal 9iAS Release 2
    there are about 10,000 portal users. i would like to pre-populate the OID from the existing employee repository (employee repository is a custom Oracle database).
    question - is there a white paper that gives u all the api's required to do so. i've to accomplish the following tasks -
    1. create users
    2. give them privileges
    3. assign them to groups
    4. assign a default groups to users
    i need to achieve above as part of pre-populating the OID.
    ideas anyone ....?
    thanx a bunch.

    Use the DBMS_LDAP package in the database and SQL commands in a PL/SQL package to create the database account and then create the OID account with a RAD for the database login connection.
    -- Create new user's database account
    v_sql := 'CREATE USER "' || new_user || '" IDENTIFIED BY ' || dbpassword ||
    ' DEFAULT TABLESPACE NAME TEMPORARY TABLESPACE TEMP';
    EXECUTE IMMEDIATE v_sql;

  • Pre-populate the OID

    gurus,
    i'm using following -
    Database --> Oracle 9i
    Portal --> Oracle Portal 9iAS Release 2
    there are about 10,000 portal users. i would like to pre-populate the OID from the existing employee repository (employee repository is a custom Oracle database).
    question - is there a white paper that gives u all the api's required to do so. i've to accomplish the following tasks -
    1. create users
    2. give them privileges
    3. assign them to groups
    4. assign a default groups to users
    i need to achieve above as part of pre-populating the OID.
    ideas anyone ....?
    thanx a bunch.

    Hero,
    You want to ...
    1. create users
    2. give them privileges
    3. assign them to groups
    4. assign a default groups to users
    You will need to do this in the following sequence of steps...
    1. Populate the user entries in OID, and assign the default group
    2. Create the groups in OID and assign the users to them
    3. Assign the appropriate portal privileges to the groups
    For step 1 and 2, I'll have to refer you to the OID Administrator's Guide for Release 9.0.2.
    This document contains a lot of good information, but in particular, you'll want to review Appendix I ...
    "Migrating User Data from Application-Specific Repositories". This addresses the LDIF migration tool
    and describes the schema elements needed for the IAS user accounts.
    For step 3, the easiest way would be to assign the privileges to the groups through the user interface. Once the groups are defined
    in OID, you can select them via the Portal UI to assign the portal privileges to them.
    The proper place to locate portal instance-specific groups is under the portal instance group base, which is
    cn=portal_groups, cn=groups, <subscriber_base>. The following white paper
    may be helpful to understand the organization of the directory information tree.

  • How to add a picture in Background of Sing in and Sign out Screen

    Hi MOSC,
    How do i add a picture in the background of Sing in and sign out screen in HCM People Soft 9.2 and People Tools 8.53.
    Also, how do i get rid of the Language are from the sign on page.
    thanks,
    Response will be greatly appreciated!
    User 501241

    Ha, I lost the reply I had typed up and I see Jim replied while I was writing it.
    In addition to his comments about changing the file.  It's actually signin not signon.html. Jim has the right path though. signon.html is the file that redirects the client to URL=../psp/ps/?cmd=login command which displays signin.html.  It's at /home/psadm2/psft/pt/8.53/webserv/peoplesoft/applications/peoplesoft/PORTAL.war/ps/signon.html. 
    I also gave two blog posts on the topic.
    Creating a Custom PeopleSoft Sign On Page - Remote PSAdmin and Hide the ‘Windows 7 is not supported’ message | The PeopleSoft Tipster Blog
    The first tells you how to add the background in the comments.  The latter discusses customizing the file for other reasons and gives some additional info.
    Oh, I also mentioned that the languages are all in a td tag with the class name of pslanguageframe.  Which may help you find it, because if I remember the language codes use JSP variables.  Just edit the table structure as you like and aligning it to your liking.

  • PDF vrs. XML   Pre-populate fields in PDF created in Acrobat 7.0

    After converting some interactive/dynamic templates from Acrobat 5.0 to 7.0 we can no longer pre-populate fileds, including the barcode. With the 5.0 version we use FDF to populate the fields including the barcode 3 of 8, but with 7.0 it does not work and we were advise to use XML.
    We've been trying XML but can't make it work. Does any one know where I can get some sample coding?
    Please help!

    Hi Laura:
    Can you elaborate a bit more on "converting some interactive/dynamic templates from Acrobat 5.0 to 7.0" and "pre-populate"?
    If you were converting the template in Adobe LiveCycle Designer (comes with Acrobat Professional), then FDF import wouldn't work.
    However, if you are executing the same action via Acrobat then FDF and xFDF import/export should still work.
    Also, for designer based forms, you also have the option of merging the data into the PDF form using Adobe LiveCycle Forms (A server based product).
    Another server based solution is to Reader Extend your PDF form to allow local import/export of data using Adobe Reader.
    It really depends on what you want to do.
    So options are this:
    If your form is a Designer based forms:
    - Manually Import Data (in XML) into PDF Form using Acrobat Professional
    - Manually Import Data (in XML) into PDF Form* (Reader extended PDF form) using Adobe Reader
    - Merge Data Programmatically (in XML) into PDF Form using Adobe LiveCycle Forms
    If your form is an AcroForm (acrobat based form)
    - Programmatically merge FDF data into PDF Form using the FDF toolkit/Acrobat SDK
    - Manually Import Data in FDF/xFDF into PDF Form using Acrobat Professional.
    Rob W.
    http://www.ensemble.com/solutions/adobe

  • How to remove "Other..." from my sign-in screen?

    How to remove "Other..." from my sign-in screen?
    I was trying to change an Administrator Account by starting from my Leopard Install DVD and from the Utilities menu choosing Reset Password, etc. A longish story involving my inability to shut-down the computer while others are signed in but not actually using the computer. In Tiger I was able, since moving to Leopard I need to go into each of their accounts and manually log each of them out. A headache.
    For right right now I need to get rid of the Other... account name, etc from my sign-in screen. How do I do this in plain English please? I find all this Admin jargon does my head in.
    Cheers, SZ

    V.K. wrote:
    You need to disable the root user. From what I understand you enabled it from the install DVD's password reset.
    Use [these instructions|http://docs.info.apple.com/article.html?artnum=106290] to disable it.
    Those instructions led me down this path, I have not the head to deal with them again today. My eyes glaze-over listening to myself read them aloud. SZ
    Message was edited by: ShakuZen

  • Can I edit a form in Muse so that it will pre-populate a PayPal transaction?

    I need to include a way for people to make donations on the website I am creating. I know how to use the PayPal widget to add a "donate" button, but I need more than that. I want to have a form the people fill out ON MY WEBSITE, and then when they click the "donate" button it should take them to PayPal where the info they entered is already entered into PayPal's form.
    PayPal includes instructions on how to tweak the html code for a form so that the correct variables will be picked up by PayPal... however I'm not sure if there is a way to do what I need to do without creating a form from scratch in html and then importing it to Muse that way (via Object>Insert HTML...) I'd rather not create the form from scratch if I can avoid it, simply because I'm not that well versed in html code.
    Thanks for any suggestions you can offer.
    Laura

    That would be the correct way to test out the pre-populate function.
    https://www.paypal.com/in/cgi-bin/webscr?cmd=_pdn_xclick_prepopulate_outside
    http://stackoverflow.com/questions/15491382/pre-populate-send-payment-data-on-paypal
    Thanks,
    Sanjit

Maybe you are looking for

  • Drag and drop issue, please help.

    I can no longer drag and drop photos within photoshop elements 12.  When working with a layer, I want to move it to a layer within another existing file, and no longer have the option.  The only way I have fixed the issue in the past is uninstall and

  • Error in Creating WS Rule (Manual)

    Hi, I face a customizing error reading 'Customizing Error in Work Schedule Rule 2 T2 01 WSRTAP2 ' while creating WS Rule. Details are as below: I. Public holidays - Independence Day, Gandhi Jayanti & Republic Day with fixed data were created & then a

  • I just got my iPhone 4!!!

    So, I got that email from Apple saying my iPhone would be here today, but I didn't believe it. Well, Fed ex just dropped it off about 15 mins ago! So, if you got that email from Apple, you will probably be getting it today!

  • How can one transfer emails and contacts from Zimbra to gmail, without it being deleted if the Zimbra account is shut down?

    How can one move Zimbra Contact list and emails to a gmail account, so they won't be deleted if the Zimbra account is shut down?

  • Billing Error - The item is not relevant for billing

    Hi, we face a problem when creating billing document which the error said "The Item is not relevant for billing" Check the item category from original SO, the Item category is set "billing relevant". But the DN detail, it indicates this item was "not