How is the com.sap.runtime.logon.par implemented?

Hi all
I want to make some changes to the logon.par file such that if the user authentication fails, I have to fire a custom RFC to check if the user exists in that backend system.
First of all, I have no clue about how I am going to implement this. Before jumping deep, I'd like to understand how the existing authentication works. Where does the logon get information about the user credentials?
Any information would be very helpful.
Thanks
J

Hi J,
The logon process is implemented through two layers, of which the one you have referred to is just representing the user interface, whereas the real logon process is implemented through login modules; for the latter see http://help.sap.com/saphelp_sm32/helpdata/de/46/3ce9402f3f8031e10000000a1550b0/frameset.htm
On both layers, you can determin if the logon worked or failed (to be concrete, the login module determins this by its own, whereas in the logon PAR you can determin the result of this process). So both layers could be used to implement this. As the login module is more generic, I would advise to use this, as this is also documented and supported, whereas in the login module you would have to modify the implemented logic (by decompiling or putting your logic into some existing JSP). The internal logic of the logon PAR is not documented (but not hard to understand when checking the JSPs and/or decompiling the code).
Hope it helps
Detlev

Similar Messages

  • How to use transport and can u transport par files?(like runtime.logon.par)

    Hi team,
    I'm new to Portal and i need to move everything i made from DEV to PROD.
    Can you please help me out where i have to start?
    If i look at the transport (exporting) i see that i can only add iviews and pages, but i can't find my uploaded par file (com.sap.runtime.logon.par) within the content folder as it is in u2013 Support u2013 Portal runtime u2013 browse deployment -> com.sap.portal.runtime.logon.par.bak.
    Regards!
    Michael

    Hi!
    Oh yeh, its that simple :o thought i had to do this through transports but...
    I think i was just stressing out at that time
    A big thx,
    Michael

  • I need file "com.sap.km.cm.par" for EP6 SP 19

    Hello all:
    I need file "com.sap.km.cm.par" for EP6 SP 19. By error, I overwrote the original com.sap.km.cm.par and the com.sap.km.cm.par.bak into the deployment folder.
    Could someone indicate me where could I donwload it from?
    Thanks in advance,
    Alejandro Gómez.
    P.D.: Excuse my bad English.

    Hi Alejando,
    I will send it to you in some minutes.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers / actions on SDN. Thanks in advance!

  • How do i download  com.sap.portal.runtime.logon.par.bak

    I need to download com.sap.portal.runtime.logon.par.bak
    From what i understand, If you have the System administration privilege then you can download the par file from "System Administration"==>"Support"==>"Support Desk"==>"Portal Runtime"==>"Browse deployment"==>"ROOT"==>"WEB-INF"==>"deployment"==>"pcd"
    I was able to navigate this way. However, i cannot find this logon.par under this directory structure.
    In help.sap.com, i was told to Navigate to <J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd .There you can find com.sap.portal.runtime.logon.par.bak.
    How is this different from the earlier navigation? I don't know how to do this?  How exactly do i navigate this way?

    Sandeep
      I am sure that in the follwoing path, u can find the
    com.sap.portal.runtime.logon.par.bak
    <b><J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd</b>
    MAke a copy of the PAR and u can Pull it into the NetStudio !!!!
    Thanks
    Kay

  • Need to download com.sap.portal.runtime.logon.par

    hello friends
    we need to chang the look and feel of the portal display pages and for that purpose we need com.sap.portal.runtime.logon.par file
    can you all help us as to where we can find this par file so that we can download this file.
    we have still not installed the portal platform,we'll be doing that in the following week.
    Thnaking you,
    Anurag.

    Hi Anurag,
    This post will explain the steps involved for each element.
    No.      Portal Login page related questions
    1.      What is the associated par file for portal login Page ?
    2.      How to import the PAR file into Netweaver Developer Studio?
    3.      What are the different pages and their associated files in logon.par?
    4.      How to change text seen in the logon page ?  
    5.      What is authschemes.xml file? Do we need to change this file also ?
    6.      How to remove standard links like support, Register ...?
    7.      How to change or add new images ?
    8.      How to change only the branding image displayed in the logon screen of the Portal ?
    1. What is the associated par file for portal login Page?
    Answer : The par file related to login page of Netweaver Portal is com.sap.portal.runtime.logon.par. This is the standard
    logon component containing the code and resources used by the logon screens is shipped in a portal archive (PAR) file named com.sap.portal.runtime.logon.par.
    2. How to import the PAR file into Netweaver Developer Studio?
    Answer :   - Select File>Import .
    - Choose the option PAR file. Select Next and a popup window appears.
    - Select File>Import .
    - Choose the option PAR file. Select Next and a popup window appears.
    - In the window you have 3 text fields:
    The location of the par file,
    Project name (same as new par file name, preferably) and
    location for project to be saved
    3. What are the different pages and their associated files in logon.par?
    Answer :
    Logon page : umLogonPage.jsp
    Problem page : umLogonProblemPage.jsp
    Help (PW reset) page  : umHelpPage.jsp
    Reset Password : umResetPasswordPage.jsp
    Change Password Page: changePasswordPage.jsp
    Certificate Logon : umLogonCertPage.jsp
    4. How to change text seen in the logon page ?  
    The text seen on the logon page is not in the JSP page, but in properties files which are called by tags like the
    Welcome text : <%=logonLocale.get("xtit_WELCOME")%>
    In order to change "Welcome" to "Welcome to MyTravel" you have to :
               - Unzip the file umelogonbase.jar which you can find under dist\PORTAL-INF\lib
               - Find the file "logonLabels_" which contains your language;
                                           e.g. logonLabels_de.properties for german language,  *_en for English etc.,
    The default is in the file logonLabels.properties .
    - Find the key which is used in the tag and change the text after the equal sign.
    - Save the changed file and create a updated JAR file using a zip program. The file needs to be named exactly umelogonbase.jar
    - Put the JAR file back to location - dist\PORTAL-INF\lib
    You are done on this now.
    5. What is authschemes.xml file ? Do we need to change this file also ?
    Changing the Authschemes.xml file is required only if you want to change com.sap.portal.runtime.logon.par.bak file and point it to different par file. This is more for anonymous logon with named anonymous users and using anonymous as the authentication scheme. The anonymous users are not issued a SAP logon ticket.
    6. How to remove standard links like support, Register ...?
    The standard links are controlled with the UM settings
           - ume.logon.logon_help
    - ume.logon.selfreg
    You could also just comment out the lines if you want to hide.
    7. How to change or add new images ?
    To exchange the two images, which are by default on the logon page, do the following steps:
                          a. Copy the image(s) you want to use in your project in the the folder dist/layout
                          b. Find the < img src=""   > you want to work on in the umBotArea.txt
    Change the src attribute in the img tag to src="<%=webpath + "layout/myPic.gif" %>". The webpath is already defined in the file logon_proxy.txt and ready to use. In the Netweaver portal 6.0 SP9 and higher you have 2 images on the right side.
    8. How to change only the branding image displayed in the logon screen of the Portal ?
    If you want to change only the branding image displayed in the logon screen, you can configure this using the user management property ume.logon.branding_image
    Hope this helps the community in the launch of this ver 1.0, future versions could contain more changes and updations covering all other aspects of Netweaver Portal

  • Portal Runtime error when modifying: com.sap.portal.runtime.logon.par

    Hello,
    We need some help because we get 'Portal Runtime error: iView: N/A Component Name:N/A' error when trying to access portal logon screen.
    This is what we've done:
    We've modified com.sap.portal.runtime.logon.par file and we've uploaded it but it doesn't work. Because of the error, we've overwritten this file with the original one but now it's imposible to access portal.
    The situation it seems to be like before the modification of the .par file but we get the same error and can't access portal.
    Please, do you know what could be the problem?
    Thanks in advance

    Hi Belen,
    Here are the steps you would need to take
    1. import the original par file into the NWDS and name the project as  
        com.sap.portal.runtime.logon
    2. Make sure the project name is com.sap.portal.runtime.logon
    3. use winzip/winrar to extract the com.sap.portal.runtime.logon.par file in
        a local directory
    4.Under the lib you would find two jar files copy them and paste them in your project
       under dist>PORTAL-INF>lib directory
    5.move the files cert....till umResetPass....jsp into the  PORTAL-INF directory
    6. export the par to the server in question
    7. restart your server
    This should solve your problem..
    Thanks,
    Gokul

  • Com.sap.portal.runtime.logon.par information in Authschemes.xml

    Hello Portal gurus,
        I am trying to customize the Portal logon page by modifying the com.sap.portal.runtime.logon.par file. I modified the par file. But after this change, I wanted to change the authschemes.xml file to reflect the par file changes.
    When I downloaded the .xml file, I only found occurences of <b><frontendtarget>com.sap.portal.runtime.logon.certlogon</frontendtarget></b>, <b><frontendtarget>com.sap.portal.runtime.logon.basicauthentication</frontendtarget></b> and  <b><frontendtarget>com.sap.portal.runtime.logon.header</frontendtarget></b>
    Could anybody confirm, whether I have to rename these occurrences of com.sap.portal.runtime.logon with my customized logon .par file name between <frontendtarget> and </frontendtarget>?
    Points will be awarded for correct answers and useful suggestions.
    Thanks,
    ~~LB

    Hi
    Here is the procedure
    1. Start the Config Tool by executing <SAPJ2EEEngine_installation>\j2ee\configtool\configtool.bat.
    2. Navigate to cluster_data>server>persistent>com.sap.security.core.ume.service.
    3. Switch to edit mode by clicking on the pencil which is at the upper right area.
    4. In the tree, select authschemes.xml and choose Download. Save the file to your local directory
    5. Edit the local file: To select the new PAR file as the Logon page change the occurrence of all substrings com.sap.portal.runtime.logon to your
    project/PAR file name. All com.sap.portal.runtime.logon should be substituted with something like com.company.portal.runtime.logon (or whatever you project name is). Don’t remove the part behind it.
    (These are the profiles in the portalapp.xml and have the names default, certlogon, basicauthentication, header, and anonymous).
    6. Create a new node in the configuration tree in the Config-Tool for the edited file as follows:
    a.Select the node com.sap.security.core.ume.service.
    b. Choose the symbol for Creating a node below the selected node.
    c. Select the type File-entry.
    d. Choose Upload and select the custom file from your local directory.
    e. Enter a name for the entry, for example, authschemes_myHR.xml. By default, the name of the uploaded file is used.
    f. Choose Create.
    g. Choose “Close window”.
    h. The new node appears in the configuration tree.
    i. Go to Global server configuration>services> com.sap.security.core.ume.service and edit the property login.authschemes.definition.file.
    The value needs to be changed from authschemes.xml to authschemes_myHR.xml
    j. Restart the Portal. That is often not done and the changes will not appear.
    Rgds
    Srikanth

  • Not able to get JSP file in com.sap.portal.runtime.logon.par file

    Hi everyone,
        I have downloaded com.sap.portal.runtime.logon.par from portal. When i imported in NWDS , i am not able to find any JSP file.
    In folder PORTAL-INF, there should be this file but its not there. what could be the reason.?

    Hi Manu,
    Copy com.sap.portal.runtime.logon.par from filesystem:
    /usr/sap/<SID>/J<Instance number>/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/deployment/pcd/
    if there is issue with downloading.
    Please check this :-
    Portal Customizations Intro - Login Part 1
    http://wiki.sdn.sap.com/wiki/display/EP/ModifyingtheLogon+Page
    Changing the welcome text in portal header (EP5.0)
    Hope this will helps you.
    Regards,
    Arun

  • How to download com.sap.portal.navigation.contentarea par file

    I am trying to download the com.sap.portal.navigation.contentarea par file so that I can modify it and upload it with a new name.  I found the file in the Support Desk of the portal, and I downloaded it just fine.  However, when I download it it was in the form of com.sap.portal.support.browse.zip.  I tried to extract the files from there, and I came up with com.sap.portal.support.browse.
    How can I get this in the form of a par file to import into NWDS?  I have imported par files into NWDS before, but I nothing I am trying is working, because I can't get it into the .par or .par.bak formats.
    Thanks,
    Owen

    OK done...
    I am doing it and explaining you step by step same time...
    1. logged in to portal -> system administration -> support -> ROOT/WEB-INF/deployment/pcd
    2. clicked download link beside com.sap.portal.navigation.contentarea.par.bak file.
    3. downloaded/saved to my desktop
    4. Now I have file com.sap.portal.support.browse.default on my local machine.
    5. Right click on this . default file and select Add to "com.sap.portal.support.browse.default.rar" --- this is the important step...*
    6. Now you have com.sap.portal.support.browse RAR / ZIP file (no extension will be added, you can check it by file format).
    7. Keep on double clicking on rar file till you see .bak file.
    8. Once you are at / you see com.sap.portal.navigation.contentarea.par.bak then right click on this file and select "Exctract to specified folder" ...
    9. Change the path to where you want to store .bak.
    10. rename it to .par by removing .bak.
    That is it... its all yours to modify/customize...
    Hope this is clear to you.... let me know If you see anymore issues.
    As you asked for... I have done it in my system and writing it to you....
    -PradeeP

  • How to modify com.sap.portal.navigation.pagetoolbar.par

    Hi Experts,
               I have to create a link on the Page Toolbar(Next to "History") by the name "Add Favorites" which has the same functionality as that of the "Add to Portal Favorites" button present in the Option Menu in sap portal.
    I have imported the com.sap.portal.navigation.pagetoolbar.par in to my nwds , but i am not sure if this is the correct par.
    please tell me where exactly the modification needs to be done.
    Thanks in advance .
    Regards
    Shivas

    Hi,
    the PAR you are looking for is: com.sap.portal.pageToolbar
    As for the code: copy & paste the standard SAP code. For adding the page to the portal favorites:
    AddToPortalFavorites(). The code looks like:
    function AddToPortalFavorites(target , title, mode)
         try
              var obj = EPCM.getSAPTop().gHistoryFrameworkObj.GetActiveTrackingEntryValue();
              var context = obj.context;
              if(! target)
                   target = obj.getUrl();
                   title = GetUnescapedTitle(obj.title);
              var url = "/irj/servlet/prt/portal/prtroot/com.sap.km.cm.remote?ServiceType=PortalFavorites&";
              url += ("NavigationTarget=" + escape(target));
              url += ("&Title=" + encodeURIComponent(title));
    -> the JS with this code is located ar:
    /irj/portalapps/com.sap.portal.navigation.helperservice/scripts/FrameworkSupport.js
    To add the page to the browser's favorites:
    pageTitleBar.AddToFavorites("location")
    br,
    Tobias

  • How to use the com.sap.tc.webdynpro.progmodel.api.IWDView?

    hi,
       In every view, the "com.sap.tc.webdynpro.progmodel.api.IWDView view" is the parameter of the mothed wdDoModifyView(). I wonder, if we can make type com.sap.tc.webdynpro.progmodel.api.IWDView parameter in other methods which are designed by ourself. Thank you!

    Hi Daniel,
    This method wdDoModifyView will be raised every time the view is changed or refreshed (i.e. button pressed, drop down selected). This should cover all cases where you need IWDView, personally I can't think of another case where you need this parameter.
    As far as I know it is not possible but even if it is it's not recommended.
    But perhaps I'm wrong, I'll be happy to hear more opinions from more experienced SDNers...
    Roy

  • After deploying a customized com.sap.layouts.framework.par

    Hi all,
    after we deployed a customized com.sap.layouts.framework.par to our portal we got blank portal pages after login. Now we want to upload the SAP standard layout par file. How we can reload it? Or is it possible to deploy a patched SCA file via SDM? If this works how we can identify which software components needs to be redeployed.
    Thanks in advance for your support.
    Best regards.
    Mike

    Hi Mike,
    It is not recommended to modify directly in SAP namespace. You must always copy the standard PAR file and rename to com.<clientname>.layouts.framework.par -> customize -> upload on Portal so that standard is not affected.
    Now to recover from your current problem - do you have another Portal instance eg - QUALITY or PROD portal?,
    if so you can navigate in that system to System Admin - Support - Portal Runtime - Browse Deployment -  Download the com.sap.portal.layouts.framework.par.bak
    In the problematic system - go to System Admin - Support - Administrator Console - Archive uploader - Upload the downloaded working PAR. (You have to remove the .BAK extension before uploading)
    Hope this helps.

  • Location of com.sap.portal.dsm.par in SP23 of NW2004

    Hi all,
    For an issue discovered in SP22(SAP Note 1235253), SAP has provided a work around. Thats to take a file com.sap.portal.dsm.par from SP23 and deploy using SDM.
    But i am not sure in which SDA/SCA this particular file is present.
    Please let me know the SDA/SCA file where i can find com.sap.portal.dsm.par.
    Regards
    Venkatesh

    Hello,
    What I want to do is to put the logon page in the light framework page so that the users can login from the anonymous portal. After I customize the logon page I want to create aniview in the detailed navigation.
    If you want to see the jsp files that the com.sap.portal.runtime.logon.par file you have to go to the file system and copy the .par.bak file , rename it to .zip and all the files are there.
    But my question is if this is a par file that is deployed in the portal , why I cant create an iview from this par file? From other forums I have read they say that creating an iview from this par file it will put the logon page where you want. But when I try to create an iview from PAR File the com.sap.portal.runtime.logon doesn't appear in the list of available par files.
    Please help me on this and will give rewarding points.
    Thanks
    Luis

  • How can i find SAP Gui logon pad version

    how can i find SAP Gui logon pad version ?

    Hi,
    That's easy. At the top of the logon, you see a title bar with a general version indication. At the most left of it, you'll see an icon. Click on that and choose about SAP logon and you'll get detailed info.
    Eddy
    PS. Reward the useful answers and you will get <a href="http:///people/baris.buyuktanir2/blog/2007/04/04/point-for-points-reward-yourself">one point</a> yourself!

  • How to import com.sap.isa.backend.crm.webcatalog.pricing track to NWDS

    Hi all,
    I am working on B2B webshop product catalog pricing and I have to make some changes in Java classes which are supposed to be in com\sap\isa\backend\crm\webcatalog\pricing..........But i am trying to import them in NWDI perspective and I dont find this
    com.sap.isa.backend.crm.webcatalog.pricing track at all...
    Does any one know how can I import this track and where it is.... all associated Java Classes in this track to my NWDS?
    Regards,
    Sam

    Hi Shantoo,
    Thanks for helping me with this. So you mean to say, I have to import crmhomeshrextsap.com ??
    If that is the case, I already imported but i am unable to find this track com.sap.isa.backend.crm.webcatalog.pricing .
    If you could access this track could you please let me know the name of one Java Class atleast that is present in this track?
    Also I can only find the custom Z classes that I have written in crmhomeshrextsap.com , but some how not the standard SAP classes.
    If i say ctrlshiftT, i can search for standard classes and open them, but if i click in "Link with Editor", I cant find the source of the class....but  "Link with Editor" still works for my custom classes.
    Any help with this will be higly appreciated. Will be waiting for your response. Thanks.
    Jessica.

Maybe you are looking for

  • Embedded Fonts are not shown anymore

    When I create a PDF from a Word Doc, the embedded Fonts are not shown anymore. In the previous Version it was working perfectly. My version is currently 11.0.10.

  • Hitachi PJ-TX300 projector and Mac Mini Intel Core 2 Duo?

    My PJ-TX300 projector is hooked up via its PC connector to my Mac Mini Intel Core 2 Duo, via a DVI to VGA adapter (which came with the Mini from Apple) plugged into the Mac mini. I cannot get a clear screen picture at any resolution: there is always

  • Question on MDX

    Dear Experts, Can any body explain me wht is MDX & importance in BPC. And how can i execute this below code. IIF(Account.H1.CurrentMember is Account.H1.http://All Account.H1 And Account.H3.CurrentMember is Account.H3.http://All Account.H3, (Account.H

  • MASS/MM17 don't create change documents in CDHDR/CDPOS?

    Hello,    This has probably been answered before, but I've been unable to find it in OSS or on forum searches here.    When I use MASS with object type BUS1001 and make mass changes to materials, the changes are not recorded in CDHDR/CDPOS.  Is there

  • How to update device with new Apple ID

    I have an iphone 4s and I can't get the appleID changed on the device itself as the address is grayed out.  Any ideas on how to change the applieID on the device once the the appleID has been changed on the website?  It also appears that I cannot log