Problem after creating a custom theme

Hi guys,
I created a new theme into Apex. Actually, I just changed the page "No tabs" from the basic blue template.
Then I applied this new theme to an application (this application perfectly works with the basic blue template from Apex).
The result seems good, my theme looks like what I wanted, but the application is "dead"!
It seems that the processes are all inactive when I apply my theme. Everything comes back to normal when I put again the basic template from Apex.
Does anyone have an idea about this? I certainly dropped something in my theme, but at the moment, I don't know what it could be...
Thanks for reading.
Ludo
Edited by: dovik on May 4, 2010 9:14 AM

Hi
I don't have any error when I run the application. It just doesn't do anything!
And I didn't forget to put the #HEAD# substitution, my theme starts like this :
<html lang="&BROWSER_LANGUAGE." xmlns:htmldb="http://htmldb.oracle.com">
<head>
#HEAD#Thanks anyway.
Edited by: dovik on May 4, 2010 9:37 AM

Similar Messages

  • Facing some problems in creating a custom tabs in CRMD_ORDER Transaction

    Hi Friends,
    I am facing some problems in creating a custom tabs in CRMD_ORDER Transaction code in Solution Manager of SAP.
    Actually my requirement is adding of two tabs(one is header & another is item tab) in the above Transaction, i was able to put one tab i.e header tab but i was not able to keep item tab. i found a badi CRM_CUSTOMER_I_BADI in which documentation was given & i processed in the same way.
    For information i used the Badi CRM_CUSTOMER_H_BADI for header tab which i was able to add the tab & all functions like change, save working Good.
    But i want how to add custom tab in which item details were to be attached.
    i was done with the necessary SPRO settings(or Tcode CRMV_SSV) & able to see the 2 tabs thats it, but the functionality save is not working for the second tab & not saving in table CRMD_CUSTOMER_I (in this table there is one CI include where we added our item fields).
    And also i had a doubt whether to use ALV or Table Control. And if possible can any one can sent me the screen design & the code for the above requirement in detail.
    can any one who have knoweldge in Solution Manager & in the above Badi implementation can give me a right solution which will help me a lot.
    Thanks a lot in advance.
    Thanks
    Ravi.
    can any one give the solution regarding to the above one.
    Edited by: ravikanth on Jul 23, 2008 8:13 AM

    Hello Priyanka,
    I have the same problem by using Service Ticket in SAP CRM 5.0.
    Did you already solved this issue? If so, can you please provide the solution!?
    How can I activate and check the transfer log?
    Thanks and regards
    Alex

  • DSO activation problem after creating the secondary indexes

    Hi,
        I am facing the problem with DSO activation after creating the secondary indexes.
    •  Compared with Info Cubes there is no functionality available which allows dropping and recreating a secondary index before/after the data activation.
    As a workaround I can write a simple report which drops and creates the indexes on database level.
    By using a process chain, we can simply insert the drop index report before data activation and the create index report after the data activation process.
    Can any body help me step by step procedure or Material to write the programs for delete index and create index reports on DSO object?..
    Thanks in advance for your help.
    Thanks & Regards,
    Bala

    hi,
    in BI if you are using the dso for reporting then you can simply chk the settings of dso for SID generation.
    no need to create the indexes or delete it.
    if the dso is not used for report then no need to use indexes.
    Ramesh

  • Problem when creating a customer order (VA01)

    I'm trying to create a customer order to sell a material which has serial no. I use transaction VA01.when i wrote the serial no of the material that gives an error "the serial no doesn't exist in SNUM".when i checked that table, i saw that there is no data. Probably some missing or mistake about customizing.
    Does anyone have any idea, what should i do???
    Thanks...

    Create serial number profile in <b>T.code: OIS2</b> and
    Please Assign the serial number profile to the material master (Sales orgn/plant data) present in the sales order. Then recreate the order.this solves your problem.

  • How to create a custom theme for discussions similar to jive?

    I have worked in Jive earlier and saw that there was greater flexibility in the way you can work with themes. Oracle has extended it and looks most of the features are removed.
    In Jive, I was able to create a new theme and was able to change the look and feel for each piece of page that appeared in jive site. E.g I was able to change the ftl of header, fotter, account controls area etc. There were around 20 diffrent templates that were available and I could control each and every template to give a total diffrent look and feel for the Jive site.
    How do I do the same with Discussions in WLS_Services now? Also don't see an option for defining themes for wiki site.
    Do we have a developer guide for customizing discussions and wikis?
    -Pratap

    Here is someone else's answer.  In short not really.
    https://discussions.apple.com/message/13281848#13281848

  • Network Problem After Creating Database

    Hi,
    We install Oracle 11g on Windows 2008 server. Everything is working fine till the installation of Oracle software. After creating the database when we restart server the network cable shows a unplug for 20 miniutes.
    If we disable all the Oracle service than everything goes fine.
    Please Suggest.
    Thanks and Regards
    Sarfaraz Zomberkar

    This is an interesting problem. Please provide a little more information.
    * When you state Oracle 11g, exactly which release version: 11.1.0.6, 11.1.0.7, 11.2.0.1, or 11.2.0.2 - did you install the 32 bit Database software or the 64 bit Database software?
    * Which options were selected during the installation, and did you tell the installer to create a database during the installation?
    * Exactly which Windows 2008 server version: R1 or R2 - and is the operating system 32 bit or 64 bit?
    * How much memory is in the Windows server?
    * How many network cables are connected between the server and a network switch(es) - you will probably need to look at the back of the server to determine this answer?
    * What are the exact names of the Oracle services that you had to shut down - most likely, the Startup Type of those services are set to "Automatic"
    * Have the appropriate network person take a look at the log of errors on the network switch that is connected to the server - there is a chance that the network switch sensed a problem, such as excessive transmission errors, and shut down the network port to prevent a broadcast storm or a similar problem.
    * Have the appropriate person check the Windows event logs. Do those logs identify the reason why the network port went down?
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Problem in creating a custom tag

    Hi All,
    I'm new to jstl. I want to create a custom tag. I created a sample java class and sample tld file and I used this file at my page it give me an error. The java and tag file code is as follow
    package mytag;
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    * This is a simple tag example to show how content is added to the
    * output stream when a tag is encountered in a JSP page.
    public class Hello extends TagSupport {
         private String name=null;
          * Getter/Setter for the attribute name as defined in the tld file
          * for this tag
    public void setName(String value){
        name = value;
         public String getName(){
              return(name);
    * doStartTag is called by the JSP container when the tag is encountered
        public int doStartTag() {
           try {
            JspWriter out = pageContext.getOut();
            out.println("<table border=\"1\">");
              if (name != null)
               out.println("<tr><td> Hello " + name + " </td></tr>");
            else
               out.println("<tr><td> Hello World </td></tr>");
           } catch (Exception ex) {
             throw new Error("All is not well in the world.");
           // Must return SKIP_BODY because we are not supporting a body for this
           // tag.
           return SKIP_BODY;
    * doEndTag is called by the JSP container when the tag is closed
         public int doEndTag(){
            return EVAL_PAGE;
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
    "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
    <taglib>
         <tlibversion>1.0</tlibversion>
         <jspversion>1.1</jspversion>
         <shortname>sample</shortname>
         <info>My sample tag</info>
      <tag>
        <name>hello</name>
        <tagclass>tag.Hello</tagclass>
        <bodycontent>empty</bodycontent>
        <info>
         This is a simple hello tag.
        </info>
      <attribute>
          <name>name</name>
          <required>true</required>
          <rtexprvalue>true</rtexprvalue>
      </attribute>
    </tag>
    </taglib>And I use this tld file in my jsp code I got below error
    * org.apache.jasper.JasperException: /mytag.jsp(9,15) Unable to load tag handler class "tag.Hello" for tag "sample:hello"
    Help me about this problem.
    Edited by: Get2win4world on Dec 15, 2009 1:12 AM

    Your class (according to what is posted) is in the package mytag.
    So in your tld: <tagclass>tag.Hello</tagclass>should be<tagclass>mytag.Hello</tagclass>cheers,
    evnafets

  • Problem while creating a custom document using JAVA API in the current Folder

    I am trying to create an instance of a custome type from the API. I have created a custom type via XML. I have associated a JSP with the custom type thru iFS manager. This jsp provides an interface for the user to enter various data. On submit I call some other jsp also loaded into the /ifs/webui/jsps which calls a method in the java class to create an instance of the above mentioned type. This instance needs to be created in the current directory and not in the home directory of the user. I have written a java program which when run from JDeveloper connects to the repository and creates the object, but not as a foldered object. If I load this class into custom_classes directory, I get an exception. I am attaching the code also here which does the actual processing.
    package cms;
    import oracle.ifs.agents.common.*;
    import oracle.ifs.agents.manager.*;
    import oracle.ifs.agents.server.*;
    import oracle.ifs.beans.*;
    import oracle.ifs.common.*;
    public class ContentModule extends Object {
    public static final String CLASSNAME = "CONTENT";
    public static final String TOPICID_ATTRIBUTE = "TOPICID";
    public static final String SITEID_ATTRIBUTE = "SITEID";
    LibrarySession m_session;
    public ContentModule() {
    connectToRepository();
    createDocument("AM5","s");
    public void connectToRepository(){
    try{
    LibraryService l_service=new LibraryService();
    CleartextCredential l_credential = new CleartextCredential("system","manager");
    ConnectOptions l_options=new ConnectOptions();
    l_options.setServiceName("IfsDefault");
    l_options.setServicePassword("ifssys");
    m_session=l_service.connect(l_credential,l_options);
    }catch(IfsException ex){
    ex.setVerboseMessage(true);
    ex.printStackTrace();
    public void createDocument(String p_docName,String p_docContent){
    try{
    DocumentDefinition l_doc=new DocumentDefinition(m_session);
    l_doc.setClassname(CLASSNAME);
    long newId1=5;
    long newId2=5;
    FolderPathResolver l_currentPath=new FolderPathResolver(m_session);
    Folder l_currentFolder=l_currentPath.getCurrentDirectory();
    l_doc.setAddToFolderOption(l_currentFolder);
    l_doc.setName(p_docName);
    l_doc.setContent(p_docContent);
    AttributeValue av1 = AttributeValue.newAttributeValue(newId1);
    l_doc.setAttribute(TOPICID_ATTRIBUTE,av1);
    AttributeValue av2 = AttributeValue.newAttributeValue(newId2);
    l_doc.setAttribute(SITEID_ATTRIBUTE,av2);
    Document l_document=(Document) m_session.createPublicObject(l_doc);
    }catch(IfsException ex){
    ex.setVerboseMessage(true);
    ex.printStackTrace();
    public static void main(String[] args) {
    ContentModule contentModule = new ContentModule();
    Any help will be highly appreciated.
    Thanks

    Please print out the Verbose Stack Trace generated when you run this application.
    I suspect that you FolderPathResolver is not pointed at the directory you think it is. You might want to try printing out
    I_CurrentFolder.getAnyFolderPath();
    and I_CurrentFolder.getName();
    null

  • After creating a customizing database table 'create entries disable'

    After creating the database table i want to add fields through goto-table contents-create entries but "create entries" is in disable mode how can i resolve this?

    Dear Dileep,
    You need to go to "Delivey and Maintainence" tab there you will "Data Browser/Table Maintainence",
    Here you need to select "Display/Maintainence Allowed" in the drop down list.
    Thie will help to find the "create entrie enable".
    Thanks,
    Ananth.

  • Problem after creating a Photo Book

    After creating a 100 Pages Hardcover Book, I can't buy it, because Iphoto opens a window, saying that not all pages are filled with photos. verity I try, it goes back to one page, but this page is perfectly filled like all the others, no missing photos or empty frames at all.
    ried to change photos and layout, with no result. Cant buy this book.
    What can I do? I don't want to create a whole new Book

    You may have still a placeholder photo as the backdrop for your pictures.  Check the page layout, if it is using an image background. Then you need to change the background or add background picture:
    If you used the Golden Gate Bridge background, drag a photo to the background.

  • Unable to "Buy Book" after Creating a Custom Book

    I just created a custom book with the required minimum number of pages, but the option to "Buy the Book" is not available to me. Is there something else I need to do? I'm pretty new to Aperture. Any help would be appreciated!

    I find the custom book feature very very useful in Aperture. To date I have always had books created through a local printer (their quality and binding format is excellent). I build the book in Aperture (custom as I prefer A4 portrait), use the PDF output option and then give the printers the PDFs which they then print to create the book.
    I have thought about trying the Apple service but an unsure of the "suede-like" cover and prefer hard back. Might try the soft covers. But anyway, other book printers are happy to take the PDF output (e.g. my local printers, Blurb and probably others).
    Ian

  • Problem after creating second library

    So I finally decided to create a second library where I placed my aac rips for my ipods. Everything seemed fine.
    When I restarted iTunes for the first time after that procedure I held down the option key to pull up the "choose library" dialog box. This is where the problems start. It just directed me to the root of my external HD where my library is held. I thought a dialog box or something would come up letting me choose between my newly created "IPOD LIBRARY" and my regular library. No such luck so I just pointed to the main iTunes folder and iTunes started to launch but with an "updating iTunes" box and it started doing its thing(Why? I have no idea). Keep in mind I have 5000 or so albums in my library. In the background I noticed at the bottom of the interface that it is showing WAY less albums, etc. than I know I have. I didn't want to do a force quit or anything while it was updating because I thought I might corrupt everything. What it did was load an old .xml file from 10 months ago so anything I've imported since last April is not loading into my library. I've tried to restart and choose a newer .xml file in hopes of it being the correct one but what it's loading IS the newest file. What the **** happened? I don't want to lose the countless hours I've spent inserting all sorts of custom tags and groups and such.
    Message was edited by: Eric Jenkins

    No one has any insight with this problem?

  • Problems after creating report object

    I am using Crystal Reports Server XI R2 SP4. I created a report object from a simple Crystal report successfully. Even the thumbnail showed the report data even though the report does not save data.
    However when I view the report object in InfoView or schedule it there is no report data even though Crystal Reports Viewer displays data when run against the same DB with the same parameters.
    I get the same results with any report object I create in CMC but I was to able to successfully create and run report objects the first few(5) times after which I have been getting this result.
    Is there any kind of report or job limit?
    I made max records to retrieve unlimited and bumped # of jobs in every server from 5 to 50 and the age of oldest report to retrieve from cache to 0 mins.
    Please help!

    I'm not sure this is a JAVA problem, but if you're getting an ACCESS_VIOLATION exception from the JVM a method that provides more detailed information is to check for exceptions after every JAVA function called from the native code with (*jenv)->ExceptionCheck(jenv) and if true get information with (*jenv)->ExceptionDescribe(jenv) Making mistakes in native code constructing JAVA objects has been my most frequent cause of ACCESS_VIOLATION exceptions. I hope this helps.

  • Problem after creating a costumer view

    hi guys,
    i just created a new view from a costumer table.
    the problem is that when i access the view from sm30, i click on add new entries, and some fields have label and some has only the +, symbol, i dont now why!
    something like this:
    begda___________
    endda___________
    user ____________
    +_______________
    +_______________
    +_______________
    any ideas?
    tks in advance.

    Usually you see + symbol if you use a builtin datatype
    in the table instead of a data element.
    You can resolve the issue in two ways.
    1.You can go to SE54 enter the vie name and select generated objects and click on Change.
    After going inside select Environment--> Modification --> Maintainence screens.
    Select the screen and go to the layout and maintain the descriptions.
    2. Change the table and add data element to the fields for which you have maintained built  in data types.
    Delete the maintainance view and regerate from the transaction SE54. You will see the descriptions.
    Regards
    Sudhir Atluru

  • Automatic Mailbox Distribution problem after Creating New AD Site

    We redesigned our Active Directory Sites a little while ago.  We moved the subnets and servers from the old sites to the new sites.  We haven't removed the old sites yet, but that will happen soon.  We haven't noticed any issues with the new
    sites except for one weird issue and that is that Automatic Mailbox Distribution no longer works, in fact if you don't specify a database with the enable-mailbox (or new-mailbox) commands it will fail with an error that load balancing failed to find a valid
    mailbox.
    The problem, from the output of an enable-mailbox, command appears to be a site problem (from the fact that the automatic mailbox distribution discards sites that are not in the same site as the user).  The verbose output has the command checking the
    old site even though the server is in the new site.  I've already checked the databases and none of them have the IsExcludedFromProvisioning or IsSuspendedFromProvisioning properties set to TRUE
    My question is how do I make the databases show up as in the new site rather than the old site?
    Any and all help with this issue is appreciated.
    This is the output from the command:
    VERBOSE: [16:36:50.864 GMT] Enable-Mailbox : Initializing Active Directory server settings for the remote Windows
    PowerShell session.
    VERBOSE: [16:36:50.864 GMT] Enable-Mailbox : Active Directory session settings for 'Enable-Mailbox' are: View Entire
    Forest: 'False', Default Scope: 'domain.local', Configuration Domain Controller: 'DC01.domain.local', Preferred Global
    Catalog: 'VMDC01.domain.local', Preferred Domain Controllers: '{ VMDC01.domain.local }'
    VERBOSE: [16:36:50.864 GMT] Enable-Mailbox : Runspace context: Executing user: domain.local/All Users/AD/Admin1,
     Executing user organization: , Current organization: , RBAC-enabled: Enabled.
    VERBOSE: [16:36:50.864 GMT] Enable-Mailbox : Beginning processing &
    VERBOSE: [16:36:50.880 GMT] Enable-Mailbox : Instantiating handler with index 0 for cmdlet extension agent "Query Base
    DN Agent".
    VERBOSE: [16:36:50.880 GMT] Enable-Mailbox : Instantiating handler with index 1 for cmdlet extension agent "Rus Agent".
    VERBOSE: [16:36:50.880 GMT] Enable-Mailbox : Instantiating handler with index 2 for cmdlet extension agent "Mailbox
    Resources Management Agent".
    VERBOSE: [16:36:50.880 GMT] Enable-Mailbox : Instantiating handler with index 3 for cmdlet extension agent "Mailbox
    Creation Time Agent".
    VERBOSE: [16:36:50.880 GMT] Enable-Mailbox : Instantiating handler with index 4 for cmdlet extension agent
    "Provisioning Policy Agent".
    VERBOSE: [16:36:50.880 GMT] Enable-Mailbox : Instantiating handler with index 5 for cmdlet extension agent "Admin Audit
     Log Agent".
    VERBOSE: [16:36:50.927 GMT] Enable-Mailbox : Current ScopeSet is: { Recipient Read Scope: {{, }}, Recipient Write
    Scopes: {{, }}, Configuration Read Scope: {{, }}, Configuration Write Scope(s): {{, }, }, Exclusive Recipient Scope(s):
     {}, Exclusive Configuration Scope(s): {} }
    VERBOSE: [16:36:50.927 GMT] Enable-Mailbox : Searching objects "domain.local/All Users/SM/GP/User1" of type
    "ADUser" under the root "$null".
    VERBOSE: [16:36:50.942 GMT] Enable-Mailbox : Previous operation run on domain controller 'VMDC01.domain.local'.
    VERBOSE: [16:36:50.974 GMT] Enable-Mailbox : Load Balance : Database container located at 'CN=Databases,CN=Exchange
    Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=DOMAIN,CN=Microsoft
    Exchange,CN=Services,CN=Configuration,DC=DOMAIN,DC=local'.
    VERBOSE: [16:36:50.974 GMT] Enable-Mailbox : Searching objects of type "MailboxDatabase" with filter
    "(&((IsExcludedFromProvisioning Equal False)(IsSuspendedFromProvisioning Equal False)(Recovery Equal False)))", scope
    "OneLevel" under the root "Databases".
    VERBOSE: [16:36:51.005 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.021 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.021 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.021 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.021 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.021 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.036 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.036 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.036 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.036 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.036 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.036 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.052 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.052 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.052 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.052 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.067 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.067 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.067 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.067 GMT] Enable-Mailbox : Comparing local site 'OLD-SITENAME' with database site 'OLD-SITENAME'.
    VERBOSE: [16:36:51.067 GMT] Enable-Mailbox : Load Balance : The search for databases returned an empty result. This
    could happen if all databases are excluded from the Load Balance process.
    VERBOSE: [16:36:51.067 GMT] Enable-Mailbox : Load Balance : There is no available database. Refer to previous verbose
    messages for more information.
    VERBOSE: [16:36:51.067 GMT] Enable-Mailbox : Admin Audit Log: Entered Handler:OnComplete.
    Load balancing failed to find a valid mailbox database.
        + CategoryInfo          : NotSpecified: (0:Int32) [Enable-Mailbox], RecipientTaskException
        + FullyQualifiedErrorId : 4AE0EA04,Microsoft.Exchange.Management.RecipientTasks.EnableMailbox
    VERBOSE: [16:36:51.083 GMT] Enable-Mailbox : Ending processing &

    Hi,
    From your description, I would like to clarify the following thing:
    By default, all online and healthy mailbox databases on Exchange 2010 servers in the local Active Directory site can be chosen by automatic mailbox distribution to store a new or moved mailbox. Mailbox databases in other AD site can't be chosen by automatic
    mailbox distribution to store a new or moved mailbox.
    What's more, I recommend you use the following cmdlet to enable mailbox and check the result.
    Enable-Mailbox -Identity xxx -Database xxx
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

Maybe you are looking for