Passing parameter/value to PDF via URL

I want to pass a variable value when you call the .pdf file via the URL from another html page. Is it possible to do? Do I need to do anything on the pdf itself?

Thank you charge.

You can get access to the documents URL using the event.target.URL property, Stefan Cameron has an example of this at http://forms.stefcameron.com/2006/10/20/using-url-requests-in-pdf-forms/

Tags: Adobe LiveCycle

Similar Questions

  • Pass parameter value between c# and TestStand

    Hello

    I'm currently futured, customize the User Interface complete

    I Test.seq master who has all the tests and I need to run only the selected test user in the user interface.

    so I thought to transmit the selected user code c# UserInterface test form to master Test.seq.

    How can I pass the value of the parameter or is there another way I can share data between USerINterce and seq file?

    Thanks in advance

    IVI


  • Pass the value of LINE via a URL to Google Map

    If I use the Oracle whitepaper for the passage of the GMAP LOCATION I use: var point = new GLatLng (& P1_LOCATION); where P1_LOCATION is a value returned to a text box after asking the geo location button.

    I have a column in a report region called RENTAL, I put it as a LINK and a URL.
    If I change var point = new GLatLng (& P1_LOCATION); Var point = new GLatLng(#LOCATION#); it fails because I am not correctly to the col value var GLatLng() on the popup page.

    How to pass a data element instead of a text box value?

    Thank you

    Brad

    Here ya go... This should take care of the job:

    1 change your URL:


    URL: javascript:popUp2('f?p=&APP_ID.:2:&SESSION.:::P2_LAT,P2_LONG:#LATITUDE#,#LONGITUDE#','650','450');

    2nd create two elements to the Page 2 called P2_LAT and P2_LONG, are the hidden items and put them in a region somewhere...

    3rd change your javascript to what follows:


    var point = new GLatLng ($x('P2_LAT').value, $x('P2_LONG') .value);

    It should work for you...

    -David

  • CFSELECT, passing the value selected in the URL?

    Is it possible to use CFSELECT to pass the selected value in the list as a URL variable?

    for example. at present I have surround the CFSELECT in a form and use the onChange event to submit the form

    What I want to do is to pass the selected value in the list as a URL variable, instead of a form element

    Guy, just managed to track down the answer. Could not formulate my question correctly on search engines. When I finally got the correct sentence; There, it reminded me to use GET instead of POST

    Nothing of confidential transmitted, so that's fine.

    All sorted

  • How to pass the external APEX URL parameter values

    Hi all

    Hope you can help me with the following:

    During my first APEX application, I created a button that should have a parameter value of the current page to an external URL

    I created a button.

    The URL redirection target option is set to URL

    [I put the URL target for the http://[URLNAME button]? [constant parameters] & p_variable =: P13_VALUE1

    The APEX variable does not replace what I understand. Can someone tell me how it CAN be replaced?

    Thank you very much

    Marco

    Hi Marko,

    You must use & P13_VALUE1. of the element to get by following the link.

    Kind regards
    Andrea

  • Pass the value modal page using static URLS

    Hi guys,.

    I have a simple page with three boxes.

    When one of the check boxes is selected, I want to draw a new page which I use as a modal page (SkillBuilders Modal plug to help).  I need to pass a value of a checkbox (P1_WTD_OPT_OUT) in the new modal page.

    I have the following in the static URL

    f? p = & APP_ID.:2: & APP_SESSION.:2:P2_WTD_ID, P2_WTD_OPT_OUT: & P1_WTD_ID, & P1_WTD_OPT_OUT. :

    where I'm moving the value of P2_WTD_OPT_OUT to P1_WTD_OPT_OUT.

    As I don't submit anything when the check box that calls the modal page is checked, how I would pass the value in the modal page?

    At the moment, if P1_WTD_OPT_OUT is enabled or not, P2_WTD_OPT_OUT is always null when modal page.

    I use apex v4.0

    Any help would be great,

    Thank you

    Here is what goes wrong:

    -page is first rendered, P8_WDT_OPT_OUT is NULL

    -the static url for the modal lov is generated. Given that the item is NULL value in the url for the P9_WDT_OPT_OUT point shall be void in this url

    -l' change event fires. The P8_WDT value is stored in session state

    -the modal opens and navigates to the static url

    End result is that the P9 indeed will be null.

    The solution to this is to not not to set the value of the item through the URL, because it will simply not work. But given that the element of P8 is located in session state, you can use the value of it to the default value of the element on P9.

    On page 8, I changed the dynamic action to not set the value of the element in the URL, and on page 9 I changed the default value of the element.

  • How to pass the value entered for the parameter IN a function

    Hello
    I'm new to pl/sql programming.
    The function below is used inside a package and the package is called in visual studio.
    The function uses the input parameters 2.
    Out what "in_report_parameter_id" value comes through the application of service job processor.
    The second IN the parameter values are hard coded into the function.
    I am not able to understand this.
    If the values are hard coded, how to ensure that only the hard coded values are the right ones?
    Please could someone explain?
    I don't really have good idea on how to move the INPUT parameter to the function or procedure
    Is there any nice document that could give me good understanding about what are the ways or types we could transmit values to the input in the subprogrammes parameter?

    Thanks in advance.

    CREATE OR REPLACE FUNCTION get_class_text_str
    (
         in_report_parameter_id IN NUMBER,
         in_which                IN VARCHAR2 DEFAULT 'SELECT'
    )
    RETURN VARCHAR2
    IS
             end_text            VARCHAR2 (50)   := ''; 
             my_class_text_str  VARCHAR2(10000) := '';
             my_class_value_str VARCHAR2(10000) := '';
     
         CURSOR class_text(c_1_text VARCHAR2, c_2_text VARCHAR2) IS
         SELECT c_1_text || report_parameters.report_parameter_value 
                               || c_2_text
                               || report_parameters.report_parameter_value 
                               || '" '
          FROM report_parameters
         WHERE report_parameters.report_parameter_id     = 3690
           AND report_parameters.report_parameter_group  = 'CLASS'
           AND report_parameters.report_parameter_name   = 'CLASS'
     GROUP BY report_parameters.report_parameter_value
     ORDER BY CAST(report_parameters.report_parameter_value AS NUMBER);
     
    BEGIN
    
         IF (in_which = 'SUM') THEN     
      
              OPEN class_text ( 'SUM(NVL("Class ', '", 0)) "Class ' );
        
         ELSIF (in_which = 'PERC')THEN
      
              OPEN class_text ( 'ROUND((("Class ', '" / "Total") * 100), 2) "Class ' );
              end_text := ', DECODE("Total", -1, 0, 100) "Total" ';
        
         ELSE
      
              OPEN class_text ( 'SUM(DECODE(bin_id, ', ', bin_value, 0)) "Class ' );
        
         END IF;
     
         LOOP
              FETCH class_text INTO my_class_value_str;
              EXIT WHEN class_text%NOTFOUND;
     
              my_class_text_str := my_class_text_str || ', ' || my_class_value_str;
         END LOOP;
     
         CLOSE class_text;
      
         my_class_text_str := my_class_text_str || end_text;
     
         RETURN my_class_text_str;
         
    END get_class_text_str;
    /
    Published by: user10641405 on November 19, 2009 08:16

    Published by: user10641405 on November 19, 2009 08:30

    This is not a conception I would use, but should work if coded correctly. I would probably create a reference text cursor query and use a fetch of open and close.

    You have 2 input parameters, in_report_parameter_id and in_which. I could not find where in_report_parameter_id has been used in the program, but the value passed to in_which is used in the logic of the FI to decide on opening the cursor. After the cursor is opened lines are to be read and possibly the cursor is closed.

    The in_which values are compared to the are hard-coded. It is the programming interface to ensure that the values are the values and the measures taken are also correct. Your program is assuming that if the first 2 values are not met the third listed is the one you want.

    To pass values of entry in a procedure you simply provide the values as a literal or something like variable in the call,

    whatever := get_class_text_str(1,'SELECT');
    
  • By passing the value of the parameter?

    Hi Rod,

    I created a setting for "requsition_number" and I have the parameter 'date', when I pass a value to "requistion_number" and change the value to "dates", iam getting the data.

    Now, I don't want the "requisition_number' not yet 'null' value, but I'll give you the date values. The problem is that I have go a value or null to "requisition_number" iam not able to run the report.

    I don't want the required "requisition_number" parameter. If I use the standard "null" I won't get more details.
    So I don't want to have, how do I manipulate by not passing any value in "req_number" but giving dates?

    It should be optional if they wish, they will give the parameter, otherwise it should be left alone and the date value is passed and that I should get all the details. Work around him.


    Kind regards
    Murielle.

    Hi murielle
    If you build it - they will come. :-) Believe me, it works.

    In your parameter prompt you ask the user to enter or select a requisition number or ALL instead.

    If the user types in the parameter, then the part of the GOLD of the condition will see this and run everything you add using ADD. If she sees not ALL he assumes the user has entered a number of requisition and trying to find. If you only use on its own with no Boolean along then you will get all the application numbers.

    To allow users to key all of the TOTALITY or even the whole, you must use a SUPERIOR command, like this:

    requistion_number =: req_param
    OR
    * (Upper(:req_param) = 'ALL' AND requisition_number = fullname) *.

    Alone, to pull all of the requisitions, it looks like thuis:

    requistion_number =: req_param
    OR
    Upper(:req_param) = "ALL".

    Best wishes
    Michael

  • Problem by passing the values in the url

    Hai...

    I have created a report region1, because I change the link to change the values, after clicking on the edit link region.2 will appear, im passing in the url of the region.2. My problem is that the values of a ': ' in that... so by passing the values in the url im not getting the onlu 'Region.2' for values that got ':' in it... How can I overcome the issue.

    im passing value contains ':' in this example:-"petroleum products: Europe.

    When I pass this URL im get like this

    http://nypploratest.Platts.McGraw-Hill.com:7777 / pls/dews/f? p = 100:105:1304192021604971:NO:P105_NEWS_CODE,
    P105_NEWS_DESCRIPTION, P105_NEWS_CODE_HIDDEN:PDD % 2COil % 20Products: % 20Europe, 2-1 colon is included in the url


    Please help me...

    Thank you

    David

    Yes, it's possible. Depends on what you are doing. Source value of the element can be a query, so if you have spent the value PK of a line in a table to the page, then the query source of this element could extract the line using this key and use the text value retrieved from another column to fill the text element.

    Scott

  • How can I pass a value to a variable binding in a report query?

    I did a query of report to print a PDF report, with a dinamyc source query that has a connection variable, like this:

    SELECT EMPNO, EMPNAME, EMPDEPT

    FROM EMP

    WHERE EMPNO =: PARAMETER;

    I want to call the report print directly from a page, by using the url print showed by apex:

    f? p = & APP_ID.:0 : & SESSION. : PRINT_REPORT = MYREPORT

    How can I pass the value of the variable binding: PARAMETER using this URL?

    I don't think you can use the url parameter passes in a report query.

    the binding variable: PARAMETER must be a page element or an element of the application.

    use the "include session information and application" in the defination of report query to bind the value when the report is run

  • Pass the value to your

    Can someone give me some advice on how to pass a value for one form another page with BC. Basically I want the user to be able to select and image and gallery images 'value' through the form in a hidden field that is a page. I found a video on kiyuco, but it was for the passage to change the url. Not exactly what I do.

    To pass values between Forms in one of the examples is through the url.

    If the form page that link you to the url would be something like:

    /thispage? aParamater = yourvalue & anParam = another value

    Where? -sets your created data casablenca

    aParamater - the name of your parameter that will store a value

    yourvalue - is the actual value

    & appears as & and you add another parameter and value

    After that, are the other parameter and value.

    On the page, you have the shape that you use {module_url, aParamater} for example in the value of input field to your form ( value = '{module_url, aParmater}' )

  • How to switch to TestStand a parameter value of LabVIEW in the Menu drop-down?

    I'm using LabVIEW with TestStand. Sometimes when I pass a parameter to a LabVIEW module and it's a ring Enum happening as a pretty drop-down menu where I can choose the required value, but sometimes the menu does not appear. How can ensure to pass the values of the ring always menu? I have attached a few photos to show the menu in TS.

    I appreciate your help.

    Thank you.

    H.P.

    Your order must be an enum. Your text ring is no different than a normal digital control. In your case, you cannot just replace the text with an enum ring because an enum requires unique values, and you have several selections with 'Reserved' in the form of text.

  • How to pass the value?

    Hello.. I'm creating an application of streaming, in which I have a list field in a screen like this...

    1

    --------

    2

    --------

    3

    --------

    and when the item 1 is selected means a url must be passed to the video player...

    I created the list field screen in a package and a video player in other package... but I do not know how to pass the value of the field from the list to the player... Help, please... its URGENT...

    You can get the index selected by the listname.getSelectedIndex () method and compare that value with Vector data (data store URL) .that you will give a correct value from the URL and pass it.

  • How to pass the value of a column to a variable to be used in another analysis

    Hello

    I'm on OBIEE 11.1.1.7.1.

    I have the following problem.

    I have DISCOVERED called analysis. It has just a column with the result. Simple. Assume that the answer is 2500

    I have another scan which has two other columns, namely GOLD and LOANS. I want to calculate the total DISCOVERED + GOLD + READY.

    That's why I need to pass the value of 2500 of the first analysis of the second analysis via a variable.

    I can not add all three of them in the same analysis there are various filters for OVERDRAFT, and the application of these filters on the GOLD and LOANS gives the desired result. I tried to add filters in the column of the overdraft, but that doesn't seem to work.

    Any help will be greatly appreciated.

    I'll give you an example. I hope that you will mark for my time...

    Hope that you will be aware of how to combine a similar request.

    in the first criterion you have

    Goldprice Loanamount year 0

    Second criterion

    Year 0 0 Overdraftamount

    the two maintain the necessary filters.

    Add a column of result (option you can see in the topic area pane) that add all three columns. You can choose the columns. formula will come something like below

    saw_1 + saw_2 + saw_3

    Thank you

    AJ

  • Pass the value using javascript:modalpage()

    Hello

    Apex 4.2

    I need to know, is it possible to do the following.

    I have 4 buttons on the page as (Suspend, end, restoration, Add) and whenever you press a button and then MODAL_REGION will appear and I m using this javascript:openModal('Open_Page');

    within the action of the button - URL redirect for all the buttons. I did not create DAs for it as I create four DAs for each button.

    So my question is? I can pass the value in the code above. like javascript:openModal('Open_Page'); $s(P6_ITEM1,'S');


    but above does not work. I can just do a few DAs for him but don't want that for all buttons. Thus, when the press "SUSPEND" button hidden point P6_ITEM1 should take the of ' as a value, if the press which ENDED then take 'E' and so on.

    Please advice?

    Thank you very much.

    RI

    Hi Irha10,

    There is no need to use a DA to pass values to it. In the redirect URL

    javascript:$s('P6_ITEM','S');
    openModal('Open_Page');
    document.forms[0].P6_ITEM.focus();
    

    Hope this helps

    Kind regards

    Benjamin.

Maybe you are looking for

  • Sierra of loading

    I tried to update Sierra on my mac pro book, but I don't have enough memory. I have returned to the old operating system and have cleaned memory. But now, I don't know how to re install Sierra. Can anyone help?

  • Satellite Pro A40 - two vertical line connecting TV

    My problem with the Toshiba A40 Pro to connect to the TV. Euro-VGA cable (SCART). When you connect a desktop with two line vertical image. Pixels in PowerStrip does not work. I would add that the graphics card is Intel 82852/82855 GM / GME.

  • Unable to send text to apple not from my ipad device

    can't send text to non apple devices message says: phone number is not registered with iMessage He worked before the last OS update

  • MsgBox appears not

    I was writing and script and tried to add a msgbox to ensure that my script was working properly so far. When adding that nothing appeared. then I wrote a simple... nothing any ideas? y at - it some sort of setting I need to change. I'm pretty new to

  • Old Instrument NOR Simulator

    Hi all. I have an OLD NI instrument Simulator. It is so old, that I'm not still able to use the NI instrument Simulator Wizard. I called for the support and the technician was more useful however, whenever I run the wizard, it opens and alarm that re