Webdynpro URL Startup Parameters

Hello,
i call my webdynpro application about a html link. it is possible to deliver my application some startup parameters by url, like
http://sap:50000/webdynpro/dispatcher/local/Application/Application?<b>parameter=3</b>

Hi,
You can provide paramters in the default plug of the interface view and fire url to the new application.
The only restriction would be to provide the parameter as app.<parameter name>
The parameter would be accessible in the default plug.
There you you need not give the "app" prefix.
for eg. if you are passing a parameter abc, just pass it as app.abc
Do send in your feedback.
Regards
Noufal

Similar Messages

  • SAP recommanded WebDynpro ABAP Startup parameter

    Hello everyone
    We have a webdynpro abap application where the display at the browser is very slow.
    The problem is not at the application itself. All table read are very quick. But when displaying the record to the browser it is deadly slow.
    1000 records:
    Read time less than 1 second.
    Display time to the browser 28 seconds.
    All the code has been optimized to reduce reading time. But the time required to display is killing all users patience.
    I would like to know if someone has any kind of documentation indicating SAP recommandation of the startup parameters, at the WAS level or at any levels.
    Is there any tools available to trace where is the bottle neck? Why it is so slow to display?
    So far, the debugging tool just indicates that all database read section are working with great efficiencies.
    we tested the application using windows explorer 7 and firefox 3.5. Same result with both browsers.
    any suggestino wil be highly appreciated.
    Regards
    DSTJ

    Hello Thomas
    Thank you for your reply.
    At the browser level, the display has been set to 10 rows only.
    The selected record at the server level is 1000 records. But only 10 rows are displayed at a time.
    I am trying to find any documentation related to parameters that have to  be setted to have optimal performance using WebDynpro ABAP application.
    Related to my comment where the information was refering the webdynpro java was related to the Arun P. link not your post.
    The WD_TRACE_TOOL give some information. Unfortunatly I don't know how to use it. I need to play with it.
    You refered to CTRLALTSHIFT+P. I don't know where to perform those key stroke. I tried at the browser level, at the SE80 level without success. So, I didn't understand that part.
    If you can guide me further, it will be highly appreciatted.
    Regards
    DSTJ

  • IC webclient url with parameters

    Hi all,
    Can I call IC webclient url with Parameters from another SAP system?
    Thanks and Regards,
    Smruti

    Hi Smruit,
    Check out this link that explains the options for opening the IC webclient.  It gives you teh URL parameters
    http://help.sap.com/saphelp_crm50/helpdata/en/84/11939c402646a080a44521c79a66f1/content.htm
    Cheers
    Andrew

  • Please help me in resolving the URL with parameters.

    Hello,
    Please help me in resolving the URL with parameters. If desformat is pdf, a pop up message �Acrobat Reader could not open �pa034922.fdf� because it is either not a supported file type or because the file has been corrupted���.
    if desformat is html or xml, the following URL is working.
    our requirement, report should be in pdf format.
    http://servername:7778/dev60cgi/rwcgi60?server=Rep60_mclaren&&userid=bizsystest/test@business&destype=cache&desformat=pdf&report=salary_dept.rdf&p_dept_list=''ABE','ASE','CE','CHE','CS','DE','DIAL','ECE','ERC','IE','ME','PTE','ARC','ASE1''&p_status_list=''ACP','AD','AP','ATP','D','FE','HD','INS','P','RP','S','TF','TP','TS','ST','GS','O''&p_sex=''M','F''&p_order_by='Name'&p_totals='NO'
    Thanks in advance,
    Usha

    We've seen this bug on machines running IE6 with a certain security patch (I forget its number). There's a thread in the Metalink reports forum about it. It appears to be somewhat tied to another problem where IE runs the report twice (you can see that in Showjobs. You're seeing the problem in 6i; I believe it persists in 9i.
    The workarounds are (1) set Acrobat so it doesn't open within IE or (2) switch to a different browser, like Netscape. For workaround 1, Start Acrobat Reader, Choose File -> Preferences -> General, Uncheck Web Browser Integration
    There's some evidence that it occurs more often with urls that include single quote characters. I think it's worse with XP, but I don't have any proof.
    If you check Adobe's site, you will see this isn't just an Oracle Reports problem. I think we're waiting for Microsoft on this one, so don't hold your breath for a quick fix.
    -- jim

  • Opening a url  with parameters in an application

    I'm able to open a url in a browser from my application, but I want to open a url with parameters.
    for instanse http://mypage.asp?parameter=a
    You get a file not found. Is this possible?
    I'm currently using
    Runtime.getRuntime().exec( "cmd /C start " + url);

    Found the answer -- you have to put the url in quotes lest the ampersands parse the end off.

  • How to use URL iview parameters??

    Hi all,
    i have created a URL iview  to www.gmail.com, now my requirement is i dont want to give user id and password and it should logged me in directly so for that i need to make use of URL iview parameters, but i am not aware of how to use it, can anybody help me to resolve this issue??
    Thanks in advance,
    Regards,
    Ameya.

    Hi Ameya,
    Basically, you need to create a HTTP system, then create a URL Iview giving this http system as a reference in it.
    Check this <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=389042">thread</a> for details.
    You can also refer to
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/f5/eb51730e6a11d7b84900047582c9f7/frameset.htm">SAP Help Library</a>
    cheers~
    avadh

  • Calling a webdynpro URL in new window from BSP

    Hi experts,
      i am calling a URL from BSP application by creating a link and on the 'onclick'  event of the link ,using following code
    navigation->goto_page( URL = l_wd_url session = 'NEW' ).
    My problem is ,i have to open this page in a new window(the Page is basically a webdynpro URL) ,so far it is only opening in same window.I have tried different other options.
    navigation->next_page( URL = l_wd_url session = 'NEW' ).
    CALL METHOD runtime->server->response->redirect( url = l_wd_url ).
    navigation->call_application( URL = l_wd_url ).
    I tried using call_browser FM also but it is dumping.
    href tag will not work in my case as i have to capture the event and write some code inside  that event..
    Please suggest what i can do now?

    Hello Graham,
    I am trying to get the windows user id in webdynpro abap.
    I am unable to get,
    So I used BSP application to get the windows user id.
    I using java script to get that.
    After that I don,t know how to  assign that java variable to ABAP variable. the
    Insted of calling the WDA using the following way
    <a href="<%=l_wd_url%>" target="_blank">Click Here</a>
    is there any other way to call WDA from BSP based on some action.
    Regards
    Srini

  • Remote URL with parameters

    I'm building a ADF Mobile application and would like to call remote URL with parameters however there is no concrete example of this in the developer guide. I would like to call www.google.com?q=queryParam where queryParam is an user input.
    Thank you...

    I think you need to first define a white list of sites and this will allow opening the page in the web view instead of a separate browser see:
    http://docs.oracle.com/cd/E35521_01/doc.111230/e24475/remoteurl.htm#BABJFEAE

  • Adobe Reader Plug-In - Startup Parameters

    Hello,
    Sorry if this has been asked before but I want to embed the plugin in an html page.  I found the startup parameters for navigation panel (starting it looking at pages (thumb nails)) and a couple others.
    I am still looking for the following;
         I need the startup parameter(s) to show the two rotation toolbar buttons upon startup.
         I need the startup parameter to enlarge the thumb nails (by one size) upon startup
    I have this so far....
    <embed src="pdf_open_parameters.pdf#toolbar=1&navpanes=1&pagemode=thumbs&zoom=100" width="1000" height="1000">
    Can anyone assist?
    Thank you for your time.
    Nathan

    The default zoom for the plugin should be the same as for the standalone Reader.  Is it not?

  • Lauching URLS with parameters Form Personalization

    Hello,
    At Crawley Borough Council we wish to use FP to launch urls with parameters; this would really enhance how CRM is used at Crawley BC. There values are taken from the contact centre customer block e.g. CUSTOMER_HEADER_BLK.CUST_FNAME would could be translated to the value of FRED.
    I can launch URLs without parameters ok, as soon as I add parameters I either get a url that does not translate the parameters or get an ORA error on vaildation.
    Can somebody please advise me the correct way to proceed.
    URL where parameters not translated when launched.
    http://cbcstlintraa/stellent/idcplg?&IdcService=GET_FILE&dDocName=CRMResultsForm&RevisionSelectionMethod=Latest&Rendition=Web&QueryText=(dDocType%20<Substring>%20'FormPublished'%20<or>%20dDocType%20<Substring>%20'ScannedDocs')%20<and>%20(xCRMName%20<Substring>%20' ||: CUSTOMER_HEADER_BLK.CUST_FNAME || '<or>%20xCRMPartyID%20<Substring>%20' ||:CUSTOMER_HEADER_BLK.CUST_PARTY_ID||') '
    URL that fails validation
    ='http://cbcstldeva/stellent_test/groups/internal/documents/callform.jsp&customer=CSAMEN&firstname='||CUSTOMER_HEADER_BLK.CUST_FNAME||'&lastname='||CUSTOMER_HEADER_BLK.CUST_LNAME||'&address_1='||CUSTOMER_HEADER_BLK.CUST_ADDRESS1||'&address_2='||CUSTOMER_HEADER_BLK.CUST_ADDRESS2||'&citytown='||CUSTOMER_HEADER_BLK.CUST_CITY||'&county='||CUSTOMER_HEADER_BLK.CUST_STATE||'&postcode='||CUSTOMER_HEADER_BLK.CUST_POSTAL_CODE||'&serviceid='||INCIDENT_TRACKING.INCIDENT_NUMBER||'

    Hi there,
    Try using this syntax for the variable: ${item.customer_header_blk.cust_fname}
    E.g.: ='http://www.google.fr/search?q='||${item.customer_header_blk.cust_fname}
    for a Google search based on your customer first name...

  • How to invoke JSF With Standard Urls and parameters

    Hi,
    Could some one please help me how to invoke JSF with standard Urls and parameters?
    My requirement is:
    http://localhost:8080/myapp/faces/jsf_page.jsp?trackerID=11&viewPage="products"
    then i want to save the tracker details into database and redirect the user to "products" page.
    Would some one suggest me where can i get some example?

    Hi BalusC,
    It didn't solve my proble.....Your solutions are fantastic for most of the issues. But mine problem is unclear where JSF page tags.
    If possible, Could you please provide me how to invoke the method from JSF page....
    same code works if the user click on command button but my requirement is as soon as the user click on the link from 3rd party website, then he need to come to our web application and invoke the JSF page along with ManagedBean for saving details and redirect to disganted webpage.
    I will provide the following link to 3rd party websites. the URL is :: http://somedomain.com/myApp/Tracker.JSF?trackerID=111
    Could you please provide me the code i need to write in JSF ....just for invoking ManagedBean class...? how i code for page on load call the managedBean for specific method?

  • Can I get the tab's(Level 1 menus) invoke function's URL and parameters

    Hi,
    Can I get the tab's(Level 1 menus) invoke function's URL and parameters in CO?
    Not just the tab being seleced,All the tab's nvoke function's URL.
    Thanks,
    binghao

    I got it.use OALinkBean's method getDestination()

  • Where is Java Startup parameters?

    Where does sapinst store its Java Startup parameters?
    I need to remove som  space from parameters from Java.
    Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine. services.ts.jts.ots.PortableInterceptor.JTSInitializer
    Any help
    Thanks.

    Hello,
    Check this note:
    SAP Note Number: 723909  - Java VM settings for J2EE 6.40/7.0
    The location is given at the end parts of the note.
    Regards,
    Siddhesh

  • Changing Java startup parameters

    Hello all
    I am trying to modify a startup parameter from its default value:
    -DrootDir=c://GDS//Configurations//
    I am doing this using the Config tool. I save the change and then I restart the cluster.
    When I check the developer trace of the server from the MMC I see that there is no change in the startup parameters. Of course the same is true within my Java code - System.getProperty(rootDir) still has the default value.
    When I restart the Config Tool and view the startup parameters they are as I edited them previously, ie. they are the new values.
    What do I have to do to make the change stay in place?
    Thanks
    Bill

    Hi Bill,
    see Karsten's answer in Changing the JDK - I think this should do the trick.
    Hope it helps
    Detlev
    PS: ... and if, please consider rewarding points. Thanks in advance!

  • Construct a Webdynpro Url with a Keyfigure

    Hello everyone,
    I have a new question. I have a webdynpro application which generates me an standard url. Ok this works perfectly.
    My problem is, i want to modify the Url with certain key figures (for example.......URL&Product&Location etc.)
    I have found some tutorials who describes some Url Modification with Parameters, but the problem is this tutorials is they have constant values (Paramter1 = Value1 & Parameter2 = Value2). This is not what I want.
    I need the whole keyfigure without any constant value!!
    Is it possible?
    Thanks Stefan

    If you are talking about adding Dynamic_Parameter then you can combine there 2 classes
    cl_wd_utilities=>construct_wd_url to construct the url
    cl_http_server=>append_field_url to append parameter value
    * Get the URL of the called application
          call method cl_wd_utilities=>construct_wd_url
            exporting
            application_name              = 'ZZ_CALLED_APPLICATION'
          importing
            out_absolute_url              = w_url.
       * make the Value type compatible that has to be passed with the URL
      w_value = lv_ebeln. "set the value here
    * Attach the parameters and its value with the URL that
    * have to be passed to the 2nd application
      call method cl_http_server=>append_field_url
        exporting
          name  = 'EBELN'
          value = w_value
        changing
          url   = w_url.

Maybe you are looking for