Pass parameter to all iViews in a portal role

Hi,
we have a portal role containing several iViews for ABAP Web Dynpro applications. Now we want to assign the parameter sap-wd-lightspeed=X to all these applications. Is it possible to do this in the portal application and can the customer set it off if they want to?
One idea is to define a dummy iView with this parameter set in property Application Parameters, and define all iViews as delta-links of this dummy iView. But we have some iViews which need their one Application Parameters.
Thanks & regards,
Carlo

Hi Bies,
I hope you are calling the Webdynpro ABAP applications using AppIntegrator iview (com.sap.portal.appintegrator.sap.WebDynpro).
Application Name : ABAP application
Application Parameters:sap-wd-lightspeed=X
Thanks
Srikanth M

Similar Messages

  • How to pass parameter into transaction iview ?

    Hi experts,
    I want to know "how to pass parameter into transaction iview ".
    Regards,
    Krishna Balaji T

    Hi Krishna,
    Not sure if this can help you.
    1) Passing a parameter to a transaction iview (I saw a resolved suggestion)
    Passing a parameter to a transaction iview
    2) Passing a parameter from the portal to R3 (helpful info for you)
    Passing a parameter from the portal to R3
    3) Create SAP Transaction iView using SAPGUI for Windows (Great Blog and info about TA Iview)
    Create SAP Transaction iView using SAPGUI for Windows
    Please check the following link for Transaction Iviews
    http://help.sap.com/saphelp_nw2004s/helpdata/en/02/f9e1ac7da0ee4587d79e8de7584966/frameset.htm
    Just some info: Portal is basically what the end user can see. What he can do, is still maintain in the backend system. If there are parameters setup already for the user in the backend system (in SU01), then those parameters should still valid for the transaction that the parameters are linked to.
    Hope that helps and award points for helpful suggestions.
    Ray

  • Passing parameter between different iViews

    Hi experts,
                   How can i pass a parameter from an iView created from .par to a webdynpro iView ?
    Regards,
    Shabeer.

    OK, so it should be like that:
    Web Dynpro:
         WDPortalNavigation.navigateAbsolute(
                    "ROLES://portal_content/com.test.Development/com.OmriDevelopment/ReadCookies?name=Omri",
                    WDPortalNavigationMode.SHOW_INPLACE,
                    null,
                    "MyWindowName",
                    WDPortalNavigationHistoryMode.NO_HISTORY,
                    "MyTargetTitle",
                    "MyContextURL",
                    null);
    PAR:
                IPortalComponentRequest req = (IPortalComponentRequest) this.getRequest();
         IPortalComponentResponse res = (IPortalComponentResponse) this.getResponse();
         String name = req.getParameter("name");
         res.write(name + "<BR>");
    Result is "Omri"
    Regards,
    Omri

  • IView to show Portal Role User Assignments

    Is there a Standard iView which can show what users are assigned to a portal role?
    Thanks.
    Regards,
    Mel Calucin
    Bentley Systems

    You can use delegated user administration to control the access
    http://wiki.sdn.sap.com/wiki/display/EP/ConfiguringDelegatedUser+Administration
    If you want only read-only access
    1. Copy the standard User Admin role from Portal Content - Content Provided by SAP - Admin Content - User Administrators
    2. Paste it in one your own custom folders
    3. Adjust the name and ID and remove unwanted areas in the custom role (like Import and Activity Reports)
    4. Go To User Administration and search and select the newly created role.
    5. Select the Assigned Actions Tab and remove all the actions and just add the UME action - Read_All
    6. Save your role and assign it to a test user (without the user admin standard role) to verify.
    Thanks
    Prashant

  • Pass parameter to a iView

    Hi all,
    I have an URL iView that points to a ASP page. I need to pass parameters to the ASP page through the iView.
    For example, I want to call:
    http://../portal?NavigationTarget=ROLES:myiview&param1=value1
    The iView has to include my "param1" to the ASP page, but it doesn't include it.
    Any ideas?

    Hi,
    Ok, lets try other solution
    Create AppIntegrator iView and in the URL Template field define the next string: "http://search.tut.by/?query=<query>"
    After that run your iVIew with the query parameter:
    http://<host>:<port>/irj/portal?NavigationTarget=ROLES://pcd:portal_content/test_appintegrator/generic1&query=blabla
    You will see that the value of the "query" parameter passed to the site.
    Regards,
    Andrei

  • Passing  parameter from transaction iview

    Hi,
    We have a case of invoking a transaction iView from a WebDynpro application. I need to pass the parameter from transaction ivew to webdynpro application. Any pointer to this will be really helpful.
    thanks....

    Hi,
    While you are performing portal navigation from WD iVew (using navigateAbsolure() or navigateRelative()) to Transaction iview in that call itself you will get one of the parameter as business parameter. You could set the application parameter during portal navigation.
    Regards,
    Murtuza

  • Passing parameter in href to a different Portal page

    Hello All,
    I have requirement where I have a portlet A in portal page 1. Portlet A is a JSP which has a href pointing to the url of a different portal page (page 2) having the portlet B.
    <a href=".../pls/portal30/url/page/page2
    When I click on the link on portlet A, I need to pass some parameters to the portlet B in second page.
    I know there's no straight forward way to do this. Could you all please share me your experiences and advice me asap.
    Thanks in anticipation.

    I have an example of two portlets on the same page and parameter is passed from one
    to another. The idea should be the same
    is the other portlet in on another page.
    Hope this helps.
    Report 1: summary report
    SQL report, on scott.dept:
    select htf.anchor('http://iasqa-ultra1.us.oracle.com:7777/servlet/page?_pageid=117&_dad=wwv_30898&_schema=WWV_30898&_mode=3&dept='&#0124; &#0124;deptno, deptno) aaa, dname, loc from SCOTT.dept
    The url here is the page url with extra parameter for dept, the bind variable
    in the detail report
    Report 2: detail report
    SQL report, on scott.emp
    select * from scott.emp where deptno = :dept
    Add the following PL/SQL code in the "before displaying the page"
    wwv_30898.wwv_name_value.replace_value(
    l_arg_names, l_arg_values, p_reference_path&#0124; &#0124;'.dept', wwv_30898.wwv_standard_util.string_to_table2(nvl(get_value('dept'), 10)));
    Build a page and include these 2 portlets, then when you click
    on the link of the summary report, the page will be refreshed,
    and the detail report changed based on the data from the summary report.
    Here is the url for my example,
    http://iasqa-ultra1.us.oracle.com:7777/servlet/page?_pageid=117&_dad=wwv_30898&_schema=WWV_30898&_mode=3
    null

  • Portal roles & NWBC

    Hi,
              Can someone tell the context of the portal roles (PPM_admin, RPM_admin etc.) in Netweaver Business client. Suppose I want to restrict access to a user in NWBC what should be the procedure. For example I want to give a user only Portfolio Management role in NWBC, how will I achieve that in pfcg role. Currently the pfcg role SAP_BPR_PPM is assigned to all the users and hence all the users have the privileges of Project Management, Portfolio Management, REsource Management in the NWBC. For your information, I am using Netweaver Business client for HTML.
    REgards,
    Swami

    Hi Thorsten,
                            Thanks for the reply. Yes I got it. In the meanwhile I referred to the note 1405902. It talks about how to restrict certain tabs and features based on the roles. But they are all related to the portal roles. Could you please kindly let me know how to remove tabs and features when one uses Netweaver business client (for HTML) as the front end? I am opening another thread for this.

  • 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

  • Pass Parameter to a Transaction Using Transaction Iview Portal

    Dear Experts.
    I have the following doubt:
    The developer ABAP created a program Z_PROGRAM_ABAP
    and a T.Code Z_CODE_PROGRAM for this program.
    I have created a Transaction Iview in the portal for this transaction, but I need pass a value in the Iview  to a variable in the program that call this transaction.
    How can pass a paramete to a variable in the program that is called with the transaction Z_CODE_PROGRAM?
    Thank In advance for your help.
    Best Regards
    Carmen G.

    Hi .
    I have the following code:
    REPORT Z_PROGRAM_ABAP.
       parameters: XYZ type Char no-display.
    if XYZ = 1.
    Write 'ABC'.
    else.
    Write 'MNO'.
    endif.
    And in the portal:
    Application Parmeter    :  XYZ = 1
    Parameters Forwarded: 1
    The problem is that i not want that the user can see the parameter XYZ in the Sreen. When I delete the NO-DISPLAY of the sentence    parameters: XYZ type Char no-display, the parameter is passed.
    How can solve this issue?
    Best Regards
    Carmen

  • Dynamic pass parameter URL iview Portal

    Hi guys
    i have url iview, this iview is assigned to a rol of anonymous user,
    http://XXXXXXXX/irj/portal/anonymous?guest_user=Guest01
    the ivew set automatically and i can see when user guest sign in.
    this iview have 2 parameters i need this parameter, has set values with a link, like this
    http://XXXXXXXX/irj/portal/anonymous?guest_user=Guest01&parameter1 = value1&parameter2 = Value2
    i appreciated any help
    Angel G.

    Hi Angel,
    So you are trying to pass two parameters to your iView that is embedded in a portal role that is assigend to an anonymous user... is that right?
    What problems are you having? Does the iView not see the parameters if passed as part of the top level URL (e.g.
    http://XXXXXXXX/irj/portal/anonymous?guest_user=Guest01&parameter1=value1&parameter2=Value2)?
    Not sure if it is just a typo but you have blank spaces between your "=" signs in that URL you posted, there should be no spaces.
    A bit more info and perhaps I can help more,
    Simon

  • Passing a parameter to an iView window from a Web Dynpro

    Hello all,
    I know very little about the portal, and haven't been using Web Dynpro for too horribly long, either, so I'm really not sure what part I'm having a problem with here, so I'm just going to explain the whole scenario the best I can.
    I have a Web Dynpro DC with two applications in it - SearchDevices and ShowDetail.  The idea is that there will be an iView created on the portal for each of these apps, and the user can navigate to the SearchDevices app, but the ShowDetail one will only show up by clicking on a result from the SearchDevices app.
    Because the user did not want to see the portal navigation when opening up the ShowDetail, we can't use the WDPortalNavigation.navigateAbsolute(), so it was suggested to me by a coworker that I do the following:
    String url = "http://localhost:50000/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fJennifer!2fjava_fe_com_reg~search_cust_device_wdp_com_fecorp_wdp_ed_showdata_ShowData?sap-config-mode=true&application_parameter=EqNo=" + wdContext.currentResultsElement().getEqunr();
    String title = "Device Details";
    IWDWindow window=wdComponentAPI.getWindowManager().createNonModalExternalWindow(url,title);
    window.open();
    "http://localhost:50000/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fJennifer!2fjava_fe_com_reg~search_cust_device_wdp_com_fecorp_wdp_ed_showdata_ShowData?sap-config-mode=true" is the url I see when I preview my iView in the portal (it's hard-coded now, but that will be fixed in my final production application)
    "EqNo" is the parameter that my ShowDetail app is looking for... but, when I try testing this, this part is obviously not working, as it's always null, even though I can see in the URL the value being passed.
    (as a side note, for me to continue testing other things until this is resolved, I HAVE done a WDPortalNavigation.navigateAbsolute() and sent the parameter that way, and it works FINE)
    Any suggestions would be appreciated, I <b>will</b> reward points for anything helpful.
    Thanks,
    Jennifer

    Hi ,
    For the first one ,
    Official Doc :
    <i>This class allows the access to the origin request. If Web Dynpro is used within the SAP Portal Runtime, the Web Dynpro application developer may use Portal services. For that, the origin request object is often needed to use a lot of the existing Portal services. In the Portal case, the origin request would be a IPortalComponentRequest object.
    </i>
    If, he has used portal services .. please do post the steps he had done..
    Second :
    Might sound silly , but what you can do is .. put both of them in the same view.. lilke add interface view of the showdetail in first one itself..
    hide when in search page.. .and when a user clicks on a search result.. enable that result.. and disable the other one..
    this way.. u hav the same tab in TLN .. and ur passing parameters prob wud also get solved..
    Regards
    Bharathwaj

  • Passing Parameter to a direct called iview

    Hello,
    i call an iview with http://<server>:<port>/irj/portal?NavigationTarget=.....
    Then i also want to pass to the called iview an additional http-parameter like id=XXX by adding '&id=XXX to the link, but the result is always a javaNullPointer.
    Any hints?
    regards,
    Marco

    Hi Marco,
    OK, that's more than you described initially. Sure this does not work. If you call the link from the generated email, a request is sent to the portal, including your additional parameter(s). An URL-iView now will init a second request to the URL defined in the properties of the iView - no reason why your properties should get sent with.
    What you could do is to extend the URL iView functionality to get all parameters from the request of the call to the (modified) URL-iView and to pass them beneath the things described in the iView properties.
    Alternatively you could write a proxy before the URL-iView and call this instead of the URL iView. Imagine you know that the URL-iView has got two parameters, than you could delete all additional parameters, add the parameters that you find within the request and redirect to this changed URL iView. The only thing you have to care of is to do this in a personalized way. Anyhow, also with this concurrent access problematic would stay if the same user calls two of these iView "at the same time".
    Hope it helps
    Detlev

  • Pass Parameters to T.Code  in the portal from aTransaction Iview.

    Good Morning.
    I published a T.code in the portal as a Transaction Iview. This work fine.
    I want pass a parameter to this t.code and that the program ABAP can get this value .
    I check a suggestion in the post following :
    From Portal transaction iView
    I did the steps , but this not work. I don't can get the value passed in the field Applications Parameters.
    Attach screenshot with the steps that I did.
    [Screenshot|http://www.freeimagehosting.net/uploads/3d4dd249ad.jpg]
    I want know how can solve this issue?
    Thank in advance.
    Regards

    Hi Carmen,
    The bottom line is that this cannot be done for transaction iviews without modifying the standard webgui service in SICF, which is probably not a good idea (since it affects everyone using SAP GUI for HTML). (You could hack the appintegrator to add the ~webgui_simple_toolbar parameter to the transaction URL template in the portal, but again its not a recommended thing to do ...). Better to create an IAC service in SICF with ~webgui=1 where you set the required appearance using an appropriate value for ~webgui_simple_toolbar, and then create an IAC iview to point at this service.
    You can even override the ~transaction value configured in the new service in individual IAC iviews by entering the appropriate value in the application parameter of the iview, for example:
    ~okcode=/nSU01
    And you can pass parameters in the same way:
    ~okcode=/nSU01 USR02-BNAME=xyz;USREFUS-USERALIAS=abc;
    By the way, it would not be recommended to create a URL iview to access an IAC, since you are likely to encounter session management issues in this scenario - better to use an IAC iview.
    Regards, Rory

  • Passing values to BSP iview in Portal

    Hello,
    We have a BSP iview created in the portal. We would like to pass a parameter to the end of the url.
    for example:
    name of bsp iview: MDM_VEND_REQ
    start page is:  start.htm
    parameter: ?mode='create'
    The first two are fine as there are place holders to enter that in the BSP iview properties page within the portal.
    i tried entering the parameter in the application parameter property within the bsp iview in the portal. no luck
    any ideas,
    Thanks,
    Sunil

    In "Application Parmeter" enter the value as "<mode>=<create>"
    Check out the following for further details,
    http://help.sap.com/saphelp_ep60sp2/helpdata/en/30/1b62799d786445a72ad85acb4fd55b/frameset.htm

Maybe you are looking for

  • Remote Access VPN ASA

                  Hi Guys I have a problem with a Remote Access VPN on a ASA 5510 8.6.2 I have created a IPSEC Remote Access VPN through the wizard this is pretty much a base install on the ASA without much configuration. I can connect to the ASA via the

  • Business Process Monitoring with SAPCCMSR Agents

    Hi I have installed a SAPCCMSR Agent in a non-sap system to monitor log files. This is the configuration about a particularly log file: LOGFILE_TEMPLATE DIRECTORY="E:\LOG" FILENAME="senddata*.txt" PATTERN_0="error" VALUE_0=RED MONITOR_NEWEST_FILES=1

  • ATV2 Unresponsive

    I know this has been an issue before, but I cannot find where it was actually solved or what to do.  ATV2 goes into screensaver mode or the TV is turned off.  When the tv is turned back on OR when pressing menu to rouse the ATV2 from screensaver, the

  • Interactive Report Region Layout

    I created an interactive report, but it can have many records (close to 1000), and my customer needs to print it. Let's assume 4 records A,B,C,D when displaying, the report shows as A B C D I have enough room on the page to get it to go horizontally

  • Filesharing with Windows over Airport Express

    Hi, I have a windows xp network that is set up as follows cable modem -> Linksys BEFSR41 rougter -> Airport the linksys goes off to a few computers and the airport express, now the networks is working beautifuly for internet access, but i am stuck wh