Part of page apex show in graphic form

using Apex 4.2

Hello team,

I have a report as follows, for example,

SELECT id, ename, max_weight, tot_weight,
APEX_UTIL. () HTML_PCT_GRAPH_MASK
Round ((tot_weight/max_weight) * 100.0), 100).
100 - width
) progress
FROM table1

It works fine but my requirement is how to display page article in the graphic form as a report item.

for example. I have a 10 page and objects are


P10_ID (Display_only), P10_Ename (Display_only), P10_max_weight (Display_only), P10_tot_weight (number)
and P10_Weight_Progress (view graph) as a report item. If P10_weight_progress will show how much weight can be put over
According to max_weight. Of course, there will be a validation for a weight that can not be more weight max.

Any help please?

Thank you very much!
RI

More of an idea, use a display only element and then change "based on" under «Output of PL/SQL Code» settings

Then in the code, you can do something like:

HTP.p (APEX_UTIL. HTML_PCT_GRAPH_MASK(values here...)) ;

I think it's going to work great.

Thank you

-Jorge

Tags: Database

Similar Questions

  • Need help with JavaScript/region templates and APEX (Show Hide region)

    I have a page that I am building where I want to use a form of a page but the swap areas (without reloading the page). In my example form, I have 3 areas I want to talk about as general, Major, Standard. I have them where they will be show and hide but the result is not satisfactory, because even if the region is hidden, the white space remains there where he was. Basically I want the form to continuous flow when the effect is that Standard replaces the more important or Major replaces the standard when you change the menu drop down.

    Link to the example on apex.oracle.com: http://apex.oracle.com/pls/otn/f?p=23948:1
    Developer Access:
    workspace: dapullia
    username: guest
    password: demo
    The application number is 23948

    Hello David,.

    Instead of the "visibility" of switching you must pass the 'view' of the 'block' to 'none '.
    If your code should be something like this (using the notation of APEX javascript library)

    $x("MAJOR_EVENT").style.display = 'block ';
    $x("STD_EVENT").style.display = 'none ';

    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    You can reward this response in marking it as useful or Correct ;-)

  • How can I change the opening page to show Web sites

    I used to have a home page that showed my most visited wensites that I always went to now all I get is a blank page. How can I change this back

    Sorry for the confusion. Home page (shows when you open a new window by pressing Ctrl + n) and the new tab (shown when you open a new tab by pressing Ctrl + t) are different parameters.

    To specify the steps for the second part of the answer of cor - el more in detail:

    (1) in a new tab, type or paste Subject: config in the address bar and press ENTER. Click on the button promising to be careful.

    (2) in the search above the list box, type or paste newtab and make a pause so that the list is filtered

    (3) double-click the preference browser.newtab.url and enter your favorite page:

    • (Default) page thumbnails = > subject: newtab
    • Blank tab = > subject: empty
    • Built-in Firefox homepage = > topic: welcome
    • Any other page = > full URL of the page

    Press Ctrl + t to open a new tab and check that it worked. Fixed?

    Since it's the integrated behavior, the fact that it changed usually attributed to an add-on. But an add-on is not used to choose a blank page, it doesn't choose a search engine or advertising, so... no idea of what happened, and I hope that when you changed the setting, it will be fine to go ahead.

  • Necessary to remove a page apex tabset

    I have an apex page. who shows me to be a member of a tabset...
    How can I remove the tabset page...
    I went to... shared components tab and deleted the existing tabset page...
    But still the page has the tabs you see above...
    What can be done so that the page that is already having tabset... These pages when displayed donot show the tabset...


    Thank you

    Published by: susf on June 28, 2012 12:44 AM

    Hello
    You must change your Page template to one of the tabs No one.

    Kind regards

  • Apex showing Buddhist year (Thai)

    Hello

    I'm trying to migrate my application at the Apex. The problem is, I can't find a way to display the component 'year' in the column 'Date' as Buddhist year (B.E.). The Bhuddist year is simply the Gregorian year + 543, e.g. 2011 is 2554 in this system.

    I have looked on the setting of globalization, but could not find anything related to the culture setting...

    Is it possible to add quietly 543 in the component 'year' just before be displayed to the user? And subtract 543 of the entrance, just before it is saved in the database?

    Thank you very much!

    >
    I'm trying to migrate my application at the Apex. The problem is, I can't find a way to display the component 'year' in the column 'Date' as Buddhist year (B.E.). The Bhuddist year is simply the Gregorian year + 543, e.g. 2011 is 2554 in this system.

    I looked on the setting of globalization but could not find anything related to the setting of culture
    >

    You want to set the main language of the application in any way is appropriate for your application, but as you say, it doesn't seem to be a way to directly specify the calendar system in the settings of the globalization of the APEX. Until someone with more knowledge globalization that Andy or I pick it up, affecting the calendar using ALTER SESSION system works.

    You can use an Application process that runs to what precedes on login

    It will not work as on the new app Instance processes run only once per session of the APEX, so this will only change the data session needed for the initial connection used, and when the page views using another connection in the pool that their calendar settings have been changed. The best place for code that must be executed for each connection to the database is in the security of private virtual database (DPV) attribute (Home > Application Builder > Application > shared components > change the security attributes):

    begin
      execute immediate 'alter session set nls_calendar=''Thai Buddha''';
    end;
    

    However, this gives me problems: I keep getting disconnected from the APEX Builder! I suspect that changing this setting on a database using the calendar Gregorian/UK NLS params is confusing session timeouts somewhere...

    So if your database is not configured to work with the thai Buddha calendar, it may be more prudent to change the session for the duration of the page only show submit and reset subsequently. Try to use enforcement procedures at points of execution on load: before header and on submit: after presentation Page - before the calculations and Validation to set the thai calendar and On Load: after Footer (footer template) and on submit: after presentation Page - after calculations and Validations to reset Gregorian?

  • How to ACCEPT values on page APEX sent by external APEX through POSTmethod

    Hi people,

    How can I accept the values in my page APEX which are send to my page through the POST method from outside of my application?

    Sample test:
    Of non-apex application (simple html page), I would like to post 2 fields (field "Par1" and the field "Par2") in my APEX page. On my apex page I defined the areas P102_PAR1, P102_PAR2.
    <html>
    <HEAD>
      <TITLE>Tester</TITLE>
    </HEAD>
    <body>
         <h1>Test to POST form values into APEX page</h1>
         
         
         <form action="[my_url???]" method="POST">
              <table>
    
                   <tr>
                         <td>Par1</td>
                         <td>
                              <select name="Par1">
                                  <option value="OPTION1">Option 1</option>
                                  <option value="OPTION2">Option 2</option>
                                  <option value="OPTION3">Option 3</option>
                              </select>
                        </td>
                   </tr>
                   <tr>
    
                         <td><label for="Par2">Par2</label></td>
                         <td><input type="TEXT" name="Par2" id="Par2" size="30" value="123"></td>
                   </tr>
              </table>
              <input type="SUBMIT" value="send">
         </form>
    </body>
    </html>
    How can I define action URL in top shape, so once you press the "SUBMIT" button it will fill both fields in my apex page?
    My APEX (p102) page is a blank page, with only 2 fields P102_PAR1, P102_PAR2 text at the moment.

    Thank you very much
    Tomas


    ===========
    If I put above url to: ' http://cit-dev-as5:7780 / pls/he/f? p = 700:102:1659258057907233' (stright to my page & session sharing) and press "SUBMIT" button, then I recive below error message:
    f: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: PAR1,PAR2
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM: 
    
      DAD name: he
      PROCEDURE  : f
      URL        : http://cit-dev-as5:7780/pls/he/f?p=700:102:1659258057907233
      PARAMETERS :
      ===========
      P:
       700:102:1659258057907233
      PAR1:
       OPTION1
      PAR2:
       123

    Tomas:

    Treat the input of an external application that needs to be passed to an APEX application is to create a procedure from pl/sql intermediary who will receive the input of the external source and then format this entry as required by the syntax of the URL of the APEX and then re - direct the user to this URL APEX format.
    Using the example you provided you have the pl/sql procedure as follows

    Create or replace  procedure extinput(par1 in varchar2,par2 in varchar2) is
    l_apex_url varchar2(4000;
    begin
    l_apex__url:=
      'http://myhost:myport/apex/f?p=700:102::::P_102_PAR1,P_102_PAR2:' ||
       par1 ||','||par2;
    
    owa_util.redirect_url(l_apex_url);
    end;
    

    The names of parameters in your procedure must match the names of the fields of the POST.

    CITY

  • Page APEX control items are displayed using the APPS user!

    Hi friends,

    I am running an Apex Application of the Apps (E Business suite-> link to Application). When the user clicks on this link without asking the login of the APEX, the application is open based on credentials Apps. Now my problem is the customer requests to restrict the display of the elements of the page (i.e. buttons) in the Application of the Apps user login and accountability-based APEX.

    I know how to show the result as normal button: APP_USER = "ADMIN" for example. But I don't know how to control from APPS. As I am new to both I need help from you guys to get this functionality.

    I need the faster response because it is very urgent for me.

    Thank you
    Stéphane.

    When you call page APEX-separated values, you can set the Variable of APEX with comma

    For Ex.

    f? p = 102:1:F102_ORG_ID, F102_GL_SET_OF_BKS_ID, F102_RESP_ID, F102_USERID, F102_HOME_URL:' | vOrgId | ',' || vSobId | «, » || vRespId | «, » || vUserId | vURL

    Alternatively, you can pass these parameters as Cookies.

    Let me know if you need something more.

    HTH

    Dinesh

    Published by: DineshS on February 20, 2009 02:08

  • While creating a slide show with pictures, can you assign music to a specific set of photos? I would use 5 different pieces of music for every 5 parts of my slide show.

    While creating a slide show with pictures, can you assign music to a specific set of photos? I would use 5 different pieces of music for every 5 parts of my slide show.

    No, you can't.  One solution is to create 5 different slideshows and export them to the office where you can bring together them in a single quicktime movie file and use it.

    If you have a copy of iMovie 6 HD, it can be hacked to work with El Capitan. With it you can assign exactly music groups of slides in the slide show:

  • When I opened a second tab in Firefox, it won't go to my homepage. Instead, it goes to a page that shows what looks like a collection of pages (or links) t

    When I opened a second tab in Firefox, it won't go to my homepage. Instead, it goes to a page that shows what looks like a collection of pages (or links) that I visited in the recent past or distant. I rather go to my homepage, which is much more useful for me. I tried to change that in 'Options', but without success. Please fix this.

    1. Type of topic: config in the address bar and press ENTER.
    2. Press the big button to ignore the warning.
    3. In the search bar, paste browser.newtab.url
    4. In the search results, double-click browser.newtab.url and set its value to any desired URL. If you want the Firefox home page by default, you would set the value to Subject: Home
  • I have a problem when I want to print an email page.it shows me an error that seems to come from a program that blocks the appearance windows.thos do sais.what do?

    Question
    I have a problem when I want to print an email page.it shows me an error that seems to come from a program that blocks the emerged Windows.ce do sais.what do? Edit

    Can you check this problem on Firefox 9?

  • I have a Mac and I want to remove the feature "Firefox prevented this site automatically redirecting to another page. Show you how do to Windows, but I have not found how to for Mac

    I have a Mac and I want to remove the feature "Firefox prevented this site automatically redirecting to another page. Show you how do to Windows, but I have not found how to for Mac

    This has happened

    Each time Firefox opened

    == I try to go to page to a new page

    Thanks Cor - el.

  • I use gmail and some emails that I receive does not show the graphic or image only a small graphic icon.

    I use gmail for my email. Some of the emails that I receive does not show the graphic or photo. I can see the photo/image in Internet Explorer, and when I hit the reply in Firefox. This started happening about 5 months ago. I used to be able to view e-mails without any problems... I checked all options and have display images enabled. This happens with every email from a yahoo group and a few other emails as well. I have the latest version of Firefox. I tried uninstallng and reinstall firefox... no change.

    This has happened

    Each time Firefox opened

    == There are about 5 momths

    Thank you.. I ended up working... followed all your advice and the closure of all add-ons... are working! r

    Better gmail also seems to be a problem

    I appreciate your help.

  • shared files Windows server 2008 when I try to access the logged error shows try 704 form again later.

    shared files Windows server 2008 when I try to access the logged error shows try 704 form again later. While it uses this file from the last three months

    Hi Maury,

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for Windows Server on TechNet forum. Please post your question in the TechNet Windows Server 2008 R2 Networking - read only forum.

  • When I press OK on my 4280 printer to copy the alignment page, it shows "paper"? Nothing prints.

    All-in-one printer, HP Photosmart 4200

    Windows Vista 32-bit

    When I press OK on my 4280 printer to copy the alignment page, it shows "paper"? Nothing prints.

    Thank you very much for your answer. As suggested, I tried the hard reset nothing helps. Since then, my printer has me faithfully helped the last 4 years, I thought that it is preferable to ask for rest & buy another HP printer. I am proud to say, I am very pleased. Thanks Shane.

  • I can't find the page that shows you all the drawings that I can use as a theme.

    I want to change the theme of my page but could not find your page that shows all my choices.

    Hello!
    I hope that's what you're looking for:
    "Use themes to change the appearance of Firefox" http://mzl.la/1BAQGDX
    In case you want a specific add-on: you can find all modules of courses here:
    https://addons.Mozilla.org/en-us/Firefox/

Maybe you are looking for

  • Problems signing in

    Whenever I'll sign my Skype chat, I can connect fine for a few seconds, then it seems to start me back to the login screen. I now tried the update but no luck so far.What is happening and what I try next?

  • Apple Mail shows gmail in 2 places...

    The left column of Apple Mail shows gmail accounts in 2 places. Under the mailboxes up and then again lower down with folders marked ' staff, recipes, important, deleted, drafts, messages sent messages, travel, work. I REALLY want to get rid of these

  • Help to activate iPhone 6

    I was under contract to THE Japan last year. I terminated my contract because I need to go to the United Kingdom for work reasons. I paid my dues before leaving. After 6 months, I talked to my friend in the Japan and asked him if she could ask the co

  • Two documents qml, a normal application, one to share the preview card generator

    Hey. Read and experiment - what is the proper way to load a qml document when the application is opened normally and the other when the application is invoked as a previewer of card using a share action? I guess you can't mess with main and the creat

  • create a link with a file extension that is not exist__

    I have a file .psl that my old windows work with windows media player because it's a phone voice message. When I check the default programs in Windows 7 all the file types are listed, but .psl is not. How can I add a new association. Thank you...