Change a region source url to include P2_TRACTNO

Hi all,
I have an html region in which I am referencing a map. My region source is as follows:
<iframe id="mframe" src="http://nwo26.nwo.usace.army.mil:7778/gis/g6imxgsc.navmaponly.map?p_unique_id=J-920&map=garr&p_layers=garr_tracts&p_layer=garr_tracts
" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:600; display:block; height:500;"></iframe>
J-920 is a tract number.
I am wanting to dynamically insert my P2_TRACTNO item in place of the J-920 of the p_unique_id=J-920 part of the URL listed above.
How can I modify the code to change
p_unique_id= my P2_TRACTNO item?
Thanks,
Kirk

Hi,
You can include:
&P2_TRACTNO.wherever you want the value to appear on the page. So:
src="http://nwo26.nwo.usace.army.mil:7778/gis/g6imxgsc.navmaponly.map?p_unique_id=&P2_TRACTNO.&amp;map=garr.......etc
{code}
Andy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Can we change source of fx:include tag from controller class?

    Is it possible to change source of <fx:include> tag from controller class? The requirement is to dynamically change certain section of a page.

    Thanks Daniel.
    Is it possible to load <fx:include> into Anchor Tag from controller class?
    Edited by: Ravi_Teja on Jun 15, 2012 3:45 AM

  • Changing region source SQL based on condition

    I have a reports region which displays the results from some SQL. Depending on the value of a page variable I need to run a different bit of SQL to get my results. At the moment I'm using 5 different regions and displaying the appropriate one and hiding the others, depending on the value of the page variable.
    It's a bit messy and I'm looking for a better way to do it. Is it possible to use a single region and change the SQL used as the region source after checking my page variable? e.g. something like this for the region source:
    IF :report_type = 1 THEN
    SELECT col1, col2, col3 from table1;
    ELSEIF :report_type = 2 THEN
    SELECT col1, col2, col3 from table2;
    ELSEIF :report_type = 2 THEN
    SELECT col1, col2, col3 from table3;
    END IF;..or something similar?
    Or is there an even easier way of doing this?

    Hello,
    Actually, as long as you're willing to live with some limitations, you can indeed do that with an interactive report.
    A while ago, I blogged about using pipelined functions with respective to generic charting -
    http://jes.blogs.shellprompt.net/2006/05/25/generic-charting-in-application-express/
    Using the same technique you can create a pipelined function which returns each of your different resultsets.
    The key limitation is of course that you need to return the same columns each time (in your example you are always returning 3 columns, it is just the table name that changes, so perhaps it might still be an acceptable solution to you).
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Problem with SQL query region source containing OLAP clauses

    Hi team,
    I believe I found a bug when HTMLDB validates the SQL Query in a report region.
    My query includes an ORDER BY clause within a windowing function and HTMLDB refuses to accept the source owing to the presence of the ORDER BY and the column heading sort preference.
    Clearly the order-by in a window function has little to do with the column heading sort, but this error prevents me from updating the conditional display item in the page definition.
    Note also that the page was imported smoothly from the 1.5 version, so probably the region source is not checked at that time, but only when you update it "manually".
    So, in the end, if I don't change anything the page works because the sql query is assumed to be correct but unfortunately I need to change the condition and I cannot.
    The problem shows up in page 126 of app 21670, SQL query region.
    Bye,
    Flavio
    PS: may be I can work around this by using the pl/sql function returning the sql query.

    Flavio,
    We're aware of this problem. For now, your workaround is described in this thread:
    HTMLDB 1.6 and "order by" in analytic functions
    Sergio

  • [SOLVED] Creating PKGBUILDS where the source URL does not have version

    I am trying to create a a PKBUILD for idevsutil which is provided by IDrive for backing up into their cloud. The archive provided by them contains just a binary and a readme. Now the source URL, http://evs.idrive.com/download/download … inux64.zip does not include the version number. So looks like they are updating the same file for every version. In case they update the version the checksum should fail which should prevent mismatch in dev versioning and what gets installed. But are there any best practices for such cases when we write PKGBUILD?
    Last edited by nsmathew (2013-12-28 16:22:02)

    Trilby wrote:
    The content provided by the source url for version-control packages is also always changing, yet the PKGBUILDS don't need to.  The key for these is to use the 'SKIP' entry in the checksum variable.  The packages must also have the version control system appended to the title (eg package-git).
    You certainly could make a package-dev which skipped the checksum.  However, this would mean user's of the PKGBUILD would be downloading a random unchecked binary from someone's idrive site.  This seems like a very bad idea.
    My idea was to not allow for the installation of the software if the upstream version changes which the checksum should take care off. Will then update the PKGBUILD with the new version and checksum.
    In terms of the binary, it is the officially provided binary by IDrive and the URL points to the same.
    graysky wrote:Don't think you can do much with that.  I would send an email requesting a versioned archive explaining that you are packing their software for a linux distribution.
    I have already requested for the license info on their dev forums, let me also check with them if a versioned archive is available. Thanks.

  • Region source (PL/SQL function body returning SQL query)

    Hi, guys.
    Here is what i try to do:
    Create a region of type SQL Query (PL/SQL function body returning SQL query). In the source area i tried to put this:
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    -- htp.p(v_new);
    IF v_new = 'N-Set' THEN
    v_SQL := 'select ' ||
    ELSIF v_new = 'Y-Set' THEN
    v_SQL := 'select ' ||
    END IF;
    RETURN v_SQL;
    END;
    And here is the reply from APEX:
    1 error has occurred
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. The query can not be parsed, the cursor is not yet open or a function returning a SQL query returned without a value.
    Now.
    1. Variable is set with the right value.
    2. Each statement (separately) returns SQL that works with no problems
    3. Problem occures if i try to put IF statement around the SQL creation.
    4. If i select "Use Generic Column Names (parse query at runtime only)" instead of "Use Query-Specific Column Names and Validate Query" then the script returns SQL properly, however report's column names are set to Col1, Col2,Col3 ......
    Thnks in advence
    Mike

    OK. Here is enire statement:
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    htp.p(v_new);
    IF v_new = 'N-Set' THEN
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,DECODE(ld.level,''All'', ''All Categories'',ld.level)) level, ' ||
    'apex_item.checkbox(1, ld.opt_in_auto_flag, decode(ld.opt_in_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, ld.opt_in_manual_flag, decode(ld.opt_in_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, ld.opt_out_auto_flag, decode(ld.opt_out_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, ld.opt_out_manual_flag, decode(ld.opt_out_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''NMBR'', NULL,''Change to '' || DECODE(ld.level,''All'',''Categories'',''All Categories'')) link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c, ' ||
    'tbl2 ld ' ||
    'where c.code = ld.code ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    ELSIF v_new = 'Y-Set' THEN
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,''All Categories'') level, ' ||
    'apex_item.checkbox(1, c.option_1, decode(c.option_1,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, c.option_3, decode(c.option_3,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, c.option_2, decode(c.option_2,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, c.option_4, decode(c.option_4,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''AAA'', NULL,''Options by AAA'') link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c ' ||
    'where 1 = 1 ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    END IF;
    RETURN v_SQL;
    END;
    If i put just this
    DECLARE
    v_new VARCHAR2(10);
    v_SQL varchar2(32000);
    BEGIN
    v_new := :P102_HDN_NEW;
    htp.p(v_new);
    v_SQL := 'select ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(10,c.sdescr) descr, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(12,DECODE(ld.level,''All'', ''All Categories'',ld.level)) level, ' ||
    'apex_item.checkbox(1, ld.opt_in_auto_flag, decode(ld.opt_in_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_in, ' ||
    'apex_item.checkbox(2, ld.opt_in_manual_flag, decode(ld.opt_in_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_in, ' ||
    'apex_item.checkbox(3, ld.opt_out_auto_flag, decode(ld.opt_out_auto_flag,NULL,''disabled'',''Y'',''checked'')) auto_out, ' ||
    'apex_item.checkbox(4, ld.opt_out_manual_flag, decode(ld.opt_out_manual_flag,NULL,''disabled'',''Y'',''checked'')) manual_out, ' ||
    'DECODE(c.code, ''NMBR'', NULL,''Change to '' || DECODE(ld.level,''All'',''Categories'',''All Categories'')) link_change, ' ||
    'APEX_ITEM.DISPLAY_AND_SAVE(11,c.code) code ' ||
    'from ' ||
    'tbl1 c, ' ||
    'tbl2 ld ' ||
    'where c.code = ld.code ' ||
    'and c.type = ''TYPE1'' ' ||
    'and c.active = ''Y'' ' ||
    'order by c.sorting ';
    RETURN v_SQL;
    END;
    it works fune...

  • Is There A Character Limit to Region Source?

    I created a PL/SQL Dynamic Content region. I was in the process of adding PL/SQL code to region source and every thing was working fine when I started getting the following error when ever I press the Apply Changes button:
    1 error has occurred
    ORA-06550: line 609, column 1: PLS-00103: Encountered the symbol "END" when expecting one of the following: * & = - + ; < / > at in is mod remainder not rem <> or != or ~= >= <= <> and or like LIKE2_ LIKE4_ LIKEC_ between || member SUBMULTISET_ The symbol ";" was substituted for "END" to continue.
    I cannot find anything wrong with the PL/SQL code. I did notice however, that if I remove enough lines of code the error message goes away. Is there some limit to the number of lines or number of characters the region source can hold?? If so is there some way to increase this limit? Thanks for the help.

    I understand what you are saying. I looked up mod_plsql and understand this is a limitation of the Oracle HTTP web server. But is there a way to configure the web server so it can handle more data? I find it hard to belive that people are not writting a lot longer PL/SQL code than I am.

  • How do I remove 23cents from my itunes account to change my region?

    I have 23cents that I cant spend on anything. I want to change my region before adding more credit. How could i remove the 23c? Please help!

    JohnWho wrote:
    Are they linked to my iTunes account so I could then be able to re-install them on a newer 4th Gen iPod Touch?
    I'm re-reading your message and not sure what you mean by wanting to re-install them to a newer ipod? They won't be able to purchase from your account after you restore as new your old ipod if that's what you're asking. But you could still sync "their" ipod with your iTunes library.
    If you're asking about setting up a newer ipod for yourself, here's how you want to do that. Before you do that Restore on your old ipod follow these steps:
    1)Connect your older ipod to itunes, right click on the device and Transfer Purchases to bring over any Apps & Music you purchased on your touch at the itunes store but isn't on your computer.
    2)Also right click and choose to Backup your ipod.
    In [iPhone and iPod touch: About backups|http://support.apple.com/kb/HT1766] > About Syncing and Backups >iTunes will back up the following information you will find the list of what's included in backups.
    Please note backups do not include data like music from your CD's or Apps (although App data is backed up). In step #1 you transferred to your PC any Apps or Music purchased from the iTunes store. It's up to you to make sure you have any other music in your iTunes library.
    3) Connect your new device. iTunes will give you the opportunity to restore from a backup. Select the backup you just made.
    4)Finally, sync the device selecting the Music, Photos, etc that are in your iTunes library but were not part of the backup data.
    Hope that helps.

  • ORA-06502 when searching region source

    The following is listed as a limitation of Apex 3.1, for both interactive reports and the application builder, although the specific context is not mentioned.
    The row length limit is 32k (just as with Classic Reports). You can include more columns but if too many are selected to be displayed, the user will get the following error - "ORA-06502: PL/SQL: numeric or value error: character string buffer too small". This should be considered when creating your report.You can find that here: http://www.oracle.com/technology/products/database/application_express/html/3.1_known_issues.html
    I'm getting this very error when trying to search region source for one of my application items. Presumably the region source is larger than the 32k limit where my particular page item is being used?
    Can anyone from Oracle verify that this is still a problem in Apex 3.2.0.00.27?
    Earl

    >
    The following is listed as a limitation of Apex 3.1, for both interactive reports and the application builder, although the specific context is not mentioned.
    The row length limit is 32k (just as with Classic Reports). You can include more columns but if too many are selected to be displayed, the user will get the following error - "ORA-06502: PL/SQL: numeric or value error: character string buffer too small". This should be considered when creating your report.
    You can find that here: http://www.oracle.com/technology/products/database/application_express/html/3.1_known_issues.html
    I'm getting this very error when trying to search region source for one of my application items. Presumably the region source is larger than the 32k limit where my particular page item is being used?
    Can anyone from Oracle verify that this is still a problem in Apex 3.2.0.00.27?
    EarlAnyone have any ideas about the above? I'm getting this error when searching region source code, here:
    Home>Application Builder>Application nnn>Application Reports>Page Components>Search Region Source
    Any help would be appreciated. Thanks.
    Earl

  • How to change a region title based upon the input parameter?

    Hi All,
    I need to change the region's title dynamically based on the value of a select list in another region.
    Can anyone help me in this?
    Regards,
    Sakthi.

    Hi,
    You can use &P1_ITEM_NAME. (including the & and the .) in a region title - this string will be replaced by the value from the page item called P1_ITEM_NAME, so change the name to suit your page item
    Andy

  • Using bind variables in HTML Region source

    <nl>
    http://apex.oracle.com/pls/apex/f?p=49417:1   workspace: SVK demo/demo
    I am having problems incorporating an item variable into a string of embedded html that should popup a modal video when the button is pressed.
    Item 1 works fine and that is what I want to accomplish with item 2, but when I pass :p1_url, it does not work even though the contents of the two items text areas equivalent.

    svk1965 wrote:
    If you look at my app, you'll see what I am attempting. Click on the button "Pass Hardcoded URLs in Variable to HTML Region" and a modal video will pop up. The goal is to display video in a modal window. The first example in my app works just fine. It is the second one that is causing me problems. BTW - Sequence 18 in the second DA does the same thing as Sequence 10 in the first - and it does work there so I am not sure that removing it is the right thing to do. I am not trying to set a region value per se, but populate the region source and sequence 10 does just that. So I don't think it is "useless" as you say.I can't see anything in the documentation or any previous posts here that indicates that DAs are supposed to work that way. If you can point me to some I'd like to see it. Which is not to say I like the idea. Plays too fast and loose with terms and concepts.
    Rather than trying to use a "Set Value" DA, my understanding would be to manipulate the region content via an "Execute JavaScript Code" DA, which works exactly as intended.
    I'll have to investigate this DA behaviour with a simpler example that doesn't involve hidden regions and Dynamic Acrion plugins.

  • Get SQL Query from the Region Source

    Hi,
    The below query gives me the region source code,
    SELECT region_source into p_sql_stmt
    FROM apex_application_page_regions
    WHERE region_id = 01129836282 AND
    page_id = 54 AND
    application_id = 215;
    Initially I use to have only the SQL region source code as mentioned below , So using the above query i use to pass the sql code to p_sql_stmt
    SELECT PROJECT_ID,EMPLOYEE_ID,EFFECTIVE_DATE FROM AR_V_ADDRESS_HISTORY WHERE PROJECT_ID = :P51_PROJECT_ID
    Now the changes what i did in the page region source is i am using a PLSQL return query which is mentioned below
    declare
    qry varchar2(32000);
    begin
    qry := ' SELECT PROJECT_ID,EMPLOYEE_ID,EFFECTIVE_DATE';
    for c1 in ( SELECT * FROM AR_ADDRESS_TYPE)
    loop
    qry := qry ||
    ' , GET_ADDRESS_LINE_1(PROJECT_ID,EMPLOYEE_ID,' || c1.address_type_id || ' ,TO_DATE(EFFECTIVE_DATE)) "' || c1.name ||'_ADDRESS_TYPE_1"';
    qry := qry ||
    ' , GET_ADDRESS_LINE_1(PROJECT_ID,EMPLOYEE_ID,' || c1.address_type_id || ' ,TO_DATE(EFFECTIVE_DATE)) "' || c1.name ||'_ADDRESS_TYPE_2"';
    end loop;
    qry := qry || ' FROM AR_V_ADDRESS_HISTORY
    WHERE
    PROJECT_ID = :P51_PROJECT_ID ';
    return(qry);
    end;
    If i execute the above code in the with dbms_output.put_line in the SQL developer or TOAD it prints the sql query which i wanted, Since i am using this in a apex page i need to get the SQL code from the apex page.
    Can any one please suggest me how to get this sql code using the above plsql code.
    Please suggest me in this issue
    Thanks
    Sudhir

    One way to get the sql statement is
    Create a global variable in the package spec where your function returns sql statement and assign the final sql statement to the package spec variable before the return.
    Write a wrapper function to return the stored sql statement value.
    Example code below:
    create or replace package xx_test_pkg as
    g_sql_stmt CLOB;
    function get_sql() return clob;
    function get_stored_val() return clob;
    end;
    create or replace body package xx_test_pkg as
    function get_sql return clob ..
    v_sqlstmt clob;
    begin
    v_sqlstmt := 'select * from emp';
    -- assign to global variable before returning the value
    g_sql_stmt := v_sqlstmt;
    return v_sqlstmt;
    end;
    function get_stored_val() ....
    begin
    return g_sql_stmnt;
    end;
    end;

  • Unable to read the source URL error for cffeed

    Hi,
    I am using the cffeed to read from my twitter RSS feed but I get this error:
    Unable to read the source URL.
    Status Code: 400. Try adding or changing UserAgent attribute in the CFFeed tag
    My code is:
    <cfset feedurl="http://twitter.com/statuses/user_timeline/somenumbers.atom" />
    <cffeed 
    source="#feedurl#"
    properties="feedmeta"     
    query="feeditems1" overwrite="true" />
    It works but suddenly it stops and it takes time about 15 minutes or more  to work again.
    Can any body help me with this?
    Thanks,
    Mandana

    One thing which I did not mentioned is I want to have 6 pages rss feed together and I made it like this:
    <cffeed 
        source="#feedurl1#"
        properties="feedmeta"
        query="feeditems1" overwrite="true"
        useragent="Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; GTB6.6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; AskTbBLPV5/5.11.3.15590)" />
       <cffeed
        source="#feedurl2#"
        properties="feedmeta"
        query="feeditems2" overwrite="true"
        useragent="Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; GTB6.6; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; AskTbBLPV5/5.11.3.15590)"/>
    I did it for 6 pages, each one with one cffeed and then:
    <cfquery name="feeditemstotal" dbtype="query">
        select * from feeditems1
        union
        select * from feeditems2
        union
        select * from feeditems3
        union
        select * from feeditems4
        union
        select * from feeditems5
        union
        select * from feeditems6
      </cfquery>

  • Pass substitution variable to a region source

    Hi, I am trying to show an oracle report in a region. I was able to display it using javascript popupurl , in a seperate window. But, now I need to display it in the region. I want to pass the &Reports_url to region source, instead of writing the whole url as 'https://host.portname.....' IS it possible? Can anyone please give me some help?
    Thanks in advance,
    Regards,
    Suma.

    Check the header you create in the download procedure. Here's my download procedure:
      PROCEDURE download_file
        ( p_docid IN NUMBER,
          p_sessionid IN NUMBER,
          p_personsystemid IN NUMBER,
          p_pageid IN NUMBER,
          p_attachment IN VARCHAR2 DEFAULT 'Y'  )
      IS
        session_expired EXCEPTION;
        invalid_session EXCEPTION;
        PRAGMA EXCEPTION_INIT( session_expired, -20101 );
        PRAGMA EXCEPTION_INIT( invalid_session, -20100 );
        l_mime VARCHAR2(48);
        l_length NUMBER;
        l_filename VARCHAR2(400);
        l_doc BLOB;
        l_attachment VARCHAR2(1) := p_attachment;
      BEGIN
        p_login.validate_session( p_sessionid );
        IF p_security.check_page_access( p_personsystemid, p_pageid ) = FALSE THEN
          htp.p( '<b>You do not have access to this document</b>' );
        ELSE
          SELECT mime_type, doc_size, doc_name, doc_blob
          INTO l_mime, l_length, l_filename, l_doc
          FROM doc_tab
          WHERE docid = p_docid;
          owa_util.mime_header( NVL( l_mime, 'application/octet' ), FALSE );
          htp.p( 'Content-length: ' || l_length );
          IF p_attachment = 'Y' THEN
            htp.p( 'Content-Disposition: attachment; filename="' || SUBSTR( l_filename, INSTR( l_filename, '/' ) + 1 ) || '"' );
          ELSE
            htp.p( 'Content-Disposition: filename="' || SUBSTR( l_filename, INSTR( l_filename, '/' ) + 1 ) || '"' );
          END IF;
          owa_util.http_header_close;
          wpg_docload.download_file( l_doc );
        END IF;
      EXCEPTION
        WHEN no_data_found THEN
          htp.p( '<B>Document Not Found</B>' );
        WHEN session_expired THEN
          htp.p( '<B>Your session has expired</B>' );
        WHEN invalid_session THEN
          htp.p( '<B>Invalid Session ID</B>' );
      END download_file;Look at the part starting with IF p_attachement = 'Y' THEN
    chet

  • Use a static file as HTML region source

    Hi All,
    Sorry for maybe trivial question, but is there a way to use static files as HTML region source? The files are simple enough but have to be translated so we'd rather keep them as static files, rather than paste them in multiple region sources to display conditionally.
    I tried something like
    <embed src="#WORKSPACE_IMAGES#&FSP_LANGUAGE_PREFERENCE.file01.txt" >
    This however is showing the HTML source on screen and not rendering it as html.
    The other option I tried is creating an URL region that would get the content from the same server, e.g.:
    http://localhost:9080/apex/wwv_flow_file_mgr.get_file?p_security_group_id=4874627831984398&p_fname=en_file01.txt
    ... but I'm running against an access control list (ACL) error. The file opens when one loads the link directly in a browser but localhost apparently is not allowed in ACL and I would not have sysdba access where I deploy.
    finally I saw recommendation to use an iframe in a similar discussion to display pdf file here Display PDF in Apex Region land tried
    <iframe src="#WORKSPACE_IMAGES#&FSP_LANGUAGE_PREFERENCE.file01.txt&embedded=true" style="" ></iframe>
    but receive "Not found
    The requested URL /apex/wwv_flow_file_mgr.get_file was not found on this server" as if the file name is not received at all? Same name is parsed correctly in the embed tag.
    Please help
    Atanas

    Hello Atanas,
    >> the shortcuts text does not get into the translations …
    Just so you know, and for future reference, the shortcuts of type Message are fully translatable (as mentioned in the documentation Jari pointed out to you).
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

Maybe you are looking for

  • Open and Close Pop-up Window??

    Hi, I have to components consiider A and B. I want to open window B as pop-up window when I click a button on window A. After that again I have to close that pop-up window(i.e. B) and return back to window A. Thanks and Regards, Rahul

  • DVD export broken after 10.0.1 update

    A project which I have previously exported to DVD in Final Cut Pro 10.0 can no longer be exported after 10.0.1 update. The symptom is that, athough it plays back fine in the Viewer, after doing Share -> DVD, the burned DVD ends up with these choppy s

  • Mesg mapping:File-to-RFC-1 row in src mapped as 3 rows in RFC internal tab

    Hi, I am doing a message mapping for a file-to-RFC scenario. The source structure has fields material and material desc. The RFC has an internal table as a parameter with the following structure:        Item (0..unbounded)        Material 0..1       

  • Trying to install drivers into OS9

    Hi, I have a G5 and cannot start up in OS9. I just purchased an Epson R300 which works great in Tiger, but does not work in OS9. I was using an Epson Color 880 which worked great in both systems. I called Epson, and they said that to install the driv

  • My MacBook Pro has all the current updates, however is only open in version 10.5.8

    My MacBook Pro has all the current updates, however is only open in version 10.5.8 I've tried disk permission repair. I tried rebooting in leopard (which I have 2 cd) and both eject within 10 seconds. What do I do?