Validator complaining about & in URL parameters?

I got an inscrutable fault in one of my pages this morning,
and eventually, in
desperation, I threw it at the Validator page. The page was
an Index page for
my photo album, with a link attached to each item. The links
are of the form
http://www.corybas.com/New_page.php?path=Holidays&item=RPHols_007,
and (among other things) the Validator produced a torrent of
complaints to the
effect that the & ought to have been encoded. I tried
replacing the & with %36,
and the page promptly failed to load.
Am I overlooking something, or is the Validator complaining
when it shouldn't?
(It did also complain about another error, which did enable
me to find my
problem.)
Clancy

On Tue, 19 Aug 2008 14:42:32 +1000, Clancy
<[email protected]>
wrote:
>I got an inscrutable fault in one of my pages this
morning, and eventually, in
>desperation, I threw it at the Validator page. The page
was an Index page for
>my photo album, with a link attached to each item. The
links are of the form
>
>
http://www.corybas.com/New_page.php?path=Holidays&item=RPHols_007,
>
This displays "Unkown item; this page cannot be displayed." -
do you
really mean this page ?
>and (among other things) the Validator produced a torrent
of complaints to the
>effect that the & ought to have been encoded. I tried
replacing the & with %36,
>and the page promptly failed to load.
Are you loading text in design or code mode, as Dw does code
& as
here:
<p>The &amp; character
put in design mode</p>
but if you put in code view it does this - which may be what
the
validator is complaining about.
<p>The & character put in code mode</p>
>
>Am I overlooking something, or is the Validator
complaining when it shouldn't?
>
But the validator on the page you gave errors about this
which may
effect character encoding:
Character Encoding mismatch!
The character encoding specified in the HTTP header (utf-8)
is
different from the value in the <meta> element
(iso-8859-1). I will
use the value from the HTTP header (utf-8) for this
validation. "
~Malcolm~*...
~*

Similar Messages

  • Validation error removes all url parameters

    The url of my jsf page has some url parameters. Using the JSF 2.0 build-in PRG pattern support and outcome with viewId and parameters it's easy to work with url parameters now.
    My problem is when some server-side validation error is occurred JSF navigates back on the same view Id but removes all my url parameters.
    Is there any way to resolve this issue to remain page bookmarkable even after some validation error is happened?

    Thank you for advice.
    Issue was added:.
    [https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=1653|https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=1653]

  • Any tutorial about url parameters

    hi
    i search for any tutorial about url parameters and how to use
    it in one page to call every thing just change the url parameter
    and every thing on the page changed like the visibility of
    something ,,,,,
    thanks in advance.

    There are two parts to a URL parameter -
    1. Sending it
    2. Receiving it
    To send it, do this -
    <a href="whatever.php?your_parameter=<?php echo
    $whatever; ?>">This link
    will send the parameter to 'whatever.php'</a>
    To receive it, do this -
    <?php
    $yourVariable =
    isset($_GET['your_parameter'])?$_GET['your_parameter']:'';
    ?>
    That parameter's value is now stored in $yourVariable. The
    isset part tests
    to see if the parameter has been specified at all, and if it
    has not, it
    sets $yourVariable to '', while if it has, it sets
    $yourVariable to the
    value of the parameter. It is functionally equivalent to -
    <? php
    if (isset($_GET['your_parameter'])) {
    $yourVariable = $_GET['your_parameter'];
    } else {
    $yourVariable = '';
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "macnux" <[email protected]> wrote in
    message
    news:etg5ts$ovj$[email protected]..
    > ohhh sorry
    >
    > about PHP

  • Displaying the URL parameters in pdf file.

    Hello, I need help about using JavaScript with pdf file. I have an URL like this: http://www.a.org/mta/sigtr_mta.pdf?&rqst_id=8762312&inst=The+Jackson+Laboratory&pi=Dr.PI& 022008-UCD. Is there a way that I can extract the URL parameters (such as rqst_id or inst ) from JavaScript in this pdf and replace some form text field with the parameters and set these fields to read only.
    I appreciate any of your help or hint!

    this.URI(), I believe, will get you the complete URI that the document was opened from. Then you can parse it any way you'd like.
    Leonard

  • Using URL Parameters in a PDF Form

    I built a form in LiveCycle Designer ES and I would like a couple of fields auto populated. The only way I could see doing this without having to purchase the LiveCycle Forms Server or another solution, is to embed the information in the URL.
    I found a blog post about it on Stefan Cameron's blog:  http://forms.stefcameron.com/2006/10/20/using-url-requests-in-pdf-forms/
    I was able to get this to work, but when I try to allow the user to save their form locally, the form information get cleared when they try to reopen it.
    I searched the NET and really couldn't find anything related to my problem.
    Does anyone have an idea about this or should I be looking at a different solution?
    Thanks,
    James

    I think that I was able to resolve this issue myself.  After opening the PDF with URL parameters, you need to manually enter data into a field before saving. After manually entering data in a field and saving, the form contains all of the data.

  • Help with URL Parameters and HTML DataSet please.

    Hello everybody!
    Looking at the example page: "Using URL Parameters to Control Data Regions", towards the bottom it gives an example of "Set by Product Name", from an XML DataSet using the following sample code:
        //Data set for the second example. var ds2 = new Spry.Data.XMLDataSet("../../demos/products/products.xml", "products/product");    //If the URL parameter 'product' has a value, set the XPath that includes a filter and then load the data. if (params.product){    ds2.setXPath("products/product[name = '"+params.product+"']");    ds2.loadData(); }
    Can anyone please explain how to amend this to work with a HTML Dataset rather than XML?
    The first example on the page (Set by RowID) works unchanged for the HTML DataSet, but I don't know what I should replace the 'setXPath' line with.
    I see this has been asked before, but I'm afraid I can't find any answer that works (or, more often, that I can understand properly!)
    Grateful for any suggestions.
    Len

    Wow! Thanks Ben.
    I hadn't thought about using Stacked Containers.
    I'll test this out tonight and let you know how I get on.
    Cheers,
    Len
    A few days later and at last I've been able to test your suggestions.
    I think I must be doing something wrong as the links and content don't work at all:
    http://www.myosanthe-bernhard-huber.com/html/stack1.php
    I know that the stacked containers do work (http://www.myosanthe-bernhard-huber.com/html/stack0.php), so I guess there are some errors in the coding somewhere.
    Would you mind reviewing, please?
    The important thing for me (in this case, anyway) is to get the called page's content using its 'Ref', and I'm not sure what benefit there is in using stacked containers as opposed to master-detail containers.
    The master-detail method works reasonably well for me at
    http://www.myosanthe-bernhard-huber.com/html/fotoalbum.php and sub-pages.
    Perhaps I am betraying my lack of knowledge, but as I said in my original post, I think that I just need the HTMLDataSet equivalent to:
        //Data set for the second example.
    var ds2 = new Spry.Data.XMLDataSet("../../demos/products/products.xml", "products/product");
       //If the URL parameter 'product' has a value, set the XPath that includes a filter and then load the data.
    if (params.product){
       ds2.setXPath("products/product[name = '"+params.product+"']");
       ds2.loadData();
    which as you can see uses an XMLDataSet, but does exactly what I need.
    (see http://labs.adobe.com/technologies/spry/samples/data_region/DataWithURLParams.html)
    Thanks again for your help, Ben.
    Len
    Message was updated by: ec1lennie

  • Passing Values to URL Parameters in HTTP Connection SCOT

    Hi ,
    I have created a new node in SCOT as HTTP. In that i am using one URL as HTTP Connection , for that URL have to pass some input values ( eg: User name , password ). Right now i am hardcoding these values in the URL, But i need to pass these input values to the URL dynamically. Is there any way to pass the values to the URL parameters .
    Regards
    Bala..

    Hi Bala,
    Did you ever get this resolved? I have a similar requirement but still cant find a way to do it. I even thought about creating an RFC Destination of type H and entering the user name and pwd in the logon details. But the problem wih this is that the URL for the RFC destination is static and cant really be changed.
    Be interested to hear your thoughts.
    Alon

  • Does CF really auto-decode URL parameters passed to a page?

    CF docs and livedocs state that:
    quote:
    ColdFusion automatically decodes URL parameters that are
    passed to a page
    (for example, see the URLEncodedFormat tag description, last
    sentence of opening paragraph)
    However, if you have a url-encoded url parameters, as in
    ?var1=1%26var2=2 (%26 is url-encoded equivalent of &), and in
    your page you try to validate url parameters with <cfparam
    type="integer" name="url.var1"> or with isvalid("integer",
    url.var1) function, the validation will fail! Apparently, inside at
    least this tag and function Cf does not automatically decode url
    parameters... it sees the var1 declaration, but sees its value to
    be not 1, but 1&var2=2, which surely fails validation against
    type "integer"....
    This behaviour has been brought up in these forums several
    times now, but nobody has been able to explain how this relates to
    the CF docs statement... Any ideas, anyone? Is this an expected
    behaviour? Are the docs wrong? Does 'parameter', as in "url
    parameters", refer only to specific parts of query string and does
    not include url var name/value pairs separator? Apparently the same
    happens if you have "=" sign url-encoded, too...

    I will have to think on this, do some reading and try some
    experiments.
    But my first thought is that this is expected behavior. I
    would
    propose the purpose of URL encoding the ampersand(&) is
    so that it will
    be considered a part of a value, not its usual role of
    name-value pair
    separator. So in my mind this is the way it is supposed to
    work.
    val1=1&val2=2 : val1 is 1 and val2 is 2
    val1=1%26var2=2 : val1 is '1&var2' or '1&var2=2'
    I will have to explore this further.

  • Unexpected URL parameters have been detected -- tried all options mentioned

    Hi Gurus,
    I am hitting the following exception "Unexpected URL parameters have been detected" when i try to run the tutorial page.
    Instance RUP level : RUP 7
    Jdeveloper version used : Patch 8751878 9I JDEVELOPER WITH OA EXTENSION ARU FOR 11I RUP7
    installation location : C:\JDev9
    JDEV_USER_HOME set to C:\JDev9\jdevhome\jdev
    user name and pwd set to my EBS login
    Project run time settings : Application short name : AK
    Responsibility Key : FWK_TBX_TUTORIAL
    double checked that the responsibility is assigned to my user in EBS
    DBC File : downloaded the file from $FND_TOP/secure , changed the guest login to my ebs login.and placed in directory
    C:\JDev9\jdevhome\jdev\system9.0.3.5.1453\oa\dbc_files\secure\fmscng3.dbc and gave the same path in the dbc file directory
    Profile options
    FND Function Validation Level - Error
    FND Validation Level - None
    Tried all the options in the below thread
    Unexpected URL parameters have been dete
    Tried setting the oc4j option to default ip also, but still getting the following error
    http://<host>/OA_HTML/AppsLocalLogin.jsp?requestUrl=APPSHOMEPAGE&cancelUrl=http%3A%2F%2Ffmscng3.hphc.org%3A80%2Foa_servlets%2Foracle.apps.fnd.sso.AppsLogin&errCode=FND_SSO_PHISH_ERROR&langCode=US&errText=You+have+insufficient+privileges+for+the+current+operation.&username=<EBS Usernaname>&s1=_zZV1GAvFZ06hcFzUtNhWA..
    Please help me
    Thanks
    Tom

    It does not give me any error , it just says unexpected URL parameters and asks me to login .
    These are the messages i get in jdev messages window
    [Starting OC4J using the following ports: HTTP=9009, RMI=23892, JMS=9247.]
    C:\JDev9\jdevbin\jdk\bin\javaw.exe -client -classpath C:\JDev9\jdevbin\j2ee\home\oc4j.jar;C:\JDev9\jdevbin\jdev\lib\jdev-oc4j.jar -Xbootclasspath/p:C:\JDev9\jdevbin\jdev\appslibrt\ojdbc14.jar;C:\JDev9\jdevbin\jdev\appslibrt\nls_charset12.zip -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true -DRUN_FROM_JDEV=true -mx256m -Doracle.j2ee.dont.use.memory.archive=false -Xverify:none -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 com.evermind.server.OC4JServer -config C:\JDev9\jdevhome\jdev\system9.0.3.5.1453\oc4j-config\server.xml
    [waiting for the server to complete its initialization...]
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 1031 ms.
    Auto-deploying OA Framework web application deployment descriptor (New server version detected)...
    Oracle9iAS (9.0.3.1.0) Containers for J2EE initialized
    TIME: runregion: initialization [0 ms]
    Tutalii: C:\JDev9\jdevbin\jdev\appslibrt\iasjoc.zip archive
    ICX DIAGNOSTIC: FND_TOP = C:\JDev9\jdevhome\jdev\system9.0.3.5.1453\oa\dbc_files\
    ICX DIAGNOSTIC: application_id = 601
    ICX DIAGNOSTIC: responsibility_id = 24742
    ICX DIAGNOSTIC: security_group_id = 0
    ICX DIAGNOSTIC: mEncryptedSessionID = NABGU12RzHcrxNu18A3C_dZr:S
    ICX DIAGNOSTIC: mSessionID = 65734022
    TIME: runregion: session and transaction creation [8421 ms]
    ICX DIAGNOSTIC: mTransactionID = 1221310558
    java.lang.IllegalArgumentException: Unknown signal: ALRM
         at sun.misc.Signal.<init>(Signal.java:126)
         at oracle.apps.fnd.framework.AppsDiagnosticsHandler.install(AppsDiagnosticsHandler.java:50)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.initializeSignalHandler(OAApplicationModuleImpl.java:474)
         at oracle.apps.fnd.framework.server.OAApplicationModuleImpl.<clinit>(OAApplicationModuleImpl.java:464)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:219)
         at oracle.jbo.common.java2.JDK2ClassLoader.loadClassForName(JDK2ClassLoader.java:37)
         at oracle.jbo.common.JBOClass.forName(JBOClass.java:141)
         at oracle.jbo.common.JBOClass.findCustomClass(JBOClass.java:153)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadFromXML(ApplicationModuleDefImpl.java:828)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadFromXML(ApplicationModuleDefImpl.java:771)
         at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:517)
         at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:456)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:313)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:269)
         at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:649)
         at oracle.jbo.server.ApplicationModuleDefImpl.findDefObject(ApplicationModuleDefImpl.java:232)
         at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:359)
         at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.createStaticAKApplicationModule(OAJSPApplicationRegistry.java:369)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.getStaticAKApplicationModuleSync(OAJSPApplicationRegistry.java:344)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.getStaticAKApplicationModule(OAJSPApplicationRegistry.java:333)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:867)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
         at OA.jspService(OA.jsp:33)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    Thanks
    Tom
    Edited by: Tom Trever on May 2, 2011 8:16 AM

  • Hide url Parameters

    Hi Team,
                Is it possible to hide the url parameters, when the gateway service is executed through UI5. For example from the below url is it possible to hide the parameter agencynum in the browser while it is passed to UI5.
    /sap/opu/odata/IWFND/RMTSAMPLEFLIGHT/TravelagencyCollection(agencynum='00001756') .

    Hi,
    as mentioned in earlier response, end user is able to see your entire code as well as how the HTTP calls are being made to server in browser developer console tools (valid for almost all browsers having ability to open the console)
    yes the other option could be encryption of the code but it has its own disadvantages. you can google on it. here is one good discussion javascript - Disable developer tools - Stack Overflow follow entire discussion to know more on pros and cons.
    There is one concept javascript obfuscator. try http://javascriptobfuscator.com/
    Here is example of JS code with obfuscator - JS Bin - Collaborative JavaScript Debugging&lt;/title&gt; &lt;link rel=&quot;icon&quot; href=&quot;http://static.jsbin.…
    and original example as JS Bin - Collaborative JavaScript Debugging&lt;/title&gt; &lt;link rel=&quot;icon&quot; href=&quot;http://static.jsbin.…
    I hope this will give some idea on encoding. but again it has its own disadvantages and need to use properly.
    Regards,
    Chandra

  • Eloqua Referrer URL parameters

    Hi all,
    I’d like to ask something about the parts of the url.
    This is a referrer url for a client site that is being tracked and as you can see, one of the traffic sources is the people that have been sent emails to using Eloqua.
    Q1: The question I have is – in the url structure do any of the ‘elq id’ parameters uniquely identify the contact that the original email was sent to?
    http:// *  *  * /mail-in-the-head?utm_source=EloquaESP&utm_medium=EmailMarketing&utm_content=MR0215_RGR_EM_01&utm_campaign=PLOM_head_gr5?elqTrackId=7b1f5a7e83384676b65164dee8952078&elq_mid=1368&elq_cid=2287227&elqaid=1368&elqat=1
    Q2: Does anybody know where to find a documentation regarding these parameters?
    Many thanks
    Sven

    Hi,
    You can configure URL parameters in two ways.
    1.In the portal, open Content Administration, navigate to iView created for your WD application.
    in iView properties,  Parameters property  in that enter parameters like this format
    name = "PARAM1"&name ="Value"
    2.In NWDS, Select your application->right click & select Edit option  -> Open Application Properties Tab
    Select New . Select Self defined radio button -> Click on Browse
    Enter Name(say PARAM1), Value
    Click Finish button.
    After configuring URL parameters you can get those parameters in WD component using the following code sample,
    String value = WDProtocolAdapter.getProtocolAdapter().getRequestObject().getParameter("PARAM1");
    if (value != null && !value.equalsIgnoreCase(""))
    //DO YOUR CODING
    regards,
    Siva

  • Question about friendly urls?

    greetings all
    i want to ask about if the following is possible:
    i have a link that look like this:
    http://somewebsite.com/page?param1=value1&param2=value2&param3=value3
    is it possible to make the link that appears in the browser like
    http://something.com/page ,and the parameter values is still there in the browser
    something like the urlrewrite or a filter or somehow i don't know?
    any ideas if it's possible?

    Those parameters are there for a reason; to pass along information to the page so that the dynamic content can be manipulated based on them. So your question really is: "Can I pass along this information to the page in another way than URL parameters?"
    There are always options, but most of them require work. For example:
    1) use a POST to generate the page
    In a POST request the parameters are part of the request body, so you don't see them. The trouble is that a POST request cannot be created just like that; it requires some sort of form submission behind it. This can be facilitated with javascript (output a form and let the link submit it through an onclick handler), but it is far from a clean solution.
    Added pain: form submits behave badly in combination with the browser back/forward buttons. Also, bookmarking cannot work like this.
    2) "web 2.0". Using Ajax it is possible to do page updates in the background, so you could do the request (with parameters) asynchronously and update the page accordingly.
    Added pain: again back/forward buttons and bookmarking will be broken unless you take very specific steps (that I don't know of myself).
    3) conversation scope technology. Some APIs provide a so called "conversation" scope, which allows you to hold on to certain values across requests until you end the conversation. You could use this to push certain values into the conversation and reuse them in different pages without having to pass along the values as request parameters or in a form. Even without a conversation scope, you could simply abuse the session for this purpose.
    I hope this has given you some idea how to go about implementing your requirement.

  • Question about mangled URLs

    Hello,
    I have a load testing app that I'm adapting to work with BSPs and I have a question about the mangled URLs that are used.
    If I record a URL that is mangled, can I save that URL and reuse it during the playback of a session?  From what I understand it includes things like theme, language and such.  But obviously if it includes a session  ID, it won't work.
    Session ID seems to be stored in a cookie.  Can it also be stored in a mangled URL and if so, why the duplication?
    Any help greatly appreciated!
    Thanks!!!

    Those parameters are there for a reason; to pass along information to the page so that the dynamic content can be manipulated based on them. So your question really is: "Can I pass along this information to the page in another way than URL parameters?"
    There are always options, but most of them require work. For example:
    1) use a POST to generate the page
    In a POST request the parameters are part of the request body, so you don't see them. The trouble is that a POST request cannot be created just like that; it requires some sort of form submission behind it. This can be facilitated with javascript (output a form and let the link submit it through an onclick handler), but it is far from a clean solution.
    Added pain: form submits behave badly in combination with the browser back/forward buttons. Also, bookmarking cannot work like this.
    2) "web 2.0". Using Ajax it is possible to do page updates in the background, so you could do the request (with parameters) asynchronously and update the page accordingly.
    Added pain: again back/forward buttons and bookmarking will be broken unless you take very specific steps (that I don't know of myself).
    3) conversation scope technology. Some APIs provide a so called "conversation" scope, which allows you to hold on to certain values across requests until you end the conversation. You could use this to push certain values into the conversation and reuse them in different pages without having to pass along the values as request parameters or in a form. Even without a conversation scope, you could simply abuse the session for this purpose.
    I hope this has given you some idea how to go about implementing your requirement.

  • Pass URL parameters from BSP to WDA for ABAP (via Post   )

    Dear Gurus,/ Joerge,
    I am unable to post my Code here, but with the guidance provided by Joerge i am able to solve this
    i Have been through the Below thread
    Pass URL parameters from WD to BSP via Post
    Dear Gurus,
    "Since I am unable to Post new thread i am Continuing this thread, though this Issue has been
    " resolved,i need some more info on the following issue, Kindly guide me,
    I have gone through the below thread but left with no clue
    Pass URL parameters from WD to BSP via Post
    Here i have 2 Issues
    First one is --->
    " After pressing the Button I am calling this URL which is WDA for ABAP
          action="http://company/sap/bc/webdynpro/sap/zuser"> " I am calling WDA for ABAP URL here
    " Kindly guide me how to pass the Value
    Second one is -->
    " This value need to be passed to the URL above and
    " How to capture the Same in WINDOWINIT method of WDA for ABAP
    " And how to Capture this Value in Webdynpro INIT method
    "Here am using Form and method = post , I am removing this as it is causing some problem while posting
          action= my WDA For ABAP URL here " I am calling WDA for ABAP URL here
    " Kindly guide me how to pass the Value
    " This value need to be passed to the URL above and
    " How to capture the Same in WINDOWINIT method of WDA for ABAP
    Thanks and Regards
    Ramchander Rao.K

    Hi,
    let me see if I understand you well.
    BSP -
    You wrote the code for catching the user name in the event OnCreate, which means that you know who´s working with the BSP application when it starts.
    Somewhere you must have a button or something with text like "Call WDA application". When user presses the button, it triggers events OnInputProcessing. Here you must write the code for the cookie that "sends" the parameter(s), something like:
    CALL METHOD cl_bsp_server_side_cookie=>set_server_cookie
      EXPORTING
        name                  = 'MY_COOKIE'
        application_name      = 'ZUSER_NAME_GET'
        application_namespace = 'ZUSER_NAME_GET'
        username              =  sy-uname
        session_id            = 'SAME_FOR_ALL'
        data_value            = PAGE_DATA
        data_name             = 'PAGE_DATA'
        EXPIRY_TIME_REL       = 3600.
    you call then the URL for the WDA application.
    WDA -
    probably in method WDDOINIT of the component controller you´ll write the code for reading the "content" of the cookie:
    CALL METHOD cl_bsp_server_side_cookie=>get_server_cookie
      EXPORTING
        name                  = 'MY_COOKIE'
        application_name      = 'ZUSER_NAME_GET'
        application_namespace = 'ZUSER_NAME_GET'
        username              =  sy-uname
        session_id            = 'SAME_FOR_ALL'
        data_name             = 'PAGE_DATA'
    CHANGING
        data_value            = PAGE_DATA.
    read more about the cookies in SDN, because I am not sure if this is the correct example for transmiting values. I´ve used it in conjunction of instructions IMPORT and EXPORT for transmiting an internal table.
    if this is not working properly, then try with IMPORT TO MEMORY and EXPORT FROM MEMORY.

  • To whom do I complain about the calendar on the iPad 2 with iOS 7? I can no longer read my appointments. Is there an adjustment I can make? Larger text size doesn't help.

    To whom do I complain about the OS 7 calendar on the iPad 2? I used to be able to read my appointments. The new small font is horrible. Text size doesn't seem to change it. Can I change it?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430http://support.apple.com/kb/ht1430
     Cheers, Tom

Maybe you are looking for

  • When on the internet cannot receive calls !!

    Is there something I can do to fix this? When I am on the internet, I can not receive calls it goes to voicemail. Thanks

  • Data recover from a hard drive error 301

    Can anyone advise me of how to recover data from a hard drive error 301.  I have a pavilion dv7-4177 and i received the hard drive error code 301 two weeks after the warranty expired. I back up my data so I though but when tried to reload that data o

  • Sharepoint 2013 and SSRS 2012 Integration - Report Server Content Types not displayed

    Hello, Everyone:   I installed SSRS 2012 on our Sharepoint 2013 application server following the step-by-step instruction from the posting below:   http://msdn.microsoft.com/en-us/library/jj219068.aspx   Everything goes well after STEP 3 is completed

  • Extending wifi through out my house with tp-link ...

    Hi I have BT Infinity 2 and the wireless router that came with it, what I would like to do is connect my  tp-link w td-w8970 router by ethernet cable to the other end of my house is this possible, I have tried to connect the ethernet cable between th

  • Cable down

    I purchased a sun ultra 5 used that is supposed to have solaris 8 on it. When I try to boot from the disk it begins to boot and then I get a : SUNW,hme0: No response from ethernet network: Link down--cable problem? followed by a Starting IPv4 routing