A difficult problem

hi,
I have worked on a project for a long time. It's front screens are all written in JSP. They all have a similar format of every page having a menu on left side and remainin on the other side. there is small gap after the menu. Now the business guys want a bar to seperate the menu from the content. They want it in about 40 pages.What am i supposed to do. Is there any way i can change which changes all the JSP pages

hi,
I have worked on a project for a long time. It's
It's front screens are all written in JSP. They all
have a similar format of every page having a menu on
left side and remainin on the other side. there is
small gap after the menu. Now the business guys want
a bar to seperate the menu from the content. They
want it in about 40 pages.What am i supposed to do.
Is there any way i can change which changes all the
JSP pagesIs it really a difficult problem? That's simple HTML. Anyway, if you had similar content in all pages, you could have used frames or <jsp:include> or something of that sort...
Annie

Similar Messages

  • Resubmission of Tasks and Appointments - really difficult problem!

    Hi, I have another difficult problem to solve! It would be great if someone could help me or give me some hints! Thanks!!
    I hope I express myself understandable (because it is really a hard nut )
    Assumed case:
    A manager (A) creates and assigns in crm webclient a taks (or appointment) to another employee (B) (for example: 10 days forward). If employee B enters the webclient the task will be shown. 
    employee B has already many tasks on his overview page and therefore wants to change that this specific task will be shown again to a later time (resubmission of tasks).
    Question:
    Is there such a functionality for the CRM webclient?  I read that it was possible in SAP GUI.
    Do I need to develop a solution with BSP WD Component Workbench? Or just change the date profil in SPRO?
    I would be very grateful and thankful if anyone could give me some hints! But I am just working with SAP for a short time, so please keep it not too complicated (if it is possible) ;-).
    Thank you!
    Marcel

    Hi, the topic is called "Resubmit of tasks".... Does anyone has ideas? would be nice
    Resubmit of tasks in CRM webclient, how to do?

  • An old and difficult problem about "UnsatisfiedLinkError"

    Hi dear all,
    I have been struck with the problem about "UnsatisfiedLinkError". I have a c++ class HelloWorld with a method hello(), and I want to call it from within a java class. In fact, I have succeeded in calling it on the windows platform. But when I transfer it to linux, the error "UnsatisfiedLinkError" comes out. I have tried to take the measures as Forum has suggested, but it failed.
    The source code is very simple to demonstrate JNI.
    "HelloWorld.h"
    #ifndef INCLUDEDHELLOWORLD_H
    #define INCLUDEDHELLOWORLD_H
    class HelloWorld
    public:
    void hello();
    #endif
    "HelloWorld.cpp"
    #include <iostream>
    #include "HelloWorld.h"
    using namespace std;
    void HelloWorld::hello()
    cout << "Hello, World!" << endl;
    "JHelloWorld.java"
    public class JHelloWorld
    public native void hello();
    static
    System.loadLibrary("hellolib");
    public static void main(String[] argv)
    JHelloWorld hw = new JHelloWorld();
    hw.hello();
    "JHelloWorld.cpp"
    #include <iostream>
    #include <jni.h>
    #include "HelloWorld.h"
    #include "JHelloWorld.h"
    JNIEXPORT void JNICALL Java_JHelloWorld_hello (JNIEnv * env, jobject obj)
    HelloWorld hw;
    hw.hello();
    All the files are in the same directory and all the processes are under the dirctory:
    1. javac JHelloWorld.java
    2. javah -classpath . JHelloWorld
    3. g++ -c -I/usr/java/jdk1.3/include -I/usr/java/jdk1.3/include/linux JHelloWorld.cpp HelloWorld.cpp
    4. ld -shared -o hellolib.so *.o
    5. java -cp . -Djava.library.path=. JHelloWorld
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no hellolib in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1349)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at JHelloWorld.<clinit>(JHelloWorld.java:7)
    Tried another measure:
    i) export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
    ii)java -cp . JHelloWorld
    The same error came out as above.
    I really don't know what is wrong with it.
    Would you like to help me as soon as possible?
    Thanks.
    Regards,
    Johnson

    Hi Fabio,
    Thanks a lot for your help.
    It is very kind of you.
    Regards,
    Johnson

  • A very difficult problem of JTreeTable

    I am now creating a xml editor by the use of swing. I have drafted an interface and uploaded to this http://fungho.uhome.net/temp/SAMPLE.jpg
    This interface has the tree with the following xml schema:
    <book version="2" language="English">
    <content number="1">How are you?</content>
    </book>
    In my application, there are 2 enpandedIcons for each element, the first one is for the expansion and contraction of the tree structure, while the second one is for the expansion and the contraction of the attributes of the element. For the words between <content> and </content>, "How are you?" in this example, are displayed in the white area benenth the 'content' area. At the same time, there are 2 columns which are not used in the interface, this columns are used for other purpose.
    In view of this, I know JTreeTable is used. However, I don't know how to add one more tree in each node. Moreover, the background color seems to be very difficult to implement... Hope you can have some suggestions! Thanks!
    Stephen

    Vampire,
    Welcome to Apple discussions.
    It sounds like you either have a conflict with a keystroke expander or with Pages built-in auto-correction feature. To test this, try shutting off the auto-correction by clicking on Pages > Preferences > Auto-Correction > then UNcheck Symbol & Text Substitution. Let us know if that works.
    -Dennis

  • Difficult problems in Data integration

    Hi:
    I want to use Format Builder to create MFL file to translate flat file to xml.
    But how can I define the attribute of the element?
    another problem is if every three lines indicate the whole information, how to
    define this scenario?

    I have done the things mentioned by you.
    Still it is giving the same problem when I look into the monitor viz. 'Error in Data selection'
    The details show ' Selected Number doe not agree with Transferred number'
    When I look into the PSA records it seems to be pulling the same set of 25 records multiple times in multiple packages ( 16 packages of 25 records each) and then failing.
    Any idea why this is happening. IS there a parameter I need to set somewhere.
    Thanks

  • RE: A difficult problem using arrayfields.

    >
    The arrayfield widget has an attribute called bodygrid which is a
    compoundfield object containing the actual widgets, like the
    togglefield,
    in the visible rows of the array field.
    If you iterate through the children of the bodygrid and determine
    which child is in the right row and column for the cell you want,
    you can then change its state or other widget attributes.
    This technique is commonly used to highlight the selected row or cell
    in an array field.
    I'm aware of this technique. Our application uses highlightbars and this
    is exactly how we implemented them. However, when you code the following
    call:
    <arrayfield>.bodygrid.children[5].fillcolor = C_RED;
    you'll see the widget change color, but when you code
    <arrayfield>.bodygrid.children[5].state = FS_DISABLE;
    nothing happens. Somehow, forte won't allow you to change the state of a
    widget in this context. Is there a way around this?
    Pascal Rottier
    Origin Rotterdam
    Nederland

    >
    I ran in to the same problem a long time ago (Version 1-H)..
    My solution then was to trap for click events or other row-change events
    in the array field and set the state of the entire column (using the
    strange syntax they have for columns in array fields) to whatever state
    I wanted for the particular cell the user just went in to..
    To the user, it acted as if some cells were modifiable and some were
    not. Note that DISABLED doesn't allow click events at all, making it
    impossible to click on a different row which you could edit. I think I
    used "VIEW" state..
    Hope this helps.The user can click the togglefield without first entering the row. It's
    even possible that the arrayfield doesn't have the focus, when the user
    clicks the togglefield. In other words, with this technique you can
    disable the field AFTER it has been altered. Not before. The way I
    solved it now, is to trap the clickevent, check if it is legal for this
    row and if not, turn the field back to false. Now the user has a field
    that doesn't look disabled (since it isn't), but behaves like it. The
    only drawback is, that often you'll see the x apear for a microsecond
    before it disappears again.
    Pascal Rottier
    Origin Netherlands/Rotterdam

  • Starting javaserver difficult problem

    I have installed j2se 1.3.1 and j2ee 1.3.1.
    I have followed and debugged the .bat files for starting the j2ee server.
    I am now at the point where I get the following errors: when executing the j2ee.bat:
    No local string for binding.datasource
    No local string for binding.datasource
    No local string for binding.datasource
    No local string for binding.datasource
    No local string for binding.datasource
    java.lang.ClassNotFoundException: COM.cloudscape.core.RemoteXaDataSource
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:315)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:120)
    at com.sun.enterprise.repository.JdbcXAResource.createDataSource(JdbcX
    esource.java:65)
    at com.sun.enterprise.resource.ResourceInstaller.installJdbcXADataSour
    s(ResourceInstaller.java:458)
    at com.sun.enterprise.resource.ResourceInstaller.installJdbcDataSource
    ResourceInstaller.java:349)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:264)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    No local string for poolmgr.datasourceerror
    Error in creating data source object
    No local string for jms.start
    Starting JMS service...
    No local string for enterprise.log.logging.serverversion.started
    No local string for enterprise.log.using.vm.name.version.from
    No local string for enterprise.log.vm's.classpath
    No local string for enterprise.log.j2ee.homedirectory
    No local string for enterprise.log.logging.serverversion.started
    No local string for enterprise.log.using.vm.name.version.from
    No local string for enterprise.log.vm's.classpath
    No local string for enterprise.log.j2ee.homedirectory
    No local string for enterprise.log.logging.serverversion.started
    No local string for enterprise.log.using.vm.name.version.from
    No local string for enterprise.log.vm's.classpath
    No local string for enterprise.log.j2ee.homedirectory
    No local string for jms.start.failed
    Couldn't start JMS service...
    javax.jms.JMSException: unable to locate resource bundle: com.sun.jms.service.
    calStrings
    at com.sun.jms.service.JMSManagerImpl.startJMSService(JMSManagerImpl.j
    a:91)
    at com.sun.enterprise.jms.JmsUtil.startJmsService(JmsUtil.java:169)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:268)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    javax.jms.JMSException: unable to locate resource bundle: com.sun.jms.service.
    calStrings
    at com.sun.jms.service.JMSManagerImpl.startJMSService(JMSManagerImpl.j
    a:91)
    at com.sun.enterprise.jms.JmsUtil.startJmsService(JmsUtil.java:169)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:268)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    java.lang.RuntimeException: unable to locate resource bundle: com.sun.jms.serv
    e.LocalStrings
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:346)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    J2EE server reported the following error: unable to locate resource bundle: co
    sun.jms.service.LocalStrings
    Error executing J2EE server ...
    java.lang.NoClassDefFoundError: COM/cloudscape/core/AbstractDataSource
    at com.sun.jms.service.JMSServiceImpl.stop(JMSServiceImpl.java:1334)
    at com.sun.jms.service.JMSServiceImpl.stop(JMSServiceImpl.java:1313)
    at com.sun.jms.service.JMSServiceImpl$1.run(JMSServiceImpl.java:107)
    The " java.lang.ClassNotFoundException: COM.cloudscape.core.RemoteXaDataSource
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200) "
    error is the most baffling because I have found this class in the %J2EE_HOME%\lib\system\cloudutil.jar and this is in my classpath.
    The local string binding data.source errors I have not a clue about...
    I would really appreciate some insight into what is wrong.

    did you ever get figure this out? I'm having the same problem...
    Randy

  • A difficult problem using arrayfields.

    I wanted to build some functionality into a window that I've been unable
    to do. The window has een arrayfield that shows an array of objects. The
    array has a few collums, one of which is a togglefield that shows the
    value of a booleandata attribute on the object. However, for some
    objects, depending on the value of another attribute, this booleandata
    attribute is not allowed to be set to true. We wanted to have these
    toggelfields disabled.
    So, we have an array, with, on each row a few textdatas, integerdatas
    and a togglefield, which is sometimes UPDATE and sometimes DISABLE.
    Well, I wasn't able to pull this off.
    It doesn't seem to be possible to set the widgetstate for widgets in an
    array seperately for each row.
    Does anyone have any suggestions.
    Thanks,
    Pascal Rottier
    Origin Netherlands
    Rotterdam

    >
    I ran in to the same problem a long time ago (Version 1-H)..
    My solution then was to trap for click events or other row-change events
    in the array field and set the state of the entire column (using the
    strange syntax they have for columns in array fields) to whatever state
    I wanted for the particular cell the user just went in to..
    To the user, it acted as if some cells were modifiable and some were
    not. Note that DISABLED doesn't allow click events at all, making it
    impossible to click on a different row which you could edit. I think I
    used "VIEW" state..
    Hope this helps.The user can click the togglefield without first entering the row. It's
    even possible that the arrayfield doesn't have the focus, when the user
    clicks the togglefield. In other words, with this technique you can
    disable the field AFTER it has been altered. Not before. The way I
    solved it now, is to trap the clickevent, check if it is legal for this
    row and if not, turn the field back to false. Now the user has a field
    that doesn't look disabled (since it isn't), but behaves like it. The
    only drawback is, that often you'll see the x apear for a microsecond
    before it disappears again.
    Pascal Rottier
    Origin Netherlands/Rotterdam

  • Very difficult problem

    Hi.
    I have iphone 5s with IOS 7.0.4.
    When I turn on my device, the screen turn on (I can see light from the screen), but- the screen stay black.
    I sure that this problem is software problem.
    When I connect the iphone to my computer, the iTunes say that my iphone is in Recovery Mode,
    but I don't see the iTunes+Lighting cable logo on the iphone screen.
    I try to do restore, but can't- error 40.
    please help me!

    http://support.apple.com/kb/ts3694
    Check for hardware issues
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good. Also, confirm your security software and settings are allowing communication between your device and update servers. If you still see the alert when you update or restore, contact Apple support.
    Common errors: 1, 10-47, 1002, 1011, 1012, 1014, 1000-1020.
    It's most likely a hardware failure. You will probably have to make an appointment at the genius bar and get the phone replaced.

  • Some difficult problem

    I have already written application which use javax.comm library and derby database.
    Additionally I need jre and of course all this libraries (javax.comm and derby) must be appropriate installed in jre catalogs.
    The problem is: How can I gather all of this things with my application and build one package which anybody could install it without any problem and my application will work????
    Please, help.

    Ok, explain me one more thing.
    For example I found an installer that I think would satisfy my needs.
    Installation process just finished install jre, and than it must install additional libraries to the defined directories, can I define intallation process in such a way that first jre must be installed and second all additional libraries in appropriate jre directories and it must be only in this order?
    Installator must way for jre completed installation and then run other packages, could it wait????

  • Somewhat difficult problem////////

    Hi,
    My problem is as follows.
    I have to develope a servlet in such a way that whenever somebody tries to access it, it should ask for username and password.
    Remember, It should not be appeared with some predefined HTML page for asking username & pswd.
    Whenever somebody tries to access it, It should throw a dialog box containing 2 text fields for uname and pwd and 2 buttons for OK and cancel.
    Suggest me in what way i can do that.

    protect the URL using basic security.
    there are additional entries in your web.xml.
    %

  • Very a difficult problem with iTunes 11.1 & iPhone 4 iOS 7

    Hi,
    i've problem since yesterday,
    when I wants to do a synchronize with my iTunes librarie and more specialy with one playlist I have a long delai (very more longer than before).
    When copy start after 5 tracks it's stopped !
    I've try to do new playlist : same problem.
    Restart Itunes - Computer - iPhone : same problem.
    Go to Disc Rescue : And was surprized to find this message (it's in french) :
    Autorisations différentes sur « Applications/iTunes.app/Contents/Resources/Dutch.lproj/AACEncoderConfig.nib » ; attendu drwxr-xr-x , actuellement : -rwxr-xr-x .
    After to do a repair of autorisations : problem was still there.
    Any one for any answer and help to find a solution !?

    no, it's doesn't stop for a specify tracks ! The problem wasn't from the tracks.
    At begin, I've think the problem was from between the new iTunes and the app Music. Because, everything was correctly copied except music.
    It's was very long - like between 1 min (normal) to 15 min (Not normal situation !)
    So, the problem was at this time resolved ! Yeah !
    I've do the Repair autorized via Disc rescue and the problem was gone ! Ouf !

  • 2 Really Difficult problems...

    That's what I'm having. :( I want my program to be able to connect to a remote server that's using SQLite so I can save information to the database. All I've found on the internet so far is how to do it if SQLite is on the same machine you're making the program on. Here's what I think I have to do:
    Install JDK and SQLite drivers on remote server
    Install SQLite driver/wrapper on my side, in the program
    I wanna make sure if that's how to do it.
    Another thing is, I want to create a "server" on my remote server. It will listen for connections from the program and will send information to it. I'm not sure where to start for that one. Any answers regarding my problems would be appreciated, thanks!

    Ok, I've been reading around and it seems like using java.net would address my second problem. However, I'm still a bit fogged on how to do both so far...

  • I am having difficult problems with the FocusritePro14 it works for a few then the firewire light flashes it cuts in an out then my MacBookPro crashes and restarts what can be the problem?

    I am trying to figure out why this interface never works like it should, I have the lastest drivers 10.8 OS, The firewire cuts in an out and then crahses my computer, it was working fine for a good month, and then it does this. The people at Focusrite are clueless to what is going on. This is horrible engenerring  on there part. There are three lights on the interface they all light up, then half way through a recording or just lisiting to music, the FW light flashes and cuts out, and now the mac is rebooting when it does that. I highly doubt it is a simple fix, or a bad wire. I have the original cable for the interface that came with it, hooked up to a sonet adapter to fit in the macbook pro because the geniuses at apple decided that they would make that port small.
    Sorry about mispeling its 3 am here in Ohio.  Please can someone help
    Thank you

    Hello Bagpus113
    Check out the article below to troubleshooting issues with the sound for music and for videos. One other thing you can try is to convert the songs to a different format
    iTunes and QuickTime for Windows: Audio does not play or plays incorrectly
    http://support.apple.com/kb/TS1362
    Troubleshooting iTunes for Windows Vista or Windows 7 video playback performance issues
    http://support.apple.com/kb/ts1718
    iTunes: How to convert a song to a different file format
    http://support.apple.com/kb/ht1550
    Regards,
    -Norm G.

  • A difficult problem with php code and sql code

    it's good place to visit(Paged Result Sets with PHP and Oracle)
    http://www.oracle.com/technology/pub/articles/oracle_php_cookbook/fuecks_paged.html
    maybe below part php code could not be used in above address's php code.
    if((isset($l_company) and $l_company != $rows['COMPANY']) or empty($stmt) and empty($total_pages) ) {
    echo "<tr bgcolor='#CCFFCC'>";
    echo "<td colspan= 3 align='center'>".$l_company."</td>";
    echo "<td >".$totalcomany." </td>";
    $totalcomany = 0;
    echo "<td > </td>";
    echo "</tr>";
    $l_company = $rows['COMPANY'];
    because the same company in one page could calculate sum while if
    the same company in two pages could not do that.
    and what do you think of ?
    thanks !

    Hi,
    this is because your sql-statement selects only the rows, you need to build this one page.
    Neither php nor the given result from your query knows about data wich will be part of the result of another page.
    Greetings from Hamburg
    Thorsten Körner

Maybe you are looking for

  • HT1665 I have the lightning to 30 pin adapter and it doesn't work.

    I bought a lightning to 30-pin adapter and the thing won't  work. I connect is very loose.

  • Is there a way to recognize notes added to text in PDF files?

    I really miss the add note to text functionality in this application! I am prepared to pay for it since I read documents with hundreds of references (reference by section number only) to sections spaced far appart. This tool makes it easier. I don't

  • Problems in game center

    problems in game center i have played calsh of clan ago. someone has logged on my account. I have changed the password but failed. i need you to help me

  • Call adapter error --- BPM to RFC

    Hi,      I'm calling a simple RFC from a bpm, and the rfc in turn calls a proxy.At the step where i pass the data from bpm to the RFC i get the following error at the call adapter step: <SAP:Category>XIAdapterFramework</SAP:Category>   <SAP:Code area

  • Imovie quitting

    Have ilife 06 and iMovie HD. Am making short movie/slideshow in iMovie from photos in iphoto. Am 2 mins into project and each time I try to add a transition I get message - "Unknown error occurred - You may be able to continue without any problems. Y