BI 4.0 - Web page at logon

Hi all,
in SAP BI 4.0 platform I need to link webpages at user login as done in XI 3.1 by Personal Infoview: dashboard properties - web address
This webpage is useful to link a URL for BO report launch
How can I do?

Hi
Have you got a solution?
regards
Murat

Similar Messages

  • LMS 4.2 - No web page after logon

    Hi All,
    I've installed the evaluation version of LMS 4.2 on a server (I have met all prerequisites). On the server IE is installed.
    The installation went fine, no errors. After the installation I doubleclick the CiscoWorks icon on the server desktop and I get the logon screen.
    After filling in my username and password. I can see the url change in my browser. In the url I can see the word "loginSuccess&id", I guess this means my user and password are correct.
    After a few seconds the page turns blank, telling me "The page cannot be displayed".
    When I connect to the url on another machine, I receive the same error, with IE and with another browser (firefox).      
    Does anyone has a suggestion?
    Thanks,
    Best Regards,
    Joris           

    if this still not helps, recreate the SSL certificate with the following tasks:
    (in a dos box with administrative privileges)
    stop the LMS processes
        net stop crmdgtd
    recreate the SSL certificate with the following steps:  
        NMSROOT\bin\perl.exe NMSROOT\MDC\Apache\ConfigSSL.pl -disable
    remove or backup the server certificate files:
            server.*
    in this directory:
        NMSROOT\MDC\Apache\conf\ssl
    recreate the certificate:
        NMSROOT\bin\perl NMSROOT\MDC\Apache\ConfigSSL.pl -enable
    follow the dialog
    if you do not want to use HTTPS disable the SSL with:
        NMSROOT\bin\perl.exe NMSROOT\MDC\Apache\ConfigSSL.pl -disable
    restart LMS:
            net start crmdmgtd
    try to login again...
    if you still cannot login post the output of "pdshow"

  • Web Page for Guest Wireless

    Hi.
    I was wondering if someone could help me with the easiest way to set up a Web Page to control Guest Wireless access on Cisco AP 1130AG.
    I was using PEAP and Dot1x to Active Directory but the messing around required on some clients (namely XP and Vista) means it is not ideal for random and unexpected guests.
    How can I set up an Open Authentication method (or whatever I need) that then defaults to a web page or logon page for access to the network itself? I have seen this in other companies so it must be do-able.
    Just for information a standard WPA2 key for the SSID is insufficient as we want a logon page and user credentials that are changeable.
    I hope someone can help.

    Are you using the AP with a lightweight controller, or standalone (autonomous)?
    The lightweight controllers have this capability. Standalone APs do not.

  • Non-admin user can not logon to web pages

    I setup an iMac, I am the administrator and I set up a non-admin user. I also setup parental controls to their default settings.
    The user can log on to their account but when they go to a web page, any web page, that requires a logon, the authentication fails. I can login to the iMac as the administrator and can go to those same pages and try to logon and it works.
    I tried disabling parenting controls but it still doesn't work. I don't think that I should have to change any settings to allow a non-admin user to log on to a website, but maybe there is something I am missing...
    Any tips or things I should try?

    It's recommended to have your Security mode on.
    Anyways if you wish to, go to ''''Firefox'''' tab > ''''Options'''' > ''''Options'''' > '''''Security'''''
    and do your custom settings.
    Re-installing Mozilla Firefox may fix this problem.

  • EP logon page as part of web pages of portal

    hi
    I want to create a layout using web page composer. The layout is attached with the post. top left of the layout consists of a logon functionality. I want to put EP's logon page as part of the layout. Such that logon block will appear with every web page which is developed using the designed layout/template.
    Please suggest if this is possible.
    thank you!
    SAP EP

    if the transport of the par file doesnot work in the way you mentioned then there is  workaround here
    just download that par file     system administration-support -support desk-browse deployment-par file
    save it to your desktop.
    upload the same par file to the test machine
    system administration-support-support desk-sap application-upload the par file
    reward points if helpful

  • To obtain values from fields in a web page.

    Hi everyone,
    I am in the process of developing a web based application. I am able to
    successfully convert my windows to web page documents.
    I have sincerely followed the prescribed steps to be adopted in building
    methods for validations and processes, so as to utilise them for my web
    pages too.
    But the problem that I am facing is to obtain values back from the web
    page fields (user entered values) for performing validations.
    Unfortunately the explanations provided in the Forte Web SDK Manual
    for obtaining the values from the web page fields and load it on to the
    source window through LoadParameters() method (a method in the window
    converter class of HTMLWindow project) seems to be inadequate.
    If some one can site the steps that Iam probably missing or some
    examples, it will be of great help.
    Thanks in advance.
    Pamella.
    Get Your Private, Free Email at http://www.hotmail.com

    Hi Dan,
    Thanks for your assistance.
    But as regards to my application, I have an existing forte application
    which Iam trying to web enable.
    To summarize my problem let me just consider the openning window (logon
    screen) which I have converted to web page using WindowConverter Class
    in the HTMLWindow project (obviously, it is my supplier project). The
    functionality of this window class has to just accept the user name and
    validate it. If the user name is valid then proceed further else
    display an error message. I have a separate validation method for the
    user name, which I can utilise to validate the user name typed by the
    user on the web page, if Iam browsing or on the window, if Iam directly
    running the application.
    The widgets on the window are <UserId> and <ProceedButton> with
    window attribute names as UserId and ProceedButton respectively.
    Now my handle request method goes like this :
    -- This method is the entry point from the Internet to my
    -- application. It is automatically called when a request
    -- from the Web arrives.
    response : HTTPResponse = new;
    -- Find the page name.
    pageName : TextData = new;
    pageName.SetValue(request.PageName);
    -- Generate response pages.
    if pageName.IsEqual('processquery',IgnoreCase=TRUE) then
    -- Please note that I have not write any HTML to build my web page.
    -- Instead Iam using the WindowConverter Class to convert my existing
    -- windows on the fly to web pages during run time.
    w : LogonWindow = new;
    -- my logon window class
    Converter : WindowConverter = new(sourceWindow=w);
    Converter.AssignButton(sourceField = w.<ProceedButton>,type =
    'submit');
    loginURL : TextData = self.CGIURL.Clone(deep=TRUE);
    loginURL.Concat('?serviceName=').concat('appweb');
    loginURL.Concat('&pageName=PwdPage');
    w.<ProceedButton>.HTMLLink = loginURL.value;
    -- Proceed button is on my window to which
    -- I have associated the above HTMLLink
    -- This link does not submit the User Name typed by the
    -- User browsing my web page, but this User Name has to
    -- come as part of the request from the browser to perform the
    -- validation, as Iam not sure about obtaining the User name
    -- from the web page.
    -- My problem is how to get this user name????????
    html : HTHtml = new;
    head : HTHead = new;
    body : HTBody = new;
    -- Give the page a title.
    head.Add(HTTitle(Text='Application For The Web'));
    html.Add(head);
    form : HTForm = New();
    body.Add(Converter.WindowToForm(Action=self.CGIURL,HTMethod='POST'));
    html.Add(body);
    response.AssignResponse(html.ConvertToString());
    elseif pageName.IsEqual('PwdPage',IgnoreCase=TRUE) then
    w : LogonWindow = new;
    Conv : WindowConverter = new(sourceWindow=w);
    button : PushButton = new();
    button = Conv.LoadParameters(request,w.<UserId>);
    -- This will fail because the 'Request' has no user Id.
    -- Here, the explanation provided in the Forte Web SDK manual for
    -- LoadParameters method (method from WindowConverter Class) seems to
    -- be inadequate.
    If w.UserId <> Nil And w.UserId.Value <> '' And w.UserId.LengthToEnd()
    0 ThenIf SQLsSO.IsValidUserId(w.UserId) Then
    -- Method to validate the user Name.
    w1 : PasswordWindow = new;
    Converter : WindowConverter = new(sourceWindow=w1);
    Converter.AssignButton(sourceField = w1.<ProceedButton>,type =
    'submit');
    pwdURL : TextData = self.CGIURL.Clone(deep=TRUE);
    pwdURL.Concat('?serviceName=').concat('appweb');
    pwdURL.Concat('&pageName=MessagesPage');
    -- and here I will have to get the password typed in by the User.
    -- once again my same problem?????
    w1.<ProceedButton>.HTMLLink = pwdURL.value;
    html : HTHtml = new;
    head : HTHead = new;
    body : HTBody = new;
    -- Give the page a title.
    head.Add(HTTitle(Text='Application For The Web'));
    html.Add(head);
    form : HTForm = New();
    body.Add(Converter.WindowToForm(Action=self.CGIURL,HTMethod='POST'));
    html.Add(body);
    response.AssignResponse(html.ConvertToString());
    Else
    -- Generate an exception for unknown page.
    .............. and etc.
    In your example, you had sighted about the 'Junktxt'. How does it comes
    as part of the request from the browser and what is the reference
    associated with the submit button?
    If you need further clarifications, please write to me. Iam also still
    working on it.
    Thanks in advance,
    Pamella.
    You Wrote :
    Hi, Pamella --
    It might be easier to help if you could be a little more specific about
    what went wrong (ie, the problematic code snippet and the resulting error
    message), or what exactly you were trying to do. In any event, it is very
    easy in WebEnterprise to pass values up to Forte from web pages. You can
    embed them in HTML "hidden" tags or they can accompany standard form
    elements.
    For instance, say you have the following HTML code ...
    <form method="POST" action="$$FORTE.ExecURL">
    <input type="hidden" name="ServiceName" value="TestService">
    <input type="hidden" name="TemplateName" value="nextpage.htm">
    <input type="hidden" name="hiddenParam" value="dog">
    <div align="center"><center>
    <p>
    Type some junk here: <input type="text" name="junkTxt" size="20">
    </p>
    </center></div>
    <div align="center"><center>
    <p>
    <input type="submit" value="Submit" name="submitBtn">
    <input type="reset" value="Reset" name="resetBtn">
    </p>
    </center></div>
    </form>
    In addition to what the user types into the text box (junkTxt), say you want
    to pass "dog" up to Forte as a hidden parameter (hiddenParam) (hey, done't
    ask me why!). You can retrieve these values up in Forte in the HandleTag
    method of your scanner service by invoking "FindNameValue" on
    request:HTTPRequest, ie
    firstItem:TextData = request.FindNameValue('junkTxt');
    secondItem:TextData = request.FindNameValue('hiddenParam');
    firstItem now contains the value of "junkTxt" and secondItem contains
    "dog." You can now do whatever you like with these guys, including putting
    them in a ResultSet to be displayed on "nextpage.htm"
    Hope this helps,
    Dan______________________________________________________
    Get Your Private, Free Email at http://www.hotmail.com

  • Access to WPC Web Pages by Anonymous Users?

    Hello,
    i want to give anonymous users access to Web Pages that were created with the Web Page Composer.
    In did the following:
    1. create the Web Pages,Site Navigation etc....
    2. edited the permissions of the site: grant anonymous users Read Access.
    3.included the site navigation into the navigation of the anoymous users
    When i access the portal as anonymous users and try to open a Web Page, i get a logon screen for Authentification.
    I think that there is a problem, that i didn't find any way to set the Authentification Scheme for these Web Pages to "Anonymous". This is the way it has to be done with other iViews.
    When i am accessing the page with an authenticated users, i have no problem with displaying the same Web Pages.
    Is there anywhere an attribute i need to set? Or is it currently not supported?
    Regards,
    Marcus
    Message was edited by:
            Marcus Böhm

    1. Configuration in PCD - go to Content Administration -> Portal Content-> Portal Content -> Web Page Composer -> Container iViews -> WPC
    Default Containers. All of the iViews in this location should have the
    "anonymous" authentication scheme. The next location which should be
    checked is Content Administration -> Portal Content -> Portal Content ->Web Page Composer -> iView Templates. Again all of the iViews should
    have the "anonymous" authentication scheme. The same applies to all the
    templates which reside in Content Administration -> Portal Content ->
    Portal Content -> Web Page Composer -> Page Layout Templates. Finally
    check if all the pages which reside in Content Administration -> Portal
    Content -> Portal Content -> Web Page Composer -> Page Layouts have the
    "anonymous" authentication scheme.
    2. Configuration in KM - make sure that all the pages, which should be
    displayed to an anonymous user have in their permissions the Anonymous
    Users Group.
    3. Security zones - if you go to System Administration -> Permissions ->Security Zones -> com.sap.nw.wpc -> wpc -> no_safety and you open the
    permissions of this object, the Anonymous Users group must be added in
    the list.
    If all mentioned objects have their setting as described and you still
    experience problems (e.g. you see a browser dialog window for
    authentication), the reason most probably is, that the KM is not
    configured for anonymous access. A full description of the needed steps
    is provided with note 837898.

  • Cannot access certain web pages using ANY browser (when other systems can)

    (As [BDAqua|http://discussions.apple.com/profile.jspa?userID=528118] noted, this issue may be separate from [that which Alexander Solo is experiencing|http://discussions.apple.com/thread.jspa?threadID=1467311], though many aspects are the same or very similar. I've mostly copied my original post in that thread to this new one).
    I'm having trouble accessing a handful of particular web pages/domains, from my Mac Mini G4, using Safari (latest), Firefox (latest), Camino, Opera, Mozilla, IE, OmniWeb... I've tried every browser I have. It's really a problem as I'm taking a course in Web App Development now where we need to be able to access a course site which uses the code we are learning... and I can't because the page just doesn't load. There are lots of other students in the program using Macs, even members of the course team... I'm the only one who can't load that page.
    Anyway, a seemingly-random few sites just don't load for me, consistently... some of them are important to me, others not so, but one is critical and it's been driving me bonkers. It's not a router issue, since it doesn't matter where I'm plugged into the router and my wife's Dell notebook (Vista) accesses any of these pages (when she has it here). A friend of mine was also able to access them, both from his house and plugged into the same router as I was, at the same time (Dell notebook/XP Pro).
    A few of the pages that won't load:
    [https://telemat.open.ac.uk/ssl-logons/tt380mf/tt380_login.cfm]
    (The course web page... other https pages at the Open University load fine, though, so it doesn't seem to be an https issue.)
    http://www.hotmail.com quickly redirects twice, stopping at:
    [http://login.live.com/?id=2] ... and then does nothing... I don't use Hotmail, but my wife sometimes tries to access it (or was trying) if she leaves her notebook at work.
    I also can't load any page on the versiontracker website:
    [http://www.versiontracker.com] ... that is really a drag for me.
    There are a few, seemingly random, other sites that just don't load and haven't been loading for about a couple of months now. I don't know if I might have installed some bad app or something (I've checked and my system is negative for the DNSChanger trojan... not that I've ever visited pr0n sites... ).
    The problem has persisted through re-boots of the system and the router. I've tried booting from a firewire backup drive (I believe that one was still pre-security-release 2008-002, but otherwise nearly the same) and the problem persisted in all browsers. I've tried terminating processes that I didn't think were necessary to be running. I've tried fixing permissions, running diagnostic/repair apps, anything and everything I could think of. When attempting to find a solution on Google, I found a number of other mainstream news sites and such which also didn't load (at all), even after several minutes, but I haven't ; and of course trying to find mention of the problem in a Google search yields waaay too many irrelevant hits to have yielded an answer. I'm starting to suspect malware, since the problem doesn't make any sense and, if a culprit wrote something to do this, in addition to the "random" sites, they might block certain sites where we might find answers. I found a few more sites which didn't load (news sites and such) when I was doing a run through what Google could come up with. One of significance was:
    [CNET's news.com domain|http://www.news.com> ... Though I haven't had a chance to have another local user check, it seems to fit the pattern of the others (doesn't load in Safari or Firefox, etc) and doesn't load even if I use the IP address: [216.239.113.101|216.239.113.101]
    In short: It sounds like just the same [problem Alexander Solo is having|http://discussions.apple.com/thread.jspa?threadID=1467311], except that I can access the site he can't, so it's not a situation where we can say "technology x is running on these sites and our pre-Intel Macs don't like it."
    In short, I've tried everything I could think of to troubleshoot this problem (drive utilities, searches for known malware, terminating unnecessary processes, re-starting my system and router... so any help or ideas would be most appreciated.
    --Lowell

    I should add something which may indicate that I'm experiencing two separate issues: when it comes to news.com, versiontracker.com and other sites I've been unable to access, it's never seemed to matter whether I try to access a particular page on the site or the site root.
    In the case of my course website, however, I'm able to at least partially load the course chair's (more-or-less empty) "home page" at the site root. It may be that packets from other people trying to access the site are not following anything like the same route, but I really know very little about all that. I had anticipated being completed moving to Bristol (England) by now (most of the other students on this "correspondence" course are in England), but my Mac is still sitting in Frankfurt, Germany. In any case, what loads of the site root, loads verrrrry slowly. Following is output of an attempted "traceroute" to the IP (a second attempt followed the same pathway with similar results):
    Traceroute has started ...
    traceroute to 137.108.64.203 (137.108.64.203), 64 hops max, 40 byte packets
    1 192.168.220.1 (192.168.220.1) 1.994 ms 0.806 ms 0.595 ms
    2 * l0.ffm4-lns4.mcbone.net (62.104.190.24) 15.769 ms *
    3 ae1-2.ffm4-j.mcbone.net (62.104.212.11) 16.067 ms 21.954 ms 11.263 ms
    4 linx-gw1.ja.net (195.66.224.15) 40.108 ms 23.915 ms 43.079 ms
    5 so-0-1-0.lond-sbr4.ja.net (146.97.35.129) 236.518 ms 28.585 ms 24.008 ms
    6 po0-0.lond-sbr6.ja.net (146.97.33.10) 38.361 ms 213.896 ms 24.868 ms
    7 po1-0.lond-bar5.ja.net (146.97.35.230) 28.451 ms 25.599 ms 25.235 ms
    8 146.97.41.146 (146.97.41.146) 40.709 ms 37.987 ms 34.126 ms
    9 * * *
    10 * * *
    51 * * *
    *And Ping:*
    Ping has started ...
    PING 137.108.64.203 (137.108.64.203): 56 data bytes
    --- 137.108.64.203 ping statistics ---
    10 packets transmitted, 0 packets received, 100% packet loss
    I'm no "IT-guy", so I'm not really sure how to interpret what's happening, but I'm *beginning to suspect* this could be *related (similar in some way) to [the issues some Mac users were having accessing the Crate and Barrel website*|http://discussions.apple.com/thread.jspa?threadID=1400045&start=50&tst art=0] (before Crate and Barrel resolved things on their end).
    I'm also beginning to suspect that the *versiontracker.com and news.com siteload issues are related* to each other as I've found I can get successful ping (0% loss) and traceroute results, even if neither site loads in my browsers.
    Following is the *traceroute for versiontracker.com* (which I see, now, is also a CNet-hosted site):
    traceroute to versiontracker.com (216.239.122.65), 64 hops max, 40 byte packets
    1 192.168.220.1 (192.168.220.1) 3.053 ms 0.857 ms 0.670 ms
    2 * * l0.ffm4-lns4.mcbone.net (62.104.190.24) 11.342 ms
    3 ae1-2.ffm4-j.mcbone.net (62.104.212.11) 17.879 ms 257.938 ms 6.059 ms
    4 62-180-226-9.de.ignite.net (62.180.226.9) 27.322 ms 64.627 ms 42.776 ms
    5 t2c1-ge12-0-0.de-fra.eu.bt.net (166.49.172.97) 24.997 ms 6.568 ms 6.541 ms
    6 t2c1-p10-0.uk-glo.eu.bt.net (166.49.195.77) 27.185 ms 48.494 ms 26.892 ms
    7 t2c1-p9-3.uk-eal.eu.bt.net (166.49.195.206) 26.112 ms 44.471 ms 28.768 ms
    8 t2c1-p5-0-0.us-ash.eu.bt.net (166.49.164.65) 113.535 ms 116.857 ms 232.755 ms
    9 12.118.44.33 (12.118.44.33) 171.404 ms 112.384 ms 111.555 ms
    10 tbr1.wswdc.ip.att.net (12.122.80.194) 152.134 ms 241.023 ms 222.211 ms
    11 tbr1.sl9mo.ip.att.net (12.122.10.30) 152.181 ms 152.193 ms 150.917 ms
    12 tbr2.dlstx.ip.att.net (12.122.10.90) 243.249 ms 152.823 ms 155.137 ms
    13 12.122.100.97 (12.122.100.97) 153.575 ms 160.091 ms 150.454 ms
    14 12.87.121.22 (12.87.121.22) 146.324 ms 145.756 ms 146.214 ms
    15 c18-rb-techtrack-vt-lb.cnet.com (216.239.122.65) 151.691 ms 458.570 ms 153.433 ms
    *Hotmail (live.com) is another story.* Traceroute fails as follows:
    traceroute to live.com (207.46.30.34), 64 hops max, 40 byte packets
    1 192.168.220.1 (192.168.220.1) 15.813 ms 1.824 ms 1.606 ms
    2 * * *
    3 ae1-2.ffm4-j2.mcbone.net (62.104.212.12) 15.931 ms 24.736 ms 18.985 ms
    4 ge-3-0-0-0.dus2-j2.mcbone.net (62.104.191.190) 101.213 ms 135.919 ms 32.239 ms
    5 nyiix.as8075.msn.net (198.32.160.199) 89.352 ms 88.661 ms 88.866 ms
    6 ge-0-3-0-54.nyc-64cb-1a.ntwk.msn.net (207.46.36.13) 88.328 ms 88.388 ms 230.446 ms
    7 ge-0-0-0-0.nyc-64cb-1b.ntwk.msn.net (207.46.37.150) 102.443 ms 109.923 ms 89.281 ms
    8 ge-0-1-0-0.blu-64c-1b.ntwk.msn.net (207.46.33.121) 94.065 ms 95.808 ms 94.160 ms
    9 * * *
    10 ge-6-1-0-0.sjc-64cb-1a.ntwk.msn.net (207.46.33.209) 168.823 ms 168.235 ms 172.494 ms
    11 ge-7-1-0-0.by2-64c-1a.ntwk.msn.net (207.46.33.18) 169.049 ms 338.920 ms 173.219 ms
    12 ten8-4.by2-76c-1a.ntwk.msn.net (207.46.45.17) 177.052 ms 177.154 ms 178.412 ms
    13 * * *
    64 * * *
    and Ping:
    PING 207.46.30.34 (207.46.30.34): 56 data bytes
    --- 207.46.30.34 ping statistics ---
    10 packets transmitted, 0 packets received, 100% packet loss
    Since my wife's (Vista) Dell notebook can access these sites from the same router (and I was able too for a while), I'm beginning to suspect that the issues may have started with my update to OS X 10.4.11 or the first security update. It has been quite a while since we've successfully been able load Hotmail (in any browser) on this machine. My smug "Mac guy" superiority is taking a serious hit with these issues...

  • Passing Parameter from Web Page to Form 6i

    Dear All,
    We are using 9i AS with Form 6i. I want to created a web page for user login and called my application By passing value
    window.open("http://hrtest/dev60cgi/ifcgi60.exe?form=login_form.fmx&width=1000&height=700&
    userid=logme/logme1@test","","width=1000,height=700,top=0,left=0,location=no,directories=no,
    status=no,menubar=no,toolbar=no,maximize=yes,resizable=yes")
    and it successfully run.
    I want to pass additional parameter to my login_form.fmx from web page like User Shift entered by user on logon ?
    Please help me out.
    Regards,
    Khurram

    I got the clue
    pass parameter in your UR
    as
    //hrtest/dev60cgi/ifcgi60.exe?form=LOGIN_FORM_Para.fmx&width=1000&height=700&userid=power/power1@hrtest&otherparams=PAKISTAN=ALLAH"
    Define a :PARAMETER.PAKISTAN on Form
    and write following trigger
    BEGIN
    if :PARAMETER.PAKISTAN = 'ALLAH' then
    message('ALLAH HO AKBAR');
    message('ALLAH HO AKBAR');
    message(:PARAMETER.PAKISTAN||' HO AKBAR');
    message(:PARAMETER.PAKISTAN||' HO AKBAR');
    else
    message('INSH'||:PARAMETER.PAKISTAN);
    message('INSH'||:PARAMETER.PAKISTAN);
    end if;
    END;
    Regards
    Khurram Altaf | Assistant Manager ERP
    Enterprise Resource Planning Department
    Kohinoor Textiles Mills Ltd
    Peshawar Road, Rawalpindi.
    +92.51.5473940-44 ext 250 | +92.333.5256626
    e-mail: [email protected] | web: www.kmlg.com

  • Logical port error when accessing e-recruiting web pages

    Hi,
    We are trying to set up our e-recruiting 3.0 and web dispatcher systems. We were receiving an error in our e-recruiting system in transaction SM20 that states “Logon Failed (Reason=34, Type=H)”.  The user is SAPSYS for client 000.  The system was attempting to log on to our web dispatcher system.  SAP suggested creating an entry in SM30, table VUSREXTID, mapping the External ID to our web dispatcher  system.  This entry helped in that we are not receiving the above error message anymore.  However, when we attempt to access the web pages we are receiving the error “Name of logical port ‘&lp_name&’ is invalid.  Prior to adding this entry we were able to access the logon page by entering the following url using an external alias (ex. https://recruiting.mphi.org/internal).  Recruiting.mphi.org is our web dispatcher system.  We do not want our e-recruiting system to be accessible from the outside.  We want everything to go through our web dispatcher.  Has anyone had a similar issue setting these up?
    Thanks!
    Heather

    Hello Heather,
    I am no specialist in network infrastructure but i remember a customer setting up a web dispüatcher szenario. I also encountered this &lp_name& error from time to time during my work.
    The error points towards damaged urls and the customer also encountered such problems when setting up the web dispatcher landscape. Sometimes the last parameter of the URL was ignored or lost. Sometimes the web dispatcher transformed the URL including the parameters. But as parameters are case sensitive transforming them to upper/lower result in errors as the system no longer recognizes them.
    Perhaps you can check the URL with which the web dispatcher is calling the sap server to find out if it does any funny things w/ the links.
    Best Regards
    Roman Weise

  • Web Page Composer for anonymous user

    Hello everybody,
    I configured my portal for Web Page Composer anonymous user access.
    I found this document and i follow all steps:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e06e2dfa-7759-2b10-1c89-e90e6877e606?QuickLink=index&overridelayout=true
    but when i launch portal with address:
    http://xxxxxx:50000/irj/portal/anonymous
    in the content view i see the portal logon page!!! if i lauch the page whit other user (after log-on) i see the WPS page correctly
    Any suggestion??

    And don't forget the anonymous group. Well the things you need to take a second look at are in de doucments.
    - Making CM ready for anonymous access
    - PCD (iviews, pages, folder, etc) should have anonymous access
    - are all the servies configured right
    - And make sure the right group have the right access in CM (KM)

  • IViews return HTTP 400 message - web page not found

    Hello SDN members.
    We have encountered a problem with some iViews in our portal, since we installed NW SPS18.
    The iViews based on the KM Document iView template no longer work:
    u2022     The message in the browser is: u201DHTTP 400 Page not foundu201D. However if we paste the URL from the properties tab of the iView part of the web page in another browser window, the link works.
    u2022     When we use the iView inside a page, the iView is working.
    u2022     When we preview the iView, it also works.
    Additionally iViews of type SAP transaction iView template (SAP Gui for HTML) no longer direct to the appropriate sap transaction u2013 instead the direct to the initial SAP screen (just after logon).
    Any ideas?
    Would HTTP tracing help? on the ICM? on the J2EE server?
    Thank you very much.
    Giorgos.

    We already gathered HTTP traces on the workstation, the ICM and the J2EE engine. The problem seems to be in the Java WAS. When an entry point is clicked, a POST request is sent and an HTTP 400 reply is recieved. When you copy-paste the link and hit enter, a GET request is sent and an HTTP 200 reply (success) is received. Unfortunatelly we have no previous information on which request method was used before SP18 but we guess that it was only GET. And note [1248135|https://service.sap.com/sap/support/notes/1248135] doesn't mention such an issue/change.
    A strange thing is that note [1242308|https://service.sap.com/sap/support/notes/1242308] describes some similar behavior (we also have trouble adjusting the height of the iview when inside the page) but it refers to WPC which we dont currently use.
    Also the page workaround seems to help in the case of the KM document iview, but not in the case of the SAP transaction iview.
    Anyway we opened  a message with SAP yesterday. I'll post back any feedback we have.
    Thank you very much.
    giorgos.

  • Can Use wd abap page as logon page

    Hi all,
    I developed a web dynpro Abap page in portal. can I use this page as logon page. If yes, how can portal consider it as a initial logon page.
    Please suggest.
    Thanks
    Sanket

    Actually my schenario is:
    1) I want to personalize Portal Login page.
    2) If possible I want to interchange it with a WD application page, which have the username and PWD     fields and one Logon button. Is this posible????
    3) If it is not possible then how to personalize my login screen, I am using EP 5.0 and the UM configuration is not available under system administration.
    4) How to detemine different portal applications?
    4) If I change .Par file, will it change all the portal applications.
    Please suggest and if possible add these basic topics into wiki so that New users can get help from there.
    Thanks for your kind replies.
    Sanket

  • How to retrieve the user id that is visiting my web page

    Hello,
    I wonder if somebody could help...
    I have an applet in one of my web pages.
    I would like to control who is visiting that applet , and with "who" I mean the user id that he/she used to logon to the PC. So what I want is to keep in a file , all the users id that are accessing to that page.
    Is this possible? How can I get the user id from an html page?
    Thanks in advance and regards,
    Patty

    If your applet is being run by people all over the web, then the "user ID" isn't going to be very meaningful to you. And frankly the ID that I use to log on to my home PC is none of your business anyway.
    However if your applet is to be used in a company intranet, where user IDs are meaningful and not duplicates, you can useSystem.getProperty("user.name")to find that out. You will have to sign your applet for that to work, which means that the user will have to click on a box approving potential security issues before your applet will run, but that should not be a problem in a company intranet environment.

  • New Safari 3.0.4 Won't Load web Pages, Need some Assistance.

    I Too have installed and updated to 10.4.11 from 10.4.10 and too am having problems with the new Safari 3.0.4 ... My Problem like all the others, is for me, Safari isn't loading any web Pages, I just get a blank Page and nothing is happening, its just sitting there doing nothing. What could possibly be the problem and what should I do??
    Please someone help Me soon, I do have 2 back up web browsers but I prefer Safari because all my bookmarks are on there.
    I wish Apple would fix this glitch before putting out the new Safari, because alot of people are having problems with the new Safari, is there a way that we can contact Apple and complain to them about Safari 3?
    Thank you,
    Trisha Foster

    Trisha Foster wrote:
    Im Glad you had solved your problem but I am still stuck on mine, I tried to see if I had a PicLens Plugins in my input manager Folder but I don't, what I have instead is a Folder called Smart Crash Reports info/smart cra...rts.bundle and info. icon document.
    Safari 3.0 gets crashed by various 3rd party add-ons ("enhancer" programs and also InputManagers) which are doing things that are incompatible with it.
    Based on what is working for other people in this forum, I think you should delete (or move to the Desktop or something) anything in your Mac's (global) /Library/InputManagers folder and also the Library/InputManagers folder specific to your logon to the Mac.
    Also delete or uninstall anything else that is any sort of Safari enhancer/speeder-upper/skinner/prettifier.
    If that doesn't work, it's possible that some time previously you had some add-on/enhancer thing which directly patched the insides of the Safari.app (ie directly changed the Safari application in your Applications folder, rather than installing itself in some other folders like InputManagers (and Apple has tried to do a non-destructive/merging update and left those unexpected and now incompatible modifications merged-in). In that case there are some instructions posted a couple of days ago on www.macfixit.com how to fully delete the Safari application and reinstall a completely fresh copy of it from the Combo updater for 10.4.11.
    Anyway, I'd say the best first step as already posted here is to get rid of anything that is an InputManager or otherwise an "enhancer" to Safari and see if that resolves it for you.
    ted.h.

Maybe you are looking for

  • Is my HD completely dead or can it be saved?

    Hi everyone, I have a MacBook Pro (13 inch, Mid-2010) running OS X Mavericks 10.9 and it seems the HD has died. I'd be incredibly grateful if anyone could offer me some help and advice. I was using my MacBook as usual this morning. I had a few work d

  • How to get the Output File Name as One of the Field Value From Payload

    Hi All, I want to get the Output file name as one of the Field value from payload. Example: Source XML <?xml version="1.0" encoding="UTF-8" ?> - <ns0:MT_TEST xmlns:ns0="http://sample.com"> - <Header>   <NAME>Bopanna</NAME>   </Header>   </ns0:MT_TEST

  • How to move the Thumbnails & the photo caption to top in Galleria

    I am working on a click-able gallery using the coding found on jQuery Galleria 1.0b from http://galleria.aino.se/ Similar coding can be found on here; http://monc.se/kitchen/146/galleria-a-javascript-image-gallery#comments I would like to move the th

  • Possible iCloud/Oulook Fix

    Not saying this will resolve everything but it should help In Outlook click File Options Add-ins Click on iCloud Outlook Add-in look towards bottom left for Manage Click on COM Add-ins and select Disables Items and click go Select Addin Icloud Outloo

  • CAD Desktop Queries

    Hi All, Currently we are using CAD desktop alongwith DMS. We need to replace a selected component in the document based structure with a new component. We are trying to use the copy and replace option in the CAD view, but the new component selected i