Same template for more than 8 regions in a page

anyboday can explain how to apply same template for more than 8 regions in a page ?

Hello,
You should be able to apply the same template to any number of regions on the page. There is no constraint.
Carl

Similar Messages

  • How to create a template for more than four column conditions?

    Hi
    I want to create a report template for a tabular form should have more than 4 column template conditions (more than 12 conditions i need) to get the coloring for row based on the conditions.
    so, please tel me how to do a template to meet my requirements.
    APEX VERSION: 4.2
    Database :11gR2.
    Cheers
    Tulasi.

    Tulasi 1243 wrote:
    Hi
    I want to create a report template for a tabular form should have more than 4 column template conditions (more than 12 conditions i need) to get the coloring for row based on the conditions.
    so, please tel me how to do a template to meet my requirements.
    VC wrote:I don't think it is possible using the template column conditions...try using some jQuery code that runs on page load.
    I am sure this has been discussed here before. Search the forum...good luck.It is possible using a template, and it has been discussed many times...
    The trick is to combine classTyler's conditional <tt>class</tt> technique with a custom named column report template.
    Determine a class for the row in the query:
    select
              empno
            , ename
            , sal
            , case
                when sal < 1000 then 'low'
                when sal between 1000 and 2000 then 'medium'
                when sal > 2000 then 'high'
              end sal_class
    from
              empCreate a custom named column report template, referencing the class in the row template:
    <tr class="#SAL_CLASS#"><td>#EMPNO#</td><td>#ENAME#</td><td>#SAL#</td></tr>Then create a style sheet to apply the required backgrounds:
    tr.low td { background-color: yellow; }
    tr.medium td { background-color: white; }
    tr.high td { background-color: red; }

  • Use of same iTune for more than one iPod

    I need to find out whether I can use the same itune in one computer for more than one iPod nano and one iPod video?

    I looked at the article, but it doesn't help me know how once I have downloaded onto a nano, for example, the itunes knows that the next thing I connect is something different. My son hooked up his 20GB ipod last night after updating his sister's nano and now the itunes thinks his ipod is a nano. How do I get the itunes to recognize his ipod as the 20GB it is?

  • Central template for more than one file?

    I am hoping to use InDesing CS5 in a few days and I am wondering whether it is possible to place a central template file and use this file for several "connected" files. We want to start layouting articles for a magazine but are not sure of the final footer and header. Because there is more than one person working on the magazine we are layouting every article in seperate files.
    How can we make sure that when the template changes we don't have to change every single file?

    Templates don;t work any differently in ID than they did in Quark, as far as I recall.
    Perhaps you don't really mean "Template," which is a framework document. A template can be very simple or quite complex, containing a single page or many, pre-placed text and images that will appear in all documents (or placeholders for images and text to show correct positioning), along wiht the swatches and styles that shold be used. Templates can also contain multiple different master pages for different types of document page layouts that may or may not be included as live pages.
    When you use a template, you get a new, untitled copy of the layout containing everything that was in the template, but you are not working in the template itself (unless deliberately opeing it "as original" in order to make template revisions. The template file remains unchanged and each new document you make froom it starts in the same state and must be saved as a new file with a new name.
    We often see people ask if it's possible to change a template and have all files that were made based on that template udate automatically to reflect the changes. The answer to that is no. There is no link to the template the way there is to a placed image, for example, or the way there is between an overridden master item on the document page and its original on the master page.

  • Trying to use the same ground for more than two channels (RSE configuration) with usb 6000

    Hello,
    I'm currently trying to set up a LabView code in order to get readings of voltage using 5 different locations simultaneously. I want to only use the first location as ground and obtain 4 voltage measurements between the ground and each one of the other 4 channels. I'm using a usb 6000 which for now allows me to use the same ground for only two channels. Is there a way to use the same ground for 4 channels?
    Thank you,
    Maria

    You're right it is confusing the way I describe it so I ahve attached some pictures of the set up. The first figure is the cell filled with soil and the 5 probes inserted in it. The anode is placed at the left end of the cell and the cathode at the right end but they do not appear in the figure. I'm trying to use location 1 as gournd and take measurements of voltage from the following pairs: 1-2, 1-3, 1-4, and 1-5. The second figure is the DAQ I'm using. When I was trying to set up the RSE configuration, it was ussing ground A for the channels 6 & 7 (locations 2 and 3 in figure 1) but ground B for channels 4 & 5 (locations 4 and 5 in figure 1). What I am asking is which is the best way to use the signal from location 1 as the ground for all 4 channels. Is this more clear?
    Thank you for your time!
    Maria

  • Jquery accordion where we can open more than one region at the same time

    Hi,
    I am trying to create a jquery accordion where we can open more than one region at the same time. I saw a post
    from patrick to do accordion where we can select only one region at a time.I am using Apex 4.0
    Using jQueryUI Accordion with APEX 4.0
    Any input on this will be appreciated.
    Thanks,
    Nav

    Hi,
    As I understand jQuery UI accordion do not have feature you looking for
    Regards,
    Jari
    Edited by: jarola on Sep 7, 2010 12:29 PM
    See documentation from here
    http://jqueryui.com/demos/accordion/#default

  • Can we use same program ID for more than one RFC scenarios

    Hi experts,
                I am working on a RFC to FILE scenario. I have created one TCP/IP connection in SM59 with a program ID. Can we use this program ID for more than one scenario. I have written code as below
    data: iquote type standard table of ZIQMD initial size 0,
          IPRODUCT type standard table of ZPMS initial size 0,
          wa_quote type ZIQMD,
          wa_PRODUCT type ZPMS.
    CALL FUNCTION 'Z_CBT_RFC_QUOTEMASTER'
      TABLES
        I_QUOTE       = iquote          .
    CALL FUNCTION 'Z_CBT_RFC_QUOTEMASTER' in background task DESTINATION
    'ID4'
      TABLES
        I_QUOTE       = iquote          .
      COMMIT WORK.
    CALL FUNCTION 'Z_CBT_RFC_PRODUCTMASTER'
      TABLES
        IPRODUCT       = IPRODUCT          .
    CALL FUNCTION 'Z_CBT_RFC_PRODUCTMASTER' in background task DESTINATION
    'ID4'
      TABLES
        IPRODUCT       = IPRODUCT          .
        COMMIT WORK.
    when i am executing the code like this. i am able to send the data to 'Z_CBT_RFC_QUOTEMASTER'  , but iam not getting data  for 'Z_CBT_RFC_PRODUCTMASTER'  interface. ID4 is the connection that i have created in SM59. with program ID as ABCD.
                  Can i use the same connection for all interfaces.Please help in this, if we can use same connection for all interfaces. then how to make changes in XI.
    Thanks in advance.
    Thanks & Regards,
    Poorna.

    Just tried this and I can confirm that my earlier understanding was correct!
    One of my colleagues confused me out and the conclusion is,
    1. You need a separate TCP IP Connection for every interface with a Unique program ID.
    Regards
    Bhavesh

  • Add Suppporting Details for more than one periods at the same time for the same Account in Planning.

    As we know, in planning form, we can add supporting details to one cell for the level 0 members intersections.
    But can we do that as below:
    add supporting details for more than one cells at the same time?
    I tried to do that in workspace and smartview, neither is working.(my workspace version 11.1.2.2.300.20)
    I wonder if i am not with the right version, because i don't know how to get the below.
    Can any one explain?
    Thank you.

    Hi,
    I have tried in Smartview for a simple form where my period dimension was in columns and accounts in rows.
    You need to select multiple period and select supporting details, it will show those selected period for which you can add the supporting details.
    You can add these details and then submit the data in the form.
    Regards,
    Sourabh

  • Am in the process of installing ios 7.0.4 for my ipad 2 however, all I see on the screen is the USB cable and an arrow which point to iTunes icon. It has remained so for more than 1 hour. When I put it off and switch it on again, I see the same thing

    Am in the process of installing ios 7.0.4 for my ipad 2 however, all I see on the screen is the USB cable and an arrow pointing to iTunes icon. It has remained so for more than 1 hour. When I put it off and switch it on again, I see the same thing appearing again. what sholud I do?

    This is the solution to your issue.
    I wish you the best of luck. 
    http://support.apple.com/kb/ht1808?locale=en_AU&viewlocale=en_AU

  • Is possible to execute the same executable vi more than 1 time (like notepad, for example)?

    I have a Labview executable file that use serial ports to communicate with other devices. I need to execute the same "file.exe" more than 1 time, to control different devices simultaneously. When I double click on an executable been executed (from windows explorer), the file under execution comes to front. Is possible to execute the same file more than 1 time (like notepad, for example)?

    Not the answer you are looking for I know..but still: Copying the application to another location is one possibility...if it has a different path it will execute separately.
    (OR - build control of multiple devices into one and the same application... If you do not want to redesign the code to handle multiple instruments in the same VIs, you could clone the VIs within the same application...)
    MTO

  • Pros and cons in setting AD domain trust into my AD domain for more than 10+ AD domain and some with same FQDN or label ?

    Hi,
    Can someone please share what is the pros and Cons of trusting AD domain for more than 10 different AD sites into my existing single domain forest let say ParentCompany.com ?
    At the moment I only have one single forest AD domain with the Domain and Forest functionality Windows Server 2003. The main domain controller FSMO role holder is in the Data Center spread across three different VMs running on Windows Server 2008 R2.
    The main/parent company has acquired smaller business chain of 15+ offices in which they have their own Domain Controller and also their own domain, sometimes they also got the same AD domain between them (no trust or whatsoever in those 15+ AD domain).
    Sounds crazy but yes, there is no standardization in them or whoever manage their IT infrastructure previously.
    I'm now considering what are the benefits of creating the AD domain and trust versus importing those AD objects into my domain and then decommission them.
    No need to worry about Exchange Server since all of the user in those sites connecting to the RDS to my ParentCompany.com terminal servers.
    My requirements or goal are as follows:
    1. Simplify the AD domain structure & maintenance
    2. Try to avoid the disruptions of the user in terms of downtime and selecting multiple different domain everytime they login to their PC or SharePoint sites.
    any kind of help and suggestion would be greatly appreciated.
    Thanks.
    /* Server Support Specialist */

    Can someone please share what is the pros and Cons of trusting AD domain for more than 10 different
    AD sites into my existing single domain forest let say ParentCompany.com ?
    I think you mean 10 AD domains.
    Managing multiple domains can be difficult for administration. I usually recommend using a single domain in a single forest with OUs to separate resources whenever it is possible.
    However, if you can't do that then you can simply create trust relationships between your domains. The advantage is that you can enable access to resources to different domains. I do not see cons here.
    The main/parent company has acquired smaller business chain of 15+ offices in which they have
    their own Domain Controller and also their own domain, sometimes they also got the same AD domain between them (no trust or whatsoever in those 15+ AD domain). Sounds crazy but yes, there is no standardization in them or whoever manage their IT infrastructure
    previously.
    I'm now considering what are the benefits of creating the AD domain and trust versus importing those
    AD objects into my domain and then decommission them.
    I would recommend consolidating your domains into a single one. ADMT is a migration tool that you can use. The advantage would be the ease of administration. Also, by having multiple DCs for the same domain across sites, you will take benefit of High Availability
    of your and DRP.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • Playing music through nano and auto stereo, while traveling...nano is set to shuffle, but if vehicle is stopped for more than a few minutes, nano restarts with same song everytime! How do I make it really shuffle the songs

    Having trouble with Nano shuffle while traveling.  It's connected to my vehicle stereo and set to shuffle. When I stop the vehicle for more than a few minutes, the music resumes with the same song it always starts with. How can I get it to keep shuffling after restarting the vehicle?

    Is the iPod actually doing the music playing?  If the iPod is connected using a USB port (on the car audio system) and docking cable, the car audio system is doing music playing.  The iPod is just acting as a storage device (like a USB flash drive) with song files.  So, in that setup, it does not matter whether the iPod is set to shuffle or not, because the car audio system is playing the songs.  Any change to how it plays songs would have to be a setting on the car audio system.

  • HT5527 Account status: An error was returned from server. Please try again later - I have been trying to access my account for more than a week... always the same answer any advice appreciated.

    I have been trying to access my iCloud account for more than a week...looking to drop it to the 5GB from current 7GB. I always get the same answer any advice appreciated.  System Preferences clcik on clous = Account status: An error was returned from server. Please try again later
    I have tries later many many times.
    Thanks,
    Sophie

    I don't know why you can't access it, but if you were a MobileMe subscriber with the free extra storage this has now been removed and your account will have reverted to 5GB.

  • Please , I wonder if I can subscribe for more than one sync accout on the same Desktop? I mean that we are multi-users for the same desktop , so we need some privacy.

    I and my brothers and sisters use the same desktop , so we need to subscribe for more than a single sync account , and I don't know how. Thank you

    If you each have a separate Windows account then each of you should automatically have a separate Firefox profile.
    If you use the same Windows account (not much privacy in that case) then you will have to create a separate profile for each of you and a desktop shortcut to start each profile.
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

  • Perform VENDOR EVALUATION for MORE THAN ONE VENDORS at a time

    Hello all,
    Please guide for any process where i can perform Vendor Evaluation for MORE THAN ONE vendors AT A TIME.
    At my location there are around thousand vendors, which are to be evaluated, and difficult to perform the evaluation process one-by-one.
    (ME61/ME62/ME63)
    Detailed replies with various possibilities would be highly appreciated.
    Thanks & Regards,
    Joy Ghosh

    The vendor evaluation for some thousand vendors at the same time has already been in SAP long before they developed LSMW. The purpose of LSMW is to load data from a legacy system, of course you can (mis-)use it for a lot other things.
    But you should not always use LSMW if you are to lazy to go thru the SAP standard menu to find a transaction like ME6G
    There you define a job that runs RM06LBAT report.
    You first have to define a selection variant for this report. this can be done in SE38 by entering the report name, select variant, clicking display, then entering a name for the variant and clicking Create.

Maybe you are looking for

  • Transfering files from a hard drive into Itunes

    I downloaded audio files from a CD to an external hard drive. Now I would like to put those files in Itunes. I tried click and drag and cut and paste, no luck. Please help Thank you in advance Faust575

  • Return Delivery without reference

    Hi all, i have one specific query. i have matl in my stock ( customer returns). i know the vendor code but i don't know the reference doc no of GR posted for that purchase order. I want to send this matl back to vendor without any reference. I can fi

  • Get the raw/column number of a left-mouse clicked table cell

    is this possible to get the row/column number of a cell where a mouse is clicked? Accutally, i want to implement a dynamic one column list which the user can "Add" or "Delete" some entries. The "Add" function is all right. The "Delete" function makes

  • Working on books with different language editions?

    Hi I'd liked to exchange tips with people experienced in producing same title (book) in two or more languages (in two or more editions) using InDesign software. Is-there a way to work with text layers on the same file, all pictures and design element

  • Email using cl_bcs

    Email (with attachment) using cl_bcs class. How to: 1. I can only change the email subject name. How to change name of the attachment? 2. There is no email content below. How to add some message to email content? Here my code:     TRY.   ---------- c