I did not find my submitrequest id while start the GLLEZL interface from backend.

Hello experts
I have write a package to start the interface for General Ledger-Import(GLLEZL).
CREATE OR REPLACE Package body XXGL_INT_BUDGET_PKG is     PROCEDURE UPLOAD_BUDGET_JV(P_BUDGET_ID IN NUMBER) IS       lv_request_id NUMBER;       irun_id number;       errbuf          VARCHAR2(2000);     BEGIN       SELECT gl_journal_import_s.NEXTVAL       INTO irun_id       FROM DUAL;       dbms_output.put_line(irun_id);       INSERT INTO gl_interface_control       (status, set_of_books_id, je_source_name, group_id, interface_run_id)       VALUES       ('S', 1001, 'Spreadsheet', null, irun_id);       /* Launch the concurrent request */       lv_request_id         := fnd_request.submit_request(             'SQLGL',             'GLLEZL',             '',             '',             FALSE,             to_char(irun_id),             '1000',             'NO',             '',             '',             'NO',             'NO',             'Y',         chr(0),             '', '', '', '', '', '', '', '', '', '',             '', '', '', '', '', '', '', '', '', '',             '', '', '', '', '', '', '', '', '', '',             '', '', '', '', '', '', '', '', '', '',             '', '', '', '', '', '', '', '', '', '',             '', '', '', '', '', '', '', '', '', '',             '', '', '', '', '', '', '', '', '', '',             '', '', '', '', '', '', '', '', '', '',             '', '', '', '', '', '', '', '', '', '',             '');                   dbms_output.put_line('req_nu - '||lv_request_id);       IF (lv_request_id = 0) THEN         errbuf := fnd_message.get;         fnd_file.put_line(FND_FILE.Log, errbuf);         gl_message.write_log('LEZS0001');         IF (fnd_concurrent.set_completion_status('ERROR', errbuf)) THEN           NULL;         END IF;       ELSE         gl_message.write_log('LEZS0000', 1, 'REQ_ID', to_char(lv_request_id));         IF (fnd_concurrent.set_completion_status('NORMAL', NULL)) THEN           NULL;         END IF;       END IF;       IF lv_request_id = 0       THEN           UPDATE XXGP_GL_BUDGET_STG             SET attribute1 = 'ERROR IN RUNNING PAYABLE IMPORT PROGRAM',attribute2 = lv_request_id,status='ERROR'           WHERE BUDGET_ID =P_BUDGET_ID;       ELSE           UPDATE XXGP_GL_BUDGET_STG             SET attribute2 = lv_request_id, attribute1 = 'PROCESSED',status='PROCESSED'           WHERE BUDGET_ID=P_BUDGET_ID;       END IF;              end UPLOAD_BUDGET_JV;     Procedure xx_glbudget_int_prc(p_budget_id number,errbuf out varchar2,Retcode out varchar2)     is         cursor BUDGET_CUR         IS         SELECT a.BUDGET_ID,a.BUDGET_NAME,a.FIN_YEAR,a.BUDGET_FREQUENCY,a.BUDGET_TYPE,a.ORG_ID,a.BUDGET_CATG,a.BUSINESS_LINE,a.COST_CENTER,         a.BUDGET_AMOUNT,a.CREATED_BY,b.LINE_NUMBER,B.LINE_ID,         b.STATE,b.BUDGET_ACTIVITY,b.PROJECT,b.AMOUNT,b.WD_TOWN,b.CODE_COMBINATION_ID,         b.STATE_NAME,b.CODE_COMBINATION         FROM XXGPIL_BUDG_HDR a,XXGPil_budg_lines b         where a.budget_id=b.budget_id and a.budget_id=p_budget_id;         /*AND APPRVL_STATUS='Approved'*/         lv_status varchar2(50);         lv_sob_id Number(15);         lv_user_je_source_name varchar2(25);         lv_user_je_category_name varchar2(25);         lv_cur_code varchar2(15);         lv_actual_flag varchar2(1);         lv_err_flag varchar2(2);         lv_flag varchar2(2);         l_fnd_user number(15) := 5581;     BEGIN         BEGIN         for rec in budget_cur         loop         insert into XXGP_GL_BUDGET_STG(status,         set_of_books_id,User_JE_Source_name,user_je_category_name,currency_code,         actual_flag,ACCOUNTING_DATE,DATE_CREATED,CREATED_BY,entered_dr,entered_cr,         accounted_dr,accounted_cr,segment1,segment2,segment3,segment4,segment5,segment6,segment7,segment8,segment9,segment10,BUDGET_ID,LINE_ID)         values('NEW','1001','Spreadsheet','Budget','INR','A',trunc(sysdate),trunc(sysdate),rec.created_by,rec.amount,rec.amount,rec.amount,rec.amount,         rec.ORG_ID,rec.STATE,rec.BUSINESS_LINE,REC.BUDGET_ACTIVITY,REC.COST_CENTER,'000000','0000','000000','000000','00000000',REC.BUDGET_ID,REC.LINE_ID);         end loop;         END;         /* END OF INSERTING DATA FROM XXGP_BUDG_HDR AND LINES TABLE TO  XXGP_GL_BUDGET_STG TABLE */         DECLARE         CURSOR GL_CURR IS         SELECT status,         set_of_books_id,User_JE_Source_name,user_je_category_name,currency_code,         actual_flag,ACCOUNTING_DATE,DATE_CREATED,CREATED_BY,entered_dr,entered_cr,         accounted_dr,accounted_cr,segment1,segment2,segment3,segment4,segment5,segment6,segment7,segment8,segment9,segment10         FROM XXGP_GL_BUDGET_STG where status='NEW';         BEGIN             FOR rec in GL_CURR             LOOP                 lv_flag := 'A';                 lv_err_flag := 'A';                 BEGIN                 SELECT distinct Status into lv_status from XXGP_GL_BUDGET_STG Where status = 'NEW';                 EXCEPTION                 When no_data_found Then                 lv_status := null;                 lv_flag := 'E';                 lv_err_flag := 'E';                 FND_FILE.PUT_line(FND_FILE.LOG,'The status is not correct so change the status');                 FND_FILE.PUT_line(FND_FILE.LOG,'The data is inserting'|| lv_status );                 END;                 BEGIN                 SELECT set_of_books_id into lv_sob_id from gl_sets_of_books                 where set_of_books_id=rec.set_of_books_id;                 Exception                 When no_data_found Then                 lv_sob_id:=null;                 lv_flag := 'E';                 lv_err_flag := 'E';                 FND_FILE.PUT_line(FND_FILE.LOG,'The SOB is not correct change SOB ID');                 End;                 FND_FILE.PUT_line(FND_FILE.LOG,'The data is inserting'|| lv_sob_id );                 BEGIN                 SELECT user_je_source_name into lv_user_je_source_name FROM GL_JE_SOURCES                 WHERE user_je_source_name=rec.user_je_source_name;                 EXCEPTION                 WHEN no_data_found THEN                 lv_user_je_source_name := NULL;                 lv_flag := 'E';                 lv_err_flag := 'E';                 FND_FILE.PUT_line(FND_FILE.LOG,'The SOURCE NAME is not correct change It');                 END;                 FND_FILE.PUT_line(FND_FILE.LOG,'The data inserting is'|| lv_user_je_source_name );                 BEGIN                 SELECT user_je_category_name INTO lv_user_je_category_name FROM GL_JE_CATEGORIES                 where user_je_category_name=rec.user_je_category_name;                 EXCEPTION                 When no_data_found Then                 lv_user_je_category_name:=NULL;                 lv_flag := 'E';                 lv_err_flag := 'E';                 FND_FILE.PUT_line(FND_FILE.LOG,'The Category name is not correct Change it');                 FND_FILE.PUT_line(FND_FILE.LOG,'The data inserting is'|| lv_user_je_category_name );                 END;                 BEGIN                 SELECT currency_code into lv_cur_code from FND_CURRENCIES                 where currency_code=rec.currency_code;                 Exception                 When no_data_found Then                 lv_cur_code:=null;                 lv_flag := 'E';                 lv_err_flag := 'E';                 FND_FILE.PUT_line(FND_FILE.LOG,'The Currency code is not correct ');                 End;                 FND_FILE.PUT_line(FND_FILE.LOG,'The data inserting is'|| lv_cur_code);                 BEGIN                 SELECT distinct ACTUAL_FLAG into lv_actual_flag from XXGP_GL_BUDGET_STG where budget_id=p_budget_id and status='NEW'                 and actual_flag in ('A','B','E');                 Exception                 When no_data_found then                 lv_actual_flag := null;                 lv_flag := 'E';                 lv_err_flag := 'E';                 FND_FILE.PUT_line(FND_FILE.LOG,'The Flag is not correct');                 END;                 FND_FILE.PUT_line(FND_FILE.LOG,'The dat inserting is... '|| lv_actual_flag);                 IF lv_flag = 'A' THEN                 INSERT into GL_INTERFACE (                 STATUS, SET_OF_BOOKS_ID, USER_JE_SOURCE_NAME ,USER_JE_CATEGORY_NAME,                 CURRENCY_CODE,ACTUAL_FLAG,                 ACCOUNTING_DATE, DATE_CREATED,CREATED_BY, ENTERED_DR,ENTERED_CR,                 ACCOUNTED_DR,ACCOUNTED_CR,segment1, segment2, segment3, segment4, segment5)                 VALUES (                 lv_Status, lv_sob_id, lv_User_JE_Source_name, lv_user_je_category_name,                 lv_cur_code,lv_actual_flag,rec.ACCOUNTING_DATE, rec.DATE_CREATED,                 1318,rec.entered_dr, rec.entered_cr, rec.accounted_dr,rec.accounted_cr,                 rec.segment1, rec.segment2, rec.segment3, rec.segment4, rec.segment5);                 END IF;                 --call to start General-Import Journals interface--                                 lv_flag :=null;                 lv_err_flag:=null;             END LOOP;                                     UPLOAD_BUDGET_JV(p_budget_id);             --COMMIT;         END;     End; END XXGL_INT_BUDGET_PKG;
Following is the code i used to run the package:
DECLARE
L_errbuf
varchar2(240
L_Retcode
varchar2(240
XXGL_INT_BUDGET_PKG
.XX_GLBUDGET_INT_PRC(101001,L_errbuf,L_Retcode
DBMS_OUTPUT.PUT_LINE
(L_errbuf||' AND '||L_Retcode
I did not find my request in oracle applications GL responsibility.
Please help.
Thanks in advance.
Yash

Welcome to the Apple Community.
Unless you mistakenly logged into his account then the most probable explanation is that he is using your ID. As for yours not showing up, have you enabled Find my phone on your device.
The best thing to do would be to change your password, this will stop him seeing any of your information. Of course this would cause a problem for him if he is using your account since he will get locked out of using his devices when you do this. It could be interesting, he may need to admit what he's been doing and ask you to release his devices so he can use them.

Similar Messages

  • Error while starting the managed server using nodemanager

    HI ,
    I am getting the below error while starting the managed server from the Admin console. All the serverstart and the node manager proeprties looks fine.
    Below is the error in the managed server log,
    startWebLogic.sh: grep: not found
    startWebLogic.sh: uname: not found
    startWebLogic.sh: test: argument expected
    can you help me to solve the problem please. i am using weblogic 10.3.3
    thanks
    Arun

    I think you've changed and added some lines into your startWebLogic.sh script. Can you put your script here?

  • Did not find GlassFish server in Jdeveloper

    hi
    I did not find GlassFish web server in the list of web server in Jdeveloper ! how can I add this web server to the list for future use
    thanks

    Hi Timo,
    I follow the sample did by shay see link
    https://blogs.oracle.com/shay/entry/deploying_oracle_adf_applications_to
    i install adf-essentials.zip in C:\glassfish3\glassfish\domains\domain1\lib.
    I successfully deploy same application did by Mr Shay, Web EE application in the server but when I try to deploy my .war ADF web application in the server an error appears :
    Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack. Pour plus d'informations, consultez le fichier server.log.
    for more detail this is below the server.log file
    is there another thing that i have to fix it ?
    thanks for your help
    [#|2012-10-06T19:36:26.292+0400|SEVERE|glassfish3.1.2|org.apache.catalina.core.ContainerBase|_ThreadID=17;_ThreadName=Thread-2;|ContainerBase.addChild: start:
    org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:5332)
         at com.sun.enterprise.web.WebModule.start(WebModule.java:498)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:917)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:901)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:733)
         at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:2018)
         at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1669)
         at com.sun.enterprise.web.WebApplication.start(WebApplication.java:109)
         at org.glassfish.internal.data.EngineRef.start(EngineRef.java:130)
         at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:269)
         at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:301)
         at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:461)
         at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:240)
         at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:389)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:348)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:363)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1085)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$1200(CommandRunnerImpl.java:95)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1291)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1259)
         at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:214)
         at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:207)
         at org.glassfish.admin.rest.resources.TemplateListOfResource.createResource(TemplateListOfResource.java:148)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
         at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$ResponseOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:205)
         at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)
         at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288)
         at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339)
         at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer._service(GrizzlyContainer.java:182)
         at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer.service(GrizzlyContainer.java:147)
         at org.glassfish.admin.rest.adapter.RestAdapter.service(RestAdapter.java:148)
         at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
         at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:117)
         at com.sun.enterprise.v3.services.impl.ContainerMapper$Hk2DispatcherCallable.call(ContainerMapper.java:354)
         at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
         at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)
         at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)
         at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)
         at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)
         at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
         at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
         at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
         at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
         at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack
         at org.apache.catalina.core.StandardContext.addListener(StandardContext.java:2743)
         at org.apache.catalina.core.StandardContext.addApplicationListener(StandardContext.java:1966)
         at com.sun.enterprise.web.TomcatDeploymentConfig.configureApplicationListener(TomcatDeploymentConfig.java:235)
         at com.sun.enterprise.web.TomcatDeploymentConfig.configureWebModule(TomcatDeploymentConfig.java:94)
         at com.sun.enterprise.web.WebModuleContextConfig.start(WebModuleContextConfig.java:274)
         at com.sun.enterprise.web.WebModuleContextConfig.lifecycleEvent(WebModuleContextConfig.java:172)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:149)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:5329)
         ... 62 more
    Caused by: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack
         at org.glassfish.web.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1509)
         at org.glassfish.web.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1359)
         at org.apache.catalina.core.StandardContext.loadListener(StandardContext.java:4806)
         at com.sun.enterprise.web.WebModule.loadListener(WebModule.java:1599)
         at org.apache.catalina.core.StandardContext.addListener(StandardContext.java:2740)
         ... 69 more
    |#]
    [#|2012-10-06T19:36:26.294+0400|WARNING|glassfish3.1.2|javax.enterprise.system.container.web.com.sun.enterprise.web|_ThreadID=17;_ThreadName=Thread-2;|java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack
    java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:921)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:901)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:733)
         at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:2018)
         at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1669)
         at com.sun.enterprise.web.WebApplication.start(WebApplication.java:109)
         at org.glassfish.internal.data.EngineRef.start(EngineRef.java:130)
         at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:269)
         at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:301)
         at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:461)
         at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:240)
         at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:389)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:348)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:363)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1085)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$1200(CommandRunnerImpl.java:95)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1291)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1259)
         at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:214)
         at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:207)
         at org.glassfish.admin.rest.resources.TemplateListOfResource.createResource(TemplateListOfResource.java:148)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
         at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$ResponseOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:205)
         at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)
         at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288)
         at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339)
         at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer._service(GrizzlyContainer.java:182)
         at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer.service(GrizzlyContainer.java:147)
         at org.glassfish.admin.rest.adapter.RestAdapter.service(RestAdapter.java:148)
         at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
         at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:117)
         at com.sun.enterprise.v3.services.impl.ContainerMapper$Hk2DispatcherCallable.call(ContainerMapper.java:354)
         at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
         at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)
         at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)
         at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)
         at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)
         at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
         at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
         at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
         at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
         at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
         at java.lang.Thread.run(Thread.java:619)
    |#]
    [#|2012-10-06T19:36:26.305+0400|SEVERE|glassfish3.1.2|javax.enterprise.system.tools.admin.org.glassfish.deployment.admin|_ThreadID=17;_ThreadName=Thread-2;|Exception while invoking class com.sun.enterprise.web.WebApplication start method
    java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack
         at com.sun.enterprise.web.WebApplication.start(WebApplication.java:138)
         at org.glassfish.internal.data.EngineRef.start(EngineRef.java:130)
         at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:269)
         at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:301)
         at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:461)
         at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:240)
         at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:389)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:348)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:363)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1085)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$1200(CommandRunnerImpl.java:95)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1291)
         at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1259)
         at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:214)
         at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:207)
         at org.glassfish.admin.rest.resources.TemplateListOfResource.createResource(TemplateListOfResource.java:148)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
         at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$ResponseOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:205)
         at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)
         at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288)
         at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)
         at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
         at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469)
         at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349)
         at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339)
         at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer._service(GrizzlyContainer.java:182)
         at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer.service(GrizzlyContainer.java:147)
         at org.glassfish.admin.rest.adapter.RestAdapter.service(RestAdapter.java:148)
         at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
         at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:117)
         at com.sun.enterprise.v3.services.impl.ContainerMapper$Hk2DispatcherCallable.call(ContainerMapper.java:354)
         at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)
         at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)
         at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)
         at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)
         at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)
         at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
         at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
         at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
         at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
         at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
         at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
         at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
         at java.lang.Thread.run(Thread.java:619)
    |#]
    [#|2012-10-06T19:36:26.307+0400|SEVERE|glassfish3.1.2|javax.enterprise.system.core.com.sun.enterprise.v3.server|_ThreadID=17;_ThreadName=Thread-2;|Exception while loading the app|#]
    [#|2012-10-06T19:36:26.342+0400|SEVERE|glassfish3.1.2|javax.enterprise.system.tools.admin.org.glassfish.deployment.admin|_ThreadID=17;_ThreadName=Thread-2;|Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack|#]
    [#|2012-10-06T19:36:26.603+0400|INFO|glassfish3.1.2|org.glassfish.admingui|_ThreadID=19;_ThreadName=Thread-2;|Une exception s'est produite :Erreur lors du déploiement : Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: java.lang.ClassNotFoundException: oracle.bc4j.mbean.BC4JConfigLifeCycleCallBack. Pour plus d'informations, consultez le fichier server.log.|#]
    Edited by: fakhri_tn on Oct 6, 2012 8:51 AM
    Edited by: fakhri_tn on Oct 6, 2012 8:55 AM

  • There is a bug in firefox that wants me to install programs every time I open firefox. How do I get it cleaned off. AVG Security did not find it.

    Every time I start firefox there is another page in the backround that starts up and wants me to install software. I have updated to the newest firefox and latest AVG security software and scanned my whole computer and this bug is hid some where. I have scanned with firefox up and running and with it not running and did not find it. How can I get rid of it?
    Running windows vista service pack 2 64 bit .

    What software does it want you to load? '''Mozilla.org''' installer programs
    only install Firefox, nothing else. If you did not get the program from
    '''Mozilla.org''', it may be an altered program from someone else.<BR><BR>
    That may be an update message from a program you already have. Please
    send a screen shot if you can.
    =====================================================
    Whenever you get a message / popup that software / files need to be updated,<br><br>
    <u>'''''DO NOT USE ANY OF THE PROVIDED LINKS'''''</u>.<br><br>
    While this may be a legitimate message, it could also be <u>'''''Malware or a Virus'''''</u>.
    Any time you want or need to check for upgrades,
    go to the web site of the <u>'''''True Owner'''''</u> of the program in question.
    For example, to check out Firefox, go to '''''[https://www.mozilla.org Mozilla.org]'''''.
    =====================================================
    In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see [[How do I create a screenshot of my problem?]]
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    Thank you!

  • Messages linked to perf degradation : 'ignoring message from a previous generation' and 'got heartbeat...but did not find reference'

    Hi,
    We are facing a problem which implies bad response time from the WL server.
    Our configuration is : Sun E4500, Solaris2.6, Oracle 7.3.4, WL oci driver,
    no perf pack, Javasoft 1.1.7B_05 vm on server side and IBM 1.1.7B on client
    side (W98 clients).
    When multiple users connect to the server (let's say from 15 simultaneous
    connections) and work on our application, after few mins, the server process
    logs and outputs tons of messages like :
    Mon Nov 15 16:12:26 GMT 1999:<E> <RJVM> Ignoring message from a previous
    generation: JVMMessage from 8803290290807054313C146.100.8.34
    to -6807808847876022584C146.100.100.84 with CMD_ONE_WAY, prtNum=5, ack=30,
    seqNum=3151
    and
    Got heartbeat for -6807808847876022584/-1838914476/0/9209 but did not find
    reference
    Got heartbeat for -6807808847876022584/-1838914476/0/8979 but did not find
    reference
    This is strangely related to a real degradation of the WL server response
    times and sometimes to 'PeerGoneExceptions' thrown to the client (while the
    server is still alive...).
    This happens either for connections on the LAN or on the WAN (frame relay
    network) so I don't think this is network related. As of now, weblogic
    support told us not to care about it but after analysing the messages, there
    seems to be a real problem here :
    What seems to happen is :
    - The server considers that the client is dead so it's closing the
    connection. Eventually, the DGC cleans up references that were held by this
    client.
    - The server recieves a query from the 'still alive client' and re-opens the
    connection with the SAME id.
    - If there is a heartbeat from a DGC cleaned up object, the DGC informs that
    it 'did not find reference'.
    - It ignores the messages from the previously closed connection and tries to
    re-establish everything.
    We desperately need some feed back on what is causing the server to close
    the connection while the client is still alive. I've seen somewhere in this
    list that there are some internal parameters in the WL server
    ('weblogic.system.idlePeriodUntilTimeout' and
    'weblogic.system.periodLength') which indicates the WL server when to
    consider a client as 'dead'. This is defaulted to 1 min for the first and to
    4 for the second which implies that there must be at least 4 minutes during
    which the client doesn't emmit 'heartbeats' for the server to know it is
    alive.
    few remarks :
    1/ the client is not swapping nor GCing too long so the client vm is
    available to emmit these heartbeats.
    2/ we couldn't reproduce it in our test environement except when making the
    client swap for minutes which is not the case in the production env.
    3/ this really seems related to multiple clients connected simultaneously to
    the server.
    Thanks a lot for your help.
    Vincent Vandenschrick
    Obbisoft.

    Michael,
    We are running WL Server 404. This is the version we were advised to use for
    production. We are not using the performance pack because when we turn it
    on, the server behaves correctly for the first 15 mins of use and then,
    stops accepting new connections and even closes the existing ones. This
    behaviour seems to happen only when the server is used by multiple
    concurrent users. So the only "stable" configuration we found to run the
    server is Javasoft 1.1.7B (Sunsoft's jdk 1.1.7 produces a core dump after a
    few minutes use) + perf pack disabled.
    We have support calls open for most of these issues but I thought I would
    ask the group to benefit from its experience.
    Thanks for your help.
    Vincent.
    Obbisoft.
    Michael Girdley a écrit dans le message
    <[email protected]>...
    Vincent,
    What version of the Server are you running? Why are you not using the
    performance pack?
    Thanks,
    Michael Girdley
    BEA Product Manager
    Vincent Vandenschrick <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    We are facing a problem which implies bad response time from the WLserver.
    Our configuration is : Sun E4500, Solaris2.6, Oracle 7.3.4, WL oci
    driver,
    no perf pack, Javasoft 1.1.7B_05 vm on server side and IBM 1.1.7B onclient
    side (W98 clients).
    When multiple users connect to the server (let's say from 15 simultaneous
    connections) and work on our application, after few mins, the serverprocess
    logs and outputs tons of messages like :
    Mon Nov 15 16:12:26 GMT 1999:<E> <RJVM> Ignoring message from a previous
    generation: JVMMessage from 8803290290807054313C146.100.8.34
    to -6807808847876022584C146.100.100.84 with CMD_ONE_WAY, prtNum=5,
    ack=30,
    seqNum=3151
    and
    Got heartbeat for -6807808847876022584/-1838914476/0/9209 but did notfind
    reference
    Got heartbeat for -6807808847876022584/-1838914476/0/8979 but did notfind
    reference
    This is strangely related to a real degradation of the WL server response
    times and sometimes to 'PeerGoneExceptions' thrown to the client (whilethe
    server is still alive...).
    This happens either for connections on the LAN or on the WAN (frame relay
    network) so I don't think this is network related. As of now, weblogic
    support told us not to care about it but after analysing the messages,there
    seems to be a real problem here :
    What seems to happen is :
    - The server considers that the client is dead so it's closing the
    connection. Eventually, the DGC cleans up references that were held bythis
    client.
    - The server recieves a query from the 'still alive client' and re-opensthe
    connection with the SAME id.
    - If there is a heartbeat from a DGC cleaned up object, the DGC informsthat
    it 'did not find reference'.
    - It ignores the messages from the previously closed connection and triesto
    re-establish everything.
    We desperately need some feed back on what is causing the server to close
    the connection while the client is still alive. I've seen somewhere inthis
    list that there are some internal parameters in the WL server
    ('weblogic.system.idlePeriodUntilTimeout' and
    'weblogic.system.periodLength') which indicates the WL server when to
    consider a client as 'dead'. This is defaulted to 1 min for the first andto
    4 for the second which implies that there must be at least 4 minutesduring
    which the client doesn't emmit 'heartbeats' for the server to know it is
    alive.
    few remarks :
    1/ the client is not swapping nor GCing too long so the client vm is
    available to emmit these heartbeats.
    2/ we couldn't reproduce it in our test environement except when makingthe
    client swap for minutes which is not the case in the production env.
    3/ this really seems related to multiple clients connected simultaneouslyto
    the server.
    Thanks a lot for your help.
    Vincent Vandenschrick
    Obbisoft.

  • HT201210 I cannot sync my ipod touch, message says an error occured (6) ! did not find solution ?

    I cannot sync my ipod touch, message says an error occured (6) ! did not find solution ?

    Errors related to third-party security software
    Error 2, 4 (or -4), 6, 40, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or photos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • I deleted my iphoto app on my iphone5s(ios8.3) by mistake. And I did not find the app in the App Store. How can I recover it?

    I deleted my iphoto app on my iphone 5s (iOS8.3) by mistake. And I did not find the same app in the App Store. How can I recover it?

    This Apple doc can help you get familiar with the Photos app that the iPhone uses:
    Migrating from iPhoto for iOS to Photos on iOS 8 - Apple Support

  • I believe some how some way my iPhone or appleID has been hacked into.  My iPhone sent 3 iMessages out that I did not type or send - 2 while I was sleeping and one while I was in mid imessage conversation.  Please help if you know anything about this!

    I believe that my iPhone or apple ID has been hacked into.  Three imessages were sent from my phone that I did not type or send - two while I was asleep at 1:15am and in the morning during an iMessage conversation.  These messages were to my boyfriend about my boss.  Apple and AT&amp;T have been somewhat helpful but both are pointing fingers at the others saying they cannot track the message or see if my personal information has been compromised.  I feel extremely violated because this hacker knows who my boyfriend is and who my boss is and I just started this job two weeks ago!  I am about to go to the police because this person is trying to taint my good reputation and destroy my relationships at work and in my personal life.  Does anyone have any incite on how this could be done and is there any way to trace where those three iMessages were generated from??

    No I have my own iPhone iPad and MacBook  so everything is set up on devices that are mine and as far as I know I never connected to anyone else's device and logged with my apple ID.  But are you saying it is possible for someone to have obtained my apple ID and send an iMessage from their device with my contact information so it looks like it came directly from me?  It's crazy I looked down at my iPhone and saw this message had just been sent that I did not type or send

  • IDoc TO File: Receiver Determination did not find any receivers at all

    Hi,
    We have IDoc to file scenario, where based on attributes present in IDoc we have configured different receivers.
    Everything was working fine and files were getting created based on the receiver determination criteria.
    But there is one change done in custom IDoc to re position the attributes.
    Idoc before changes was having NAME1 and NAME2 above KATR6 and KATR7 and after change it looks like below:
    So there is no change in segment and no change in mapping but the attributes KATR6 and KATR7 are used to determine the receiver.
    Cache refresh is done for both ESR and ID. I have re - entered the receiver determination criteria just to ensure that change should reflect.
    But still when I am triggering outbound IDoc from ECC to PI, the transaction is getting errored out with below error:
    "ErrText": "Processing error = Receiver Determination did not find any receivers at all",
    Can any one providee some idea what could be the reason and what is the right approach to resolve this issue.
    Thanks,
    Vertika

    Hi Krupa,
    I have marked your answer as helpful answer and delete of metadata wasn't required.
    Reload works . But thanks for your suggestion.
    Thanks,
    Vertika

  • I did not find facetime in iphone5. How to install please help me to install facetime

    I did not find facetime in iphone5. How to install please help me to install facetime

    What country did you buy the phone in?
    What iOS version does it have?
    As has been said, Facetime is banned in some coutnries and so is not available on iPhones and cannot be insatlled.
    Also, before iOS7, the iPhone had no Facetime icon, it was built into the Contacts App.

  • I have a problem with itunes account did not find a solution.

    Good morning
    I have a problem with itunes account did not find a solution.
    The problem: your apple id has been Dasabld
    I can not if download applications from the iTunes store
    Hoping to help me solve the problem
    Note my English is very weak
    I want to re-activate the iTunes account
    Thank you

    To Contact iTunes Customer Service Use this Link...
    Apple  Support  iTunes Store  Contact

  • Did not find EXT_REFERENCE_ID pointed to by field C1_EXT_REFERENCE_ID

    I have WebLogic 32 bit installed on a Windows XP 32 bit platform. And CCB V2.2.0.
    Upon startup in WebLogic, I get the following error message in the Domain Diagnostic Log file of Web Logic;
    101162 User defined listener com.splwg.base.web.startup.SPLWebStartup failed: com.splwg.shared.common.LoggedException: The following stacked messages were reported as the LoggedException was rethrown: com.splwg.base.web.startup.PreloadLoginInfo.preloadFieldMetaData(PreloadLoginInfo.java:150): Unable to preload navigation keys and web pages com.splwg.base.support.context.SessionExecutable.doAsReadOnlyInCurrentSessionIfAvailable(SessionExecutable.java:54): Error caching field metainfo com.splwg.base.web.common.FieldMetaDataRepository$FieldRetriever.execute(FieldMetaDataRepository.java:99): Caught exception from SessionExecutable.execute() The root LoggedException was: Did not find base field 'EXT_REFERENCE_ID' pointed to by field 'C1_EXT_REFERENCE_ID'.
    A user, ChesPlay, suggested that I install FrameWork Service Pack 10 from the Oracle MetaLink site. *(ChesPlay...thanks for your help!)*
    I completed the install yesterday, but still get the same error.
    First, I verified that I had already installed the Prerequisite Single Fixes 7195518. 7012092, 7284592 per SP10 install instructions.
    Second, I installed the Prerequisite Single Fix 10124173 before installing Service Pack 10.
    The following are the last few bug installations from Service Pack 10 and these are from my <SPLBASE>\etc\installed_fixes.txt file (I included these to show that SP10 installed OK);
    10215923
    10424723
    10262588
    10333081
    11069455
    10374823
    10428564
    11682732
    9943861
    9843154
    10235499
    I queried the ci_ut_instl database table to show the last few database updates that were installed from Service Pack 10;
    10270627
    9442145
    8632929
    10183805
    8486799
    9947280
    10116686
    ChesPlay, you asked if I had installed DB SP1, and I am thinking that this would be included inside the DB SP10 that I just installed. There was a database upgrade in FW SP10. I queried some defects that would have been corrected around the time we did the initial install and installed FW SP1, and those DB corrections are;
    SR_NO
    6089943
    6320038
    6508751
    6690631
    6732352
    6741522
    6746717
    6752806
    6753590
    6762978
    6769161
    6769237
    6779293
    6779801
    6781657
    6818630
    6823390
    6849474
    6852874
    6870669
    6906144
    6939345
    6941618
    6979608
    6995839
    7003470
    7014765
    7026277
    7381045
    7381047
    7381055
    7381058
    7382787
    7384954
    7388487
    7391086
    7391288
    7407889
    7413910
    7418119
    7428875
    7438467
    7441512
    7448408
    7456024
    7462902
    7484097
    7493378
    7494737
    7500660
    7503581
    7509645
    7527185
    7534015
    7568961
    7569426
    7582167
    7588967
    7592708
    7594026
    7599841
    7599984
    7613246
    7616144
    7624052
    7633553
    7635383
    7649695
    7677265
    7679057
    7026919
    7037953
    7111539
    7233235
    7256221
    7293343
    7310420
    7322924
    7332542
    7357736
    7503171
    7503377
    7510815
    7520424
    7568016
    7593173
    7594038
    7671757
    7827664
    8251286
    8260929
    8268874
    8273106
    8291086
    8392040
    6937115
    6979711
    6999033
    7041838
    7109393
    7175088
    7176465
    7189056
    7189062
    7189066
    7228406
    7240901
    7247174
    7247901
    7253983
    7254315
    7259747
    7263367
    7275778
    7277602
    7279706
    7281406
    7281654
    7286107
    7288370
    7298418
    7316562
    7316681
    7323846
    7332558
    7332907
    7344408
    7346424
    7353257
    7356312
    7357247
    7359107
    7375159
    7381041
    9300696
    9309747
    9340118
    9395985
    9400236
    9492363
    9526408
    9647138
    9654108
    9664482
    9698293
    9709303
    9712403
    9825630
    7679562
    7687196
    7687438
    7687453
    7710475
    7774775
    7811967
    7831369
    7911307
    7924667
    8206476
    8226523
    8235853
    8256491
    8273340
    8280748
    8284128
    8289639
    8292263
    8301127
    8307872
    8321198
    8339901
    8344477
    8350640
    8350682
    8403219
    8426144
    8426309
    8443509
    8445514
    8445531
    8484901
    8490758
    8496724
    8503323
    8532198
    8546929
    8568639
    8569825
    8572542
    8574743
    8593280
    8595554
    8596468
    8603598
    8603640
    8619605
    8628607
    8631398
    8654780
    8676657
    8710499
    8734027
    8743059
    8743999
    8811818
    8958357
    9017242
    8738911
    8754679
    9006753
    9032536
    9104466
    9110525
    9124362
    9131056
    9211751
    9213966
    9267200
    9280101
    9290639
    I am headed to MetaLink now for further research on the "Did not find EXT_REFERENCE_ID pointed to by field C1_EXT_REFERENCE_ID" message to see what else I might need to install. I'll update this thread if/when I figure out the problem.
    Chesplay if you have another idea, or believe that there is a seperate DB SP1 on MetaLink, please advise. I was not able to find a seperate DB SP1 on MetaLink today. Thanks!

    For me even the issue was solved when i apply the db portion of patch 7009370. But when i log in to the application i could see ablank pages, the menus were not loading up and i was getting error:
    SYSUSER - 313876-67-1 2011-03-05 23:12:11,721 [[ACTIVE] ExecuteThread: '2' for q
    ueue: 'weblogic.kernel.Default (self-tuning)'] ERROR (web.dynamicui.NavMetaDataH
    older) Error getting navigation info for navigation key userPortalPage
    SYSUSER - 313876-67-1 2011-03-05 23:12:11,737 [[ACTIVE] ExecuteThread: '2' for q
    ueue: 'weblogic.kernel.Default (self-tuning)'] ERROR (web.dynamicui.XSLTExtensio
    nHelper) XSLT Extension error getting program component meta data for userPortal
    Page
    file:/C:/spl/CCBDEMO/splapp/servers/myserver/tmp/_WL_user/SPLWeb/yge362/war/WEB-
    INF/uiXSL/tabMenu.xsl; Line #279; Column #116; com.splwg.shared.common.LoggedException:
    The following stacked messages were reported as the LoggedException was rethrown
    com.splwg.base.web.dynamicui.XSLTExtensionHelper.privateProgramComponentExtensio
    n(XSLTExtensionHelper.java:66): XSLT Extension error getting program component m
    eta data for userPortalPage
    The root LoggedException was: Error getting navigation info for navigation key u
    serPortalPage
    file:/C:/spl/CCBDEMO/splapp/servers/myserver/tmp/_WL_user/SPLWeb/yge362/war/WEB-
    INF/uiXSL/tabMenu.xsl; Line #279; Column #116; java.lang.NullPointerException
    To overcome the above issue i applied the db portion of the patch 8608149 by following below steps:
    1.
    DELETE FROM CI_UT_INSTL WHERE SR_NO LIKE '8608149%';
    DELETE FROM CI_UT_INSTL_DTL WHERE SCRIPT_FILE_NAME LIKE '8608149_RS1%';
    COMMIT;
    2.Apply the patch 8608149.

  • Did not find repository information for controller

    Hi Experts,
    We are getting following error in Production system. Could you please tell what can be the root cause behind it. I know when someone deploys this error comes. But in Production No one is deploying any Application.
    Please tell me what can be any other problem.
    Exception occured during processing of Web Dynpro application  /material_wd/ChangeRawMeridianApp. See exception stacktrace for details.
    [EXCEPTION]
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Did not find repository information for controller ChangePackManualCompView
    at com.sap.tc.webdynpro.progmodel.components.Component.getController(Component.java:572)
    at com.sap.tc.webdynpro.progmodel.components.Component.getController(Component.java:548)
    at com.sap.tc.webdynpro.clientserver.uielements.adaptbase.AbstractAdapter.findViewElement(AbstractAdapter.java:124)
    at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.handleUIElementEvent(HtmlClient.java:2037)
    at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.updateEventQueue(HtmlClient.java:550)
    at com.sap.tc.webdynpro.clientserver.phases.TransportIntoDataContainerPhase.execute(TransportIntoDataContainerPhase.java:48)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequestPartly(WindowPhaseModel.java:162)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doProcessRequest(WindowPhaseModel.java:110)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:97)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:512)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:52)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doExecute(ClientApplication.java:1549)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doProcessing(ClientApplication.java:1363)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToApplicationDoProcessing(AbstractExecutionContextDispatcher.java:154)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForAppProcessing.doService(DispatchHandlerForAppProcessing.java:35)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToApplicationDoProcessing(ExecutionContextDispatcher.java:114)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:80)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:618)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:649)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doApplicationProcessingPortal(ApplicationSession.java:584)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:311)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:743)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:258)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:259)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToRequestManager(AbstractExecutionContextDispatcher.java:202)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForRequestManager.doService(DispatchHandlerForRequestManager.java:38)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToDispatcherContext(ExecutionContextDispatcher.java:146)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:92)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:104)
    at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.dispatch(ApplicationHandle.java:275)
    at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:71)
    at com.sap.tc.webdynpro.portal.pb.impl.LocalApplicationProxy.sendDataAndProcessActionInternal(LocalApplicationProxy.java:962)
    at com.sap.tc.webdynpro.portal.pb.impl.LocalApplicationProxy.sendDataAndProcessAction(LocalApplicationProxy.java:297)
    at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1638)
    at com.sap.portal.pb.PageBuilder.SendDataAndProcessAction(PageBuilder.java:361)
    at com.sap.portal.pb.PageBuilder$PhaseListenerImpl.doPhase(PageBuilder.java:2062)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:220)
    at com.sap.tc.webdynpro.clientserver.phases.PortalDispatchPhase.execute(PortalDispatchPhase.java:52)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequestPartly(WindowPhaseModel.java:162)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doProcessRequest(WindowPhaseModel.java:110)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:97)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:512)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:52)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doExecute(ClientApplication.java:1549)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doProcessing(ClientApplication.java:1363)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToApplicationDoProcessing(AbstractExecutionContextDispatcher.java:154)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForAppProcessing.doService(DispatchHandlerForAppProcessing.java:35)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToApplicationDoProcessing(ExecutionContextDispatcher.java:114)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:80)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:618)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:649)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doApplicationProcessingStandalone(ApplicationSession.java:570)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:309)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:743)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:258)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:259)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToRequestManager(AbstractExecutionContextDispatcher.java:202)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForRequestManager.doService(DispatchHandlerForRequestManager.java:38)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:127)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:95)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToDispatcherContext(ExecutionContextDispatcher.java:146)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:92)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:104)
    at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doContent(AbstractDispatcherServlet.java:87)
    at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doPost(AbstractDispatcherServlet.java:61)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:754)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:140)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:37)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:486)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:298)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:396)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:385)
    at com.sap.engine.services.servlets_jsp.filters.DSRWebContainerFilter.process(DSRWebContainerFilter.java:48)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:76)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:243)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:78)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.MemoryStatisticFilter.process(MemoryStatisticFilter.java:43)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.filters.DSRHttpFilter.process(DSRHttpFilter.java:42)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:78)
    at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:428)
    at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.process(Processor.java:247)
    at com.sap.engine.services.httpserver.server.rcm.RequestProcessorThread.run(RequestProcessorThread.java:45)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:115)
    at com.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
    at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)

    Hi,
    Some one might be deployed WDJ application with controller name ChangePackManualCompView which is already exist in some other application with diff name space
    Did not find repository information for controller
    Thanks,
    Sreeni.

  • Error: com.sap.engine.interfaces.messaging.api.exception.RetryControlException: Receiver Determination did not find any receivers at all

    Hello,
    I have an issue configuring a simple File Adapter Content Conversion, it will be great to give me some support as I'am new in the PO Environment.
    Iam reading a flat file and trying to write into an XML in the same FTP server
    I have a 1 to 1 Mapping as follows
    And my Content Conversion at Sender side Looks like this
    After running the configuration Iam getting following error message
    Error: com.sap.engine.interfaces.messaging.api.exception.RetryControlException: Receiver Determination did not find any receivers at all
    My System is the SAP Netweaver Process Intgration 7.4 single Java stack
    Do you have any idea how to fix this issue?
    Many thanks in advance
    Khadim

    Hi evrybody
    I have enabled the tracing of ICO and have seen that my payload for the message mapping is ok,.
    <ns:hartgeldbest_ERP_KT xmlns:ns="http://xxxxxx.de">
    <Recordset>      
    <header> 
         <gesellschaft>03</gesellschaft> 
         <filiale>000</filiale>
         <satzart>11</satzart>
         <datum>00000000</datum>
         <kennzeichen>1</kennzeichen>
    </header>
    </Recordset>
    </ns:hartgeldbest_ERP_KT>
    The issue is on detrmining the RECEIVER in the Main-XML
    <sap:Main xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sap="http://sap.com/xi/XI/Message/30" versionMajor="3"versionMinor="1" SOAP:mustUnderstand="1">
    <sap:MessageClass>ApplicationMessage</sap:MessageClass> 
    <sap:ProcessingMode>asynchronous</sap:ProcessingMode>
    <sap:MessageId>ae41678e-da87-11e3-cd0f-0000006831a2</sap:MessageId>
    <sap:TimeSent>2014-05-13T10:16:43Z</sap:TimeSent>
    <sap:Sender> 
    <sap:Party agency="http://sap.com/xi/XI" scheme="XIParty"/> 
    <sap:Service>CC_Hartgeldbest_File2Idoc</sap:Service>
    </sap:Sender>
    <sap:Receiver> 
    <sap:Party agency="" scheme=""/> 
    <sap:Service/>
    </sap:Receiver>
    <sap:Interface namespace="http://xxxxx.de">hartgeldbest_KT_async_out</sap:Interface>
    </sap:Main>
    Is it possible that the receiver is overwritten due to the Content Conversion? Because if I set my Message Protocol to "File" the receiver determination will work.
    Any idea?
    Thx
    Khadim

  • Domain did not find after 2 weeks

    Hello everyone
    We have both Macs and PCs with 1 Mac Server 10.4.8. The PCs have to join the domain. We created PDC with domain: MEDIER. It was working good. But new PCs could not find MEDIER after 2 weeks. So I have to stop service and restart service, then it will work again. I dont know what problem it is. Hope someone can help. Thanks
    Regards
    Tri
    ( Server Admin-Computers & Services-Windows-Settings-General)

    At the beginning, we upgraded from OS Server 10.3.9 to Server 10.4.8. it did not work good at all. We decided to install new, fresh installation Server 10.4.8, and then updated to 10.4.10 now. Lookup and forward DNS are working: internal.loc = 192.168.1.3.
    I tried to join MEDIER, it said that "the domain could not find domain bla bla bla, contact the administrator...". If I stop and restart the service, it could find the domain: MEDIER, and then PCs could join MEDIER without any problem. The problem is, I have to stop and restart the service after 2 weeks
    Is the problem related to DNS or how to stop MEDIER from sleeping?
    Thanks again

Maybe you are looking for

  • Quick preview issues

    I'm using a late 2008 MBP and SL 10.6.4 with AP3. After importing around 5000 RAW to a new project, quick preview in full screen isn't working properly. Viewing the photos in full screen at full resolution is not an issue. Only when switching to quic

  • Is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi, We're using SharePoint 2013 and I'm trying to modify the search results page for one site collection. By default, it uses the search results page from the parent site which is the search center being used by default for the web application. I nee

  • 08/09 MBP (unsure, bought used) errors. Rendered UNUSABLE. Help?

    First my computer suddenly started opening everything in my browser in separate windows instead of tabs, then everything went capslock and I couldn't get it to stop. When I minimized, it took almost a whole minute of watching it slowly drop down to t

  • Migrating from legacy site / dreamweaver templates

    We are going to migrate to the weblogic portal content management over the next few months - we have thousands of pages on our old site that were created using dreamweaver templates. Is there a way to automate the migration - to import the old html f

  • AppleTV Status Light Off

    On my AppleTV 2nd Generation, the status light is always off.  This just happened.  It seems to function OK, but I would like the light to work for status information.  I have unplugged and replugged it.  I have also reset it.  The light is still out