Custom Region Title

I've read through numerous posts on how to use &MY_ITEM. in a region title to make it dynamic. I'm sure this is what I need but I have a little different situation and since I'm new to HTMLDB, I hope someone can assist.
I have 2 regions on the page in a parent/detail relationship. The 2nd region has a query that joins 2 tables one of which returns a column that is not updated by anything on the page, it is just PRODUCT_DESC (a product description). The product ID comes from the first region via a Select list with redirect item. The report region then dynamically runs its query and returns the needed information. What I would like to see is the PRODUCT_DESC put into the Region title so I don't have it listed as a separate column in the report output.
I've tried creating a hidden item and setting its value to the product_desc db column but that is not working. I imagine I may need some computation or process but those are still kind of foreign to me so I'm looking for some assistance.
Thanks,
Brian

Thanks for your time Scott
The code is as follows:
DECLARE
v_SelectStmnt VARCHAR2(2000);
v_app_offline VARCHAR2(1);
v_app_offline_message VARCHAR2(100);
BEGIN
v_SelectStmnt := 'SELECT NAME';
v_SelectStmnt := v_SelectStmnt||' , OCCUPATION';
v_SelectStmnt := v_SelectStmnt||' FROM TBL_EMPLOYEES';
wwv_flow.debug(v_SelectStmnt);
RETURN v_SelectStmnt;
EXCEPTION
WHEN OTHERS THEN
SELECT APP_OFFLINE
, APP_OFFLINE_MESSAGE
INTO v_app_offline
, v_app_offline_message
FROM DATA_SOURCE_TBL
WHERE DATA_SOURCE = 'HR DATABASE';
IF v_app_offline = 'N' THEN
:P1_ERROR := TO_CHAR (SQLCODE)||': '||SQLERRM;
ELSE
:P1_ERROR := v_app_offline_message;
END IF;
v_SelectStmnt := 'SELECT NULL AS NAME';
v_SelectStmnt := v_SelectStmnt||' , NULL AS OCCUPATION';
v_SelectStmnt := v_SelectStmnt||' FROM DUAL';
wwv_flow.debug(v_SelectStmnt);
RETURN v_SelectStmnt;
END;
Regards
Jim

Similar Messages

  • Linking PL/SQL custom region into html db pages

    Hello,
    I have built an htmldb application with several pages, the first 7 of which contain html regions containing htmldb form items I created using the html db interface. I am able to step through the first 6 pages of my application, noting that the values of all the variables are saved when clicking from tab to tab.
    I created page 8 which contains a custom dynamic region, in which I used the PL/SQL web toolkit to create an html table, form, and several form fields in which to capture data.
    What I'd like to do is, link my custom region variables, etc. into the other pages that were generated by html db. The code snippet for my custom region is located below... After I navigate to my page with the custom region then click on Submit or even try to switch to another tab, I get the dreaded error: "The requested URL /pls/htmldb/wwv_flow.accept was not found on this server."
    I am learning this product and admittedly am just knowledgeable to be dangerous. There must be some way to link in the items on my form I created with the rest of the pages within the application.
    I am sure I'm missing an important piece. Has anyone else done something similar? Any ideas, or can you tell me if what I'm doing is not possible?
    In case you're curious, the reason I am writing my own region with PL/SQL using the WebToolkit, etc. is because our organization wanted an example of taking an html db page and porting it over for use in Portal.
    Thanks in advance for any comments.
    code snippet for my custom region:
    declare extracurtxt varchar2(500);
    worktxt varchar2(120);
    begin
    htp.htmlOpen;
    htp.headOpen;
    htp.title('Extracurricular, Community and Work Activities');
    htp.header(1,'Extracurricular, Community, and Volunteer Activities');
    htp.headClose;
    htp.bodyOpen;
    extracurtxt := 'Please list your principal extracurricular, community, church, and family activities and hobbies in order of interest to you. Include specific events and/or major accomplishments such as musical instrument played, varsity letters earned, etc. Please check those activities you hope to pursue in college';
    htp.small(extracurtxt);
    htp.formOpen(owa_util.get_owa_service_path || 'wwv_flow.accept');
    htp.nl;
    htp.nl;
    -- Test working with form elements in table now
    htp.tableOpen;
    htp.tableRowOpen;
    htp.tableHeader;
    htp.tableHeader('Grade level or','center',null,null,null,'5',null);
    htp.tableHeader('Approximate time spent','center',null,null,null,'2',null);
    htp.tableHeader('Positions held','center');
    htp.tableHeader('Do you plan','center');
    htp.tableRowClose;
    htp.tableRowOpen;
    htp.tableHeader;
    htp.tableHeader('post-secondary (PS)','center',null,null,null,'5',null);
    htp.tableHeader('Hours','center');
    htp.tableHeader('Weeks','center');
    htp.tableHeader('honors won,','center');
    htp.tableHeader('to participate','center');
    htp.tableRowClose;
    htp.tableRowOpen;
    htp.tableHeader('Activity','center');
    htp.tableHeader('9');
    htp.tableHeader('10');
    htp.tableHeader('11');
    htp.tableHeader('12');
    htp.tableHeader('PS');
    htp.fontOpen(null,null,'1');
    htp.tableHeader('per week','center',null,null,null,null,'small');
    htp.tableHeader('per year','center');
    htp.fontClose;
    htp.tableHeader('or letters earned');
    htp.tableHeader('in college?');
    htp.tableRowClose;
    htp.tableRowOpen;
    htp.tableData((htf.formText('PT6_EXTRACUR_1','40','65',null,'id="P6_EXTRACUR_1"')));
    htp.tableData((htf.formCheckbox('PT6_EXTRACUR_L9_1','0',null,'id="P6_EXTRACUR_L9_1"')));
    htp.tableData((htf.formCheckbox('PT6_EXTRACUR_L10_1','0',null,'id="P6_EXTRACUR_L10_1"')));
    htp.tableData((htf.formCheckbox('PT6_EXTRACUR_L11_1','0',null,'id="P6_EXTRACUR_L11_1"')));
    htp.tableData((htf.formCheckbox('PT6_EXTRACUR_L12_1','0',null,'id="P6_EXTRACUR_L12_1"')));
    htp.tableData((htf.formCheckbox('PT6_EXTRACUR_LPS_1','0',null,'id="P6_EXTRACUR_LPS_1"')));
    htp.tableData(htf.formText('PT6_HOURS_WEEK_1','3','3',null,'id="P6_HOURS_WEEK_1"'),'center'); htp.tableData(htf.formText('PT6_WEEKS_YEAR_1','3','3',null,'id="P6_WEEKS_YEAR_1"'),'center');
    htp.tableData(htf.formText('PT6_HONORS_1','25','45',null,'id="P6_HONORS_1"'),'center');
    htp.tableData(htf.formCheckbox('PT6_PARTICIPATE_1','0',null,'id="P6_PARTICIPATE_1"'),'center');
    htp.tableRowClose;
    --snip table has seven rows with associated variables.
    htp.tableClose;
    --WORK EXPERIENCE
    htp.header(1,'Work Experience');
    worktxt := 'List any job (including summer employment) you have held during the past three years.';
    htp.small(worktxt);
    htp.tableOpen;
    htp.tableRowOpen;
    htp.tableHeader; htp.tableHeader;
    htp.tableHeader('Approximate Dates','center',null,null,null,'2');
    htp.tableHeader('Approximate No.','center');
    htp.tableRowClose;
    htp.tableRowOpen;
    htp.tableHeader; htp.tableHeader;
    htp.tableHeader('Of Employment','center',null,null,null,'2');
    htp.tableHeader('of Hours','center');
    htp.tableRowClose;
    htp.tableRowOpen;
    htp.tableHeader('Specific Nature of Work','center');
    htp.tableHeader('Employer','center');
    htp.tableHeader('From','center');
    htp.tableHeader('Until','center');
    htp.tableHeader('Per Week','center');
    htp.tableRowClose;
    htp.tableRowOpen;
    htp.tableData(htf.formText('PT6_JOB_1','25','45',null,'id="P6_JOB_1"'));
    htp.tableData(htf.formText('PT6_JOB_EMP_1','25','45',null,'id="P6_JOB_EMP_1"'));
    htp.tableData(htf.formText('PT6_JOB_FROM_1','20','30',null,'id="P6_JOB_FROM_1"'));
    htp.tableData(htf.formText('PT6_JOB_UNTIL_1','20','30',null,'id="P6_JOB_UNTIL_1"'));
    htp.tableData(htf.formText('PT6_JOB_HOURS_1','3','3',null,'id="P6_JOB_HOURS_1"'),'center');
    htp.tableRowClose;
    htp.tableRowOpen;
    htp.tableData(htf.formText('PT6_JOB_2','25','45',null,'id="P6_JOB_2"'));
    htp.tableData(htf.formText('PT6_JOB_EMP_2','25','45',null,'id="P6_JOB_EMP_2"'));
    htp.tableData(htf.formText('PT6_JOB_FROM_2','20','30',null,'id="P6_JOB_FROM_2"'));
    htp.tableData(htf.formText('PT6_JOB_UNTIL_2','20','30',null,'id="P6_JOB_UNTIL_2"'));
    htp.tableData(htf.formText('PT6_JOB_HOURS_2','3','3',null,'id="P6_JOB_HOURS_2"'),'center');
    htp.tableRowClose;
    htp.tableRowOpen;
    htp.tableData(htf.formText('PT6_JOB_3','25','45',null,'id="P6_JOB_3"'));
    htp.tableData(htf.formText('PT6_JOB_EMP_3','25','45',null,'id="P6_JOB_EMP_3"'));
    htp.tableData(htf.formText('PT6_JOB_FROM_3','20','30',null,'id="P6_JOB_FROM_3"'));
    htp.tableData(htf.formText('PT6_JOB_UNTIL_3','20','30',null,'id="P6_JOB_UNTIL_3"'));
    htp.tableData(htf.formText('PT6_JOB_HOURS_3','3','3',null,'id="P6_JOB_HOURS_3"'),'center');
    htp.tableRowClose;
    htp.tableClose;
    htp.formSubmit('P6_GO');
    htp.formClose;
    htp.bodyClose;
    htp.htmlClose;
    end;

    Thank you for your reply...
    I actually was probably not very clear about what I'm trying to do. Let me try to clarify and give more background info...
    I have found it very easy to utilize html db to create my web forms, and manage all the variables and session state for me. It is so easy to make a quick form, capture info in a few fields and then post it to the DB. I have found it very difficult to use, however, in terms of getting it to format things the way I wish them to be.
    For example: I cannot seem, for the life of me, to get it to wrap field labels. This results in oddly formatted tables. I have tried to utilize the stop and start html table controls, begin on new line, new field, colspan, rowspan, etc., but what I really need is for it to let me define the tables and field labels, as I have done so successfully with the PL/SQL web toolkit (the code snipped for this is in my first post). What I did unsuccessfully with my custom dynamic region was manage to incorporate my form fields into variables and session state that will be automatically managed by html db along with the other 6 pages in my application. I was perhaps, expecting code to write itself, in retrospect. I'm sure some coding will be necessary to bind my form fields to vars in my html db appl. But, after reading a blog by a Mr. Spledoni (forgive me if spelling is wrong,) I think I messed up by overlapping <FORM> elements in my custom region. I admittedly don't understand how html db renders the form elements and processes them behind the scenes. I do remember from the Portlet classes, however, that coding was certainly necessary to process the forms once submitted.
    Am I making sense?
    I guess I need to either figure out how to format field labels the way I want them to be, OR to be able to write a custom region in PL/SQL using the web toolkit and figure out how to incorporate the values captured within the region into items or variables within my application, all other pages of which are html regions with html db items within them (not dymanic PL/SQL regions).
    Thanks for reading this, I know it's tedious...

  • Region Title substitution string

    hi, i am trying to use &TITLE. in a region header as was expecting to see the title of the region shown ? it does not (apex 3.2)
    however the template for the region has this and it works fine..
    can someone help ?
    thanks
    a

    Thanks.
    This is what I am trying to do.
    I have a (whole) bunch of Anychart 5 charts in a page in different regions with their own title and there are many pages like this.
    I have the region titles inside the chart too.
    as in
    <pre>
    Region Title
    | Region Title |
    | |
    | |
    | | <----- This is the chart
    | |
    | |
    |___________________________________|
    </pre>
    The XML for all these charts are the same, except for the title.
    So I created an application level item and moved the XML without the title tag into it and just refer the item in the custom XML.
    This way I make changes in one XML block.
    (title is useful when some one wants to save the chart as an image) (Note: #DATA# is part of the XML, the value I push into this item)
    If I can get a handle on the region title, I could push that in the XML as a variable (and not code to generate the XML in)
    At this point (except for saving the chart as an image) I can get by with the titles being at the region level
    and not inside the chart. But we are planning to move all of the charts into a dashboard and we might need the
    titles inside or on top of the individual charts. ( I am also researching if the titles could go on the
    hbox tags in Anychart XML, so this might not be necessary and also have come across some javascript in the past that copies the data elements
    available inside a report, like total, to an item, that might work too.)
    Hope that sheds some light on what I am trying to do.
    Thanks
    A

  • Computed Region TItles being Escaped in Apex 2.2

    In Apex 2.0, HTML contained within a hidden item to be display in a Region's Title was not escaped. <BR>In Apex 2.2, the same information is now escaped and my computed Region titles are displaying HTML text, instead of the HTML.
    I would like to be able to generate region titles instead of them just being fixed text.
    Is there anything I can do here? It would be great if there was a way to unescape the Title.<BR>
    Furthermore:<BR>
    If I put the HTML directly into the Region Title, it displays fine. So the question is .... why does the info get escaped if it is in an item for display? You can imagine how long the region title will become if a few anchors are presented in the title.
    Message was edited by:
    sgreber

    Doug:
    I agree, I think the help text is, in fact, stating the opposite of the observed behaviour.
    Quoting When session state is referenced in this way, the value emitted to the page will have special characters (<, >, &, ") escaped if the referenced item has one of the following safe item display types:
    But what we see is that if the referenced item is of type "Hidden", special characters *are* escaped. If the item is a "safe item", then, by definition, it cannot be tampered with, so there is no need to escape it on output!
    What worries me is that such a major change was introduced in a minor patch release like 2.2 where even the export/import API version has not changed i.e. it is otherwise compatible in all aspects. I am sure this is going to cause Production applications at many customer sites to break because they rely on HTML markup in &ITEM. variables being rendered unchanged.
    Thanks

  • How to escape special characters in a region title

    I have created a drill down report where the second report is filtered by a value chosen in the first report. I am using &Pn_field. syntax to pass the name of the select value to the region title of the second report. Some of the returned values have a ':' in them and therefore the text does not print after the ':'. How do I escape the ':' in the region title?
    regards
    Paul P

    Paul,
    I think your question is "How do I use f?p URL syntax to pass data values to a page where the data includes a colon?" (Please correct me if that's not the issue.) The answer is, you can't. Same with commas. HTML DB reserves those two characters for the f?p request syntax. You'll have to save the string into the item before the page branch. There is no restriction on what characters can be used in a region title, it's just HTML-formatted text, except that you must escape anything that looks like HTML unless you want the browser to treat it as HTML. There are restrictions, however, on what characters you can pass in URLs in general and you must take care to escape them properly, e.g., ?, &, whitespace.
    And do speak up if I've missed the point.
    Scott

  • Controller is not working custom Region

    Hi ,
    I am working on customization of OA pages ,IMCAccountOverviewEditPG, on Oracle customer online.The requirement is to add a new advance table region on at the bottom of this page. The application is on 11.5.10 2CU .
    So here is test that i tried
    CUSTOM REGION:
    1) I have created a indepedent test region EQXAccountContactRN of type MessageCOmponenetLayout. Under that i have created Mesage layout. Under this region i have created a message text input and a submit button.
    I have attached a controller EQXAccountContactRNCO with EQXAccountContactRN which is just Helloworld program.
    Using XML import i have imported this test region. Import works fine.
    /oracle/apps/imc/customer/account/createupdate/webui/
    I have also copied the controller in the EQXAccountContactRNCO.class in the above server webui folder
    ATTACHING THE CUSTOM REGION USING PERSONALIZATION:
    2) Using personalization on IMCAccountOverviewEditPG page, i have created an item of "Flexible Layout" type.
    2)I have added "Flexible content" region unde the Flexible Layout using personalization which extend EQXAccountContactRN created in step one.
    3) I have bounced the apache and looked into the IMCAccountOverviewEditPG page, I can see my Custom SO FAR SO GOOD.
    4) But The controlller EQXAccountContactRNCO ,associated with the EQXAccountContactRN custom page is not working. I have put a test code both in the processRequest() and PrcessFormRequest both are not working.
    A) Can you please tell me why the custom controller is not working ?
    B) Also the flexible content region do not shows the custom controller , all it show is following controller.
    oracle.apps.fnd.framework.webui.OAFlexibleLayoutCO 115.12
    oracle.apps.fnd.framework.webui.OAFlexibleContentCO 115.12

    Also if some one knows a better appoach to modify a exisitng page, please comment here.

  • 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

  • Bug in 4.1.1: Region Title translations is lost

    Hello, apex team and Joel Kallman.
    This is my second bug report with translations today.
    REGION TITLE TRANSLATIONS IS LOST WITH APEXexport AND APEX_APPLICATION_INSTALL COMBINATION.
    My environment:
    Oracle XE 11g Linux 64bit.
    Apex 4.1.1.
    Development app 110.
    Production app 111.
    en-us - primary lang
    es - secondary
    ru - secondary
    How to reproduce:
    Export app 110 with bash command:
    $ java oracle.apex.APEXExprt -db xxx.private:1521:XE -user apex_040100 -password `cat secret.txt` -applicationid 110 -skipExportDate -expTranslations
    Import with this script (as apex_040100 user)
    declare
    l_workspace_id number;
    begin
    select workspace_id into l_workspace_id
    from apex_workspaces
    where workspace = 'PROD';
    apex_application_install.set_workspace_id( l_workspace_id );
    apex_application_install.set_application_id(111);
    apex_application_install.generate_offset;
    apex_application_install.set_schema( 'PROD' );
    apex_application_install.set_application_alias( 'FPROD_APP' );
    end;
    @../f110.sql
    Then SEED and PUBLISH in Apex Builder.
    At this point Region Title translations is lost for every region in app.
    Workaround:
    I use blog post "Moving your XLIFF files" by Joel Kallman on YABAOAE from the very first day it was published.
    http://joelkallman.blogspot.com/2010/07/moving-your-xliff-files.html
    It is only way to use DEV and TEST/UAT env. on the same database with translated apps. Thanks to Joel.
    If it is not a bug, please, explain me better way to workaround it for me.
    Vladimir

    Hi Vladimir,
    Thanks for reporting this issue as well.
    I filed this as Bug 13801807. I researched this and understand what the issue is. But I need to think carefully about what would be the best solution for it. I'll report back to this thread with an answer.
    Joel

  • How to add custom region in Talent profile page?

    Hi All,
    I have a requirement to add custom region in Talent profile page.
    I have gone through oracle documentation for this but unable to do it.
    Can any one give some steps to do that with some example.
    Any help will be highly appreciated.
    Thanks & Regards,
    Sunita

    You can make a Custom Region and then Associate to a Custom Function.
    There are two function(seeded) HR_TP_EMP_MORE_LINK, HR_TP_MGR_MORE_LINK seeded function .
    You can include your custom function in Parameter of above seeded Function.
    Hope it Help you.
    Thanks

  • Personalization Problem when add a Custom Region

    Hi all,
    Scenario:
    Via Jdeveloper i have create a custom region with associated AMxx, VOxx, CO and works fine.
    I need to "add" the region to a standard page of Apprisal (/oracle/apps/per/selfservice/appraisals/webui/EmpAppraisalsPG).
    Two way:
    1. add the region to the page modifing the EmpAppraisalsPG page
    2. personalize the original page with "flexible layout" and then add the region.
    if I try 2, i receive the error: VOxx not found in Application module AM (not AMxx),
    bacause seems that the AM associated with the custom region is not the 'custom' AM ( AMxx) but the root AM (the AM of EmpAppraisalsPG).
    Question:
    It's true? So, is not possible to add via personalization a custom region with a custom AM associated?
    Thanks in advance
    Chaly

    Adding it using personalization using a flexibleLayout is the right approach. I am assuming the VOxx is part of AMxx, if yes then which API are you using to get handle to the AM, getRootApplicationModule or getApplicationModule(webBean). The second API should be used to fetch the nested AM and not the first one.

  • APEX 4.1.1, Region title as a link to an application page

    Hello,
    I have a page with a lot of regions where I'd like the Region Title be a link to a different page in the application so when the user clicks the Title they get redirected to that page.
    I have seen a number of variables like APP_ID etc but I can't seem to figure out how to use them in this case.
    Any good ideas on how to do this?
    Regards,
    Andy

    You should be able to create a display only page item, P1_ITEM then populate that item with your link, then in the region title enter &P1_ITEM.
    Include the dot.
    I assume the region is setup to display the title.
    PS - Create a hidden region that this page item will reside in so it doesn't display elsewhere on page.
    Edited by: Bob37 on Mar 8, 2012 1:29 PM

  • Xss in a Region-Title like &Name.

    Hi,
    I have sort of a general question.
    I have tried to manipulate a Region-Title like &Name. with a
    JavaScirpt Statemante. When I paste the code
    <script>alert('Hello world');</script>
    directly in the Title-Field of the Region, it works.
    But when I try to fill it from a text-field, it does not work.
    So when I paste
    <script>alert('Hello world');</script>
    in a text-field named Text, and the Region-Title is &Text.,
    it does not work.
    The characters are escaped, but I don't know, why.
    Does anyone knows, how I can make this work ?
    ciao, Andre

    Hello Andre,
    >> The characters are escaped, but I don't know, why.
    The APEX engine is automatically escaping the page fields, as part of its rendering process. This is to prevent XSS, which is a serious security breach.
    >> Does anyone knows, how I can make this work ?
    Well, as you are talking about a region title, you can still use the *&ITEM.* notation, just populate it in using an On Load – Before Header process.
    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

  • Dynamic Region Title

    Hello,
    I'm attempting to create a generic survey like application that can have a number of possible questions and instructions. I would also like for the region title of certain regions to be dynamic, or rather equaling the value of some item on the page. I did some digging on Google and found that this was apparently possible in Apex 3, but I'm currently working in Apex 4. Does anyone know of a way to do this?
    Thanks

    Deep_in_Texas wrote:
    When does the following code executes on your page?
    while P4_POSITION - is SQL query with source select e.POSITION_NAME from POSITION e where e.POSITION_ID = :P4_POSITION_ID
    Thanks
    Pradeep
    (I changed my handle but it's still displaying the number !!!!)
    Edited by: 965010 on Oct 12, 2012 7:31 AMI don't know when it is executed. I've just created page item P4_POSITION and made it as SQL query.
    Actually, value in the P4_POSITION_ID item is from POSITION_ID in EMPLOYEE table, which contains primary key EMPLOYEE_ID and has foreign key - POSITION_ID,
    POSITION_ID is a primary key of POSITION table, which contains POSITION_NAME.
    What I made is I created link from page 3 using EMPLOYEE_ID to redirect to page 4. There are all items in the page 4, which are in the EMPLOYEE table. But I need to show POSITION_NAME from POSITION table. So I created page item P4_POSITION as I mentioned before.
    Do I need to create dinamic action or process before handling Region title?

  • Expand the Background Image to Cover the Entire Region Title

    I have a region title that contains an image and it has a height of 2 rows but the background image (blue image) is not expanding in the area (the css contains repeat for the background). The application uses theme 2. Can someone help?
    CSS:
    .rc-title {
        background: url("../images/bg-region-blue-l.gif") repeat scroll 0 0 transparent;
        float: left;
        width: 100%;
    div.rc-blue-top
        background: url("../images/bg-region-blue-l.gif") repeat scroll 0 0 transparent;
        float: left;
        width: 100%;
    }I created the application on APEX.ORACLE.COM:
    Workspace: RGWORK
    User: TESTER
    Password: test123
    Application : CSRSR (33558)
    Select Signage from the menu (only choice).
    You will see that one of the tabular forms has Nameplates and an image, another tablular form has an image but no text (Nameplates) even though it is there. I would live the blue to cover both the image and the text.
    Please help
    DB: 10g
    APEX 4.1
    APEX 4.2 (APEX.ORACLE.COM) works the same way.
    Robert
    http://apexjscss.blogspot.com

    sect55 wrote:
    fac586 ,
    I would like to try the second option:
    >
    Another option would be to eliminate the problem by moving the nameplate images out of the region titles. There's horizontal space within the regions that will allow these images to be positioned to the left of the tabular forms, which would look OK.
    But how do I reference the horizontal space within the regions? I looked at the template for the region:
    <div class="rounded-corner-region float-left-100pct" id="#REGION_STATIC_ID#" #REGION_ATTRIBUTES#>
    <div class="rc-blue-top"><div class="rc-blue-top-r">
    <div class="rc-title">#TITLE#</div>
    <div class="rc-buttons">#CLOSE##PREVIOUS##NEXT##DELETE##EDIT##CHANGE##CREATE##CREATE2##EXPAND##COPY##HELP#</div>
    </div></div>
    <div class="rc-body"><div class="rc-body-r"><div class="rc-content-main">#BODY#<br />
    </div></div></div>
    <div class="rc-bottom"><div class="rc-bottom-r"></div></div>
    </div>and couldn't find out to put the image in the horizontal space.
    Can you please help me by providing the details? There are two options, depending on the role you see the nameplate images playing on the page. I've used the two regions to provide one example of each.
    *1. Nameplate as eye-candy:* If there's sufficient information in the region title, region content and item labels to make the nameplate images superfluous in providing information to the user, and you're just using them to improve the appearance of the page, then they can be applied purely using CSS.
    /* Nameplate image as CSS eye-candy */
    #nameplates-ndc div[id$="catch"] {
      min-height: 36px;
      padding-left: 113px;
      background: transparent url(#WORKSPACE_IMAGES#nameplate_ndc.gif) top left no-repeat;
      background-size: 103px;
    }Note the use of the CSS3 <tt>background-size</tt> property to resize the image. If the app has to run in browsers that don't support this then you'll have to drop it and create an image of the exact size required for use in the <tt>background</tt> rule.
    *2. Nameplate as content:* If the nameplate images are necessary to provide information to the user, then they have to be included in the region (and they must have an <tt>alt</tt> attribute providing an alternative representation of the information contained in the image).
    Put the image in the region Header:
    <img src="#APP_IMAGES#nameplate_n.gif" width="103" alt="Nameplate (name only)" />and float it so it sits alongside the form:
    /* Nameplate image as page content */
    #nameplates-name .rc-content-main img {
      float: left;
      margin-right: 10px;
    }

  • Item substitution in region title

    It looks to me like the help docs say that you can substitute for a region title like this -- &user.
    When I do that all I get is &user printed on my report.
    Am I doing this wrong?
    Using version 1.3.6
    Curt

    Does this substitution syntax hold true when exporting the region to CSV? The CSV filename is automatically set as the parent region's title and but I need to include the date int that filename. I've created a hidden page item to hold my title, but when I use the &(ITEMNAME). syntax in the region title I just get &ITEMNAME. Any idea what I'm doing wrong, or how to achieve the desire effect by another method?

Maybe you are looking for

  • OBIEE 11g .0d date issue

    Hi, I create an initialization block to populate a couple of repository variables. After saving the RDP the value for the default initializer changes from 2011 to 2011.0d I have been using several workaround. But I need some permanent fix in rpd itse

  • Organizational Data Determination - Dristribution Channel & Division

    Dear all, I have a question regarding organizational data determination. Defining a determination rule, I have the possibility to provide my custom FM that should perform an automatic organizational data determination. The FM offers the possibility t

  • Find user SAP Portal role in an abap program

    Dear all, We would like to check the SAP Portal role of a Portal user in a R/3 abap program. do you know if there is a bapi or a RFC module function to do that ? For example : the user CCDEMO (exists in EP and in R/3 backend) has a Buyer Portal role.

  • Permissions repair/ disk utility

    Hello: I believe I have a permissions repair problem as but I'm not entirely sure. I'm very untechnical and somewhat shakey on my conclusions and how to proceed. My computer slowed down this week after downloading freeware. I dumped all but one progr

  • Where to download Rolando?

    Hello, I read about a clone of the program for the sony psp Loco Roco, this clone should be named as Rolando. But no were in the app store is this program standing? Where can I download it? greets Peter