Quantcast
Channel: SCN: Message List
Viewing all 8798 articles
Browse latest View live

Re: StrictXml2PlainBean (XML to Text) Module bean fieldLengthExceeded --> cut was not working in file adapter

0
0

Hello Satish,

 

Do include a screenshot of your module configuration in the channel. Make sure that the module key is correct for the parameters.


Re: Smart Data Access

0
0

Hi Aamod,

 

You can access DB objects (Tables and Views) from a remote system using SDA. The objects under _SYS_BIC schemas are Calculated Scenarios, which are not available through SDA.

 

I'd suggest you expose the DB tables (used in your view) as virtual tables and build models in the other system on top of these virtual tables.

 

Regards

Abani

Re: EA60 Spool download per Invoice

0
0

Hi,

 

Marking "New Spool Request" (TDNEWID) in the extended Print Parameters should do the trick, I believe (I don't think SAP standard logic has mandatory spool cumulation per Portion programmed anywhere).

 

If it does not work, there should be some custom logic somewhere forcing the cumulation, or perhaps the PWB Form has the set Open/Close Optimization active...

 

If everything else does not lead to the desired result, you should be able to override print parameters in FQEVENT R392. If there has been no custom logic controlling print parameters in the system until now, however, I'd use that exit as a last resort only, because, once introduced, these user exit logics tend to over time become "not particularly transparent" to the "uninitiated"...

 

cheers

Janis

 

Edit in: yes, there is just "Spool per Job" control possible via TE564 in Standard, I believe, and no other logic (at least in 6.05)... TE564 Customizing also permits to globally disable Open/Close Optimization.

 

Message was edited by: Jānis B

how to change internal table after execute report

0
0

Hi everyone,

 

I created zreport which display gives sales and and remand depend on a date in selection screen.

 

in my code I filled 4 internal table

 

first one is main which I want to execute report with this.

 

after execute when report came as alv grid, I want to change internal table with pushbutton on top.

 

My aim is giving user opportunity to change table in front of them without go to selection screen again.

 

first internal table       =   total of sales and remand depend on matnr

second internal table  =   total of sales and remand depend on spart

third internal table      =   total of sales and remand depend on  kunnr

third internal table      =   total of sales and remand depend on  fkdat(date)

 

any help will be appreciate

 

best regards.

Planning workbook in Analysis

0
0

Hello All,

 

  I'm trying to create a Integrated Planning workbook using Analysis for Office. I have gone through this

http://scn.sap.com/docs/DOC-16319 document and I get this error when I try to add  Planning function to the workbook

 

An exception occurred in one of the data sources.

 

SAP BI Add-in has disconnected all data sources.

If you want to restart, press the Restart button below. (ID-111006).

 

I'm not sure what I'm missing here.

 

Appreciate your help.

Re: What are the differences between payment run in ECC 6.0 and R/3 4.7?

0
0

Hi Alma-

 

During upgrade make sure you upgrade the variant also which you are using in F110, I am not aware of any major change between both. You should be fine, as long as you update the variant and check numbers.

 

Thanks,

Nishan

using Functional module field in SAP BW Modelling

0
0

Hi Friends,

 

 

We have a requirement,

 

We need to build ETL and Report query based on ECC Infoset report.  I have done initial  analysis.And I found all the ECC fields are available for mapping in BW Standard infoobjects.

 

But few of them are unable to understand. they are built with function modules and I need to know how can I use these below function modules field s in SAP BW for modelling

 

Field name : Contract internal notes

IOBJ            :  CONTRACT_INT_TEX(function module text id z001  text object VBBK)

 

 

Field name : Contract text 

IOBJ            :  CONTRACT_TEXT(function module text id z018)

 

 

Do let me know how to include these fields in BW .Should I include the field in any standard Datasource(like 2lis_11_vahdr...etc)

If it is yes. Please let me know the procedure & prerequisites before enhancing the data source and where it can be implemented...

 

 

Thanks

Re: LSO integration with Skillsoft: Help Needed

0
0

Hi Jain,

 

We are also trying to connect LSO with Skillsoft. Do you have any document that you use for initial configuration and setup? I saw you have PI configured for the connection. is PI mandatory for the LSO and Skillsoft connection? Do you need to use other tools likd LSOAE and content player. We are all very new to this area and will really appreciate for any help!

 

Hailan


EPM Client 10 SP19 Patch 1 with Excel 2013 problem

0
0

Hello everyone,

 

I am testing out Excel 2013 (15.0.4420.1017) MSO (15.0.4659.1001) 32-bit together with the EPM Client 10 SP19 Patch 1. (Backend I run BPC 10 for MS SP14).

 

I have tried with both the .net3.5 version and the .net4.0 version.

 

Excel get's extremely slow and laggy when I have a epm report or input schedule open. Just to change sheet or move from one row to another get's extremely slow. Just to refresh a report takes much more longer time compared to Excel 2007. Bottom line not workable.

 

If I logoff from BPC Excel gets back to normal again.

 

Any suggestions/solutions or ideas highly appreciated.

 

Brgds

Mattias Ferling

Re: Need to Look up DSO1 Data to DSO

0
0

I have got this fixed corrected the Code

MSMP Notification Variable??

0
0

Hi All,

 

Is it possible to create a new custom notification variables??

 

for example  "ROLE_NAME " a standard notification variable, can we create Z_ROLE_NAME custom variable? we have a client requirement to pass mitigation ID to on of the email that is been send.

 

Waiting for your response.

 

Regards

 

Maneesh Chandran

Re: Roll out queries

0
0

Hello,

 

Could you be more specific?
If you had issues that were solved by applying an SAP note, probably it won't happen again.
Now, if you had issues related to customizing, you should identify if these same settings need to be done again.

 

Regards,
Ricardo

DesignStudio space issue

0
0

Hello colleagues,

 

Currently I am not able to open correctly SAP BO Design Studio because I dont enough space in my citrix and citrix colleagues can't provide me more space becuase it's very limited. They suggested to map a share into my citrix like E:\ drive.

 

Do you know how to open SAP BO Design Studio pointing out to this share with more space?

 

Thanks and Kind Regards,

Homero.

Re: How to only show the line with the last that is not zero.

0
0

Hi Amanda,

 

What we can do it use 3 formulas to create a running total.  The first will declare and initialize a variable.  The second is to evaluate the quantity.  If it's not zero then we'll pass it to the variable. The third formula will display the variable which should be something other than zero if there are records.

 

@Initialize

WhilePrintingRecords;

NumberVar showQty := 0;

 

Drop this formula into the Group  Header 1 section and you can suppress the formula so you don't see it.

 

@GetQty

WhilePrintingrecords;

NumberVar showQty;

 

if  {compQty_form} <> 0 then

     showQty :=  {compQty_form};

 

Drop this into the Detail section and also format to suppress.

 

@ShowQty

WhilePrintingrecords;

NumberVar showQty;

 

Drop this into your Group Footer.  It should show the last non-zero number it found in the Detail section.

 

Now, how to show only the record before the first zero, that I'll have to think about.

 

Good luck,

Brian

Message Area Visible Area increasing

0
0

Hi All,

 

I'm developing a web dynpro component and in this component i'm using "Message Area" UI element. I want to display multiple

messages in this message area. Problem I'm facing is when I'm displaying like 10 or more message the size of message area

is increasing and I dont want this to happen. I want message area to display 3 or 4 messages and then have a scroll bar.

I'm getting scroll bar but message area is increasing with the number of messages (displaying all 10 or 20 messages at a time).

 

 

I tried to setting "Max Visible Lines" property of message to '3' & '1' & '2' nothing worked, also tried changing layout of the view but no luck.

 

 

 

Now system is displaying message as below.

 

Expanded Msg Area.jpg

 

 

 

but i want to display as following.

 

Like to Display.jpg

Above screen shot is from standard web dynpro application "WDR_TEST_MSG_AREA". I maintained properties of message area in my application similar to the message area of standard application, but didn't got results.

Thanks in Advance.


nested view access in all the pages.

0
0

Hi,

 

I have a nested view and I need to show(update data) same view in all the pages.

 

// calling the instance of view with Id viewID

var myView1 = sap.ui.getCore().byId("viewId"); 

 

The above code is working fine and displaying the view. But if I'm second page the first page is not showing the view again.

 

Kindly suggest me how to about it.

 

Thanks.

Sarath.

Re: EWA report not being generated - PLEASE HELP !!!

0
0

Hi,

 

adhoc generation should work, seems you had trouble with service session itself. could you please check the below note and let us know will that helps.

 

1702475 - Troubleshooting service sessions

 

thanks

jansi

Meter reading dates and Billing cycle dates

0
0

Hi,

Where/how can I find future meter reading dates and billing (cycles) dates for a contract?

 

Thanks in advance

Aravind

Solution Manager 7.1-SR1 installation problem

0
0

Dear Gurus,

 

We are facing installation of solman 7.1 SP12 "Install Software Units" Error.

 

Server : Windows Server 2012

Database : Sybase 15.7 - 122

Ram : 16gb

Solman : 7.1

 

Also important logs are attached.

 

SOL1.png

 

IMPORTANT PARTS OF LOG ;

 

SAPINST.LOG FILE ;


Info: Starting to save the repository

Info: Finished saving the repository for 47 ms.

Info: Starting: Initial deployment: Selected software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.10.4.1.20120220121517''/'0' will be deployed.

Error: Aborted: software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.10.4.1.20120220121517''/'0':

Failed deployment of SDAs:

development component 'tc/webadministrator/navigation/ejb'/'sap.com'/'SAP AG'/'7.10.4.1.20120220121517'/'0' : aborted

Please, look at error logs above for more information!

Info: Starting to save the repository

Info: Finished saving the repository for 31 ms.

Info: J2EE Engine is in same state (online/offline) as it has been before this deployment process.

Error: ---------------- At least one of the Deployments failed ---------------

Info: Summarizing the deployment results:

Error: Aborted: D:\51042609\DATA_UNITS\SOLMAN_JAVA_UT_SOLMAN\LMSERVICE04_1.SCA

Info: OK: D:\51042609\DATA_UNITS\SOLMAN_JAVA_UT_SOLMAN\ISAGENT23_0.SCA

Processing error. Return code: 4

Error: Processing error. Return code: 4

 

 

WARNING 2014-10-29 19:03:57.120

SDM call of deploySdaList ends with returncode 4. See output of logfile C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS\callSdmViaSapinst.log.

 

 

INFO 2014-10-29 19:03:57.135

Copied file 'C:/Program Files/sapinst_instdir/SOLMAN71/SYSTEM/SYB/CENTRAL/AS/callSdmViaSapinst.log' to 'C:/Program Files/sapinst_instdir/SOLMAN71/SYSTEM/SYB/CENTRAL/AS/UsageTypesDeployment.log'.

 

 

ERROR 2014-10-29 19:03:57.213

CJS-30156  SDM deployment failed for at least one of the components to be deployed. SOLUTION: Check C:\Program Files/sapinst_instdir/SOLMAN71/SYSTEM/SYB/CENTRAL/AS/callSdmViaSapinst.log for more information.

 

 

ERROR 2014-10-29 19:03:59.101

FCO-00011  The step enableUsageTypes with step key |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features_Enablement|ind|ind|ind|ind|usage_enable|0|enableUsageTypes was executed with status ERROR ( Last error reported by the step: SDM deployment failed for at least one of the components to be deployed. SOLUTION: Check C:\Program Files/sapinst_instdir/SOLMAN71/SYSTEM/SYB/CENTRAL/AS/callSdmViaSapinst.log for more information.).

 

 

INFO 2014-10-29 19:03:59.491

Creating file C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS\__instana_tmp.xml.

 

 

INFO 2014-10-29 19:04:01.815

Creating file C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS\instslana.xml.

 

 

--------------------------------------------------------------------------------------------------------------------------------

 

callSdmViaSapinst.LOG FİLE


14/10/29 22:03:55 -  ***********************************************************

14/10/29 22:03:55 -  Start updating EAR file...

14/10/29 22:03:55 -  start-up mode is lazy

14/10/29 22:03:55 -  EAR file updated successfully for 16ms.

14/10/29 22:03:55 -  Start deploying ...

14/10/29 22:03:55 -  EAR file uploaded to server for 15ms.

14/10/29 22:03:56 -  ERROR: Not deployed. Deploy Service returned ERROR:

                     java.rmi.RemoteException: Cannot deploy application sap.com/tc~webadministrator~navigation~ejb..

                     Reason: Incorrect QL query: select object(o) from CategoryBean o

                                         where o.parent is null, errors: line 2: unexpected token: is

                                         where o.parent is null

                                                        ^

                     .; nested exception is:

                      com.sap.engine.services.deploy.container.DeploymentException: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException: Incorrect QL query: select object(o) from CategoryBean o

                                         where o.parent is null, errors: line 2: unexpected token: is

                                         where o.parent is null

                                                        ^

                     .

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.prepareQLContext(QLTranslator.java:191)

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateQuery(QLTranslator.java:103)

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateAllQueries(QLTranslator.java:171)

                      at com.sap.engine.services.ejb.deploy.DeployAdmin.translateQL(DeployAdmin.java:1271)

                      at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:256)

                      at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2167)

                      at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:608)

                      at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:325)

                      at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:309)

                      at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)

                      at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3241)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:560)

                      at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)

                      at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)

                      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)

                      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)

                      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

                      at java.security.AccessController.doPrivileged(Native Method)

                      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)

                      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

                     ', Arguments: []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException: Incorrect QL query: select object(o) from CategoryBean o

                                         where o.parent is null, errors: line 2: unexpected token: is

                                         where o.parent is null

                                                        ^

                     .

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.prepareQLContext(QLTranslator.java:191)

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateQuery(QLTranslator.java:103)

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateAllQueries(QLTranslator.java:171)

                      at com.sap.engine.services.ejb.deploy.DeployAdmin.translateQL(DeployAdmin.java:1271)

                      at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:256)

                      at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2167)

                      at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:608)

                      at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:325)

                      at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:309)

                      at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)

                      at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3241)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:560)

                      at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)

                      at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)

                      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)

                      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)

                      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

                      at java.security.AccessController.doPrivileged(Native Method)

                      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)

                      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:575)

                      at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)

                      at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)

                      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)

                      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)

                      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

                      at java.security.AccessController.doPrivileged(Native Method)

                      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)

                      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

                     Caused by: com.sap.engine.services.deploy.container.DeploymentException: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException: Incorrect QL query: select object(o) from CategoryBean o

                                         where o.parent is null, errors: line 2: unexpected token: is

                                         where o.parent is null

                                                        ^

                     .

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.prepareQLContext(QLTranslator.java:191)

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateQuery(QLTranslator.java:103)

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateAllQueries(QLTranslator.java:171)

                      at com.sap.engine.services.ejb.deploy.DeployAdmin.translateQL(DeployAdmin.java:1271)

                      at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:256)

                      at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2167)

                      at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:608)

                      at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:325)

                      at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:309)

                      at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)

                      at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3241)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:560)

                      at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)

                      at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)

                      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)

                      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)

                      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

                      at java.security.AccessController.doPrivileged(Native Method)

                      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)

                      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

                     ', Arguments: []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException: Incorrect QL query: select object(o) from CategoryBean o

                                         where o.parent is null, errors: line 2: unexpected token: is

                                         where o.parent is null

                                                        ^

                     .

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.prepareQLContext(QLTranslator.java:191)

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateQuery(QLTranslator.java:103)

                      at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateAllQueries(QLTranslator.java:171)

                      at com.sap.engine.services.ejb.deploy.DeployAdmin.translateQL(DeployAdmin.java:1271)

                      at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:256)

                      at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2167)

                      at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:608)

                      at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:325)

                      at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:309)

                      at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)

                      at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3241)

                      at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:560)

                      at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)

                      at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)

                      at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)

                      at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)

                      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

                      at java.security.AccessController.doPrivileged(Native Method)

                      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)

                      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

                      at com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException.writeReplace(EJBDeploymentException.java:159)

                      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:331)

                      at java.io.ObjectStreamClass.invokeWriteReplace(ObjectStreamClass.java:924)

                      at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1033)

                      at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1375)

                      at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1342)

                      at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1286)

                      at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1074)

                      at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:285)

                      at com.sap.engine.services.rmi_p4.DispatchImpl.throwException(DispatchImpl.java:147)

                      at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:332)

                      ... 8 more

                     For detailed information see the log file of the Deploy Service.

14/10/29 22:03:56 -  ***********************************************************

Oct 29, 2014 10:03:56... Info: End of log messages of the target system.

Oct 29, 2014 10:03:56... Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****

Oct 29, 2014 10:03:56... Error: Aborted: development component 'tc/webadministrator/navigation/ejb'/'sap.com'/'SAP AG'/'7.10.4.1.20120220121517'/'0', grouped by software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.10.4.1.20120220121517''/'0':

Caught exception during application deployment from SAP J2EE Engine's deploy service:

java.rmi.RemoteException: Cannot deploy application sap.com/tc~webadministrator~navigation~ejb..

Reason: Incorrect QL query: select object(o) from CategoryBean o

                    where o.parent is null, errors: line 2: unexpected token: is

                    where o.parent is null

                                   ^

.; nested exception is:

  com.sap.engine.services.deploy.container.DeploymentException: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException: Incorrect QL query: select object(o) from CategoryBean o

                    where o.parent is null, errors: line 2: unexpected token: is

                    where o.parent is null

                                   ^

.

  at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.prepareQLContext(QLTranslator.java:191)

  at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateQuery(QLTranslator.java:103)

  at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateAllQueries(QLTranslator.java:171)

  at com.sap.engine.services.ejb.deploy.DeployAdmin.translateQL(DeployAdmin.java:1271)

  at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:256)

  at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2167)

  at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:608)

  at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:325)

  at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:309)

  at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)

  at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)

  at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3241)

  at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:560)

  at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)

  at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)

  at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)

  at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)

  at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)

  at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)

  at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

  at java.security.AccessController.doPrivileged(Native Method)

  at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)

  at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

 

 

', Arguments: []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key com.sap.engine.services.ejb.exceptions.deployment.EJBDeploymentException: Incorrect QL query: select object(o) from CategoryBean o

                    where o.parent is null, errors: line 2: unexpected token: is

                    where o.parent is null

                                   ^

.

  at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.prepareQLContext(QLTranslator.java:191)

  at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateQuery(QLTranslator.java:103)

  at com.sap.engine.services.ejb.deploy.ejbql.QLTranslator.translateAllQueries(QLTranslator.java:171)

  at com.sap.engine.services.ejb.deploy.DeployAdmin.translateQL(DeployAdmin.java:1271)

  at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:256)

  at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2167)

  at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:608)

  at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:325)

  at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:309)

  at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)

  at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)

  at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3241)

  at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:560)

  at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)

  at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)

  at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)

  at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)

  at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)

  at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)

  at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)

  at java.security.AccessController.doPrivileged(Native Method)

  at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)

  at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

 

 

 

 

(message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)

Oct 29, 2014 10:03:56... Info: Starting to save the repository

Oct 29, 2014 10:03:56... Info: Finished saving the repository for 47 ms.

Oct 29, 2014 10:03:56... Info: Starting: Initial deployment: Selected software component 'LM-SERVICE'/'sap.com'/'SAP AG'/'1000.7.10.4.1.20120220121517''/'0' will be deployed.

CCC

Re: DMO - user and password to log on to http://:1128/lmsl/sumabap/TDI/doc/gui

0
0

Thanks Donald -

 

Host agent is at the latest level

Manifest-Version: 1.0

 

 

keyname: SUM

keyvendor: sap.com

keylocation: SAP AG

 

 

os: linuxx86_64

compilation mode: UNICODE

compiled for: 64 BIT

 

 

release: 1.0

support package: 11

patch number: 8

 

 

native branch: lmt_007

java branch: lmtj_007_REL

assembly time: 2014-10-23 04:30:37

pack version: 43

pack tool version: 1.044

 

yes SUM started as you describe

 

My upgrade all have 777 permissions

 

Yes - am selecting the host where SUM is running...

Viewing all 8798 articles
Browse latest View live




Latest Images