custom layout and update the page elements

Hello

I'm working on an APEX application, I need a page to view issues and alternative options, such as only choose radio group or mutiple shoose by box. The user will then check the answers. After the answer questions, send the page to get the score.

The presentation must be: separate regions by the kind of question. in each region, the question in the first line; the four options in the second line, the checkbox or a radio Fund; in the bottom of the page, there is a button "submit".

The tables are designed as follows,
create the table RULE_QA_SHEETS
(
SHEET_ID NUMBER of non-null,--ID for the answer of the question sheet
Category NUMBER not null, - use a tmplate to build the leaf, for example, numbers of gender issue, easy or difficult
PERSON_ID NUMBER not null,-the user who was answering questions
DATE OF ANSWER_DATE,
NOTE VARCHAR2 (4000 TANK)
)

create the table RULE_QA_SHEET_ITEMS
(
ITEM_ID NUMBER not null,--ID for the question in this form.
SHEET_ID NUMBER not null,--master id of the table.
QUESTION_ID NUMBER not null,--ID for the issue in the inventory.
MEET VARCHAR2(30 CHAR) - the answer the user checked, will be compared to the inventory. Once the user to submit the page, this column will be updated.
)

I've not found a good report APEX model, and I can use dynamic content plsql to generate the layout but no idea how to upgrade the right answers.

Everyone has the same experience, or give me a help, that would be great!

Thank you!

Chongwu says:
Here is the connection info.
Workspace: CHONGWU
User: dev1
Password: 1qaz2wsx
Answers and the Question of enforcement 42990

Could you please give me an example of this? page 15, pls help to control dynamic pl/sql region that generates the page layout.

See page 150 in your application. I started with a copy of your page 15 and brought some changes in regions of dynamic PL/SQL to produce more semantic HTML by using ordered lists and labels. Labels provide also bigger clickable/tangible goals by answering the questions.

declare

  i number := 1;

begin

  htp.p('
    '); for q in ( select q.qa_id , q.question , q.answer_a , q.answer_b , q.answer_c , q.answer_d from rule_qa q where q.question_type = 'S') loop htp.p('
  1. ' || q.question || '
      '); htp.p('
    1. ' || apex_item.radiogroup(i, 'A', null, p_item_id => 'q-' || i || '-a', p_item_label => q.answer_a) || ''); htp.p('
    2. ' || apex_item.radiogroup(i, 'B', null, p_item_id => 'q-' || i || '-b', p_item_label => q.answer_b) || ''); htp.p('
    3. ' || apex_item.radiogroup(i, 'C', null, p_item_id => 'q-' || i || '-c', p_item_label => q.answer_c) || ''); htp.p('
    4. ' || apex_item.radiogroup(i, 'D', null, p_item_id => 'q-' || i || '-d', p_item_label => q.answer_d) || ''); htp.p('
    '); i := i + 1; end loop; htp.p('
'); end;

Some CSS is required for formatting required and to get the labels actually appear:

ol.questions>li {
  margin-bottom: 1em;
  font-weight: 600;
}
ol.answers {
  margin: 0.5em 2em;
  list-style: lower-alpha outside;
}
  ol.answers>li {
    clear: left;
    margin: 0.5em 0;
    font-weight: 400;
  }
  ol.answers>li span {
    display: inline-block;
  }
  ol.answers>li label.hideMeButHearMe {
    position: static;
    top: auto;
  }
  ol.answers>li input {
    float: left;
    margin: 0 0.5em 0 0;
    padding: 0;
    vertical-align: middle;
  }

Finally, there is a simple process that records the answers in a collection of the APEX. Collections are frequently used apps Q & A and survey to store responses temporarily before their final transformation:

declare

  answer varchar2(32767);

begin

  /*
    Create or empty the APEX collection used to temporarily store the user
    responses.
  */
  apex_collection.create_or_truncate_collection('ANSWERS');

  for i in 1..50
  loop
    /*
      Dynamically capture the contents of each apex_application array...
    */
    execute immediate '
        begin
          :1 := apex_util.table_to_string(apex_application.g_f' || to_char(i, 'fm09') || ');
        end;'
      using out answer;

    wwv_flow.debug('apex_application.g_f' || to_char(i, 'fm09') || ' = ' || answer);

    /*
      ...and if there's a response then record it in the collection.
    */
    if answer is not null
    then
      apex_collection.add_member(
          p_collection_name => 'ANSWERS'
        , p_n001 => i
        , p_c001 => answer);
    end if;

  end loop;

end;

It appeals to a rather horrible dynamic assessment of the apex_application tables. As Howard points out, there is only 50 of these paintings, which can be limited if you plan to have more than 50 questions. A common way to avoid these two problems is to present only one question at a time (turn-off to back on the same page in a sort of Pseudo-Assistant until all questions are answered), so you only need to refer to a single table, known.

Note, however, that I am not keen on this model of single table. You can consider using a more flexible and extensible model as in This example.

Tags: Database

Similar Questions

  • Get and update the Page Template dynamically

    Hello everyone,

    I use JDeveloper 11.1.2.3

    I am faced with a situation that I thought it would be simple to solve, but in fact, I'm not finding an overview. I had provide some customization to the end-user at my request (to be more precise, each user can set the default language, which would be loaded whenever it connects and do its work). To get the changes immediately, I inserted the standard way to fully refresh the current page.

            FacesContext context = FacesContext.getCurrentInstance();
            String currentView = context.getViewRoot().getViewId();
            ViewHandler vh = context.getApplication().getViewHandler();
            UIViewRoot x = vh.createView(context, currentView);
            x.setViewId(currentView);
            context.setViewRoot(x);
    
    

    The problem is my pages using a page template (actually there three different page templates in use at the present time). And the model did not get updated with the page (he does only after some navigation). It is clear to me from the model it is another page and has it's own pageDef. My question is, "How can I get the updating of page template at the same time as the current page?"

    PS: I can't follow this example: Blog of Andrejus Baranovskis: model Page of ADF refreshing of ADF Fragment , because the direct child of my patterns is one facet and cannot have an affair.

    Please advice!

    Hi Brian,.

    Thank you for your response. My goal was to change the language of the page (ie: the locale), based on a value of the "Language" property on the users table. The problem was on the page of model component that did not change immediately.

    In any case, I think that I managed to solve this problem. Each jsf page has a 'f: view' and a 'Local' property So I make this property value gets a managed bean in which ownership of 'Language' referred to above is extracted, and the problem with the model is solved. The only problem is I want to set it for each page, but it seems that it works pretty well.

    Definition of this topic as resolved!

  • iCloud accessed via my Mac doesn't show the documents created and updated the pages on my iPad, even if the settings are correct all around.

    When I open the iCloud drive from my Mac (running Yosemite) documents created and more recently in the Pages on my iPad mini2 is no longer appear. I have re-checked the iCloud settings on the devices and the two seem to properly put in place.  There is no network problem.

    Try the settings/iCloud and remove the synchronization. Wait a few minutes and then resynchronize.

    Try to go into System Preferences/iCloud and stop synchronization. Wait a few minutes, then recheck the timing.

    Have you tried the signature to iCloud and then reconnect?

  • I can't have the option in menu to 13 items to work.  Any ideas?  I have already downloaded all the Templates menu and updated the software.  I never had this problem with 7 elements.

    I can't have the option in menu to 13 items to work.  Any ideas?  I have already downloaded all the Templates menu and updated the software.  I never had this problem with 7 elements.  With the help of 13 elements, I can successfully burn my movie on a disc (DVD) without menu.  The burning process is interrupted after that I added a menu.

    Rick

    First of all, please remove the stopper at the end of the content of the timeline. It is not necessary it and burn the causes of the problems.

    The main Menu marker should be OK, no similar problems as the stopper a.

    RTA

  • In the recent update of Adobe Reader, how can I go and delete the pages? Thank you very much!

    In the recent update of Adobe Reader, how can I go and delete the pages?

    I am struggling with the new simplified design.

    Any help is appreciated.

    Thank you!

    Adobe Reader cannot remove pages.

  • After VO extension update the page for some fields on a page does not work

    After VO extension update the page for some fields on a page does not work. The message arrives the data are saved, but the values is the same as that of the former. And this happens with only a few fields, other fields are working well.

    Any pointer to solve problems will be of great help.

    Thank you in advance.

    Check if the standard VO has a RowImpl and it overrides the methods getter and setter for fields that is affected. If so, you will need to call super() in your custom extended RowImpl to call this logic.

    See the link below for how to call great from the extended RowImpl.

    Johny tips: OAF: transient attributes not getting filled extended vo

    Example Code:

    public String getAttribute1() {
       //return (String) getAttributeInternal("Attribute1");
      return super.getAttribute1();
     }
    

    If the above did not help, attach standard and custom VO files. We can have a look.

    See you soon

    AJ

  • Code duplicates when I update the pages of the template (CS5)

    So. I learn Dreamweaver CS5 Classroom In A Book Adobe manual.

    I worked through the steps but when it comes to update the pages, derived from the master model, it happens...

    2016-03-11 16.02.06.jpg

    And the code looks like this... (The bold text is the text that is editable)

    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    " < html xmlns ="http://www.w3.org/1999/xhtml' ><!-InstanceBegin template="/Templates/mygreen_temp.dwt ' codeOutsideHTMLIsLocked = 'false'->

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    <!-InstanceBeginEditable name = "doctitle"-->

    < title > GreenStart Association - Contact GreenStart < /title >

    <! - InstanceEndEditable - >

    < link href = "mygreen_styles.css" rel = "stylesheet" type = "text/css" / > "

    < link href = "print_styles.css" rel = "stylesheet" type = "text/css" media = "print" / > "

    <!-InstanceBeginEditable name = "head"->

    <! - InstanceEndEditable - >

    < / head >

    < body >

    < div class = "container" >

    "< div id ="logo"> < img src="lesson05/images/butterfly-ovr.gif "width ="170"height ="150"alt ="GreenStart Logo"/ > < / div >

    < div class = "header" > <! - end .header - > < / div >

    < div id = "h-navbar" > < a href = "index.html" > home < /a > | < a href = "about_us.html" > < /a > about us | < a href = "contact_us.html" > contact us < /a > < / div >

    <!-InstanceBeginEditable name = "SideContent"->

    < div class = "sidebar1″" >

    < ul class = "nav" >

    < li > < a href = "#" > green news < /a > < /li >

    < li > < a href = "#" > green product < /a > < /li >

    < li > < a href = "#" > Green events < /a > < /li >

    < li > < a href = "#" > green travel < /a > < /li >

    < li > < a href = "#" > Green Tips < /a > < /li >

    < /ul >

    < img src = "images/biking.jpg' alt = 'Bike to take action to save gas' name ="Sidebar"width ="180"height ="145"id ="Sidebar"/ >"

    < p > we practice what we preach here is Lin bike to work through Lakefront Park < /p >

    <! - end .sidebar1 - >

    < / div >

    <! - InstanceEndEditable - > <!-InstanceBeginEditable name = "MainContent" value->

    < div class = "content" >

    GreenStart Contact Association < h1 > < / h1 >

    < p >

    <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional / / BY" > ".

    " < html xmlns ="http://www.w3.org/1999/xhtml' ><!-InstanceBegin template="/Templates/mygreen_temp.dwt ' codeOutsideHTMLIsLocked = 'false'->

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    <!-InstanceBeginEditable name = "doctitle"-->

    < title > GreenStart Association - Contact GreenStart < /title >

    <! - InstanceEndEditable - >

    < link href = "mygreen_styles.css" rel = "stylesheet" type = "text/css" / > "

    < link href = "print_styles.css" rel = "stylesheet" type = "text/css" media = "print" / > "

    <!-InstanceBeginEditable name = "head"->

    <! - InstanceEndEditable - >

    < / head >

    < body >

    < div class = "container" >

    "< div id ="logo"> < img src="lesson05/images/butterfly-ovr.gif "width ="170"height ="150"alt ="GreenStart Logo"/ > < / div >

    < div class = "header" > <! - end .header - > < / div >

    < div id = "h-navbar" > < a href = "index.html" > home < /a > | < a href = "about_us.html" > < /a > about us | < a href = "contact_us.html" > contact us < /a > < / div >

    <!-InstanceBeginEditable name = "SideContent"->

    < div class = "sidebar1″" >

    < ul class = "nav" >

    < li > < a href = "#" > green news < /a > < /li >

    < li > < a href = "#" > green product < /a > < /li >

    < li > < a href = "#" > Green events < /a > < /li >

    < li > < a href = "#" > green travel < /a > < /li >

    < li > < a href = "#" > Green Tips < /a > < /li >

    < /ul >

    < img src = "images/biking.jpg' alt = 'Bike to take action to save gas' name ="Sidebar"width ="180"height ="145"id ="Sidebar"/ >"

    < p > we practice what we preach here is Lin bike to work through Lakefront Park < /p >

    <! - end .sidebar1 - >

    < / div >

    <! - InstanceEndEditable - > <!-InstanceBeginEditable name = "MainContent" value->

    < div class = "content" >

    GreenStart Contact Association < h1 > < / h1 >

    < p >

    <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional / / BY" > ".

    < HTML >

    <!--@page {margin: 2cm} P {margin-bottom: 0.21 cm}->

    < BODY DIR = "LTR" >

    < /p >

    < p > for general questions and information email: [email protected] < /p >

    < p > when you contact our offices in Meridian, our friendly and knowledgeable staff is ready to serve you and answer your questions: < /p >

    Association Management < h2 > < / h2 >

    < div class = 'profile' >

    < p > < BR >

    < img src = "images/elaine.jpg" alt = "Elaine, Meridian GreenStart President and CEO" width = "150" height = "150" class = "fltrt" / > Elaine is president and CEO of GreenStart Association. " She has 20 years of experience in environmental sciences and has worked at several grassroots organizations, develop programs and services for community outreach. < /p >

    < p > you can find his answering your phone calls or extract a problem you have with a mail order. < /p >

    < p > Elaine to e-mail: [email protected] < /p >

    < / div >

    < p > < BR >

    < /p >

    < h2 > education and events < / h2 >

    < p > < / p >

    < div class = 'profile' >

    < p > < img src = "images/sarah.jpg" alt = "Sarah, Coordinator of events GreenStart" width = "150" height = "150" class = "fltlft" / > Sarah organises all our events, classes, and green travel offers. " Sarah made these offers begin on time and achieve their goals, so that you can enjoy every minute. < /p >

    < p > it also can create custom events for people with special needs such as access to disability or special dietary needs, or facilities for classes and existing events. So, let Sarah know if you have any personal requirements. < /p >

    < p > Sarah to e-mail: [email protected] < /p >

    < / div >

    < p > < BR >

    < /p >

    Analysis of transport < h2 > < / h2 >

    < p > < BR >

    < /p >

    < div class = 'profile' >

    < p > < img src = "images/eric.jpg" alt = "Eric, Coordinator of the research" width = "150" height = "150" class = "fltrt" / > Eric is our expert in transport. " It can examine your needs and resources in order to identify the best green solutions for transportation everyday, if it includes cars, motorcycles, buses or trains and even the decision to buy or rent. < /p >

    < p > when you are ready to change the way you move around the city, call Eric. < /p >

    < p > Eric to e-mail: [email protected] < /p >

    < / div >

    < p > < BR >

    < /p >

    < h2 > research and development < / h2 >

    < p > < BR >

    < /p >

    < div class = 'profile' >

    < p > < img src = "images/lin.jpg" alt = "Lin, research and development" width = "150" height = "150" class = "fltlft" / > Lin manages our research for sustainable development. " She studied the products and services of all the local restaurants, store, hotel, spa, or other cases that we recommend to our visitors. She listens to your comments on our recommendations and controls to your complaints. < /p >

    < p > you can expect to hear about Lin when you order a product or make a service appointment.  She will want to know what you thought of our offerings. < /p >

    < p > Lin to e-mail: [email protected] < /p >

    < / div >

    < p > < BR >

    < /p >

    Information systems < h2 > < / h2 >

    < h2 > < BR >

    < / h2 >

    < div class = 'profile' >

    < p > < img src = "images/matthew.jpg" alt = "Matthew", Manager of information systems width = "150" height = "150" class = "fltrt" / > Matthew is our do-it-all guy. " It takes care of the the business end of things. He maintains this web site, online store and the reservation system.  He is also experienced to help people complete their orders and can intervene to help when everyone is busy. < /p >

    < p > even if Matthew is good with numbers, it is also a passionate biker and can help you find some beautiful mountain BIKE trails around town. < /p >

    < p > Matthew to e-mail: [email protected] < /p >

    < / div >

    < h2 > < / h2 >

    <! - end content - >

    < / div >

    <! - InstanceEndEditable - >

    < div class = "footer" >

    < p > Copyright 2010 Meridien GreenStart, all rights reserved. < /p >

    <! - end .footer - > < / div >

    <! - end .container - > < / div >

    < / body >

    <! - InstanceEnd - >< / html >

    If someone could help with this, I would be very grateful, I was pulling my hair.

    I can fix it kind of in copy/paste the code in a new "page template" and removing code duplication but then I need to update the model and it happens all over again

    What can I say? Your Template.dwt file is broken.

    Maybe it would be easier to start over.  Or if you work with the code, open the Template.dwt file and fix mode code by removing the duplicate document.

    Nancy O.

  • Can not set a value by the executed dynamic action on the page element "selection list."

    I created an agenda of the page 'list of selection' and I want to when I change a value in another element of the page set only 'screen '.

    I created a dynamic action on the page element "selection list" for this.

    These are the dynamic action attribute:

    When:

    ======

    Event: change

    Selection type: point

    Article: P29_PURCHASE_ORDER

    Condition: No strings attached

    Advanced:

    ========

    Scope of the event: static

    Identification:

    ==========

    Action: Set

    The ' Action Page when the changed value "attribute of the element of 'list of selection' = 'None', and when I run form the dynamic action run and set the value for once and do not update the value according to the change in the article"list of selection. "

    Note: when I change the previous attribute of 'Redirect and set', dynamic action run and properly value, but the value was hidden soon

    I want to value when the value of change of select list according to this change successfully.

    Please, advice me,

    Best regards

    Mustafa Ezzat

    Hello

    you set the value of the 'Page elements to submit' to P29_PURCHASE_ORDER?

    Then, the SQL statement would use the current selected value.

    This is the help text says: "specify a list separated by commas of the elements of the page that will be submitted to the server and therefore available for use in your"SQL statement"," PL/SQL Expression"or"Body of the PL/SQL function".»

    Kind regards

    Erik-jan

  • My computer always tells me to update the Pages, but when I go to the App store, it will not be updated, I just get the spinning wheel.

    My computer tells me every day to update the Pages, but when I go to the App store (where I bought it) and click on update, I just get a spinning wheel.

    The specific version of Mac OS X (Apple logo: about this Mac) and version specific Pages (Pages: pages) will prevent us from guess.

  • Why is able to save and update the passwords for sites other than those of Blackboard FF?

    I am able to save and update passwords on other sites, but not on the Blackboard learn for my University. They force us to change our pw is from time to time, and I think I noticed it after that Blackboard did some updates to their site. It will always load autofill with my old account and password, but not update it. I deleted the password stored and tried to get FF to remember once again on my laptop, but it has not yet asked to save him. I'm guessing that there is a new code or a script for the journal in the procedure? Is there a manual way to enter and update the credentials stored?

    Hello, sites can specify that passwords should not be stored (however I do know that if this is the case on the page you are having problems with, since you did not specify which University it affects). as a way to get around this, you can use an addon like this: https://addons.mozilla.org/firefox/addon/remember-passwords

  • Result passage of PL/SQL code for the page element

    Hello

    I have created a process in after the header to fill data to the page of the form elements.  The pl/sql code is like bellows.  Then I got the error message:

    ORA-06502: PL/SQL: digital or value error: character number conversion

    My question is that I do not see the difference in format between the page element and block pl/sql variables (e.g. : P31_STUDY_ID vs v_P31_STUDY_ID), they are either numeric or text field (in fact I have hidden field, but don't see conversion back to the digital field solved the problem).  And don't see needs to set the format mask.  Is there another way to detect the column that causes the problem, or if there is a syntax error with my assignment (from the variable element on the page)?  Thank you very much!

    ============================

    Declare

    number of v_P31_STUDY_ID;

    number of v_P31_STUDY_SITE_ID;

    v_P31_STUDY_SITE_NAME VARCHAR2 (255);

    v_P31_STUDY_SITE_NUM varchar2 (10);

    number of v_P31_STUDY_SITE_NAME_NUM_ID;

    number of v_P31_STUDY_SITE_OPEN_STATUS;

    v_p31_comments VARCHAR2 (255);

    Start

    Select

    tbl_study_site.study_id,

    tbl_study_site.study_site_id,

    study_site_name,

    study_site_num,

    STUDY_SITE_NAME_NUM_ID,

    STUDY_SITE_OPEN_STATUS,

    Comments

    in

    v_P31_STUDY_ID,

    v_P31_STUDY_SITE_ID,

    v_P31_STUDY_SITE_NAME,

    v_P31_STUDY_SITE_NUM,

    v_P31_STUDY_SITE_NAME_NUM_ID,

    v_P31_STUDY_SITE_OPEN_STATUS,

    v_p31_comments

    of tbl_study_site, tbl_study_site_attrib

    where tbl_study_site.study_id =: p30_study_name

    and tbl_study_site.study_site_id = tbl_study_site_attrib. STUDY_SITE_ID

    and tbl_study_site_attrib. STUDY_SITE_ATTRIB_ID =: P31_STUDY_SITE_ATTRIB_ID;

    : P31_STUDY_ID: = v_P31_STUDY_ID;

    : P31_STUDY_SITE_ID: = v_P31_STUDY_SITE_ID;

    : P31_STUDY_SITE_NAME: = v_P31_STUDY_SITE_NAME;

    : P31_STUDY_SITE_NUM: = v_P31_STUDY_SITE_NUM;

    : P31_STUDY_SITE_NAME_NUM_ID: = v_P31_STUDY_SITE_NAME_NUM_ID;

    : P31_STUDY_SITE_OPEN_STATUS: = v_P31_STUDY_SITE_OPEN_STATUS;

    : P31_COMMENTS: = v_p31_comments;

    end;

    =============================

    Identify the root cause. He's always on the format of the column, there is an error.  Thanks for your help.

  • I need to cancel a monthly product and on the page, there is no option that allows me to cancel

    Hello, I need to cancel a monthly product and on the page, there is no option that allows me to cancel

    I need help

    Hello

    Cancellation of subscription you like it Contact Customer Care

    Or you can also contact support phone | Orders, returns of trade

    Kind regards

    Sandrine

  • Display the values of the Page element in HTML table

    Hi all

    could you please help me with the below? I want to have a table in the HTML area and to display in the table of elements of the Page of the page.

    I got the code like this:
    {
    < table >
    < tr > < td > & P1_ECEMEA_ASSISTANCE < table > < /tr >
    < tr > < td > & P1_ECEMEA_WIP < table > < /tr >
    < /table >
    }
    It shows the element of the Page names in the form of text, not the values.

    However, this code without the tags table:
    {
    ECEMEA request for Assistance of the CQT: & P1_ECEMEA_ASSISTANCE.
    ECEMEA CQT Work in Progress: & P1_ECEMEA_WIP.
    }
    Works and Page element values are displayed.

    Is it possible to display the values of the Page element in the HTML table at all or should I use a different method to show the values in a table? The above is only an excerpt of the code. I need to display about 30 items in Page, put in shape in a table with headers.

    Please let me know what kind of region is the best to use, or if I have to use only a few symbols of escape in the table code...

    Thank you and best regards,

    Vladimir

    Vladimir,

    Looks like you're missing the period after the substitution variables.

    {
    
    &P1_ECEMEA_ASSISTANCE.
    &P1_ECEMEA_WIP.
    }

    -D.

  • How to use the value of the page element in other pages too?

    Hi all

    How to pass the value of the item P26_NO from 26 to all other pages (such as 1, 2, 3... 25) using the & P26_NO. ???
    I set the default for this item.but I can't able to find value in the session state itself?

    Please post your suggestion here!

    Thank you and best regards,
    Robette.

    Robette wrote:
    Hi Amelia,.

    Through application process only we can able to save the page element value in session state? is there another way?
    Since my requirement is like I need to display footer text in all the pages, I have the version number included in this text, so I created a table and my intention to create an item and passing the point value for all other pages and see that point value & P26_NO. in the text. Version number is dynamic, it will change at each deployment.
    Is another way simple, other than my approach?

    Thank you best regards &,.
    Robette.

    You should use point demand for it and an application process to fill

    IF :APP_ITEM_NAME IS NULL THEN
      APEX_UTIL.SET_SESSION_STATE('APP_ITEM_NAME','myvalue');
    END IF;
    

    Published by: VC on June 25, 2012 13:48

  • Is it possible for customers who have no tablets to buy and consult the pages on a Web site?

    Is it possible for customers who have no tablets to buy and consult the pages on a Web site? I understand that the folios can be shared and read online but is there a way to monetize the web version of a folio?

    It is possible if you have a business account and would involve relying on the direct right, custom libraries and the web viewer built-in. There is, however, a turnkey solution in place for this.

Maybe you are looking for

  • Best method of communication between the Application LV

    Hello together, I'm looking for the best way of communication between two Applications LabVIEW. As VI is clear, I can use a queue or a global variable and so on. But what is the best, when I compile the screw later for DLLs or Applications. So far, w

  • I want to upgrade 2 computers with Windows XP to Windows 7 but I only want to buy a copy to use on both computers.

    want to upgrade 2 computers with xp pro and a netbook with W7 W7 starter without purchase of individual license for each that are all household use original title: the upgrade of several computers in the House

  • Get Date time in AM PM format

    Hello I want to set the Date time, so I user DateField and used the code below SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm a"); DateField txtStartDate = new DateField("", System.currentTimeMillis(), dateFormat, Field.FIELD_LE

  • A freezing Storm blackBerry smartphones... help!

    I'm a convert of Treo in the world of BlackBerry and I thought that the storm is the way to do it.  In any case, after getting the telephone, connected to my corporate email server and downloading some apps, I run on the problem where scrolling and t

  • solve installation problems

    I'm an avid user of android. I recently buy a tablet with windows operating system. I try to download apps who am accustomed to using and it make me feel most vile error message: this application can not run... some *. Ok.. KKKKK is supposed to solve