To use the concept of  using a template with multiple windows inside it.

Good evening friends ..........
I have a requirement from my client like this i need to make a smart form in that
i need to display a template of kind like this
it must have 1st row 1st column of height 35mm approx. ie which should have 5 rows height with
no lines IE rows inside that column, and column width must be 4cm.
and it has 2nd to 5th column of lengths 3cm each in the same row IE 1st row. and
in 2nd row from 2nd to 5th column of lengths 3cm each. and
in 3rd row from 2nd to 5th column of lengths 3cm each continue the same pattern till
5th row and lastly .
in 6th row i must have 1st 2nd columns with length 4 cm each
this whole thing i must get i one template only.....................
when i tried to search this in sap portal or any other documentations
i got the concept of combining windows and template in one window......
they are saying we can make a template with 2 or more windows inside it. which also
contain one template each inside that windows
so my 1st row 1st column has exactly same requirement as this only.
IE using a template with 2 or more windows inside it with templates inside each
window.
can u please guide me how to try it out this one .......
this i tried to depict in pictorial form and send u in my previous reply
but it displayed in other way sorry for that.

Give this a go...
// form1.page1.cb::click - (JavaScript, client)
if (this.rawValue == 1) {
  xfa.resolveNode("form1.page1.nf.ui.#numericEdit.border.fill.color").value = "255,255,0";
  form1.page1.nf.border.edge.color.value = "0,0,0";
else {
  xfa.resolveNode("form1.page1.nf.ui.#numericEdit.border.fill.color").value = "255,255,255";
  form1.page1.nf.border.edge.color.value = "255,255,255";
Don't forget to make your form a dynamic form.
Steve

Similar Messages

  • Is it possible to have a phone line connected to a Mac Mini (OS X10.8.2) so you can use your computer with Parallels (Windows xp) to dial into a modem to download data being collected and stored at the remote location?

    Is it possible to have a phone line connected to a Mac Mini (OS X10.8.2) so you can use your computer with Parallels (Windows xp) to dial into a modem to download data being collected and stored at the remote location?

    Hi, do you mean a real Dial-up Modem as in the old days?
    As I recall, the Apple USB Modem won't work in 64 bit OSes, but there are others that will, I think this is one of them...
    http://www.zoomtel.com/products/dial_up_external_usb.html
    Or is the Modem on the other end Cable/DSL/FiberOptic?

  • How do I use your iPhone with multiple iTunes libraries

    Hi, I have my music spread out between 3 seperate Itunes libraries on 3 different profiles on my computer. I have the newest generation Ipod Nano, Ipod Shuffle, and Iphone 4s. My Ipod's are both full, so I've decided to start putting music onto my phone. With my Ipod's, I can plug them into one profile on the computer, download the music on the Itunes library that exists on that profile, then do the same with the other profiles with no issue. However when I try to do this with my phone, It asks me to erase the music I have gotten from one Itunes library and sync with the current library, as soon as I plug it in to a different Itunes on one of the other profiles. I have my Iphone configured with the Manually manage music option, and I still haven't found a way to use my Iphone with multiple music libraries. PLEASE HELP

    http://support.apple.com/kb/PH12113 - If you use manual syncing, you can sync items from more than one iTunes library to your iPod. (You can sync iPod touch, iPhone, and iPad with only one iTunes library.)
    http://support.apple.com/kb/HT1202 - When manually managing content, you can add content from multiple libraries to your iPod or iPad. Even when manually managing music, some content may be available from only one library at time. This includes all content on iPhone and video content on iPod and iPad.
    They seem inconsistent as far as the iPad is concerned but in both articles the iPhone appears to only be able to sync to one library at a time.
    Troubleshooting Home Sharing - http://support.apple.com/kb/TS2972

  • How to use an Applet with multiple-jars

    Hi everybody,
    I would like to use an applet with multiple-jars.
    ex:
    <applet codebase="." archive="main.jar,Addon1.jar,Addon2.jar" code="Appl.class" id="MyTest" width="600" height="30">
         <param name = "MyParam" value = "1;2">
    </applet>
    An applet with :
    -> 1 Main JAR
    -> X Addon JARs (X : a parameter "PRM")
    My main part knows the parameter "PRM" -> knows which addon to use
    My question is, how do I use classes from addons, inside the main part (and vise-versa if possible) ?
    Thanks in advance
    Best regards

    I try what you say :
    === HTML ===
    <applet codebase="." archive="Main.jar,Addon1.jar" code="Test.Appli.class" id="MyTest"  width="600" height="30">
         <param name = "myPrm1" value = "1;2">
    </applet>=== MAIN JAR ===
    package retest;
    interface InterfAddOn1 {
        public void AfficheTest1(String sStrTest);
    public class Ctest {
        public Ctest() {}
        public void unTest(String sClassNameR) {
          String sClassName = "PackTestAddon.TestClass1";
          try {
              Object oObj = Class.forName(sClassName).newInstance();
              ((InterfAddOn1) oObj).AfficheTest1(" Hello World ");
          } catch (ClassNotFoundException ex1) {
              System.out.println("ERR Class not found");
          } catch (IllegalAccessException ex1) {
              System.out.println("ERR Illegal Access");
          } catch (InstantiationException ex1) {
              System.out.println("ERR Instantiation Exception");
    }=== ADDON JAR ===
    package PackTestAddon;
    public interface InterfAddOn1 {
        public void AfficheTest1(String sStrTest);
    package PackTestAddon;
    public class TestClass1 implements InterfAddOn1 {
        public TestClass1() {}
        public void AfficheTest1(String sStrTest) {
          System.out.println("Test :"+sStrTest);
    }I have this error :
    Exception in thread "AWT-EventQueue-2" java.lang.ClassCastException: PackTestAddon.TestClass1
         at retest.Ctest.unTest(Ctest.java:58)
         at retest.Appli.actionPerformed(Appli.java:442)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    I don't really know why ... =;o(
    Helppppp ... Thanks in advance.

  • Can bookmarks be protable for multiple computers? Is it an option to log on and use my bookmarks with multiple computers and locations? Thanks

    Can bookmarks be protable for multiple computers? Is it an option to log on and use my bookmarks with multiple computers and locations? Thanks

    Profile is a folder which store all your personal data in a safe place
    * https://support.mozilla.com/en-US/kb/Profiles
    You can use this button to go to the current Firefox profile folder:
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    here explain how to backup profile
    * https://support.mozilla.com/en-US/kb/Backing%20up%20your%20information
    Here explain how to restore it
    *https://support.mozilla.com/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile

  • Can I use apple sharing with my windows 7 pc and apple tv?

    Would like to go to atv select computrt so I can access my photos and home video from my windows pc to my atv

    Can I use apple sharing with my windows 7 pc and apple tv?
    Yes.
    Sorry, I don't understand the rest of the question.

  • Whenever I try to update iTunes to 10.5 I get the message 'There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor.'

    Whenever I try to update iTunes to 10.5 I get the message 'There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor.'
    I then uninstalled iTunes to try and reinstall it but I still get the same message for both 10.5 and previous versions, please help!

    My situation:
    - get error when updating iTunes from 1041 to 1050 or above: "There is a problem with this Windows Installer Package. A program required for this install to complete could not be run. Contact your support personnel or package vendor."
    My system: XP SP3 with all latest updates.
    Found out that the 1051 update fixes a major intrusion possibility during the update process, so I want to get iTunes upgraded to 1051.
    Did more research and the following worked (not known if all steps outlined were necessary) (I do not guarantee success nor any more issues as a result):
    - ran: MicrosoftFixit.ProgramInstallUninstall.exe (did JUST the patch option).
    - ran: Windows Installation Removal Tool.exe (uninstalled JUST the iTunes program installer folder) (this does not remove the actual program).
    - removed all apple software update registry entries.
    - removed: C:\Documents and Settings\All Users\Application Data\Apple\Installer Cache\(JUST the software updatefolders) (hidden folder).
    - removed: C:\Documents and Settings\current user\Local Settings\Application Data\Apple\(JUST the software  update folders) (hidden folder).
    - DID NOT need to restart
    - downloaded latest iTunes update (1051)
    - opened using WinRAR
    - extracted all files
    - ran JUST the apple software update MSI
    - it succeeded
    - ran JUST the iTunes MSI
    - it succeeded
    - normally I then uninstall the apple software update program, but DID NOT this time
    - DID NOT need to restart
    Hope it works for you.

  • Exporting a template with multiple images

    Let's assume I want to have a large print made at an outside commecial lab because my printer does not handle the size.
    In the Print Module, is there a way to export a template with multiple images so that it can be sent to an outside lab for printing?
    Or, is this not possible and I would have to design the template in Photoshop and send the file to the lab?
    If Lightroom is not yet capable of this, it certainly seems like a worthwhile feature.

    Thanks for sticking with this thread to help me.
    I am on Windows and I do have PDF capability, the full Adobe Acrobat Professional.
    I have been experimenting with your suggestions and, yes, saving it as a PDF and bringing it into Photoshop is a workaround. The images and Identity plate come into Photoshop as they appear in the template in Lightroom.
    What doesn't appear in Photoshop is the whitespace(margins)around the images. They appear in the PDF, but they don't appear when I open the PDF in Photoshop. Is there a setting I'm overlooking in the PDF settings dialog that will correct this? Or, is this just the way importing a PDF works when it comes to margins? Must I always go to Image/Canvas size to get the canvas I want? Is there a way of not having to do this?

  • Excel Template with Multiple Sheets

    Hi everyone,
    I need to build Excel template with multiple sheets where each sheet should have at-least one chart.
    Thanks
    Aravind

    Hi
    Could you please explain those ways here.?
    Many Thanks,
    BK

  • I'm trying to update itunes and keep getting the message"There is a problem with this windows installer package. A program required for this install to complete could not be run. Contact your support personal or package vendor"  Anyone know now to fix?

    I keep getting the message" There ais a problem with this windows Installer Package. A program required for this install to complete could not be run. Contact your support personnal or package vendor".  I get this whentrying to update itunes. 
    Does anyone have a idea how to fix this/
    Thanks

    Try the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

  • I'm trying to download the latest version of iTunes and get the message "There is a problem with this Windows Installer package. A program required for this install to complete could not be run." I have no clue what to do with this.

    I'm trying to download the latest version of iTunes and get the message "There is a problem with this Windows Installer package. A program required for this install to complete could not be run." I have no clue what to do with this to resolve the issue. Thanks for any help!

    Repair your Apple software update.
    Go to START > ALL PROGRAMS > Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install
    If you don't find ASU, go to Control Panel:
    START > CONTROL PANEL/ > Add n Remove Programs, highlight ASU and click CHANGE then REPAIR

  • When trying to download itunes 10 I receive this message at the end of the install.There is a problem with this windows installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor.

    When trying to download itunes 10 I receive this message at the end of the install.There is a problem with this windows installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor.

    There is a problem with the Window installer package. A program required for this intall to complete could not be run. Contact your support personnel or package venfor.
    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • Can I use OVM templates with VirtualBox

    Oracle has lots of OVM templates available on edelivery for Oracle E-Business Suite. But it seems that to get those I need to install OVM and would not just work with VirtualBox.
    Is there a possibility that I can use them directly with VirtaulBox instead of first installing OVM(as this would require formatting of my laptop).
    Thanks & regards,
    Gaurav

    MikeLi wrote:
    Hi Gaurav,
    I also attempted to install R12 EBS and got stuck on the same issue that Oracle VM will wipe out the host. It is impossible for me as I use my laptop for other things.
    I wonder if you have gone through with Virtualbox to install R12 EBS and found any issues with it?
    Thanks, Mike.Mike,
    You can use VMWare if you want to keep your client OS.
    Note: Please create a new thread if you have any issues/questions instead of updating multiple threads -- Demo Vision Installation of Oracle EBS R12.1.3
    Thanks,
    Hussein

  • Using my ipod with multiple computers: not the usual problem I think

    I've searched the forum and various help documents but I couldn't find the answer to this.
    I have a laptop at the office (work-related, so I don't have any of my music on it, just itunes) and my computer at home. Ideally I'd like to:
    = keep my ipod automatically synced to my home computer
    = be able to connect my ipod to my work laptop and play the music stored on it through itunes there, and also keep it charged and ready for the trip home.
    It seems that the 'manually manage music and videos' setting travels with the ipod, rather than being stored on the computer's itunes installation. If I set it at work, so I can play music there, when I connect the ipod at home I have to reset it (and a few times when I did so the ipod started deleting everything because 'sync my music' was not checked, grrr).
    I just want to set things up in a way so that when I connect my ipod at work it will let me play whatever songs I have there (without wanting to sync anything), and when I connect it at home it will automatically update it. It's simple enough, but I can't seem to figure out how to do it.
    If I connect the ipod at work and press 'cancel' when the 'do you want to erase things' pops up, it doesn't try to change the settings, but at the same time it doesn't let me play music at all, everything is greyed out
    does anybody have any idea? I don't want to resort to have to buy a usb power adapter just so that I can play my ipod at work without draining the battery...

    B_Ram wrote:
    Could it be because its an iPhone and not a true iPod???
    i doubt it.
    actually, syncing an iPod Touch (or iPhone) with multiple computers is not recommended @ all. click here to find out what Apple has to say about it.
    all i can think of, i you really must do that, is this:
    to prevent a sync when plugging in the iPod - hold down the option and the command ( on a PC that would be the shift and ctrl ) keys when plugging in the ipod - keep pressing the keys until the iPod is listed under the devices list in iTunes. now you should be able to do what you want.
    however, you do so @ your own peril, as the article above outlined.
    alternatively, consider a setup such as this.
    good luck !
    JGG

  • Using iTunes with multiple Windows accounts

    A friend of mine has 2 Windows accounts on his Win XP machine. He uses iTunes on each account, but has his music in a shared location. If he has music playing in iTunes on one account and then uses Fast User Switching to log into the second account, the current song continues to play but the next song and every song thereafter will be very jerky. Like trying to stream music with a slow internet connection.
    Any thoughts.

    hiya!
    hmmmm. it might well be the Windows Fast User Switching causing his problem (although he isn't getting the usual problem i see associated with Fast User Switching):
    iTunes for Windows: about Fast User Switching with Windows XP
    love, b

Maybe you are looking for

  • Officejet Pro 8500A will not print

    It will not print without running HPPS Doctor and after it runs it says to disconnect power, reconnect and then run test again.  It will then print a few documents and the will say "printing" but will not print?????  I have to the same thing every ti

  • Gf4 4600 TV in?

    Hello, I just picked up the geforce 4600 with the VIVO option.  So far everything is great.  I plugged my cable box into the video in port and it captures beautifully. My question is: is there some type of software I can used to actually watch TV usi

  • Can't start JWS on Max OS 10.1

    I have several dozen PCs running Java Web Start sucessfully, and now want to start using it on OS 10.1. However JWS doesn't seem to start correctly. When I select a web link pointing to a JNLP file, I see the splash screen for a few seconds and then

  • The idea of changing to a Mac... Am I crazy?

    I am need of an upgrade to my desktop and have been spending time trying to decide on what type of PC desktop. Today, I saw a MAC with it's sexy LED monitor and money wise it is not out of the question to go to a MAC instead of a new PC Desktop. I ha

  • Why are there lines on my copies

    When I make copies of clean originals, why am I getting double lines across my copies