A Region of Regions?

Hi,
I'm wondering how to go about creating a page which is a region of regions. So, for example, I have X number of regions to report on per project and Y projects. I'd like the page to do this:
Y1
X1 X2 X3 X4
Y2
X1 X2 X3 X4
Y3
X1 X2 X3 X4
How can I do this in Apex? I've poked around a bit and it doesn't seem all that easy? Thoughts?
Thanks,
Jon

Joh,
You are right, this kind of thing can be a little tricky at first. Have a look at this post from Carl and let us know if you have questions:
http://apex.oracle.com/pls/otn/f?p=11933:30
Regards,
Dan
http://danielmcghan.us
http://sourceforge.net/projects/tapigen
http://sourceforge.net/projects/plrecur

Similar Messages

  • Not here! Region Tie Regions by Position Change (Logic9)

    I have just upgraded to Logic9 and am looking though the new style instruction manual.
    On the 'Adding or Removing Arrangement Passages' page at the 'remove gaps between regions' part it says Choose Region > Tie Regions by Position Change (or use the Tie Regions by Position Change key command).
    The thing is, that the 'Tie Regions by Position Change' is not under the local menu Region and the KC
    is no where to be found either. Has anybody else seen this at all.
    There is the option 'Trim Regions etc' under Regions though no Tie Regions.
    Thanks
    Message was edited by: ekaton
    Message was edited by: ekaton

    Must be Region > Shuffle Regions left within selection then

  • When I try to change the keyword.url settings in about:config to do a "I'm Felling Lucky" Google search, it just resets to chrome://browser-region/locale/region.properties whenever I restart Firefox.

    I just installed Firefox 4 today. When I try to change the keyword.url settings in about:config to do a "I'm Felling Lucky" Google search, it just resets to chrome://browser-region/locale/region.properties whenever I restart Firefox.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    See also:
    * http://kb.mozillazine.org/Preferences_not_saved

  • Regions within Region

    Hello Everyone,
    Is it possible to create REGIONS WITHIN REGIONS????????.

    Scott,
    Read the login page of my Demo Application.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Open popup in dynamic region once region changes flows

    I need to open a popup in a flow if boolean is set to true in the pageFlowScope bean of the dynamic flow bean used in a dynamic region. The parent page/flow is configured in the adfc-config.xml and is controlled by a session bean.
    So the scenario is the main page has links to several different pages, each of which has a mean of editing a widget. The Widget edit page has a Tree object that lists the items by user defined categories. Double the tree widget opens a popup with the editor section for that particular widget. These widgets rely on each other and if there is a problem in a contained widget, then I provide a clickable link to go to that object. I'm able to get the main page to change regions to the correct widget flow.
    Once I get to the new widget control flow, the tree is displayed as usual and in the pageFlowScope bean I've set a boolean and populated the widget definition for display. Unfortuately, I have found a way to open the popup.
    I've tried a phase listener calling a method in the parent page. However, I'm not able to find the pageFlowScope bean by any means. I've set the pageFlowScope bean into the session and get it in the phaseListener method, but all attempts to show the popup seem to go into the great void. I've even added a button with the actionListener to pageFlowScope.myBean.showPopup, but can trigger the action event for that either.
    Using: JDeveloper 11g. Not using BC. Any help would be greatly appreciated.

    Thank you. That worked.
    I have one more question. How can I change the task flow in the dynamicRegion from another taskFlow. For example: I have taskFlow1 loaded into the dynamic region and I want on a button click from taskFlow1 to load taskFlow2 into the dynamicRegion. Is it possible?

  • ADF Regions - Embedding region pagedef & Page load

    Hi,
    I'm working with regions in JDev 10.1.3.2. The problem I'm having is this: I have a page that uses a region with its own pagedef. So, I added a <page> element in the parent page's pagedef referencing the pagedef of the region and set the 'value' attribute in the <af:region> tag to the page element in the binding container.
    So far so good, the inclusion of the pagedef works fine. The thing is that the region has some "On page load" behavior, implemented following one of Steve Muench's not yet documented apps. In the pagedef of the region I specify the 'ControllerClass' attribute to a backing bean with an EL. If I run the page every thing is rendered but an error appears saying "Missing class #{...}" and therefore the onPageLoad behavior is not executed. If I specify the ControllerClass with the fully qualified name of the class a "ClassCastException" is thrown.
    If I run the page as a stand-alone jsp it works fine, the problem must have something to do with the whole pagedef embedding business...
    Any help or insight is appreciated.
    Thanks,
    Yoel

    Third repost.
    I'm starting to get the feeling that I'm being completely and utterly ignored. Either I didn't explain the problem well or the problem isn't solvable. I just want anyone, and I mean anyone at all to tell me:
    a) "The problem has no solution, wait for the production release of JDev 11"
    b) "I'm having the same problem"
    c) "We are working on it"
    d) "Please don't ask anything else about regions, we released them without proper testing. So some things are going to work and the others may work or not."
    Yoel

  • Refreshing a region, Rich Region.refresh or addPartialTarget ?

    Hi All,
    I have a question about refreshing a region.
    Assume that a region is bound to a backing bean property (RichRegion myRegion). And getMyRegion() is the getter for the region in backing bean.
    What I want to know is the difference between using getMyRegion().refresh(FacesContext.getCurrentInstance()) and AdfFacesContext.getCurrentInstance().addPartialTarget(getMyRegion()). And under which situations, these methods should be used?
    Could you please help me telling the difference? Thanks a lot.
    Best Regards,
    cmoster

    Hi,
    good question!
    1. AdfFacesContext.getCurrentInstance().addPartialTarget(getMyRegion())
    This performs a UI refresh of the region, which means the region is only re-rendered. This may not have any impact to the state of the task flow exposed in a region unless the task flow binding has its refresh option set so the task flow re-initializes. You use this option to refresh task flows in regions if you use shared data control (in which case the data content displayed in the region refreshes without the view displayed in the region to change). You can also use this to re-initialize a task flow (which means you restart it so its default activity is executed). You do this by setting ifNeeded as the refresh option and ensuring an input parameter of the task flow binding to be changed. Or, you use the refresh option as "default" but have a refreshCondition EL defined that returns true for a full task flow refresh
    2. getMyRegion().refresh(FacesContext.getCurrentInstance())
    While 1) is fully declarative, this is programmatic invocation that always refreshes the region such that the task flow exposed therein is restarted (executing the default activity). The method also adds the component to a list of partial refresh targets. This method must be called during JSF INVOKE_APPLICATION phase, which means it is to be used from an action event and not a component event like value change.
    Frank

  • Dynamically set available regions in Region Display Selector

    Hi all,
    assume the following:
    I have a page with multiple regions including a Region Display Selector that displays rows of different types (e.g. Vision, Strategy, Objective, Tatics...).
    All relevant regions are enabled to be displayed in the Region Display Selector.
    Depending on the type I want to set the regions that can be displayed and hide the rest.
    "Show all" in the Region Display Selector should only show all regions available for a given row type.
    Currently I can hide and show a region and the associated entry in the Region Display Selector using Dynamic Actions but "Show all" does exactly what it's Name indicates: It displays all regions, including those I don't want to be visible.
    How can I achieve the desired behaviour? Any ideas for a Workaround?
    Cheers Chris

    use - Region Plugin - RDS Customizable plugin.
    see if its fit in your requirement.
    Pars.

  • Deleted region - preceding region stays grey

    deleted a region in track - preceding region stays grey - no sound in playback of said region

    Hello shamguy4,
    Thank you for the details of the issue you are experiencing with using Time Machine to back up your MacBook.  I recommend reviewing the following article for the issue you described:
    Time Machine: Troubleshooting backup issues
    http://support.apple.com/kb/HT3275
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • CCS ISU: Regional Structure - REGIONAL STRUC GROUP & TAX JURISDICATION CODE

    Hi there
    I am working for a Canadian utility company running CCS-ISU running version SAP ERP 6.04 with Enhancement Package 4 on NetWeaver 7.02.  We are looking to update the POSTAL REGIONAL STRUCTURE and have some questions concerning the Regional Structure Group (REGIOGROUP) and Tax Jurisdiction (TAXJURCODE) fields.
    We are planning on using data provided by Canada Post to update the Postal Regional Structure, unfortunately Canada Post cannot provide the information that is stored in the Tax Jurisdication Code and Regional Structure Group/District Code.  The current data we have stored in these fields is outdated and sometimes missing.  We would like to update the Postal Regional Structure without these two fields as it would greatly simplify the update and maintenance of the Postal Regional Structure. 
    Questions:
    1. What are the downstream impacts to the CCS-ISU if we do not store the Tax Jurisdiction Code and Regional Structure Group in the Postal Regional Structure?
    We know that 3rd party non energy accounts will default the TAXJURCODE and REGIOGROUP from the Regional Structure if the data is available.  If it is not, then the data must be manually entered onto the account.  For regular accounts, the system will use the TAXJURCODE and REGIOGROUP that flows through from the Service Address.  Are there any other downstream processes that rely on the TAXJURCODE and REGIOGROUP being in the Regional Structure tables?
    2. Will there be any impacts to Financials?
    3. What data have other companies used to populate the Tax Jurisdiction and Regional Structure Group fields and how has this data been obtained?
    Thanks kindly
    Jeanette Lau
    Edited by: Jeanette Lau on Aug 31, 2010 1:38 AM
    Edited by: Jeanette Lau on Aug 31, 2010 1:41 AM

    1. What are the downstream impacts to the CCS-ISU if we do not store the Tax Jurisdiction Code and Regional Structure Group in the Postal Regional Structure?
    If you store the data at postal regional structure....these are defaulted at the respective screens connection object,move in screens.
    Here u can validate the adress at the time of move in.
    if u dont maintain the data at postal regional strucutre.....if  these are required fields then u need to enter manually. If tax jurisdiction code activated then u need to enter the TJC.
    2. Will there be any impacts to Financials?
    Tax Jurisdicton code has an affect if u hve region specific taxation.
    3. What data have other companies used to populate the Tax Jurisdiction and Regional Structure Group fields and how has this data been obtained?
    check the objects connection object,premise,movein screens, and FPE1 screens.

  • Regions within regions sitting vertically by each other

    I am looking to create a region with two columns (or two other regions - as children) that are defined vertically, and one beside the other one -- not below that.
    Any idea?
    Thanks,
    Mehr

    Mehr wrote:
    The version is 4.0.2.00.09
    Prior to 4.2, for one-off layouts, specifying style="float: left;" in the subregions' Region Attributes property is the easiest way to lay out the subregions horizontally—provided the subregions have a template containing the #REGION_ATTRIBUTES# substitution string.

  • "Country/Region/Plnt Region" key combination for JVRD

    Dear Guru
    We are using this key combination for JVRD.  When I check the condition analysis for my PO, the record shows that
    Country = IN
    Region = !
    Plnt Region = !.
    I checked my vendor master address and the plant already updated with Region in the address.
    Where else do I need to checked?
    Thanks in advance.

    Hi,
    Please check in FV12 how these values showing...
    if they are fine...check in the table t001w...
    Hope it helps
    Kuber

  • Report - List of sales orders for a specific region in Ship-to Party

    Hello,
    I have a requirement to find all sales orders that were shipped to a specific US state within a specified date range.  For example, it would be a report to find all sales orders from 2009-2010 where the region of the ship-to party is CA.  The issue is that there is a generic "SHIPTO" partner set up where Customer Service manually enters the address and I cannot pull this information from customer master records.  Is there a standard report that I can find this information?  I cannot find in VA05, also tried looking on the delivery side in VL06o but I cannot find in there.

    After doing additional digging on this, I developed a query in SQ01 using the following table join:
    LIKP  -->  VBPA  -->  ADRC
       |____>  VBFA  -->  VBRK
    The address code provided in table VBPA can be accessed via table ADRC.  Therefore, when doing the link in SQ01, link together VBPA-ADRNR to ADRC-ADDRNUMBER.  When doing this it brings in the address information, then you can further develop the query to filter by region code.
    For my report, I used the following fields:
    Delivery - LIKP-VBELN
    Delivery Date - LIKP-LFDAT
    Preceding Sales document - VBFA-VBELV
    Preceding Item # - VBFA-POSNV (at my company every delivery document item starts with 10, later filter in the report to only show 10 in this field)
    Follow-on document - VBFA-VBELN (I'm using the billing document as the follow-on to pull the net value of the invoice)
    Follow-on document category - VBFA-VBTYP_N (set the document category to only look for M - Invoice; otherwise you'll pull in PGI document and WM documents if applicable)
    Net Value - VBRK-NETWR
    Ship-To Party - LIKP-KUNNR
    Partner Function - VBPA-PARVW
    Name 1 - ADRC-NAME1
    Name 2 - ADRC-NAME2
    Street - ADRC-STREET
    City - ADRC-CITY1
    Region - ADRC-REGION
    Postal Code - ADRC-POST-CODE1

  • Apex 4.2 Report region sql query with "apex_item.text" renders wrongly

    In APEX 4.2 page i have created region "Report data".
    Type="SQl Query".
    "User Interface"-->"Template"="Reports Region".
    "Region Source"="select apex_item.text(1, '111') as c1 from dual".
    Actually the select query is little bit more complex, but generally simplified it is such, that it uses function "select apex_item.text" to construct HTML textfield.
    If i run in Sql Developer query
    select apex_item.text(1, '111') as c1 from dual;Then result is:
    <input type="text" name="f01" size="20" maxlength="2000" value="111"  />But in APEX 4.2 the report is rendered so:
    <td  headers="c1">&lt ;input type=&quot ;text&quot ; name=&quot;f01&quot; size=&quot;20&quot; maxlength=&quot;2000&quot; value=&quot;111&quot;  /&gt ;</td>(for this forum to display correctly i had to put extra spaces between" &gt" and ";" and so on)
    And APEX 4.2 shows ugly html inside report cell/slot for me, displaying characters/symbols ">". The reason is that APEX HTML page source does not have symbol ">" but has " &gt ;" .
    In APEX 3 i have similar query working well, without such anomaly.
    What attribute should i change in APEX 4.2 region to display my query result as needed?
    I need that function "apex_item.text", i cannot remove it.
    Edited by: CharlesRoos on 13.02.2013 15:28
    Edited by: CharlesRoos on 13.02.2013 15:29
    Edited by: CharlesRoos on 13.02.2013 15:29

    CharlesRoos wrote:
    In APEX 4.2 page i have created region "Report data".
    Type="SQl Query".
    "User Interface"-->"Template"="Reports Region".
    "Region Source"="select apex_item.text(1, '111') as c1 from dual".
    Actually the select query is little bit more complex, but generally simplified it is such, that it uses function "select apex_item.text" to construct HTML textfield.
    If i run in Sql Developer query
    select apex_item.text(1, '111') as c1 from dual;Then result is:
    <input type="text" name="f01" size="20" maxlength="2000" value="111"  />But in APEX 4.2 the report is rendered so:
    <td  headers="c1">&lt ;input type=&quot ;text&quot ; name="f01" size="20" maxlength="2000" value="111"  /&gt ;</td>(for this forum to display correctly i had to put extra spaces between" &gt" and ";" and so on)
    And APEX 4.2 shows ugly html inside report cell/slot for me, displaying characters/symbols ">". The reason is that APEX HTML page source does not have symbol ">" but has " &gt ;" .
    In APEX 3 i have similar query working well, without such anomaly.
    What attribute should i change in APEX 4.2 region to display my query result as needed?Ensure that the Display As Column Attribute for the C1 column is Standard Report Column.

  • Refreshing sql report region based on values from another region - 4.0

    Greetings All,
    I have a page with two regions, say region 1 and region 2. I have a before header process that fetches values from db based on criteria entered from another page. Region 2 is a sql report region with bind variables from region 1. When this page is rendered region 1 renders properly however sql report region always returns no records. What am i missing here?
    I would like to have the region 2 render a report based on the values from region 1. Region 2 has a sql query that looks something like
    select
    colum 1,
    column 2,
    column 3
    from table t1
    where t1.c1 = :p10_item1
    and t1.c2 = :p10_item2Using apex 4.0
    thanks
    Seetharaman

    If these items hidden, try making them display only .
    Also what happens when you move the items from region 1 to region 2.
    From my experience items do not have much of a dependency on the region they are attached to other than cases when the region is not rendered(when its condition fails) and then the item values become null(bcoz they themselves are not rendered).

Maybe you are looking for