Call Javascript in the header of the report of the Apex

Hello
I have a javascript function in my html page header I would like to call from my report using a link. I tried to configure the URL of the link column in the report attributes box: javascript:send_sub_email('sharon'). It does not work. My other problem is to know how to pass the value of column of the report to the javascript function. Does anyone know how to do this? All the suggestions and help is greatly appreciated.

Sharon

Sharon,

You should have your JS function in the header section of the HTML Page...

Lets say your a column named 'EMP_ID' report and now in your report, change the link column and the target set in the updated URL section form URL and after

javascript:send_sub_email('#EMP_ID#');

So when the user has clicked on the link, it'll pass respective EMP_ID to JS function

See you soon,.
Hari

Tags: Database

Similar Questions

  • custom JavaScripts at the APEX of the upgrade from 3 to 4

    Hello

    I'm referencing external javascripts in my APEX 3.2 applications. Now, I plan to upgrade the engine of 3.2-to-4.0.2.00.07 APEX. I want to confirm the following:

    1. I use the following lot. He will work at the APEX 4? It is appropriate to use html_GetElement('pFlowId').value to APEX 4?
    get < pre > var = new htmldb_Get (null, html_GetElement('pFlowId').value, 'APPLICATION_PROCESS is?', 0); < / pre >

    Can I create JavaScript code following in Page 0 to make it work at the APEX 4?

    < pre >
    function doSubmit (pWhat) {}
    Apex. Submit (pWhat);
    }
    < / pre >

    2. I use "doSubmit('???');" a lot. Should I change it to "apex.submit('???');" after that I upgraded APEX 3 to 4?

    3. when I call JavaScripts to report or select list, I always use the javascript: Pseudo-protocole. For example, it can be like onchange = "javascript:doWhat();" ». Is javascript code: necessary for the APEX 4 Pseudo-protocole?

    Thank you.
    Andy

    1. I use the following lot. He will work at the APEX 4?

    Yes. He included in the library of apex_legacy_4.0.js for compatibility with.

    It is appropriate to use html_GetElement('pFlowId').value to APEX 4?

    N ° it has been replaced by the $x and $v methods and the inclusion of jQuery.

    >
    Can I create JavaScript code following in Page 0 to make it work at the APEX 4?

    function doSubmit (pWhat) {}
    Apex. Submit (pWhat);
    }

    2. I use "doSubmit('???');" a lot. Should I change it to "apex.submit('???');" after that I upgraded APEX 3 to 4?
    >

    doSubmit is included in the library of apex_legacy_4.0.js for compatibility.

    Existing applications should continue to run without modification.

    3. when I call JavaScripts to report or select list, I always use the javascript: Pseudo-protocole. For example, it can be like onchange = "javascript:doWhat();" ». Is javascript code: necessary for the APEX 4 Pseudo-protocole?

    It has NEVER been necessary in the attributes of the event. That's all just wrong.

    See also + {message identifier: = 9326152} +.

  • Function of database Oracle Call button of the apex

    Hello

    can you please explain

    How to call an oracle function in the button of the apex.
    every time I click on button feature of oracle database should triggers.

    Thanks in advance

    concerning
    r
    Hello

    IM new user in the apex and can u please help me to call a function of oracle through the apex button

    Published by: on April 10, 2011 22:02

    Here are the steps:

    01. create a button (Ex: Save)
    02. in the Section 'Treatment of the Page'-> click right-> select create
    03. then select "PL/SQL" and move forward. Give the name of the PL/SQL block and then click Next
    04. here, you can set the pl/sql code to call your fuction. (Here you can do something that is supported in PL/SQL) and press Next
    05. here if you want to display all messages when this plsql code is success or failure then set these success messages and faile. If you do not need to show all messages, leave it blank. Next to meadows and moving forward
    06 choose your drop-down list button "when Button Pressed. (Ex: Save Butrton).

    Now, you're done. When you press this button it executes the PL/SQL code you defined above

  • Themebasedfoi.centerToTheme () call JavaScript throws the error message

    Hello

    I'm developing a CEP for a client and I'm really looking forward how it is easy to get a card set up and running. The map is created with the javascript api and runs in a browser window. The goal is to embed the map in the poet dashboard. And it works very well also. But I have a problem, that could be a sticking point: I want to focus the bounding box of the card around the time selected. Other selection of the time ist directed by parameters in the url and it works very well also.

    If I insert the line
    themebasedfoi.centerToTheme ();
    nothing happens and my browser error console produces the error

    This ._f249 is null
    http://intranetserver:7777/MapViewer/FSMC/jslib/oraclemaps.js <-Version: Ver11_B090225 line 10769
    and
    Keine Elemete found (not found items)
    http://myserver:7001/mapviever/mcserver <-my own mapserver

    My source to create the map is:
    <html>
        <head>
            <!--META http-equiv="Content-Type" content="text/html; charset:UTF-8"-->
            <script type="text/javascript" src="http://intranetserver:7777/mapviewer/fsmc/jslib/oraclemaps.js"></script>
            <script type="text/javascript">
                var baseURL = "http://myserver:7001/mapviewer";
                var baseMapEloc = null;
                var mapview;
    
                function display_map()  
                {
                    baseMapEloc = new MVMapTileLayer("elocation.world_map", "http://intranetserver:7777/mapviewer/mcserver");
    
                    mapview = new MVMapView(document.getElementById("map"), baseURL);
                    mapview.addBaseMapLayer(baseMapEloc);
    
                    // var mpoint = MVSdoGeometry.createPoint(10, 51, 8307);
                    // mapview.setCenter(mpoint);
                    // mapview.setZoomLevel(4);
                    // mapview.addNavigationPanel("east"); 
    
                    // mapview.setHomeMap(mpoint, 4);
    
                    var themebasedfoi = new MVThemeBasedFOI('foi_partner','apexws_kpatenge.theme_partner_bi','https://secure_intranetserver/mapviewer/foi');    
                    themebasedfoi.setBringToTopOnMouseOver(true);
    
    
                    var country = getURLParameter("COUNTRY_PARAM");
                    var partner = getURLParameter("NAME_PARAM");
                    var city = getURLParameter("CITY_PARAM");
    
                    var parameters;
    
                    themebasedfoi.setQueryParameters(country,partner,city);
    
                    mapview.addThemeBasedFOI(themebasedfoi);
                    themebasedfoi.centerToTheme();
    
                    mapview.display();
    
                }
    
                function getURLParameter (ParamName) 
                {
                    var strURLParamstrURLParamReturn = "";
                    var strHref = window.location.href;
                    if (strHref.indexOf("?") > -1 ) 
                    {
                        var strQueryStr = strHref.substr(strHref.indexOf("?"));
                        var aQueryStr = strQueryStr.split("&");
                        for (var iParam = 0; iParam < aQueryStr.length; iParam++ )
                        {
                            if (aQueryStr[iParam].indexOf(ParamName+"=")> -1)
                            {
                                var aParam = aQueryStr[iParam].split("=");
                                strURLParamReturn = aParam[1];
                                break;
                            }
                        }
                    }
                    return unescape(strURLParamReturn);
                }
            </script>
        </head>
        <body onLoad="javascript:display_map()">
             <div id="map" style="width: 500px; height: 450px;"></div>
        </body>
    </html>
    CenterToTheme() I only get a square gray, without the map displays correctly with the setHomePoint(), I get the right view for the map without query parameter.

    Thank you in advance for each tip that helps me solve this problem...

    Wolfgang

    Edited by: user10446099 the 25.03.2009 02:51

    There seems to be some problem with centerToTheme(); in any case, what you really need, is zoomToTheme(). In addition, the recommended approach is this:

      function init_map(){
      //create the theme:
      var themebasedfoi = new MVThemeBasedFOI(...);
    
      //setup your query parameters
      thembasedfoi.setQueryParameters(...);
    
      //tell MapViewer to automatically 'bound' the map extent to the results of this theme after it came back from server with FOI data:
    
      themebasedfoi.setBoundingTheme(true);
    
      //now add the theme to the MVMapView handle (which will initiate the theme AJAX request to the server):
      mapview.addThemeBasedFOI(themebasedfoi);
    
       //dont call themebasedfoi.zoomToTheme() or centerToTheme() here, as the theme may not have come back with FOI data (it's asynchornous!)
     }
    
      //call this function to force the map to zoom back to an already displayed theme-based foi layer (after the user has paned and zoomed couple times for instance)
    
      function zoomToTheme()
    {
      themebasedfoi.zoomToTheme();
    }
    

    for a live example you can see the #35 tutorial (leaping theme).

    LJ

  • the JavaScript in the Apex 4.2.4 file storage

    Hi all

    I'm a little confused about the JavaScript files are stored in the (4.2.4) Apex.

    Oracle said that we can call a JavaScript file from the Page template:

    001.JPG

    Oracle speaks of CALLING here, but he said nothing about WHEN the .js file is actually stored.

    Therefore, the link so that it is the folder/my_images /...

    But where is this file? Isn't that the same as #WORKSPACE_IMAGES #, where I put my CSS files?

    Thanks in advance for your clarification.

    Hi goodluck247,

    goodluck247 wrote:

    I'm a little confused about the JavaScript files are stored in the (4.2.4) Apex.

    Oracle said that we can call a JavaScript file from the Page template:

    Oracle speaks of CALLING here, but he said nothing about WHEN the .js file is actually stored.

    Therefore, the link so that it is the folder/my_images /...

    But where is this file? Isn't that the same as #WORKSPACE_IMAGES #, where I put my CSS files?

    Thanks in advance for your clarification.

    They (Oracle APEX Dev Team) has documented how to integrate javascript into your APEX application

    Reference: http://docs.oracle.com/cd/E37097_01/doc.42/e35125/bldapp_js.htm#HTMDB05013

    Now, where store the JS/CSS/IMAGE files is your concern. You have three options for this:

    • #WORKSPACE_IMAGES # - components - shared static files, not associated with the request.
    • #APP_IMAGES # - components - shared static files associated with an application
    • #IMAGE_PREFIX #-the path of the file corresponds to images virtual directory Viz/i /. The storage of the files depends on the web server you are using: ADR/OHS/EPG.

    Reference:

    As a general rule, I did the following to the js/css files:

    • If your js/css file is the specific page, upload it to the shared components and also it is especially Page attributes-> section Javascript / CSS-> file URL

    For example:

    #APP_IMAGES#my_custom_page1.js
    
    • If your js/css file is required in the entire application, transfer on components/web shared server (Pictures folder) and include this is the reference in the Page template.
    
    

    NOTE: I prefer to keep level application files as well in shared components like this help to application deployment.

    As an APEX 4.2 update it is another option refer you js/css files application (instead of changing the page template), Application-> shared-> attributes of User Interface components. You can consult the js/css files in the sections for 'File URL':

    For example:

    #APP_IMAGES#custom.js
    

    I hope this helps!

    Kind regards

    Kiran

  • No access to the data in a database linked when calling procedures in the APEX 5

    Hello

    I use

    • APEX 5.0.3
    • APEX DB: Oracle DB 12 c
    • DB related: Oracle DB 11 g

    When you call procedures and packages of APEX-side on the related DB, I can't access the data with a "select...". "in the tables on the DB related.

    Is it because of the different versions of DB?

    Is there a general setting in my APEX 5.0.3 I need to access the data in the tables on the DB related?

    Any help appreciated.

    Thanks in advance.

    Concerning

    Norbert

    Hello

    Thanks for the reply.

    But at least we do the upgrade again.

    ... when editing a dblink and recompile the schema it all works.

    Concerning

    Norbert

  • I got a so-called windows services call, to solve the problems they had received through error reports.

    I got a so-called windows services call, to solve the problems they had received through error reports. I was instructed to enter an address in the term to start the process, but I did not trust the call. Was - this legitimate?

    Original title: windows services

    Of course it's a scam designed to extract money from your

  • Limit size of JavaScript in the HTML header?

    Hi all

    I added some javascript in the header HTML tabular form. When the javscript code size increases more than 26.6 KB, my form doesn't work - it gives just 'Not found' error instead of the page. If I reduce the size of the JS code to 26.5 k or below, it works very well.

    How can it be controlled? I need to add more JS for various checks.

    Thank you
    Zahid

    When you have a lot of javascript code, you can put in one file JS download on/i/images or files (shared components-> static files) in your workspace and static load from there. This makes it easier to maintain, too.

  • call javascript to enable the disabled field...

    Hi guys,.

    I want to on the field by calling javascript by pressing the button.

    How to do this?

    Thanks and respect,
    SKUD.

    Hi Skud,

    On the AJAX call back, you came to know that about enabling/disabling of fields depending on whether you can write the script below.
    document.getElementById('ITEM_NAME').disabled = true;

    Thanks and greetings
    Teriimana

  • Reports: Javascript in the area on foot of page with links in cells

    Hi all!
    I need to put hyperlinks in my APEX (4.0) report and I read there is no direct option for IT... that's how I thought to do, so...


    My reports contains two columns:
    DEVICE and HEALTH.
    The first contains a string with the name of the device and the second is a number that is expected as in percent.

    I need channels in the DEVICE columns are also links to another APEX page where I have to generate a graph of "dynamic".


    That is: we can intend to a report that the DEVICE is '000 x 0' and line '30 HEALTH.
    APEX generate HTML code like this:

    < headers td = 'DEVICE' class = 'data' > 000 x 0 < table > < headers td = 'HEALTH' class = 'data' > < table > 30

    But I also need '000 x 0' to be a link to: "f?" p = 104:4:2205607043123699:THE_DEVICE:000 x 0 "."
    To say: the fourth page of my site of APEX, where "THE_DEVICE" is an APPLICATION_ITEM and contains the name of the device clicked.


    First thing I tried is to re - write pl/sql query to automatically returns the HTML for the link, such as:

    Select
    ''|| DEVICE of |'' as a PERIPHERAL,
    trunc (HEALTH, 2) than HEALTH
    of [...]

    But the APEX convert special characters to the & x; values:
    & amp; Lt; a href = & amp; quot; f? p = 104:4:2205607043123699:THE_DEVICE:000 & amp; quot; target = & amp; quot; _self & amp; quot; & amp; quot; & amp; GT; 000 & amp; Lt; /a & amp; GT;


    Second thing, I thought is to give a Unique ID to the region of the report ("ALARM_DEVICES_REG") and try to change this text dynamically by adding JavaScript to the footer area.

    I checked and found in this forum a JavaScript suggested to someone who has had a similar problem to mine, then I tried to adapt to my situation.
    The fact is that my JavaScript in the footer area does not seem to work at all! Or a simple document.write ("bye!"); COMAND!
    How possible?

    The JavaScript code, I tried to create could also contains errors, and it is the following:


    < script type = "text/javascript" >
    var y = document.getElementById('report_ALARM_DEVICES_REG')
    var x = y.getElementsByTagName ('TD');
    var s;
    If (x)
    {
    for (var i = 0; i < x.length; i ++)
    {
    s = x.item (i);
    If (s.GetAttribute ('headers') == 'DEVICE')
    {
    s.Data = replaceHtmlEntites (s.data);
    }
    }
    }
    < /script >

    I noticed the innerTable for reports a "report_ALARM_DEVICES_REG" id area (while the outside has "ALARM_DEVICES_REG") so I used to be more selective.

    replaceHtmlEntites is a function which should bring the special character of "& x; ' values and it is the following (I put it in"Function and Variable overall statement"field of the APEX of the State page):

    var replaceHtmlEntites =)
    function() {}
    var translate_re = "/ & (nbsp |)» amp | quot | Lt | GT); / g » ;
    definition of var = {}
    "nbsp": "",
    'amp': '& ',.
    "quot ': ' \ ',"
    "lt": ".."
    'gt': ' > '.
    };
    function (s) {}
    Return (SS. Replace (translate_re, {function (match, entity)
    back translation [entity];
    }) );
    }
    })();


    Shouldn't this work? And if not, why?
    Thanks to you all!

    You should be able to edit the column in the developer and scroll up to 'Column link' and use it. Tried not to who? Or he does not satisfy your needs?

  • Problem when the over 1 function call Javascript

    Hello everyone,

    I'm trying to disable fields based on the value in a Select list. There is a table in which the values are stored to tell whether a field should be disabled for the selected value. I have created a process of application and a JavaScript function for each field.

    The problem is that only the first function is executed and the second is not.

    I tried the following:
    onchange="Disable_Dagen(this);Disable_Kg(pThis);"
    and I put them together at a relative of JavaScript function
    function Disable_Fields(pThis){ 
    Disable_Kg(pThis);
    Disable_Dagen(pThis);
    }
    In both cases the first work, so when I change the order then it is executed properly.

    Can someone give me a clue on how to fix this?


    My JavaScript in the header complete definition is the following:
    (the code in html_DisableOnValue is taken on the site of the Carl Beckstrom example)
    <script language="JavaScript" type="text/javascript">
    <!--
    
    function html_DisableOnValue(pThis,pValue,pThat){
         var lTest;
      if(pThis.nodeName == 'SELECT'){
                   lTest = html_SelectValue(pThis) == pValue;
         }else{
                   lTest = $x(pThis).value == pValue;
         }
         if(pThat){
               for (var i=2;i <= arguments.length; i++){
                          html_disableItem(arguments,lTest)
              }
    }
         return;
    }

    function Disable_Dagen(pThis){
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=AP_RETURN_DISABLE_VAL_DGN',0);
    get.add('AI_AFW_CODE',pThis.value);
    gReturn = get.get();
    get = null;
    //alert('Return waarde is '+ gReturn );

    html_DisableOnValue(pThis,gReturn,'P43_AANTAL_DAGEN');
    }

    function Disable_Kg(pThis){
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=AP_RETURN_DISABLE_VAL_KG',0);
    get.add('AI_AFW_CODE',pThis.value);
    gReturn = get.get();
    get = null;
    //alert('Return waarde is '+ gReturn );

    html_DisableOnValue(pThis,gReturn,'P43_AANTAL_KG');
    }

    function Disable_Fields(pThis){
    Disable_Kg(pThis);
    Disable_Dagen(pThis);
    }
    //-->
    </script>
    In this case the Form Element property is set to
    OnChange = "Disable_Fields (this)" "
    Thanks, Wouter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    Hi Wouter,

    1. by using FireBug you can write messages to the console using console.log('blablabla'); (instead of the alert ('blah')) obvious.
    2. you can disable (and activate) an element by using the function $f_DisableOnValue (pThis, pValue, pThat) standard.
    3. what happens if you uncomment the alerts?

    Greetings,
    Roel

    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.Logica.com/

    You can assign this answer to your question in marking it as useful or Correct ;-)

  • Query SQL Report with condition (multiple settings) at the point of the apex?

    Hi all

    I have a small problem and cannot find a solution.

    I need to create reports based on a query, SQL or I.R. Nothing hard here.
    I need to add the WHERE clause dynamically with javascript to an element of the Apex.
    Even once is not very difficult. I set the agenda of the Summit, put my query like this "SELECT * FROM MYTAB WHERE COL1 =: P1_SEARCH" then I call the page by setting the P1_SEARCH value. For example, COL1 is rowid. It works very well.

    But here's my problem. Consider that P1_SEARCH contains several ROWID, and I don't know the number of these values,
    (no I don't create a large number of items and create a query with so much GOLD!), I would sotheming like "SELECT * FROM MYTAB WHERE ROWID IN (: P1_SEARCH) with something like: ROWID1, ROWID2 in P1_SEARCH."

    I also tried: 'ROWID1, ROWID2' and 'ROWID1', 'ROWID2 '.
    but I can't get anything else than the mistake of filter. It works with a value, but as soon as there are two values or more, it seems that the Apex is unable to read the string.


    How can I do it please?

    Thanks for your help.

    Max

    mnoscars wrote:

    But here's my problem. Consider that P1_SEARCH contains several ROWID, and I don't know the number of these values,
    (no I don't create a large number of items and create a query with so much GOLD!), I would sotheming like "SELECT * FROM MYTAB WHERE ROWID IN (: P1_SEARCH) with something like: ROWID1, ROWID2 in P1_SEARCH."

    I also tried: 'ROWID1, ROWID2' and 'ROWID1', 'ROWID2 '.
    but I can't get anything else than the mistake of filter. It works with a value, but as soon as there are two values or more, it seems that the Apex is unable to read the string.

    For a standard report, see + {message identifier: = 9609120} +.

    For an IR - and improve safety by avoiding the risk of SQL Injection, use a collection containing the values in a column instead of a CSV list:
    {code}
    SELECT * FROM MYTAB WHERE ROWID IN (SELECT c001 FROM apex_collections WHERE collection_name = "P1_SEARCH")
    {code}
    (Please close duplicate threads spawned by your original question.)

  • One of my javascript interfere with other javascript in the drop-down nav menu

    I use javascript for a slideshow and scroll to images in my home page. The thread is that I realized that now, there is another javascript in the page that I don't remember call myself and it seems that connects both slideshows and also interferes with the drop down menu script menu, which now does not work.

    I used Magento, so that the header is not part of the same page. I don't know if is a Magento or something to Dreamweaver, that this new javascript was placed in the home page.

    Here's the url: http://www.southsunbeads.com

    " These two javascripts go with the main top page show: src = ' http://www.southsunbeads.com/website/slideshow/jQuery-1.2.6.Pack.js ">

    <script type="text/javascript" src="http://www.southsunbeads.com/website/slideshow/simplegallery.js">
    
    This one is part of the scroll image at the bottom: <script type="text/javascript" src="http://www.southsunbeads.com/website/carousel/stepcarousel.js">

    But then I have this one, that is causing all the problems and is apparently plug everything together, when I tried to remove it, slide shows stop working.

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    
    I don't know javascript, so I have no idea how to fix this problem. Basically what I need is that the menu on the top doesn't get affected by these other javascripts.
    
    

    Can anyone help?

    Thank you

    Happy to be useful even in such a non-Dreamweaver related question ;-)

    And here's my usual Mantra as "watchdog" for this particular forum: questions better in the future such regular Dreamweaver general discussion post or (where it s a PHP related question) the Dreamweaver Application Development forums. The current forum addresses issues related to uninstall Dreamweaver extension, which generates the server-side code and has been abandoned for more than a year, that is, the number of fellow forum participants is much more out there in the forums of regular Dreamweaver - who knows, some of them might even be familiar with Magento and could advise you better than what you have here ;-)

    Cheers and good luck,

    Günter

    PS Si you think that the answers that happened - sort-help to resolve your issue, please consider this marker as "answered".

  • I have Windows 7 and I was wondering if there was a version of Firefox called "Nightly"? The type of a Nightly.Ink file. In addition, every time I open 'Nightly' now I have g

    I have Windows 7 and I was wondering if there was a version of Firefox called "Nightly"? The type of a Nightly.Ink file. Also, whenever I open 'Nightly' now, I get a popup of the program update and it says "update.exe". Is this a part of Firefox "Nightly" or is this a virus? Please answer this so I can relax. My email is [email protected]

    Every night (a1) and (a2) Aurora built updated every day, so if you use such a developer version you will see an update every day (sometimes more than once a day in the case of a respin). These alpha versions are more intended to be experienced testers, because you may experience stability and regression of the questions at any time. The beta version (currently Firefox 25) can be useful for testing Web sites to see if they're going to get broken in the next Firefox release and file a bug report, if necessary.

    Note that you must always install such version of development alongside a stable version and use a separate profile for each version folder.

  • The display of an image defined in an external PLSQL procedure that renders the code HTML and called in a region of the APEX

    I have an external PLSQL procedure that dynamically creates a report out of the HTML tags that I then called an anonymous block APEX PLSQL.  I'm making bad images with the following code:
    in the external procedure.  How do you get around that? (NOTE: the procedure is too big to store directly in the APEX)

    ....

    ' < style td = "width: auto;" "padding: 0px 5px 0px ' > '. spc_rec. SPC_VIABILITY_STATUS. "< table > ' |

    "< style td =" width: auto; " text-align: left; "padding: 0px 5px 0px" > ' | spc_rec. SPC_VIABILITY_REASON. "< table > ' |

    TD > < img src = "" #IMAGE_PREFIX #check2.gif "alt =" "/ > < table > '"

    ....

    Thanks in advance

    PaulP

    Hi Paul,.

    You can use the global variable of the APEX package below to get the image prefix in pl/sql. Of course, your procedure should be in APEX, schema analysis application.

    APEX_APPLICATION. G_IMAGE_PREFIX

    Kind regards

    Hari

Maybe you are looking for

  • iTunes overwhelming 12.1.3

    I had iTunes 12.1.3 pushed to my relatively old Dell PC running Vista (64-bit). Since then, the application crashes when I do almost anything: Plug an iPad 3 (the one with the Retina display) Try to update all apps Sit leave iTunes open without doing

  • OfficeJet 5742: 5742 OFficejet won't print as it is impossible to connect to the Instank ink

    I have an Officejet 5742 and I currently ' printing as whnever I send somehtign I get the following error message: -Cannot print. Connect the printer to HP ink instant status update. When I click on connect, I get the following error message: -L' pri

  • updates will not install, continues to turn off and turn it back on

    I think that I disabled something in Windows, I can't even start it now. After it starts it says Configuration updates and turns off. Anyone, HELP!

  • Synchronization between RDF store and relational table

    I start this question in a new thread, as it goes in a field of another problemIs one of the option to model the attributes of the object to store the attributes in a separate relational table and a SQL allows to attach graphic query results. Now, he

  • Age minimum 13 for delivery of education

    Hi all.I'm buying the student all the Apps for my son, but he is under 13.The pricing page says this: -."To qualify for a student discount, you must be 13 or older and enrolled in one of the following: ."• Primary or secondary - school accredited pub