Portal link re-directs to amserver

Hello,
What changes would I have made once I logged into the psconsole; that
broke the Portal Welcome link or re-directed it to the amserver page?
I was trying to setup or enable the Mobile Access Functions... stated in the following PS7 installation. http://docs.sun.com/app/docs/doc/819-3027/6n59bv1n0?a=view
or could it have been setting up services in the AMConsole?
Thank you,
AFR

Hello,
Thanks - we are able to do that. It only allows to login to the Community page.
Yet we are looking to use that default page as a demo and be able to use and test the Enterprise and Developer logins as well....
Any suggestions.... this happened after messing with the PSConsole settings.
Thanks,
Angel

Similar Messages

  • Clicking on portal link second time does not take to default view of comp

    Hi,
        Created multi screen Dynpro component which works fine when run directly in R/3. Problem occurs when it is run through portal link. First time you click The default View opens  up. You go to second view by clicking on action. So far so good.
    Then you again click on Portal link instead of taking you to default view it takes you back to the second view. I have tried to see in debug , flow hits in  method WDDOMODIFYVIEW of second view instead of default view. Whe I  try to fire any outbound plug from there it just throws an exception stating actions cannot be done from  WDDOMODIFYVIEW. Have tried many things like calling another method from here and firing plug there but it considers this to be within flow of WDDOMODIFYVIEW only.
    Tried to contact portal guys they say they cannot helkp out as they have tried all IVIEW settings there.

    test
    "Tushar" <[email protected]> wrote:
    >
    "Tushar" <[email protected]> wrote:
    Any link on the Administrative Tools home page(portalTools/index.jsp)
    of Portal4.0
    server generates
    Error 404--Not Found. (NT platform). I have changed config file to use
    ports other
    than default ports.
    It works ok. The port number for Administrative tools needed to
    match port numbers in config.xml file.

  • How to include portal link in task description of SRM 7.0 workflow

    HI,
    I want to include the SRM 7.0 Portal link in the standard task 40007980.
    the link should be generated from parameters so that even in quality the url is generated as per the system settings.
    Kindly guide me how i can achieve it.
    Thanks in advance,
    Regards,
    Neha

    Thanks Masa for your response.
    I have a question here..if i add an attribute in the business object then would that be available in the Task container? I have gone through this program but it reads ITS_DEST which is obsolete incase of SRM 7.0 and it does not return the correct portal link.
    Kindly let me know how can i get the right portal link? or would there be a need to construct it. If i have to construct then please let me know how can i get all the information to create the link. Also please tell me if it is possible to read these values in the mentioned task.
    Looking forward to your response.
    Regards,
    Neha

  • Pass parameter to WD abap iview via Portal link

    Hello all,
    I have created one WD ABAP application and I am accessing the same with the help of URL parameters. I am retrieving these URL parameters in 'HANDLEDEFAULT' event handler of the application window.
    Now client wants to access the same with the help of NavigationParameter so I created relevant iView in portal and I am accessing application using link which is composed of portal link and NavigationTarget parameter.
    My question, If I want to pass application parameters via URL, How do I access the same in my window. Do I need some sort of separate mechanism to take the URL parameters to my application window when application is running on portal?
    Please share your thoughts on this.
    (Same problem explained in link /thread/672163 [original link is broken])
    Thanks in Advance,
    Prashant Jagdale

    Hi Kiran Kumar,
    Thanks for your document but still my problem is not solved. I will try to explain my problem in detail.
    I have developed one WD application and I was accessing the same using link suppose
    http://newdomain.abc.com:8000/sap/bc/webdynpro/sap/zwda_url_parameters?pernr=12345&name=test1&sap-client=200&sap-language=EN
    I was retrieving the values of of pernr and name in 'HANDLEDEFAULT' event handler by adding two parameters as PERNER and NAME. and it is working fine.
    Now this application is running on portal. and I am accessing the same using URL
    http://<server>:<Port>/irj/portal?NavigationTarget=ROLES://portal_content//myFolder/myRole/myWS/myPage
    but as i want to pass above mentioned parameter (pernr and name) via link, After an investigation, I am thinking to use of Dynamic parameter. So my link will become like
    http://<server>:<Port>/irj/portal?NavigationTarget=ROLES://portal_content//myFolder/myRole/myWS/myPage&DynamicParameter="pernr=12345&name=test1"
    So, my question is , how I can access these values specified in DynamicParameter in my WD abap iView. Whether they are available in 'HANDLEDEFAULT' event handler using method wdevent->get_data?
    I don't want to pass my parameters using iView property "Application Parameter."
    Please give some inputs on this. Also Please guide me whether I can use some other way to achieve this. but the thing is, i must want to pass the values via URL only.
    Thanks in Advance,
    Prashant Jagdale

  • Is a link traced direct or reversed by a path (path$, plink$)

    Hello
    After analyzing an "undirected" network via the java api, we stored the results in the path$ table and also filled the plink$ table, containing the sequence and the link_id's that made up the paths.
    Is there an easy way, or does anybody already created a way, to check or list in which "direction" (direct or reversed) the path traced the links? Is a link traced direct or reversed by a path?
    tx
    Luc

    Ok
    This is what I came up with, without guarantee that this is the best/fastest code/approach.
    The concept comes from the SDO_UTIL.GETVERTICES function (see spatial users guide).
    1. create type LINK_DIR_TYPE where direct holds a bit 0 = reversed, 1 direct)
    ========================================================
    Create type LINK_DIR_TYPE AS OBJECT
    PATH_ID NUMBER,
    LINK_ID NUMBER,
    SEQ_NO NUMBER,
    DIRECT NUMBER
    2. create type PLINK_DIR_TYPE
    =================================================
    CREATE TYPE PLINK_DIR_TYPE AS TABLE OF LINK_DIR_TYPE;
    3. A function returning the type PLINK_DIR_TYPE
    =====================================
    CREATE OR REPLACE FUNCTION GET_PLINK_DIRECTION (myNETWORK IN
    VARCHAR2, PATH_ID IN NUMBER) RETURN PLINK_DIR_TYPE
    AS
    PLTN VARCHAR2(50);
    LTN VARCHAR2(50);
    PTN VARCHAR2(50);
    PATH_START_NODE_ID NUMBER;
    Prev_stN NUMBER;
    Prev_dir NUMBER;
    v_sql VARCHAR2(500);
    TYPE cur_type IS REF CURSOR;
    c_cursor cur_type;
    c_cursor2 cur_type;
    TYPE NUMTAB IS TABLE OF NUMBER;
    LinkIDS NUMTAB;
    L_startids NUMTAB;
    L_endids NUMTAB;
    Directs NUMTAB;
    pl_DIR_TAB PLINK_DIR_TYPE := PLINK_DIR_TYPE(NULL) ;
    BEGIN
    SELECT PATH_TABLE_NAME, PATH_LINK_TABLE_NAME, LINK_TABLE_NAME INTO PTN, PLTN, LTN
    FROM USER_SDO_NETWORK_METADATA
    WHERE NETWORK = myNETWORK;
    v_sql := 'SELECT START_NODE_ID FROM ' || PTN || ' WHERE PATH_ID = ' || path_id;
    EXECUTE IMMEDIATE v_sql into PATH_START_NODE_ID;
    v_sql := 'select pl.link_id, l.start_node_id, l.end_node_id, 1 as DIRECT ' ||
    'from ' || pltn || ' pl, ' || ltn || ' l ' ||
    'where pl.path_id = :1 AND pl.link_id = l.link_id ' ||
    'ORDER BY pl.path_id, pl.seq_no ';
    OPEN c_cursor2 FOR v_sql using path_id;
    FETCH c_CURSOR2 BULK COLLECT INTO linkids, l_startids, l_endids, directs;
    CLOSE c_CURSOR2;
    pl_DIR_TAB.EXTEND(Linkids.last -1);
    Prev_stN := PATH_START_NODE_ID;
    Prev_dir := 0;
    IF (L_startIDs(1) = Prev_stN) THEN
    DIRECTS(1) := 1;
    ELSE
    DIRECTS(1) := 0;
    END IF;
    Prev_dir := DIRECTS(1);
    pl_DIR_TAB(1) := LINK_DIR_TYPE (PATH_ID, LINKIDS(1), 1, DIRECTS(1));
    FOR i IN 1..Linkids.last loop
    IF (L_startIDs(i) = Prev_STN) THEN
    DIRECTS(i) := 1;
    ELSE
    IF (Prev_dir = 0) THEN
    DIRECTS(i) := 0;
    ELSE
    IF (L_STARTIDS(i) = L_ENDIDs(i-1)) THEN
    DIRECTS(i) := 1;
    ELSE
    DIRECTS(i) := 0;
    END IF;
    END IF;
    END IF;
    Prev_stN := L_STARTIDS(i);
    Prev_dir := DIRECTS(i);
    pl_DIR_TAB(i) := LINK_DIR_TYPE (PATH_ID, LINKIDS(i), i, DIRECTS(i));
    END LOOP;
    RETURN pl_DIR_TAB;
    END;
    4.USE IN SQL:
    ============================================
    select t.path_id, t.link_id, t.seq_no, t.direct
    from
    table(GET_PLINK_DIRECTION(network_name, path_id)) t
    Maybe this can be of use
    Luc

  • ITS Portal link from SAP-SRM

    Hello friends,
    I have heared taht there is a T-code in SRM,by using that you can find concern SRM-ITS portal link...
    Can anyone of you share that information...
    Thanks,
    San

    Hi Sankar,
    As per my knowledge the basis team should be able to give you the ITS Portal Link for SRM. However if you wish to know the details yourself without asking the basis team then you can go to the SMICM t-code and obtain the same as follows
    SMICM -> Goto -> Services -> HTTP -> Double Click and you get the Hostname there
    Then for the hostname you need to append the port number and /irj/portal to get the actual link to the SRM Portal.
    So ideally the link would be somewhat like this
    https://Hostname:Port Number/irj/portal.
    Additionally if the Basis team has configured the Portal information in spro you can use the following path
    SAP SRM -> SRM Servder -> Technical Basic Settings -> Maintain Portal Information.
    Hope this information is of some use.
    Regards
    Pramod

  • How do I remove "Customize my portal" link from portal

    Hi,
    I want to remove the "Customize my portal" link from our portal application. I don't want to deny users access to this feature.
    Any ideas how it can be done?
    Regards,
    Melvin

    Are you using a Windows or a Mac? What you're seeing (the backwards L shaped menu) is probably the Canon Quick Menu. If you have a Mac you can go into your applications, select Canon Utilities, then drag Canon Quick menu to the trash and empty trash can. On Windows you'd go to the control panel, select Programs and Features (or Uninstall Program/Add or Remove Program) and uninstall the Canon Quick Menu. Not required for all the normal functions of the printer. You can do the same thing for My Image Garden. Also not required.

  • Identifying Technical name of a query through a portal link

    Hi,
    If from a portal link I see a BW report, how can I know its technical name so that I can access it in BEx to see the query definition. The title on the portal appears not to be helping.
    Thanks

    In the future, please do not post the same question more than once:
    Identifying Technical name of a query through a portal link
    Thanks!

  • How to trace the wdy application from Portal link?

    Hi
    I have a  req to work with a application,which show the salary slip,through ESS portal,but I am not able to trace out the webdynpro application,is is running behing this?
    can any oe pls tell how to trace out the application,if worked any time.
    secondly req is to insert the logo in the salary slip,when we clk in the SALARY button,its display the slip as PDF,please tell how this PDF is attached inside the application,as if its a Z smart form,than i can insert the logo in it & can reinsert in the webdynpor application,as I think its a case of z smrtform which is called or linked on webdynpro.
    pls tell how to trace the standard application or the smart form.
    regds

    Hi Vipin,
    You can get the webdynpro application name from the portal link or you can ask portal team to get you the webdynpro
    application name from the portal iView of salary slip application.
    After that go to SICF tcode.
    Search for the application name by entering the application name against the field SERVICE NAME and press F8 (execute).
    The system will find you the SICF service for that webdynpro application. Select that service from the list.
    Now click on menu GOTO->OBJECT DIRECTORY ENTRY and get the package name from the popup window.
    Go to tcode SE80 and open that package.
    Expand node Web dynpro->Web Dynpro Applicat.  and find the application there.
    Double click on the application.
    Get the web dynpro component from the application parameter.
    Open the Web Dynpro component in se80 and do the changes as required.
    Regards,
    Vikrant

  • Link re-direction in Hyperion

    Hi All,
    We were using Hyperion reports 7.x version, and recently we migrated it to new version 9.3.1
    so, now my query is.... if user login to older version of reports 7.x using old version of
    link, it should re-direct to new version of reports 9.3.1 link
    is it possible to do in Hyperion if so can any one plz help me in this.
    Vijay.....

    Hi Ryno,
    Thx for ur replay.......
    if I'm not wrong DNS connections are used for connection Database ..... but how is it related to link Re-Direction...
    if it is possible, can you tell me te procedure or any doc related to this how to tht,.......here in our porjecct we don't have any network admin..
    Thanks
    Vijay....

  • How to Disable Portal Links with Web Dynpro Java?

    Hi all,
    I have configured some access to my apps through iviews in my portal content, each application is included in a PCD Structure inside a User Role; according the roles asigned to my users are the access to the applications the user wolud have
    For example:
    Role 1
    RootApp
         iView1.1
         iView1.2
         iView1.3
    Role 2
    RootApp
         iView2.1
         iView2.2
    Role 3
    RootApp2
         iView3.1
    My users might have one or even the 3 roles, and depending on their roles is the access to the applications that they may have.
    Now I have a requirement of the user wherein when the user logs in to the portal and clic in the RootApp link the Dynpro Application must to present an iView showing a set of terms and conditions; if the users accept the terms then they can continue using the application defined by the PCD definition, but if the users don't accept the terms, the aplication links in the portal must be disabled and the user can not use the aplications defined, but this only has to be applied to the root link selected (RootApp) in wich the user doesn't agreet the terms and conditions, however, other applications that are non dependent of the root link (RootApp) can be used (RootApp2).
    Are there any way to disable only certain portal links using a web Dynpro implementation?
    Thanks In Advance

    Hi
    IMyService portalservice=(IMyService)WDPortalUtils.getServiceRefrence(IMyService.KEY);
    portalservice.myMethod();
    This is the code to get portal service reference and call methods implemented in the service
    Also, add prtapi.jar to build path. Add sharing refernce to portal:sap.com/<Portal Application name>
    Regards,
    Yoga

  • My client Portals links are working only on intranet, what kind of settings needs to be done to work on internet

    Hi Experts,
    My client Portals links are working only on intranet, what kind of settings needs to be done to work on internet.
    Thanks,

    HI Sree,
    I had the same problem in my client. The solution is you need to publish the URL to the internet and maintain the host name at the hosting server.
    If possible talk with the IT Network guys and they can help you.
    Something that i can help you.
    regards,
    S.Saravannan

  • Generating Smartform in PDF Format through SRM portal link

    Hi All,
    Please can one tell me generating Smartform in PDF format while we click on Output-format while displaying Purchase order.
    Is there any configuration needed or is there any process to generate smartform in SRM portal link.
    Thanks,
    Sri Lakshmi

    Hi Pradeep,
    Thanks for your reply.
    I dont want any BADI or Method.
    I want to know, when we display or create  Purchase Order through SRM link- there is an option Output format where the details of PO will be generated through Smartform in PDF format.
    I want to know the procedure how that PDF format is generating.
    Regards,
    Sri Lakshmi

  • Back to portal link broken

    I have a problem with my back to portal link from workspaces. It is putting the address stored in OID under context cn=ReturnToPortalURL,labeleduri
    and adding the page url to it example---- http://srvorc3.harvestland.com:7778/pls/portalsrvorc3.harvestland.com:7778/portal/page/portal/AgQuest/AGQUEST_DEFAULT1/Tab:Tab,Tab:Tab1
    http://srvorc3.harvestland.com:7778/pls/portal comes from oid I understand that
    srvorc3.harvestland.com:7778/portal/page/portal/AgQuest/AGQUEST_DEFAULT1/Tab:Tab,Tab:Tab1
    I don't understand where this is coming from or how to solve it
    independendly both links work. Why is it concatenating them and what is telling it to do it? all other back to portal links work on the system

    in case someone else has the same problem----
    F.Y.I Created a tar the resolution was to hard code the link in ORACLE_HOME/j2ee/oc4j_ocsclient/applications/workspaces/workspaces/cwhome.uit and workspacehome.uit.
    Never got an explanation as to why it doubled up the link in the first place.

  • Remote Delta Link vs Direct Link - Federated Portal

    Hi, We couldn't get our Remote Delta Links to work on our Enterprise Portal so we just built a direct link to our IViews.  This link goes through the Enterprise Portal and to the IView on the BI Portal. (Points to the Producer on the Consumer) This works great.  My only question is if I can build a direct link to my IViews what is the benefit of Remote Delta Links that became available as of SPS10?  Just a shorter link?
    Thanks!

    Yes it is a 'shorter' link doing it direct, however it is more flexible to use a remote delta link (when making changes).  You also get the benefit of user personalisations being attached to the view on the consumer portal  (rather than the producer).  Its slightly cleaner when it comes from transporting or cloning a whole PCD as well.  Thats is my basic understanding anyway

Maybe you are looking for

  • How do I store and retrieve variables end user enters in Dynamic Pages ?

    I have 4 dynamic pages, a user enters in variables on first page. At the next 3 dynamic pages I send the user to I have to display the items they entered on the first page in text items. How do I pass these variables ???? thanks!

  • Downloaded jpg pictures - can't paste cut images into jpg's

    I've downloaded some low resolution jpg's from the Web and intended to do some image cuts from photos I took - and to paste those cut images into the low res downloaded pictures.  Using Elements 9, I can cut and paste from photo to photo if they are

  • OAS Dr. Watson errors

    We've been using OAS v4.0.7 on Win NT v4.0/SP3 for about two years now. We have it configured to run with the Oracle 8.0.5 database using a pl/sql cartridge and this has been extremely stable. We have a large number of procedures written to handle in

  • Wen will my ipod touch 5 generation get an update to ios 8

    wen will my ipod touch 5 generation get an update to ios 8

  • No "x" -- can't close tabs????

    safari has been running horribly slow, and then all of a sudden, the X disappears from all the tabs. Can't close them unless you click to pull down the menu. Also, the "quit" function isn't working. So i'm stuck. I've reset and emptyed the cache and