Error while importing theme created with Eclipse theme editor

Hi,
I am facing an error when I try to import a theme I created using the Eclipse Theme Editor plug-in. I created a theme and exported it. Then  when I try to import it, I get the error that "its.zip was not found in the archive". I check the exported zip file for theme and I see that there is only one zip file inside it "portal.zip". But if I export a theme from the portal, I get three zip files inside the archive - portal.zip, its.zip and ur.zip.
Can't I use the theme I created using the plug-in in portal? Are they meant to be used in some other context? Or is there any setting to be done on the plug-in to make it generate the zip files  - its and ur ?
Thanks in advance.
Regards
Ranjith

Hi,
It is used to brand webdynpro. and its a stand alone tool.. no need of any plug ins....
This is the description I found under eclipse theme editor. its totally related to webdynpro.
SAP presents applications to users in the SAP Enterprise Portal (SAP EP). You can change user interface themes with the "Portal Theme Editor" that is part of the Enterprise System Administration role.
As some customers do not have the version of SAP Enterprise Portal that includes this Theme Editor , this version of the Theme Editor is offered as an unsupported, standalone tool from SDN.
The Eclipse Theme Editor can be used to brand Web Dynpro.
Comments and questions: Please use the Web Dynpro forum. Problems regarding the Eclipse Theme Editor reported via OSS will not be handled. As the tool comes as an unsupported version, bug fixes cannot be guaranteed in a timely fashion.
Release information: The Eclipse Theme Editor will be released for each SAP NetWeaver stack. Please note that you can only use the Theme Editor version compatible with the same version Web Dynpro (for example, the SAP NetWeaver Stack 9 Theme Editor is only compatible with SAP NetWeaver Stack 9 Web Dynpro). When you upgrade Web Dynpro to a higher stack, you must also upgrade the SAP NetWeaver Stack 9 Eclipse Theme Editor and your themes to the SAP NetWeaver stack on which your Web Dynpro applications are running.
here you can find how to edit themes in web dynpro using this eclipse theme editor..
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d2b1d790-0201-0010-25b7-d1fb059a8ad9
regards,
Pradeep

Similar Messages

  • AppBuilder :Getting Error While importing the Project to Eclipse IDE ?

    Hi Experts,
    While importing the project from AppBuilder to Eclipse IDE following error i'm getting,
    Error : Cordova Activity Cannot be resolved to a type,
    Can someone help me to solve this.
    Thanks in advance,
    Vamsi K.

    Thanks ,I have been gone through <Projection Type='System.WorkItem.Incident.ProjectionType">.
    Now i am getting many errors while importing data.I have customized fields in servicedesk and i have created same fields in scsm incident form.When i am imported
    data i am getting below error.
    Please let me know how can i import customized feilds data to SCSM without issues.
    Regards, H@ri

  • Error using an imported archive created with Eclipse

    Hi people,
    i have a strange issue, and i have no clue where to search for an answer (except here )
    In the past i used an imported archive for a java mapping in the Repository. The customers wants a change in this. I exported the imported archive, modified it in Ecplise, and imported it again. When i see the code of the imported archive, i can see my change.
    When i test my Interface Mapping, i see the result of the old settings. Somehow, the new coding is not used.
    Does this sounds familiair so someone? And/Or has anyone a good tip for me?
    Thanks in advance,
    Peter

    Try deleting and recreating ur Interface mapping.
    Also make sure u activate all objects.
    Regards,
    Prateek

  • Error while importing a table with BLOB column

    Hi,
    I am having a table with BLOB column. When I export such a table it gets exported correctly, but when I import the same in different schema having different tablespace it throws error
    IMP-00017: following statement failed with ORACLE error 959:
    "CREATE TABLE "CMM_PARTY_DOC" ("PDOC_DOC_ID" VARCHAR2(10), "PDOC_PTY_ID" VAR"
    "CHAR2(10), "PDOC_DOCDTL_ID" VARCHAR2(10), "PDOC_DOC_DESC" VARCHAR2(100), "P"
    "DOC_DOC_DTL_DESC" VARCHAR2(100), "PDOC_RCVD_YN" VARCHAR2(1), "PDOC_UPLOAD_D"
    "ATA" BLOB, "PDOC_UPD_USER" VARCHAR2(10), "PDOC_UPD_DATE" DATE, "PDOC_CRE_US"
    "ER" VARCHAR2(10) NOT NULL ENABLE, "PDOC_CRE_DATE" DATE NOT NULL ENABLE) PC"
    "TFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS"
    " 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "TS_AGIMSAPPOLOLIVE030"
    "4" LOGGING NOCOMPRESS LOB ("PDOC_UPLOAD_DATA") STORE AS (TABLESPACE "TS_AG"
    "IMSAPPOLOLIVE0304" ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE L"
    "OGGING STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEF"
    "AULT))"
    IMP-00003: ORACLE error 959 encountered
    ORA-00959: tablespace 'TS_AGIMSAPPOLOLIVE0304' does not exist
    I used the import command as follows :
    imp <user/pwd@conn> file=<dmpfile.dmp> fromuser=<fromuser> touser=<touser> log=<logfile.log>
    What can I do so that this table gets imported correctly?
    Also tell me "whether the BLOB is stored in different tablespace than the default tablespace of the user?"
    Thanks in advance.

    Hello,
    U can either
    1) create a tablespace with the same name in destination where you are trying to import.
    2) get the ddl of the table, modify the tablespace name to reflect the existing tablespace name in destination and run the ddl in the destination database, and run your import command with option ignore=y--> which will ignore all the create errors.
    Regards,
    Vinay

  • Error while importing user created packages

    Hi ,
    Complexity--- Novice
    Problem Description
    I am trying to run a simple package related program.
    The package file is perfectly compiled and stored in the required path.
    When I try to access this package from another file -- the import statement does not seem to be working.
    It reports an error. However If I use the <pacakage>.<classname> it works perfectly fine.
    I have the following files
    1) The package file : Get.java
    2) The package accessing file : Test.java
    ///////////////Get.java/////////////////////
    package get;
    public class Get
         public Get()
         public String iGet()
              return("Hello World!");
    /////////////////////Test.java/////////////////
    import get.*;
    class Test 
         public static void main(String[] args)
              Get g= new Get();     //Here instead I use get.Get g= new get.Get() it works fine
              System.out.println("Hello World!");
    ///////////////////End of Files////////////////
    /////// Compiling/////////////
    c:\packages>dir *.java    //These are the only 2 files in the directory
    10/05/2005  12:02 AM               147 Test.java
    10/04/2005  11:55 PM               125 Get.java
    c:\packages>javac -d . *.java
    .\Get.java:3: duplicate class: get.Get
    public class Get
           ^
    Test.java:7: cannot resolve symbol
    symbol  : constructor Get  ()
    location: class Get
                    Get g= new Get();
                           ^
    2 errorsI think the problem is clearly explained.
    Thanks in advance

    When the file Test.java is compiled all it needs is
    get/Get.class
    There is no need for the file Get.java to be in
    get/Get.javaI agree with these two statements and it is true that using -d will create the Get.class in the correct directory. However, it looks like you might have Get.java in the Classpath and you are using "import get.*;" in Test.java. You may be confusing the compiler because javac will automatically try to compile source code for dependent classes. I think it will work if you change the import to "import get.Get;"

  • A  classpath error while  importing a class with @page import property

    Hi ,
    I am using Tomcat contaniner for jsp applications. I have developed a page that i have import a class. when i use
    <%@ page import="myclass" &>
    i got an error that myclass not found. I have placed into tomcat\webapps\myproject\web-inf\classes directory. So How will I set the classpath for myclass to work?
    thanks.

    I was able to simulate your problem when I created a mismatch in the case of the name of the class.
    for example if my program is called MyClass.java
    and in the import I do <@page import="myclass" %>
    Are you sure about the case of class name that you are using? Please check that the file is called myclass.java the class defined inside it is called myclass and the class file that is copied into the WEB-INF/classes directory is also myclass.class. There should be no difference in the case of the names. like MyClass.java or MyclaSS.class
    Other things to check are
    1. If myclass is defined in a package then you have to import with the package.
    2. Make sure that your jsp is located in the myprojects directory and the class file is copied under myprojects/WEB-INF/classes.
    Let me know if things still don't work
    regards,
    Abhishek.

  • Error while importing data into Oracle 11gr2 with arcsde 9.3.1

    I am getting error while importing the data into oracle 11g r2. We are using arcsde 9.3.1
    It seems to be having some problem with spatial index creation.
    kindly help
    IMP-00017: following statement failed with ORACLE error 29855:
    "CREATE INDEX "A3032_IX1" ON "DGN_POLYLINE_2D" ("SHAPE" ) INDEXTYPE IS "MDS"
    "YS"."SPATIAL_INDEX""
    IMP-00003: ORACLE error 29855 encountered
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial index: index build failed
    ORA-13249: Error in spatial index: [mdrcrtxfergm]
    ORA-13249: Error in spatial index: [mdpridxtxfergm]
    ORA-13200: internal error [ROWID:AAAT5pAA9AACIy5AAQ] in spatial indexing.
    ORA-13206: internal error [] while creating the spatial index
    ORA-13033: Invalid data in the SDO_ELEM_INFO_ARRAY in SDO_GEOMETRY object
    ORA-06512: at "MDSYS

    Guys,
    I am also getting the same error and also my issue is like I am not even to analyze for which indexes I am getting error. It does not hve any indx name before error.
    Processing object type DATABASE_EXPORT/SCHEMA/TABLE/INDEX/DOMAIN_INDEX/INDEX
    ORA-39083: Object type INDEX failed to create with error:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial index: index build failed
    ORA-13249: Error in spatial index: [mdrcrtxfergm]
    ORA-13249: Error in spatial index: [mdpridxtxfer]
    ORA-29400: data cartridge error
    ORA-12801: error signaled in parallel query server P000
    ORA-13249: Error in spatial index: [mdpridxtxfergm]
    ORA-13200: internal error [ROWID:AA
    ORA-39083: Object type INDEX failed to create with error:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial index: index build failed
    ORA-13249: Error in spatial index: [mdrcrtxfergm]
    ORA-13249: Error in spatial index: [mdpridxtxfer]
    ORA-29400: data cartridge error
    ORA-12801: error signaled in parallel query server P002
    ORA-13249: Error in spatial index: [mdpridxtxfergm]
    ORA-13200: internal error [ROWID:AA
    ORA-39083: Object type INDEX failed to create with error:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial index: index build failed
    ORA-13249: Error in spatial index: [mdrcrtxfergm]
    ORA-13249: Error in spatial index: [mdpridxtxfer]
    ORA-29400: data cartridge error
    stack cnt....
    How can I find for which indexes it is failing?
    Thank you,
    Myra

  • Error while importing WSDL file created in JDeveloper inside BS

    Hi All,
    I am facing error while importing WSDL of the DBAdapter service created using JDeveloper inside my business service in OSB.
    The error in OSB is 'The Resource Mapped Does not exist'

    Which version of OSB are you using? You need to upload schema (.xsd) files as well. WSDL has references to that schema(s) but they are not uploaded hence this error. On sbconsole, if you click on a WSDL name to see it, a button comes with name "Edit References". Click that to point to the xsd's you uploaded.
    Regards,
    Anuj

  • Get error while invoking a page with "create"

    I get this error while invoking a page with "create". Also please any one tell me where is the log file is place to see the full story.
    ]] Root cause of ServletException.
    javax.el.PropertyNotFoundException: Target Unreachable, 'Comments' returned null
         at com.sun.el.parser.AstValue.getTarget(AstValue.java:88)
         at com.sun.el.parser.AstValue.isReadOnly(AstValue.java:126)
         at com.sun.el.ValueExpressionImpl.isReadOnly(ValueExpressionImpl.java:230)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:400)
         at oracle.adfinternal.view.faces.renderkit.rich.FormElementRenderer.renderAsElement(FormElementRenderer.java:199)
         Truncated. see log file for complete stacktrace
    If i use a "create button then it does not throw error.
    Please help.

    When you are invoking your page, does your view object has an empty row where data can go and presist?
    Create a an empty row in your view object(vo.createRow()) , or use create operation from data control palette.
    You can set the log in Tools->Preferences-->Environment-->Log.
    Regards,
    Vikram

  • Error while import PAR with schedule task

    Hi everybody
    I've the following error while import a new PAR with schedule task in Portal NW04s
    Inner Stack is:
    Unable to lock the local configuration to run import "import_it.tsf.pld.cercapersone.updateadgruppofs.st.prjconfig_config_fwk_service_4692550,4692550_(ready)".
    System error is "LockConfigException: Configuration framework system error: "configuration-lock-service overloaded: cannot acquire central-lock file for config://local"".
    Inner Stack is:
    LockConfigException: Configuration framework system error: "configuration-lock-service overloaded: cannot acquire central-lock file for config://local"
    at com.sapportals.config.fwk.data.ConfigLockManager.lockWithDependent(ConfigLockManager.java:507)
    thanks in advance

    Hi Ram,
    I've encountered the problem only on productive instance with offline deployment (Scheduler Tasks reinitialize CRT). Before a restart I have to make sure it works.
    thanks for your help!
    Gennaro

  • Import Error: The document was created with an unsupported version of Word.

    This is the message I get when opening up a Word doc from a cross-country client:
    *Import Error*
    The document was created with an unsupported version of Word.
    Unfortunately, he's out of touch for the next week so I have no idea which version he is using...although a look using BBEdit reveals this in the footer of the doc: Microsoft Word for Windows.
    Is there a list of supported and unsupported versions of Word, so I can be prepared for my next encounter with this message?
    Message was edited by: Alan Bucknam

    If you can open it up, is the formatting of great importance, or is it just the information you need? If its info, copy from BBEdit and paste into your Pages doc. Sometimes you can open it in text edit and then save as a different format. (I think its text edit, one of the OSX word processors opens word docs ok.)
    Sorry, this also appears as a problem in Numbers (believe it or not, its also a problem with Office 2007 for windows too). The explanation gets a bit complicated, but there are so many variations of how a M$ document is created. (not all docs are made by M$ products remember, but exported from other programs on different systems, even if it says "Word for windows").
    Because of the varied amount of things that can be wrong (that M$ products seem to overlook, or fill in the gaps that would normally cause an error), there is no hard list of non-compatible versions.
    This is just as we ( a bunch of nerds here and around the web), have found out from experimenting with different versions and such.
    hope this helps and hope the copy paste or save as works for you.

  • XPRA_EXECUTION error while importing Support stack 8 in Solution manager 4

    We have installed Solution managr 4.0 on Windows 2003 OS. We are trying to inport support stack 8, but we are getting the XPRA_EXECUTION error while importing SAPKW70009. Following is the error log
    Short text
    Syntax error in program "CL_RSOBJS_TYPE_MANAGER========CP ".
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLRSVERS" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program
    "CL_RSOBJS_TYPE_MANAGER========CP " in include
    "CL_RSOBJS_TYPE_MANAGER========CM00G " in
    line 1:
    "Method "GET_TEXT_OF_SEARCH_ATTRIBUTE" does not exist. There is, howeve"
    "r a method with the similar name "GET_SEARCH_ATTRIBUTES"."
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    What can you do?
    Please eliminate the error by performing a syntax check
    (or an extended program check) on the program "CL_RSOBJS_TYPE_MANAGER========CP
    You can also perform the syntax check from the ABAP Editor.
    If the problem persists, proceed as follows:
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    The following syntax error was found in the program
    CL_RSOBJS_TYPE_MANAGER========CP :
    "Method "GET_TEXT_OF_SEARCH_ATTRIBUTE" does not exist. There is, howeve"
    "r a method with the similar name "GET_SEARCH_ATTRIBUTES"."
    We have tried clearing the queue and restarting the import but it does not work.
    Can anyone please help us with the same.

    Please, i need help. I have a problem when importing SAPKB62030 on phase XPRA_EXECUTION. This is the error:
      The import was stopped, since an error occurred during the phase          
      XPRA_EXECUTION, which the Support Package Manager is unable to resolve    
      without your input.                                                                               
    After you have corrected the cause of the error, continue with the        
      import by choosing Support Package -> Import queue from the initial       
      screen of the Support Package Manager.                                                                               
    The following details help you to analyze the problem:                                                                               
    -   Error in phase: XPRA_EXECUTION                                                                               
    -   Reason for error: TP_STEP_FAILURE                                                                               
    -   Return code: 0008                                                                               
    -   Error message: OCS Package SAPKB62030, tp step R, return code     
              0008                                                                               
    What can i doing?

  • Error while importing music in iMovie 11 From itunes 10

    Error while importing music in iMovie 11
    I have the same error explained in a other post which was still left unanswered
    I have this sound problem after reorganising folders by itunes, i tried to delete al files in itunes and also
    deleted the xml file in the itunes dir, created new playlists, but still i have no music sound in imovie timeline
    after dragging a mp3 into it. When i preview the file in imovie it souds ok.
    Also i see the red dot with the number 1 in the itunes logo while dragging the mp3.
    Is there a solution for this problem?
    Former post;
    Re: Error while importing music in iMovie 09 from iTunes 09
    Posted: Jul 24, 2010 8:08 AM   in response to: vincentplaces  
    I'm having the exact same issue, but still haven't figured out what it is. I note that at the top of this thread it indicates that there are two "helpful" entries and one "solved" entry, but I can't find the solved one, so maybe someone will repost it here or kindly link to it.
    There is one icon missing though.
    As I read through the excellent tutorial at http://www.kenstone.net/fcphomepage/imovie_09stone.html I scroll down to the point where he talks about dragging music in from iTunes, which is what I'm trying to do. I can see, in his screen shot, the extra little icon that is a red oval and a white "1" in it. I don't get that icon when I am trying to drag my music into the video. I do get the green and white plus icon when I try to drag my music in. Also I DO get BOTH the red 1 and the green plus when I try dragging in a sound effect, which I can do with no problem. But why not the music?
    I've been able to drag in music with no problem in other productions, so I can't figure out what is going on with this one. I'm sure there is a setting somewhere that got flipped, but I can't figure out where.
    In desperation I also tried adding an extra title slide at the end of my video just to make sure there is more video time than music time in the production, but that didn't help at all.
    Any help guys?
    iMac 27"   Mac OS X (10.6.4)    

    Hi
    Due to some kind of copy protection in iTunes - I don't copy directly from this in iMovie
    to my projects. (Most often the result of doing it in iMovie is a DVD without any sound)
    I do
    • In iTunes - collect needed audio into a new Playlist
    • then burn this out as an Audio-CD .aiff (NOT .mp3)
    • This CD I copy into a folder on my Mac (often containing other material that's connected to the project)
    • And then I drag and drop these .aiff files into my movie project in iMovie.
    This works Greatly and even more so when I do my DVD.
    Yours Bengt W

  • Error while importing a table index.

    Hi,
    We are facing a problem while importing an index to the production region. Below are the details.
    1. A secondary index was created on standard SAP table ILOA in DEV region.
    2. The Index was successfully moved to the Quality system, without any glitches.
    3. Due to some issue (releated to testing, for which we had to revert back the changes), we had to delete the index on ILOA in the DEV region. The transports were moved to the PPD region and hence, the index on ILOA was deleted in PPD also.
    4. Once the issue related to testing was resolved, we again created an index on the table ILOA and moved it to PPD.
    All these 4 mentioned steps happened successfully and in PPD there was no error while importing the transports.
    But, while moving the above transports to the Production region, there was an error :
    "Index ILOA~Y could not be activated
    (E - No index ILOA~Y found with status M)"
    Please note that Y is the name of the index that was created on the table ILOA.
    The error code that we have got is "8".
    Can anyone please shed any light on what the issue is?? WE cannot re-import the transports in to Production without analysing this issue,because our client doesnt permit that.
    Thanks and eagerly awaiting a kind reply.
    Regards,
    Raghavendra.

    You've three transports - one to create the index, one to delete, and one to recreate.  It could be that the the third one tried to run before the database had finished with the second?
    Have you looked on SE14 for the actual status on production of the index?
    matt

  • MII 14.0 SP4 :Migration error while importing SAP BM Templates

    Hi Experts,
    I am facing some migration errors while importing SAP Batch Manufacturing Templates into MII 14.0 SP4.
    There are almost 23 transactions which are not getting imported and the error message for all of them is-
    "Unable to migrate transaction Unable to import file
    <Name of the Transaction>"
    Any first hand experiences will be really helpful for me to proceed further.
    Regards,
    Muddassar Khan

    Hi All,
    Got the solution. The STARTUP.BAT file is been placed in the installation directory(usr/sap) and then it works fine. Also I have installed the patches and all working fine.
    Any way thanks for the answer christian libich.
    Regards
    G.Partheeban

Maybe you are looking for