How to make EP Logon Page configurable?

Hi Everybody!!
I have modified the logon page of EP and everything works fine. But i have a query.
Generally the logon page which is designed by me changes as per the requirement or on monthly basis. The change include enabling/disabling of any link such as some mail link or enabling/disablng of the company banner/company message.
Now for doing any such kind of change, i have to modify the PAR file and then re-upload it again.
But i would like to know, Is there any way to do this kind of changes without changing the PAR file and putting these properties on the Portalapp.xml and then create iView on this and then by modifying the properties from the properties editor, i will be able to handle the logon page better??
I know that we never create an iView on the logon PAR but write its name in the authscheme.xml.
If any one would be able to tell me how this authschemes internally works (how it loads the PAR and then creates the logon page and where it keeps the logon page in PCD), that will also be fine.
Thanx in advance.
Regards
Gaurav

>  I wander if Java systems have an heterogeneous system copy procedures
They do of course but you need to have a certified migration consultant on-site, otherwise you'll loose SAP support during the  migration and for the target system. See http://service.sap.com/osdbmigration --> FAQ
Apart from that the migration itself is described in the standard system copy guides.
> and wheher such existing configuration(+HA) can be handled as HA on HP-ux with service guards(incl. Extension for SAP)
Yes, it can.
If your read the installation guides for the specific system configuration you'll find a special section for HA setups.
Markus

Similar Messages

  • I was wondering if there is a tutorial on how to make a blog page in muse?

    I was wondering if there is a tutorial on how to make a blog page in muse? Any help will be appreciated.

    Hi
    You can integrate third party blog in your site or if you are using Business Catalyst , then you can go with BC blog modules on page.
    More Details :
    http://www.musegrid.com/blog/add-business-catalyst-blogs-to-your-adobe-muse-website
    http://www.muse-themes.com/blogs/news/7257782-creating-a-blog-in-adobe-muse-powered-by-nab ble
    Thanks,
    Sanjit

  • How to make a link page come up in seperate window

    Am not sure how to make a link page to anther site for
    insatance come up in seperate window so that they do not navigate
    away from my site.Thanks Tony

    Select the item you want to use as a link. In the property
    inspector, type
    in the full path to the website you want to link to and set
    the Target to
    _blank.
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.perrelink.com.au
    - Web Dev
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.adobe.com/devnet/dreamweaver/css.html
    "chesterarebest" <[email protected]> wrote
    in message
    news:e88357$ifp$[email protected]..
    > Am not sure how to make a link page to anther site for
    insatance come up
    > in seperate window so that they do not navigate away
    from my site.Thanks
    > Tony

  • How to make my tab page shows all my applications?

    How to make my tab page shows all my applications?Please help me as fast as possible. Thx .
    Note: Please write as detail as possible because I am new to vb.Thx again.

    Hi,
     For a lack of info about what Applications you are talking about we can only guess at what you want to do. In my experience, this is the kind of question that ends up being a mile long with 15 different examples because nobody knows exactly what you
    are trying to do.
     With that said, maybe you can put a ListView in your TabPage and use the code i showed in the link below. If not then please explain exactly what you want to do.  8)
    How to make a screen that displays 'all apps'?
    If you say it can`t be done then i`ll try it

  • How to Make a BOM as Configurable BOM ?

    Hi,
    Please answer my question , How to Make a BOM as
    Configurable BOM ?
    Regards,
    Abhilash

    Dear Abhilash,
    Please refer to the following link:
    http://sap-img.com/sap-sd/sales-bom-implementation.htm
    I will suggest you to visit http://sap-img.com/sap-sd.htm. It will give you the overview of SAP SD module.
    Moreover there is a separate section of FAQs with answers which will help you in great deal.
    Do let me know in case of any queries.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh

  • How to make Turnable PDF-Pages with flip effect

    Hi,
    can any one help me?
    How to make flipping the pages in a PDF file using Acrobat professional? And how to save as a PDF file and is it possible?
    Please advise me how to process this.
    Thanks & Regards,
    Sudhakar

    Some related information that may help.
    http://forums.adobe.com/thread/719674?tstart=0
    http://acrobatusers.com/content/page-turner-0
    Be well...

  • How to make a Cleaning Page

    I recently became the Owner of a HP LaserJet 3100 all in one Printer and installed the Software so it will run on Windows Xp.
    I am having trouble with the Printing being too light and there are no instructions on how to make a Cleaning Page for XP.
    Can Anyone help?
    Thanks.

    Please refrain from posting such posts, u need to check dev guide, previous threads. If you can't find related info in both, then post in this forum.This forum is for issue related to OAF and not to teach basics.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to make a download page?

    Hi!
    I need to make a downloadable page out of a stream (or byte array - it doesn't matter) with a content of any type (e.g. a csv file or a binary file).
    I would like to make a link on a page which whould trigger an event. In the event handler I would prepare the needed data (generate, etc.) and let the client download it as a binary file (so that browser whould display a download page with options to open the file or save it).
    The problem is that I can't find out how to do that?
    Are there any how-tos or examples?
    Thanks!

    Well, a problem arised again when we moved our web application to the https protocol. DownloadPageRenderer didn't work at all with Internet Explorer browser, however other browser worked well and downloaded our file.
    I've made a separate servlet for simply returning a file from HttpSession in a doGet method, this is done by the following code:
    public class FileDownloadServlet extends HttpServlet  {
       * Process the HTTP doGet request.
      public void doGet(HttpServletRequest request, HttpServletResponse response)
          throws ServletException, IOException {
        System.out.println("FileDownloadServlet.doGet() call in progress . . .");
        response.setContentType(contentType);
        response.setHeader("Content-Disposition", "attachment;filename=\"" + fileName + "\"");
        OutputStream os = response.getOutputStream();
        // save our data to the OutputStream...
        os.close();     
    }This code works well with Internet Explorer in our test server, Oracle9iAS/9.0.2. However this doesn't work with Internet Explorer on the client's server, Oracle9iAS/9.0.2.3.0.
    In our server (where it works), I get the following HTTP headers in IE (with ieHttpHeaders IE plugin):
    HTTP/1.1 200 OK
    Date: Tue, 31 Aug 2004 07:36:49 GMT
    Server: Oracle9iAS/9.0.2 Oracle HTTP Server
    Set-Cookie: JSESSIONID=<skipped>; Path=/
    Cache-Control: private
    Content-Disposition: attachment;filename="HTD Proov.htm"
    Keep-Alive: timeout=15, max=98
    Connection: Keep-Alive
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=UTF-8On client's server (where it doesn't work):
    HTTP/1.1 200 OK
    Date: Tue, 31 Aug 2004 07:36:03 GMT
    Server: Oracle9iAS/9.0.2.3.0 Oracle HTTP Server
    Pragma: no-cache
    Cache-Control: no-store
    Surrogate-Control: no-store
    Expires: Sat, 11 Jul 1970 17:55:19 PST
    Set-Cookie: JSESSIONID=<skipped>; Path=/komm
    Cache-Control: private
    Content-Disposition: attachment;filename="proov.htm"
    Connection: close
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=UTF-8Any ideas about how to make IE work with our application are welcomed. Can this be because of a wrong server configuration? Can any HTTP headers of the second response cause such behaviour in IE?
    Thanks,
    Alexey.

  • How to make a adf page not participate in session

    Hi,
    I am getting the session time out warning message in the login page ( the user is not logged in yet).  Below is the scenario.
    1. Login page is JSF (.jspx) page and is using a page template.
    2. ADF security is implemented in the application and anonymous role and other roles have been provided the access to the login page and page  template.  ( FYI the application uses a different template for the logged in users)
    3. Session time out and WARNING_BEFORE_TIMEOUT is configured in web.xml .
    3. In both the page and  template the jsp page directive session attribute is set to false.
         <jsp:directive.page contentType="text/html;charset=UTF-8" session="false"/>
    How to make the page not participate in session and avoid the session time out message and refresh of the page ?
    Thank you .
    Ranjith

    Hi Frank,
    This is a webcenter portal 11.1.1.8 application and there are sites built with webcenter that does not throw this message on the login page . What should be my approach not to get this message.
    What does "session=false" attribute mean  <jsp:directive.page contentType="text/html;charset=UTF-8" session="false"/> (<%@ page .. session="false" %> Creating a JSP Document
    As per the link  JSP - Directives   Specifies whether or not the JSP page participates in HTTP sessions .
    Any help is greatly appreciated.
    Thank you

  • In ibooks author how to make an existing page start a new section

    I have imported a Pages document into ibook authors (version 2.1.1 in OS 10.9.1) using the Classic Text Template. The original Pages document was basically a book, with title and table of contents and forward and several sections. Now everything is one huge unit. During the import I can choose a layout, but only a chapter or a section. Then all of the document is regarded as having that layout -- every page is regarded as having the section layout, for example, though only the first page has the smaller text area and the large text as a header. I can see all the layout possibilities in the Layouts sidebar, and they include section and forward and 1 column. When I hover the cursor over a particular page the book sidebar I see the little triangle that has been mentioned, and it offers options for changing layout,  but it does not allow me to make that page a new section or a forward. I can only make the page 2 column or put a sidebar on it. I cannot see how I can import the book and be able to create chapters and sections with ibooks author. I can insert a new section layout, or a new page, but I do not see how to  to change a page, after it is imported and is considered to be the text of a chapter or section, into the start of a new chapter or section.  I do not find anything in the inspector or on the menubar or in the help center that makes this change. The "add a chapter title" does not change the layout to make the text box smaller, as it should for a layout.   Is it actually possible to convert a Pages book into an ibook authors book, or must I create the blank chapters and sections in ibook authors and then cut and paste each section from Pages?

    The advice given for  iBA, is to preplan your book. Modify an exsiting template as your layout  suits you,  to present a quality book to your readers. 
    iBooks Author is really more "app"  than a book maker like inDesign or even Pages,  - and users should really  get to know how to use it before starting out on a serious project.
    The insert options are clear - you can insert a Chapter from MS Word or Pages  in iBA  a "chapter" is a distinct "standalone" part of a book which can include sections and pages as required. Sections can  be  moved up or down within their chapter or can be copied from one chapter to another. The pages in any chapter are static and the only way to change content location is copy and paste.
    From your post, its seems you decided to  create you book using Pages and in one chapter expecting iBA to reformat it.
    I would suggest a solution is to count your  chapters and  add that number into an iBA  new book, then  copy your Pages chapters.  I would guess that the whole process would  take less than 30 minutes.
    Apple recieves feedback and suggestions for improvements, however the last update made very few changes to  the application and none of  those seen in many posts - such as being able to move pages. This indicates that Apple at  least,  are satisfied that the version is functional enough for  how Apple see books being made for its store. 12 months ago this  forum was  taking  hundreds of posts  per day asking advice, its now a trickle- which I take to be in indicator that  as a group, iBA users have taught themselves how to use the application and its  many options and third party add on's. iBA is more suited to the interactive side of publications as Apple intended, creating a mainly text only "novel" seems to be considered by Apple as the easy part!

  • How to make CASA module re-configure ?

    Hi All
    My customer has some workstation login very slow(4~10 mins) about these weeks...I find the reason is User Module (because I disable the module, login speed could decrease to 20 seconds),temporary solution that I reinstall ZCM Agent...but it spend much time....
    I want to re-reconfigure CASA let he re-Scan the workstation for get correct configure or parameters......How to make re-Reconfigure CASA ?? and I have another question that I try to deliver CASA.msi...and add "/qn /norestart" parameter...but it still reboot automatically....How paramter I add to make the msi "norestart" ??
    wyldkao

    Originally Posted by wyldkao
    Hi All
    My customer has some workstation login very slow(4~10 mins) about these weeks...I find the reason is User Module (because I disable the module, login speed could decrease to 20 seconds),temporary solution that I reinstall ZCM Agent...but it spend much time....
    I want to re-reconfigure CASA let he re-Scan the workstation for get correct configure or parameters......How to make re-Reconfigure CASA ?? and I have another question that I try to deliver CASA.msi...and add "/qn /norestart" parameter...but it still reboot automatically....How paramter I add to make the msi "norestart" ??
    wyldkao
    wyldkao,
    I had this exact issue, so far the only way I have found round this is to uninstall the CASA first and then install with /norestart - no matter what I tried it would automatically restart via a repair.
    I haven't found any issues yet... though I'm sure someone could advise if this will cause an issue.

  • How to put portal logon page CE 7.3 ui.war file in NWDI Track

    Hi,
    We are using sap portal CE 7.3 in our project. I have customized portal logon page. for this I have downloaded ui.war file from portal server in my local machine that is on my desktop and this ui.war file i have imported in my NWDS and done the required modification.
    Now I have to put this development that is modified ui.war in my NWDI track which is currently lying on my local machine Desktop, please let me know how to transport this ui.war file and ear project associated with this war file into NWDI track.
    because from NWDI track only this customized logon portal page has to go to QA and Prd system.This is strict client requirement.
    Please help me.
    Thanks

    Hi Arush,
    Instead of importing the war file into NWDI track,you can create new web module project  in NWDI using New-->Development Infrastructure-->DC-->Java EE-->WebModule and copy paste the WebContent folder Jsp's and xml files which are inside the ui.war in your local machine. Then for this web module you can create ear file for deploying .I have done in this way it worked.
    Regrads,
    Srinivasan V

  • How To Make A Public Page Parameter (similar to session)

    Hi, I'm new to Oracle Portal
    I wonder how to make a public parameter that can be accessed from any page (similar to session).
    So the portlets can use the public parameter.
    Case:
    when user logged in, I pass the employee_ID to the session.
    Portal pages, which contains employee portlet, and some other portlet depends on employee_ID.
    So I think, may be there's a way to set the parameter for once, but the value is accessible until the user log off.
    Any suggestion or help?
    Thx before,
    Chris

    Let me explain the problem once again:
    Page 1 Portlet 1 contains employee table
    ID, Name, Address
    When I click the employee ID (using event), it will be pass the value to page parameter EMPID
    And i want this EMPID can be accessed by
    Portlet 2 - Showing sales report
    Portlet 3 - Showing report
    Portlet 4 - Showing chart
    Portlet 5
    and so on
    Portlet 2, 3 4, 5, and so on is using EMPID as the parameter too,
    but these portlets are located in different page
    Portlet 2 is in page 2
    Portlet 3 is in page 3
    Portlet 4 is in page 4
    Portlet 5 is in page 5
    and so on
    First I think about using Package wwpro_api_parameters
    but after read further, this package can get and retrieve only
    I wonder can this (public page parameter) be done by using default Oracle Portal Tools / API, or I should do some java coding, or something else?
    Please help me...
    Thanx before,
    Chris

  • How to change the logon page text colour?

    Hi experts,
       I need to do 4 changes in the logon screeen
    1.the "user name" and "password " to "User Id" and "Pass".I have changed this in "umelogonbase.jar".
    2.Change the colour of the two texts(white colour)
    3.with black as background for the userid and pass label and textfield in the left side of the page
    4.Also the background of the screen of the logon page with a company pic ;
    I am following the below
    http://wiki.sdn.sap.com/wiki/display/EP/ModifyingtheLogon+Page
    Kindly help in this
    Naga

    When you follow the steps outlined at the Wiki page, what exactly is where you receive an error? You'll have to change the JSP page of the logon to insert your changes. Have you done this and the changes are not reflected?
    br,
    Tobias

  • How to make a Web Page with Labview?

    I have a Project: CONTROL A CAMERA OVER INTERNET (with Labview)
    i try to make a Web Page but it s very difficult for me.I have Labview 8.6 and Internet Toolkit.
    Why can i make a simple Web page?
    Why can i control the camera over Internet?
    Thanks...

    This thread is quite old but there is a new answer that might better suite your needs... So, for those who are looking for the answer, have a look at WebPager plugin for LabVIEW here: https://labicom.net/labdeveloper/WebPager/ . It will make much better job (in most cases) than Remote Panels and Web Services suggested above. The only difficulty I see in your request is a 'camera' word. With WebPager you'll be able to control it from the browser (without any plugins or similar things), but the video image itself will pose problems... Still, it can be tackled. 
    =========================
    Igor Titov, CLA
    WebPager - put LabVIEW front panels into the web page
    Labicom.net

Maybe you are looking for

  • IChat - audio and video chats not working to the UK

    I'm trying to do an audio and/or video chat with my Mum who lives in the UK. We're both using the same version if iChat A/V (3.1.5) However, we've been unable to succesfully connect. Whether she invites me to a chat or I her, we both get a message sa

  • VERIZON - What's keeping the Bootloader from being unlocked.

    I speak for a growing mass of consumers concerned over the Bootloader still being locked for the RAZR I purchased my RAZR under the impression that it'd be unlocked by the end of 2011..."where operator and channel partners will allow it." - as told b

  • Has anyone ordered their iPhone off ebay?

    I've found that I can save quite a load of money if I find a good iPhone off of ebay, and I wondered if anyone has done this and how does that work as far as activating it, etc? Is this a good option? 

  • Final Cut Pro 4 won't work on my new Macpro

    I just bought a brand new Macpro and loaded Final Cut Pro v4 that I used successfully on my G4. It came up with a message that said, among other things, that I need a AGP Video graphics card for this software to work, and my computer did not have it.

  • Is It necessary To Call SQLFreeStmt(...,SQL_CLOSE) Prior To A Rollback

    If you have a program that does the following: 1) Opens a database connection. 2) Prepares a SQL statement. 3) Binds columns to the SQL statement. 4) Executes either an insert, update, or delete statement. 5) An an error is encountered executing the