PAR 7.0 to 7.4 in PAR Migration Tool was not working properly.

Dear All,
As we are migrating form EP 7.0 to EP 7.4 .This process we are Using the PAR Migration Tool .
we referred this url  http://help.sap.com/saphelp_nw73/helpdata/en/5d/43050b08ff42a796b2e466f4210ee0/content.htm
in this process we are unable to upload the PAR files that to not displaying the Error/warnings also.That to par file path also very less we are given. Or there is any other process?
Please any one can help this ASAP.
Thanks in advance,
Durga Rao.

Dear All,
i was refered this link and my problem is solved.
unble to convert PAR file to EAR
Thanks,
Durga Rao.

Similar Messages

  • File copy in KM not working from a par file.

    Hi Experts,
                      We created a par file which will copy a file from a folder and copy this onto a seperate folder under the same parent folder. This applications works well on testing system, but is not working when deployed to the portal server where it supposed to work.
    Please give your thoughts and your valuable suggestions on this issue.
    Thanks in advace
    Sateesh

    Hi Raghu,
                   What is CM system and where it needs to be added.
    I am copying the code please check and give your valuable inputs.
    import java.util.Properties;
    import com.sap.tc.logging.FileLog;
    import com.sap.tc.logging.Severity;
    import com.sap.tc.logging.TraceFormatter;
    import com.sapportals.wcm.repository.CopyParameter;
    import com.sapportals.wcm.repository.ICollection;
    import com.sapportals.wcm.repository.ICopyParameter;
    import com.sapportals.wcm.repository.IResourceList;
    import com.sapportals.wcm.repository.ResourceContext;
    import com.sapportals.wcm.repository.ResourceFactory;
    import com.sapportals.wcm.service.scheduler.ISchedulerTask;
    import com.sapportals.wcm.util.uri.RID;
    import com.sapportals.wcm.util.usermanagement.WPUMFactory;
    public class archiveContent implements ISchedulerTask {
         private static final com.sap.tc.logging.Location logger =
              com.sap.tc.logging.Location.getLocation("KMScheduler");
      public void run( String id, Properties properties ) {
         // implement the tasks to be scheduled
         logger.setEffectiveSeverity(Severity.ALL);
         FileLog mFile1 = new FileLog("/usr/sap/EPD/JC00/j2ee/cluster/server0/log/KMScheduler/reportArchiver.log",10485760,5,new TraceFormatter("%d %m"));
         logger.addLog(mFile1);
         String Filename=null;
         int flag=0;
         logger.infoT("Entering Archive Application try block");
         try{
         com.sapportals.portal.security.usermanagement.IUser epUser = WPUMFactory.getServiceUserFactory().getServiceUser("cmadmin_service");
         ResourceContext ctx = new ResourceContext(epUser);
    //     Get the path of the bi-broadcast (start) folder and create a resource
         //RID birid = RID.getRID("/bi-broadcast");
         RID birid = RID.getRID("/documents/KMScheduler_test");
    //     Create resource holding the contents of the bi-broadcast/top level folder
         com.sapportals.wcm.repository.IResource bires= ResourceFactory.getInstance().getResource(birid,ctx);
         if(bires!=null)
    //          Create a collection of the bi-broadcast resource and get the child resources i.e. Categories
              ICollection categorycollection=(ICollection)bires;
              IResourceList categorylst= categorycollection.getChildren();                                             
              com.sapportals.wcm.repository.IResource categoryres = null;
              if(categorylst!=null)
                   for(int i=0;i<categorylst.size();i++)
                        categoryres = categorylst.get(i);
    //                    Check if the Category is Template. if it is do not enter the loop
                        //if(!categoryres.getName().equalsIgnoreCase("Template"))          
    //                         Get the path of the Category folder
                             //RID categoryrid = RID.getRID("/bi-broadcast/"+categoryres.getName());
                             //RID categoryrid = RID.getRID("/documents/KMScheduler_test/bi_reports/"+categoryres.getName());
                             //logger.infoT("Folder ""\"/documents/KMScheduler_test/bi_reports/"categoryres.getName()+"\" detected");
                             if(categoryres!=null)
    //                              Create a collection of the Category resource and get the child resources i.e. Area      
                                  ICollection areacollection=(ICollection)categoryres;
                                  IResourceList arealst= areacollection.getChildren();                                                            
                                  com.sapportals.wcm.repository.IResource areares = null;     
                                  if(arealst!=null)
                                       for(int j=0;j<arealst.size();j++)
                                            areares=arealst.get(j);
                                            Filename=areares.getName();                              
    //                                        Get the path of the Area folder
                                            RID arearid = RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"+areares.getName());
                                            logger.infoT("Folder ""\"/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()+"\" detected");
                                            if(areares!=null)
    //                                             Create a collection of the Area resource and get the child resources i.e. Region
                                                 ICollection regioncollection=(ICollection)areares;
                                                 IResourceList regionlst= regioncollection.getChildren();                                        
                                                 com.sapportals.wcm.repository.IResource regionres = null;     
                                                 if(regionlst!=null)
                                                      for(int k=0;k<regionlst.size();k++)
                                                           regionres=regionlst.get(k);
                                                           Filename=regionres.getName();
    //                                                       Get the path of the Region folder
                                                           RID regionrid = RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"+regionres.getName());
                                                           logger.infoT("Folder ""\"/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()+"\" detected");
                                                           if(regionres!=null)
    //                                                       Create a collection of the Region resource and get the child resources i.e. File
                                                                ICollection filecollection=(ICollection)regionres;
                                                                IResourceList filelst= filecollection.getChildren();                                             
                                                                com.sapportals.wcm.repository.IResource fileres = null;     
                                                                if(filelst!=null)
                                                                     for(int l=0;l<filelst.size();l++)
                                                                          fileres=filelst.get(l);
    //                                                                      Check if the file is Archive or Special. if it is don not move it to Archive
                                                                          if(!fileres.getName().equalsIgnoreCase("Archive"))
                                                                               if(!fileres.getName().equalsIgnoreCase("Special"))
                                                                                    flag=1;
    //                                                                                Get the path of the File in the region folder
                                                                                    RID filerid = RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Archive/"+fileres.getName());
                                                                                    logger.infoT("File ""\"/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Archive/"fileres.getName()+"\" detected");                                                                                                              
    //                                                                                Move one child at a time to the Archive folder
                                                                                    ICopyParameter cp=new CopyParameter(true);
                                                                                    fileres.move(filerid,cp);
                                                                                    logger.infoT("Archiving file \""fileres.getName()" from folder /documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"\"");
                                                                               else if(fileres.getName().equalsIgnoreCase("Special"))
                                                                                    RID ar_analysisrid=RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Special");
                                                                                    ICollection aranaylsiscollection=(ICollection)fileres;
                                                                                    IResourceList aranalysislst= aranaylsiscollection.getChildren();                                             
                                                                                    com.sapportals.wcm.repository.IResource aranalysisres = null;
                                                                                    if(aranalysislst!=null)
                                                                                         for(int m=0;m<aranalysislst.size();m++)
                                                                                              aranalysisres=aranalysislst.get(m);
                                                                                              if(!aranalysisres.getName().equalsIgnoreCase("Archive"))
                                                                                                        flag=1;
    //                                                                                                    Get the path of the File in the region folder
                                                                                                        RID arfilerid = RID.getRID("/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Special/Archive/"+aranalysisres.getName());
                                                                                                        logger.infoT("File ""\"/documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Special/Archive/"aranalysisres.getName()+"\" detected in Special folder");
    //                                                                                                    Move one child at a time to the Archive folder
                                                                                                        ICopyParameter cp=new CopyParameter(true);
                                                                                                        aranalysisres.move(arfilerid,cp);
                                                                                                        logger.infoT("Archiving file \""fileres.getName()" from folder /documents/KMScheduler_test/"categoryres.getName()"/"areares.getName()"/"regionres.getName()"/Special/Archive/"aranalysisres.getName()"\"");
    Edited by: Jabi123 on Jan 17, 2011 7:13 AM

  • Me han robado mi macbook, puedo hacer algo para rastrearla, encontrarla o reportarla a apple para que la bloqueen?

    Me han robado mi macbook, puedo hacer algo para rastrearla, encontrarla o reportarla a apple para que la bloqueen?

    Tengo el mismo problema, ojala lo resuelvas y me pases e tip, hare lo mismo si consigo una solución.

  • Saludos, es muy importante para mi saber si pagamos una licencia para empresa, cuantos equipos pueden utilizar la suite CC al mismo tiempo? Gracias por su ayuda.

    Saludos, es muy importante para mi saber si pagamos una licencia para empresa, cuantos equipos pueden utilizar la suite CC al mismo tiempo? Gracias por su ayuda.

    prueba completando el formulario, creo que los paquetes son a medida
    Adobe | Solicitar una consulta

  • EP5.0 Custom .par File Does Not Work in EP6.0 SP2

    I have a .par file called CustomerSearch.par that is used in EP5.0, and I am now trying to get this .par file to work in EP6.0 SP2.  I noticed the directory structure changes, so my .par structure is this:
    CustomerSearch.par
    -->  portal-inf
    portalapp.xml
    lib
    CustomerSearch.jar
    TableViewExample.class
    pagelet
    TableView.jsp
    I am getting the following error in the portal console logs when I try to access the component after I have uploaded the CustomerSearch.par file.  Does anyone have any suggestions?
    Error Message
    Jan 26, 2005 4:23:50 PM # Client_Thread_34 Fatal Exception ID:04:23_26/01/05_0019
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Resource
    Component : CustomerSearch.TableViewExample
    Component class : TableViewExample
    User : testUser
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:858)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:389)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:462)
    at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:88)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:226)
    at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:109)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:135)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:209)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:576)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:669)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:208)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:532)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:415)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(InvokerServlet.java:126)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServlet.java:149)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServlet(ServletsAndJspImpl.java:833)
    at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(RequestAnalizer.java:665)
    at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:312)
    at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)
    at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1229)
    at com.inqmy.core.service.context.container.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:36)
    at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: PortalComponentException
    at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:123)
    at com.sapportals.portal.prt.core.broker.JSPComponentItem.compileJSP(JSPComponentItem.java:224)
    at com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:86)
    at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:338)
    at com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:817)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:385)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:462)
    at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:88)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:226)
    at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:109)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:135)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:209)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:576)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:669)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:208)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:532)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:415)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(InvokerServlet.java:126)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServlet.java:149)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServlet(ServletsAndJspImpl.java:833)
    at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(RequestAnalizer.java:665)
    at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:312)
    at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)
    at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1229)
    at com.inqmy.core.service.context.container.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:36)
    at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Caused by: com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException: D:/usr/sap/EPD1/j2ee/j2ee_22/cluster/server/services/servlet_jsp/work/jspTemp/irj/root/WEB-INF/portal/portalapps/CustomerSearch/work/pagelet/_sapportalsjsp_TableView.java:39: cannot resolve symbol
    symbol : class MyBean
    location: package TableViewExample
    TableViewExample.MyBean myBeanName = null;
    ^
    D:/usr/sap/EPD1/j2ee/j2ee_22/cluster/server/services/servlet_jsp/work/jspTemp/irj/root/WEB-INF/portal/portalapps/CustomerSearch/work/pagelet/_sapportalsjsp_TableView.java:41: cannot resolve symbol
    symbol : class MyBean
    location: package TableViewExample
    myBeanName = (TableViewExample.MyBean)pageContext.getAttribute("myBeanName", PageContext.APPLICATION_SCOPE);
    ^
    D:/usr/sap/EPD1/j2ee/j2ee_22/cluster/server/services/servlet_jsp/work/jspTemp/irj/root/WEB-INF/portal/portalapps/CustomerSearch/work/pagelet/_sapportalsjsp_TableView.java:45: cannot resolve symbol
    symbol : class MyBean
    location: package TableViewExample
    myBeanName = (TableViewExample.MyBean) Beans.instantiate(this.getClass().getClassLoader(), "TableViewExample.MyBean");
    ^
    3 errors
    at com.sapportals.portal.prt.servlets_jsp.server.compiler.JavaCompiler.compileExternal(JavaCompiler.java:439)
    at com.sapportals.portal.prt.servlets_jsp.server.compiler.JavaCompiler.compile(JavaCompiler.java:539)
    at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:2140)
    at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.compile(JSPCompiler.java:76)
    at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:118)
    at com.sapportals.portal.prt.core.broker.JSPComponentItem.compileJSP(JSPComponentItem.java:224)
    at com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:86)
    at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:338)
    at com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:817)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:385)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:462)
    at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:88)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:226)
    at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:109)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:135)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:209)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:576)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:300)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:138)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:190)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:669)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:208)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:532)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:415)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(InvokerServlet.java:126)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServlet.java:149)
    at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServlet(ServletsAndJspImpl.java:833)
    at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(RequestAnalizer.java:665)
    at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:312)
    at com.inqmy.services.httpserver.server.Response.handle(Response.java:173)
    at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServerFrame.java:1229)
    at com.inqmy.core.service.context.container.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:36)
    at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
    at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    [email protected]7 #
    TableViewExample.java Code
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.ResultSetMetaData;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.Vector;
    import com.sapportals.htmlb.InputField;
    import com.sapportals.htmlb.event.Event;
    import com.sapportals.htmlb.event.TableNavigationEvent;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.htmlb.table.DefaultTableViewModel;
    import com.sapportals.htmlb.table.TableView;
    import com.sapportals.htmlb.table.TableViewModel;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent;
    import com.sapportals.portal.prt.component.*;
    public class TableViewExample extends PageProcessorComponent
         /* (non-Javadoc)
    @see com.sapportals.portal.htmlb.page.PageProcessorComponent#getPage()
         public DynPage getPage()
              return new MyDynPage();
         public class MyDynPage extends JSPDynPage
              //variables
              private int visibleRow = 1;
              public String search;
              public String state = "0";
              MyBean myBean;
              /* (non-Javadoc)
    @see com.sapportals.htmlb.page.DynPage#doInitialization()
              //Get Context and Initialize Bean
              public void doInitialization() throws PageException
                   IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
                   IPortalComponentContext myContext = request.getComponentContext();
                   IPortalComponentProfile myProfile = myContext.getProfile();
                   IPortalComponentProfile userProfile = request.getComponentContext().getProfile();
                   MyBean myBean = new MyBean();
                   myBean.setText("");
                   myProfile.putValue("myBeanName", myBean);
              /* (non-Javadoc)
    @see com.sapportals.htmlb.page.DynPage#doProcessAfterInput()
               //Called Directly After The Data Was Submitted
              public void doProcessAfterInput() throws PageException
                   //Get the Bean Object
                   IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
                   IPortalComponentContext context = request.getComponentContext();
                   IPortalComponentProfile profile = context.getProfile();
                   //Get the Account Info Input Field
                   InputField myInputField = (InputField) getComponentByName("account_input");
                   if( myInputField != null )
                        search = myInputField.getValueAsDataType().toString();
                   myBean = (MyBean) profile.getValue("myBeanName");
                   myBean.setAccount(search);
                   myBean.MyBeanModel();
                   state = myBean.state;
                   if( state == "1" )
                        //get the selected row / rows
                        //get the tableView by getComponentByName
                        TableView table = (TableView) this.getComponentByName("myTableView");
                        //Get the first visible row
                        int firstVisibleRow = table.getVisibleFirstRow();
                        //Get the last visible row
                        int lastVisibleRow = table.getVisibleLastRow();
                        //which of the visible rows was selected
                        StringBuffer strBuff = new StringBuffer();
                        for( int i = firstVisibleRow; i <= lastVisibleRow; i++ )
                             if( table.isRowSelected(i) )
                                  strBuff.append("Row: " + i + " : ");
              /* (non-Javadoc)
    @see com.sapportals.htmlb.page.DynPage#doProcessBeforeOutput()
              //Called Directly Before Output - Last Called Function
              public void doProcessBeforeOutput() throws PageException
                   //set the jsp to load
                   this.setJspName("TableView.jsp");
              //Called If The Navigation Event Was Send
              //The JSP has set the navigation mode byline so the user can navigate
              //line by line, page up and down, first and last entry
              public void onNavigation(Event event)
                   if( state == "1" )
                        //Navigation - get the event to recover the actual position
                        TableNavigationEvent tne = (TableNavigationEvent) event;
                        //With the event the method getFirstVariableRowAfter() can be used
                        //which gives the acutal position (after the event)
                        this.visibleRow = tne.getFirstVisibleRowAfter();
                        if( myBean != null )
                             //just for the first time, when there is no bean
                             //set the new visibleRow
                             myBean.setVisibleRow(new Integer(this.visibleRow).toString());
              public void onSendButtonClicked(Event event) throws PageException
                   IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
                   IPortalComponentContext context = request.getComponentContext();
                   IPortalComponentProfile myProfile = context.getProfile();
                   IPortalComponentProfile userProfile = request.getComponentContext().getProfile();
                   myBean = (MyBean) myProfile.getValue("myBeanName");
                   state = "1";
                   myBean.setState("1");
                   myProfile.putValue("myBeanName", myBean);
         public class MyBean
              //Properties
              public DefaultTableViewModel model;
              private String visibleRow = "1";
              private String text;
              private String account;
              private String state = "0";
              private String searchType;
              //get/set account
              public void setAccount(String account)
                   this.account = account;
              public String getAccount()
                   return this.account;
              //get/set state
              public void setState(String state)
                   this.state = state;
              public String getState()
                   return this.state;
              //get/set model
              public void setModel(DefaultTableViewModel model)
                   this.model = model;
              public TableViewModel getModel()
                   return this.model;
              //get/set Text for status messages
              public void setText(String text)
                   this.text = text;
              public String getText()
                   return this.text;
              //get/set VisibleRow for tableView
              public void setVisibleRow(String visibleRow)
                   this.visibleRow = visibleRow;
              public String getVisibleRow()
                   return this.visibleRow;
              //get/set SearchType
              public void setSearchType(String searchType)
                   this.searchType = searchType;
              public String getSearchType()
                   return this.searchType;
              //Create Table View Model
              public void MyBeanModel()
                   model = this.createNewTable(model);
                   //Set Table Text
                   if( model.getRowCount() > 0 )
                        this.setText("Customer Information Found For: " + this.getSearchType());
                   else
                        this.setText("No Records Found For Account: " + this.getAccount());
              //Create Data For A DefaultTableViewModel By Using Vector
              private DefaultTableViewModel createNewTable(DefaultTableViewModel model)
                   //Get a vector with a filled up data array
                   Vector data = null;
                   try
                        data = doGet();     
                   catch( ClassNotFoundException e )
                        e.printStackTrace();
                   //Get a new vector for the titles
                   Vector colName = new Vector();
                   colName.addElement("NUMBER");
                   colName.addElement("CUSTOMER NAME");
                   colName.addElement("PHONE");
                   colName.addElement("STREET");
                   colName.addElement("CITY");
                   colName.addElement("STATE");
                   colName.addElement("ZIP");
                   model = new DefaultTableViewModel(data, colName);
                   return model;
              //Method will execute SQL string with search parameter on the database
              public Vector doGet() throws ClassNotFoundException
                   Statement stmt = null;
                   Vector myVector = new Vector();
                   try
                        //Load the sun jdbc-odbc bridge driver
                        DriverManager.registerDriver (new oracle.jdbc.OracleDriver());
                        String dbUrl = "jdbc:oracle:oci8:@testX003";
                        Connection con = DriverManager.getConnection(dbUrl, "test", "test");
                        //Create a statement to submit SQL statements to the driver
                        stmt = con.createStatement();
                        String query = "select PAYER_NUM, PAYER_CUST_NAME, PAYER_PHONE_NUM_1 " +
                                          "PAYER_STR_ADDR, PAYER_CITY_NAME, PAYER_ST_ABBR, PAYER_ZIP_CD " +
                                          "from CUST_PAYER where PAYER_NUM = " + this.getAccount() + "";
                        this.setSearchType("Payer Search");
                        ResultSet rs;
                        rs = stmt.executeQuery(query);
                        ResultSetMetaData rsmd = rs.getMetaData();
                        //Get number of columns
                        int numCols = rsmd.getColumnCount();
                        if( numCols == 0 )
                             query = "select SLDTO_NUM, SLDTO_CUST_NAME, SLDTO_PHONE_NUM_1 " +
                                       "SLDTO_STR_ADDR, SLDTO_CITY_NAME, SLDTO_ST_ABBR, SLDTO_ZIP_CD " +
                                       "from CUST_PAYER where SLDTO_NUM = " + this.getAccount() + "";
                             this.setSearchType("SoldTo Search");
                             rs = stmt.executeQuery(query);
                        myVector = createData(rs);
                        //Close ResultSet
                        rs.close();
                        //Close Statement
                        stmt.close();
                        //Close Connection
                        con.close();
                   catch( SQLException ex)
                        this.account = ex.getMessage();
                   return myVector;
              //This method pulls the database selection results and places them into vectors
              private Vector createData(ResultSet res) throws SQLException
                   //Get the metadata infro
                   ResultSetMetaData rsmd = res.getMetaData();
                   //Get number of columns
                   int numCols = rsmd.getColumnCount();
                   String checkVal;
                   //Loop through the result set and load rows of data into Vector
                   Vector dataVec = new Vector();
                   Vector retVector = new Vector();
                   int k = 0;
                   while( res.next() )
                        k++;
                        for( int i = 1; i

    Hi Bernhard,
    nice to hear that we resolve the problem
    > Karstens answer solved my base problem,
    > Detlevs answer lead into the right direction.
    Not that I've that need for points...
    It's just the question why my answer (if you follow the link, my answer was: delete two lines, from which one is essential to be deleted) only "lead into the right direction"... In fact, it solved the base problem, I would claim for me
    To give the technical background: If your write
    <property name="ComponentType" value="jspnative"/>
    the portal runtime expects a component consisting of a native JSP; the second directive -
    <property name="JSP" value="pagelet/InitialPage.jsp"/>
    - for this case tells where to find this JSP. So if you delete the first line, <i>at least</i> the second line has no sense anymore. To clean up such a portalapp.xml, it just makes sense also to delete the second line.
    Best regards
    Detlev

  • PAR Example from SAP site is not working

    Hi Experts,
    I downloaded a par file com.sap.netweaver.bc.rf.explorer.par from the following URL:
    <a href="https://media.sdn.sap.com/html/submitted_docs/nw_kmc/examples/com.sap.netweaver.bc.rf.explorer.par">https://media.sdn.sap.com/html/submitted_docs/nw_kmc/examples/com.sap.netweaver.bc.rf.explorer.par</a>
    Deployed this PAR Project into the Netweaver Developer Studio.
    I uploaded the PAR to the Server by clicking on the "Quick PAR Upload" menu.
    Then i opened the portalapp.xml which resides under "dist>PORTAL-INF".
    In portalapp.xml i found run button in front of 5 components.
    On clicking on the any "Run" button,  browser gets invoked which displays the following exception message and errors:
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Access denied (Object(s): com.sap.portal.system/security/sap.com/NetWeaver.KMC/high_safety).
    Exception id: 06:54_27/11/07_0049_14261850
    See the details for the exception ID in the log file
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Access denied (Object(s): com.sap.portal.system/security/sap.com/NetWeaver.KMC/high_safety).
    Exception id: 07:29_27/11/07_0050_14261850
    See the details for the exception ID in the log file
    Can anybody help me out why these exceptions are coming?
    Where to find out the log files for details?
    Please help me out, i m in a big mess.

    Hi Pankaj,
    When you import a PAR file into the NWDS, the jar files in the PORTAL-INF\lib and PORTAL-INF\private\lib are not included in the import.
    You have to manually copy the concerned jar files to these folders.
    So unzip the par file and copy the jars in your project maintaining the same folder structure.
    This will solve your error.
    Regards,
    Ankit
    Reward points if helpful.

  • Par file customization (Am unable to see .par files in System Admin)

    Hi,
    Am unable to see any of .par files in  system administration->support-->portal runtime-Browse Deployment
    can any one help me.
    Thanks in advance.

    Hi Mahesh,
    Please check at System Administration >> Support >> Portal Content >> Administration Console >> Archive Deployment Checker >> Look for your deployed PAR file here.
    Hope it will helps
    Regards
    Arun Jaiswal

  • Com.sap.portal.admin.acleditor.par not deployed properly during ep install

    Hi,
    We are installing ep on top of a java add-in.
    The version of ep is sp3. After the installation when i check the pcd folder coom.portal.admin.acleditor.par is not deployed.
    Log has Fatal applciation upload failed. and there is some error which says xml declaration is not allowd here.
    When i try to access the portal page its loading for a long time and giveing page cannot be displayed.
    Portal analyzer gives clean results except for this par file.
    Please help.
    Regards
    Bharathwaj

    Hi Bharathwaj,
    > Do you think the upgradation of the this
    > to SP13 will solve the issue. ??
    No, I wouldn't advise to upgrade a really broken installation. You may give it a try, but the success probability I wouldn't expect as too high...
    > Does a EP upgrade create a clean install again..
    > or just add a few more files ???
    It deploys new portal applications and/or redeploys existing ones which have changes (bug fixed). So theoratically if a PAR is broken, a new one may be fixed; on the other hand, the installation seems to be buggy in it's kernel, in such a case, the root cause seems to be something else than "only" one failed PAR upload.
    > Is there any log file which says what are the steps
    > it had skipped..
    Beneath the default.trc to check for the portal runtime, SAPInst has it's own logs under the temporary inst dir.
    Hope it helps
    Detlev

  • Par file com.sap.portal.support.browse.par overwritten - where is original?

    This is a bit embarrassing to admit but I had some serious finger trouble here and managed to deploy a new par file with name com.sap.portal.support.browse.par. This of course fu..ed up my browsing functionality in the support area and I need to deploy the original.
    I tried to find it in my production portal, but I can't seem to be able to find the right location to download it from. Can anyone help.
    I am on portal 7.0 sps 15.
    Henning

    Hi,
    You can find com.sap.portal.support.browse.par par at ROOT/WEB-INF/deployment/temp on the portal production server. Then you can deploy it to the development system.
    Regards,
    Nikhil

  • Masthead logo changes thru PAR file(com.sap.portal.navigation.masthead.par)

    Hi all
    now i am customizing the Masthead par file by downloading the relevant par file from the server. after i intergrated the code into NWDS then i started to change the code in the headerIview.jsp in masthead.
    now i removed the design bar as well as standard SAP logo(right end) sucessfully.
    now i want to place our client in the place of design bar in the masthead.if i want to do the same where will i copy our client logo i mean in which folder in the workspace??
    and also let me know where can i change the background color of welcome area and functional areas in the masthead into white color.
    if u send with sample code then it is useful.
    always i will reward max points.
    note: i am following the masthead customization thru par file not from theme .
    dont answers to change the logo from theme in portal. i want to change thru par file.
    Regards
    Sunil

    Hi steelman
    can u also tell me how to change the background color of welcome and functional area in the masthead into white color.
    it is useful if u send the sameple code on this??
    for this color change can we change in the CSS file or in JSP file??
    if in CSS can u tell me how to do that i mean how to add that
    standard CSS file
    .activeLink {
         font-family:verdana;
         font-size:0.7em;
         cursor:pointer;
         text-decoration:none;
         color:rgb(32,75,162);
    .activeLink A:link
    .activeLink A:visited
    how to modify the above CSS code if  i want to change the background color of welcome abd fucntional area into white color??
    Regards
    Sunil;

  • Hola.Tengo dos Licencias de Lightroom 5 para mis dos ordenadores. ¿Como hago para instalar Lightroom mobile en mi smarthphone?

    Como hago para cargar Lightroom mobile en mi smartphone?

    El smartphone es de Apple, es decir usa iOS? Porque por ahora son los únicos compatibles.

  • Para ver a cual numero puedo marcar para liberar mi iphone

    para ver a cual sí puedo Marcar numero Parr Liberar mi iphone

    saludos, despues que actualice mi iphone 4s a IOS 7 no puedo activar el internet tampoco ver el balance $ de mi telefono, en mi pais para activar el internet se llama asi *111# y ver el balance *122# pero cuando marco sale como si fuera una llamada de voz, antes me salian mensajes con diferentes opciones a responder.    si alguien tiene la solucion a este problema favor ayudarme en eso
    iPhone 4S

  • Necesito alguna aplicación para poder usar el adaptador de vga para iphone 4?

    Hola, buenas noches!!
    Compre un adaptador vga para poder usar mi iphone en un cañon, lo conecto y no transmite la imagen, necesito instalar alguna aplicación?
    Saludos

    hello Angelanson, due to apple's restrictive policies it is unfortunately not possible to implement & offer independent third-party browsers for idevices.
    mozilla is prohibited to bring the rendering & javascript engine of firefox onto iOS, since apple is only allowing the use of its own webkit in the terms & conditions for developers - as long as this is the case, firefox and its addon ecosystem cannot be ported to iOS devices.
    http://www.pcmag.com/article2/0,2817,2416461,00.asp

  • IPhone 5s, Outgoing calls makes connection, no voice

    iPhone 5s - Outgoing calls makes connection, no voice.

    Just spent the morning trying to resolve this problem.  If you want good support, Apple support is not the place to go:  See the following.  My phone is working now, but the support received from Apple was of no help.
    There
    are limited places to post the following comment so here it is: Contacted apple
    support today for Iphone 5c issue (phone would not make outgoing calls,
    intermittent and when there was a connection, receiving party could not hear me
    unless I was on
    speaker. After contacting my service provider, resetting my phone and checking
    problems with service, they connected me to Apple support. Apple called me and
    gathered my information, cell number I was calling from (not my cell with
    problem). We worked through some possible issues and then she said she was
    going to call my cell to check connectivity. She proceeds to hang up on the
    call we were on and attempts to call my cell. My cell was not working properly,
    hence my call was made from a different phone. Support person can not reach me
    through my celll ( because it was not working properly) instead of contacting
    me back on the number I gave her in case we were disconnected, she leaves a
    message for me to call Apple support back to resolve the problem and she was
    going to add to the ticket that we were disconnected. Oh and she neglected to
    leave me a call back number so that didn't help much. Didn't give me a ticket
    number. I use to love apple. I guess you either love them or hate them. I now
    hate them and will tell everyone that they have the worst support I have ever
    encountered. I have seen many issues with Apple phones whenever someone updates
    their IOS as recommended. If you want anything more than sub par support I
    would suggest you go anywhere except Apple. Posting on as many social media
    sites as I can, since this is the only source I have to complain. Not that
    these complaints will be taken seriously.

  • Deceived and paying for it.

    I shouldn't be surprised. I know I shouldn't.
    My Galaxy S3 was not working properly. As in I could not make calls or send text messages 20% of the time because of what now seems to be a known issue dubbed the 'No Sim Card Error' quandary. I spoke at length with support and they were unable to resolve the issue. Eventually they said they would send a replacement device. As part of their protocol they asked if there was any damage to the device. I described to them a small hairline crack about 1/3 of an inch thick above the screen that was hardly noticeable and did not affect my user experience at all. The technician assured me that something of this nature should not warrant a charge since the device was not working properly. I made it clear that I did not want to send the device back if I was going to incur an outlandish charge. So, the replacement device was sent out.
    Several days later the replacement device had not arrived so I again phoned Verizon. I was told that the device had been sent out, and that even though I hadn't received it I may have to pay for it depending on their own assessment of the situation. Well, thankfully that didn't happen and I did end up receiving the replacement. I sent back my defective phone and went on with life. The no sim card error issue persisted even with the replacement device so I decided to live with it for the short-term.
    Now, just yesterday, to make matters worse the replacement device broke as well. The manner in which it happened makes me question if the certified 'like new' device they sent me was really up to par. Yes, they do 1000 and 1 checks on them which they will tell you over and over again. But I'm in disbelief at how easily this phone crapped out on me, and no it was not dropped.
    Today I wake up to a $299 charge for the original device I sent back contrary to what Verizon assured me of. So, they collect $299 and keep the defective phone, and here I am $530 later having never owned a properly working Galaxy S3. I take responsibility for some of this, but so should Verizon. I have been a long-time loyal customer and I have to ask myself if it's worth continuing with them.
    If the device I sent them was defective, and if the technician on the phone assured me I wouldn't be charged for a small aesthetic crack, then I should not be charged. Full stop.

    a salesperson advised they would need to get the back office to build my order.
    I was expecting a call that I never got.
    When I did call I was told that an order was created with a line activation date of 31st October. Complants said if I was not happy with the activation date I should get back to them so I did.
    Was told to wait 24 hours for a call that never came then a couple of days later (today) I get a call from a random BT agent (unaware of any case history) saying I now have an order on the system and the activation date is the 5th of November.
    Seriously what the **bleep** is going on?
    We are looking in total at a 2 month lead time and I still don't know if that order is going to fall over.
    The worst of it is that the complaints agent said I should have let the very 1st order that I was missold with the wrong call package activate and they could have amended it afterwards. Which is exactly what I suggested when they said I had to cancel but was told that was not possible as I would be held to term.
    So now I have to email bt again because they have probably closed the case and are leaning back on their chairs with happy satisfied smiles thinking they have somehow nailed this one and I am 'resolved'

Maybe you are looking for

  • I want only one Apple acct....please!

    I have 4 Apple related accounts: 2 "apple.com", 1 "daw.apple.com", 1 "secure1.store.apple.com" How can I have only one acct. for Apple,  iTunes, Cloud, etc.?

  • Looking For Free Good Tutorial To Learn SQL For 8i

    Hello all, I am looking for a free good tutorial to learn SQL for Oracle 8i. If anyone got any links or resources, kindly suggest. Thanks in advance.

  • Abap objects,java,xslt

    could u provide with links of abap,java and xslt mapping and also corresponding basic links using which i can master the  basics of abap objects ,java and xslt up to the extent what is required for mapping thanks

  • Excel changes needed from RTF Template

    Hi all, I created RTF template which it publish in excel format.I am getting correct report but here i want some Excel settings from RTF template. These all properties i want in Excel  output file which is generated from RTF. 1) Page number must be d

  • How to trigger temperature acquisition (6024E) at the start of signal generation from NI5411?

    I'd like to begin/end acquiring temperature data with the 6024E after the start/stop of the signal output from the 5411. What is the best way to accomplish this? is software or hardware triggering better?