Quantcast
Channel: SCN : All Content - SAP NetWeaver Application Server
Viewing all 2997 articles
Browse latest View live

Start up process of java stack

$
0
0

while bootstrap process two methods are used what are they? what happens in each method?


TMS configuration after system copy

$
0
0

Hi!

 

I am about to copy existing SAP system by overwriting this with another SAP system via system copy.

(e.g. system ABC will be overwritten by system ABD (system export) and still called as ABC).

 

Question

Which option within tcode SE06 should I choose during the initialization of TMS and what are the differencees?

a) system copy or

b) installation 

 

 

Any helpful information will be very appreciated!

X-frame-options set - ABAP 731 - SP7

$
0
0

Hi All,

 

We are working on a sales-force - SAP integration prototype. As part of this, we are opening up the SAP CRM (on SP7) web UI  screen inside salesforce as a mashup. However, when we call the mashup screen, SAP is sending x-frame-option: SAMEORIGIN in its HTTP header response. But the framed page (SAPs) and the parent page (SFDCs) are not of same origin and this is making the browser to deny rendering the page.

 

We have another SAP instance which is on SP6 and we are able to successfully see its screen within SFDC. So I feel the SP7 upgrade has got to do with this x-frame settings.

 

Any help would be much appreciated.

 

Thanks,

Indudhar

Old DB2 tablespace name during SP update ( SUM ), step failure

$
0
0

Hi All

 

   

We are doing a SP update on a sandbox system ( ERP600 EHP6 SP06 -> SP13, Using SUM
). The sandbox system is a system copy ( refresh/Database-Specific, DMD->ZMD).

 

 

We see similar issue that is described in http://scn.sap.com/thread/619392. Unfortunately no final solution is add to that thread.

 

 

After the system copy all tablespace names were changed and tables TADB6, TSDB6 and IADB6
were updated, ref system copy guide/Database-Specific System Copy, 5.4 IBM DB2
for Linux, UNIX, and Windows Specific.

 

The SUM process stops in “tp” step during preparation phase, referring to old
tablespace name,

 

Step executed:

"/usr/sap/ZMD/DVEBMGS00/exe/tp

pf=/usr/sap/ZMD/SUM/abap/var/MVNTTOOL.TPP

mvntabs ZMD"

 

From "SUM" logs

2EETP345
16:08:01: Retcode 512: SQL-error "-204-SQL0204N  "DMD#BTABD"
is an undefined name. 
SQLSTA

  2EETP345 TE=42704" in DDL statement for "PUTTB_SHD_1 "

 

 

DDL statements shows in table TATAF, and we see statements including the old
tablespace name in that table.

 

 

If we manually change the tablespace name in table TATAF ( SE38, report: RUTTATAF )
from DMD# to ZMD#, the SUM process continue few steps, but then again stops due
to same issue.

 

Searching SYSCAT for DB ( SYSCAT.TABLES, SYSCAT.TABLESPACES ) shows no findings on "DMD#"

    

All table buffers reset ( /$SYNC )

 

DMD" does not show in system profiles /SYS/profile/* or in environment settings
except for environment var dbs_db6_schema=sapdmd, dbs_db6_user=sapdmd
( - but this is as described in system copy guide, IBM DB2 for Linux, UNIX, and Windows-Specific Procedures: "You cannot

change the name of the database schema. The name of the database schema is the same
as that of the source system." )

 

 

All feedback will be appreciated.

 

   

Hanne

System Copy - secstore in NW 7.4

$
0
0

Hello everyone,

 

I have performed a DB migration (NW 740), however, I don't have the Key for Sectore, is there a way to recover it from the source system? I have access at SAP/OS/DB level.

 

Or the other option would be to regenerate the Content of the Secure Storage like SAP Note 1532825. I have all RFC working now, however, I still got the following entries in red:

 

  • Credentials of WebServices for CCMS
    • OS userID for logical port SAPCNTRL_<Hostname>_<NR>
    • OS password for logical port SAPCNTRL_<Hostname>_<NR>
  • SOAP Runtime Configurations
    • Type: 'CF'. Link: '<long number'

 

Any adviced?

 

Regards,

 

JA


Best Practices activation with wrong Support Package Stack?

$
0
0

This may be in the wrong section, so forgive me.

 

We will be performing a Best Practices activation of the Canadian Baseline.

Within this documentation, it states that the it requires Enhancement Package 7 for ECC6.0, and Support Package Stack 5

 

However, the only version that can be downloaded from the SWDC is EHP7 for ECC6  SR2, which starts at Support Package Stack 8.

 

Obviously, the SP stack of the system should match what is listed in the documentation, as there can be activation errors. This excerpt is from the documentation:

If you run the activation on a higher SPS you may run into activation errors.

 

What can be done? Should I simply proceed with activation and try to resolve any activation errors manually?

 

Thanks!

SAP ERP 6.07 on Linux Redhat el7.x86_64 uuidd service problem

$
0
0

Dear all,

 

I am installing SAP ERP 6.0 EHP 7 Oracle 11.2.0.4 on Redhat 7 Enterprise Server, but at SICK tcode we have an error " "The UUID daemon (uuidd) is not active (code 30256). Check SAP note 1391070." this note isn't helpful.

 

The UUIDD service is running :

 

[root@sapserver ~]# service uuidd status

Redirecting to /bin/systemctl status  uuidd.service

uuidd.service - Daemon for generating UUIDs

   Loaded: loaded (/usr/lib/systemd/system/uuidd.service; static)

   Active: active (running) since Fri 2015-02-20 14:36:05 WIB; 22min ago

Main PID: 10091 (uuidd)

   CGroup: /system.slice/uuidd.service

           ââ10091 /usr/sbin/uuidd --socket-activation --timeout 60

 

Feb 20 14:36:05 sapserver systemd[1]: Started Daemon for generating UUIDs.

 

[root@sapserver ~]# rpm -qa uuidd

uuidd-2.23.2-16.el7.x86_64

 

The installed kernel is : 741 patch number 200.

 

Does anyone have problems like me, please share for resolution.

 

Regards,

Agus

Consume SAP Web Service (in C#)

$
0
0

1. I created Web Service ZWS_SQRT, based on WSDL, which uses function module Z_SQRT, which calculates the square root of a given input parameter:

 

FUNCTION Z_SQRT.

*"----------------------------------------------------------------------

*"*"Local Interface:

*"  IMPORTING

*"     VALUE(NUMBER) TYPE  F

*"  EXPORTING

*"     VALUE(RESULT) TYPE  F

*"  EXCEPTIONS

*"      NEGATIVE_ARGUMENT

*"----------------------------------------------------------------------

if number >= 0.

   data  outNumber type f.

   CALL METHOD cl_foev_builtins=>square_root

   EXPORTING

     im_number = number

   IMPORTING

     ex_result = outNumber.

   result = outNumber.

else.

   raise negative_argument.

endif.

 

ENDFUNCTION.

 

2. Then, in SOAMANAGER transaction I configured the service. The service works well locally in SE80 transaction

 

3. In the last step, I made a C# program in Visual Studio, which calls the service. The program is correct (WebReference is created web service reference):

 

            WebReference.ZWS_SQRT root = new WebReference.ZWS_SQRT();

            root.Credentials = new NetworkCredential("<username>", "<password>");

            WebReference.ZSqrt x = new WebReference.ZSqrt();

            WebReference.ZSqrtResponse y = new WebReference.ZSqrtResponse();

            y = root.ZSqrt(x);

 

But the problem is that, when calling the service, I usualy (but not always) get an error "The request was aborted: The request was canceled". If I wrap the statement y = root.ZSqrt(x) in while loop like this:

 

int i=0;

Boolean b=true;

while (b)

{

     try

     {

          y = root.ZSqrt(x);

          b=false;

     }

     catch

     {

     }

     i++;

if (i==20) break;

}

 

the program works, but this surely is not the right solution.

 

So, the error must somewhere in Web Service Configuration of SOA Management (the picture is below, surely it is not enough, but I must start somewhere).

 

Please help me to solve this.

 

Thanks in advance

 

Miran


ccms alerts via mail

$
0
0

Hi All,

 

I wanted to receive ccms alerts via email of my ECC 6.0 ehp7 for that i did some configurations i.e  in rz21 i created method zCCMS_OnAlert_Email assigned  that method to MTE nodes in rz20  but i am not able receive any mails from system can any one please help on this.

 

Regards,

Narendar.

Remote client copy error

$
0
0

Hi Experts,

 

During client copy of SAP_CUST profile from (Production) to

(Development) in test mode, I have come across error.(Faced issue with only 3 tables as shown in below.

 

1) Table has Incompatible Fields. (FMFGT_IPAC_ACCT)

2) Table not Convertible.(T7PIQRLKEYFNOMVA,T7PIQRLNOMVAL)

 

  1. Sr.No

Impacted Table

Application Component ID

Software Component

Patch Level

Development

Production

1

FMFGT_IPAC_ACCT

PSM-FG-TC

EA-PS

8

18

2

T7PIQRLKEYFNOMVA

IS-HER-CM-AD

IS-PA-CA

8

18

3

T7PIQRLNOMVAL

IS-HER-CM-AD

IS-PA-CA

8

18

 

After more analysis, I have found that there is difference between

software components patch level .

 

So my query is that , Is there is any option to resolve it except matching patch level.


I have tried with Tcode SCC9--Expert setting--Exclude Tables,But still issue is as it is.


 


Regards,

Parag Kumbhar.

technical URL path information of SAP NW AS JAVA apps

$
0
0

Hi there,

 

we have some SAP NW AS JAVA systems in our dmz for internet usage. This systems are protected also from our rweb.

 

It's our desire to filter out automatically default SAP URLs, which should be on a rweb blacklist for example like the string "tc~lm~itsam~ui~mainframe~wd" for /nwa-access - see overview under /nwa/QuickLinks.jsp (=Quick Links for SAP NetWeaver Administrator) - to protect the systems against unauthorized persons from the outside.

 

To get an information about which apps are running we use the following command: sapcontrol -host xxx -nr yy -function J2EEGetApplicationAliasList

F.ex. for /sld, we get "sap.com/com.sap.lcr, /sld, 13, Yes, No."

 

Stupidly the sld is running as a webdynpro like the following URL shows: http://host:port/webdynpro/resources/sap.com/tc~sld~wd~main/Main

 

So the AppAlias for sld "sap.com/com.sap.lcr" and the technical path "sap.com/tc~sld~wd~main" are different.

 

Therefore to protect the system we should add string "tc~sld~wd~main" (technical URL path) to the blacklist.

 

My questions:

 

Where can i find the informations about the technical URL paths of all sap nw java apps like f. ex. sld, without manual testing in a browser?

 

How can we link these informations (ApplicationAlias with the technical URL path of the app)?

 

Thanks in advance,

Matthias

Mass change valid from role of BP

$
0
0

Dear friends,

 

MaybeI'm wrong with place of my new discussion, ifthatcorrect please change.

We faced with problems of mass changing date "valid from" of BP, How we can change it mass?
BR Albert


 

ADS: SOAP Runtime Exception: CSoapExceptionFault : SOAP(100102)

$
0
0

HI

 

One of my RUSSIA Consultant ( where maximum PDF's are being used) is trying to generate a report PDF forms .

When consultant generating the required report for 1 user - the PDF form is opening,

 

But, When he is trying to generate for mass users (like a for a business unit around 1500 users) , he is getting the error as below

 

 

-


Error we are getting

-


 

ADS: SOAP Runtime Exception: CSoapExceptionFault : SOAP(100102)

  FPRUNX001

 

Diagnosis

An error occurred when Adobe Document Services (ADS) was launched.

 

System Response

Error message

 

Procedure

When troubleshooting, follow the steps described in SAP Note 944221.

 

First check the connection to ADS.

You can use the program FP_PDF_TEST_00 to do this.

From SAP NetWeaver Release 7.0, the program

FP_CHECK_DESTINATION_SERVICE must also run successfully

(both with and without the checkbox selected on the selection screen). If this program does not run successfully, there is a error in the configuration.

-


Please note for 1 user it is working, but for mass users it is not working.

 

 

I requested them to do in slice the data and do this, but  for what ever  reasons, they require this in a single run (let us not challenge there why sliced runs can not work)

 

can any one throw some light on this issues

 

Rgds

PR

ST05 trace issue

$
0
0

Hi Experts,

 

 

When we try to displya ST05 trace we are facing the below issue sporadically. Kindly let me know why this happens and how to slove this.

 

Thanks in advace!!

Capture.PNG

 

Regards,

Preetha Balan

Two Instance ID's are created during java system copy.

$
0
0


Hi Experts,

 

While Java System copy Import phase 26 getting error like:

 

ERROR: 2015-02-19 12:13:14 com.sap.inst.jswitch.config.SwitchTask run
Fatal exception during execution of JSwitch.
com.sap.engine.frame.core.configuration.NameNotFoundException: A configuration with the path "cluster_data/dispatcher/ID9347600" does not exist.
at com.sap.engine.core.configuration.impl.ConfigurationDataCacheAllImpl.getSubConfiguration(ConfigurationDataCacheAllImpl.java:107)
at com.sap.engine.core.configuration.impl.ReadAccessConfiguration.getSubConfiguration(ReadAccessConfiguration.java:715)
at com.sap.inst.jswitch.common.ConfigAgent.findDispatcherConfiguration(Unknown Source)
at com.sap.inst.jswitch.config.TaskProcessor.process(Unknown Source)
at com.sap.inst.jswitch.config.SwitchTask.doRun(Unknown Source)
at com.sap.inst.jswitch.config.SwitchTask.run(Unknown Source)
at com.sap.inst.jswitch.common.ConfigManagerApp.startAppJob(Unknown Source)
at com.sap.inst.lib.app.CommandLineApp.doMain(CommandLineApp.java:111)
at com.sap.inst.jswitch.JSwitch.main(Unknown Source)
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 com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)


INFO: 2015-02-19 12:13:14
JSwitch is stopped.
').

 

 

 

System details

 

Source System:                         

Windows 2003R2

NW7.01

Oracle DB

Java Version: 1.4.2.15

Instance ID: ID99526

 

 

Source System:                          

Windows 2003R2

NW7.01

Oracle DB

Java Version: 1.6.0_22

Instance ID: ID99526 & ID93476

 

In the Target system two Instance ID's are created, one id "ID99256" which is same as source system id created with Dispatcher and server0, another ID93476 is created with empty no values are found.

 

Please suggest some Workaround.

 

Thanks In advance,

 

 

Regards,

Sayendra.M


Users still showing in AL08, SM04 after logging off from sap

$
0
0

Hi Experts,

 

Sessions are active even after user  logs off the system. The user logged off as SHOPPER10A almost 20 minutes back. User is still showing as logged in AL08 logs.

 

This will cause issues for users when they log back in again. It will show error in portal and they will not be able to process the shopping carts

 

Can you please let me know how to get them logged off once they have exited their session? Greatly appreciate your help!

 

Thanks,

 

Asad

Error while installing NW 7.03 Trial version

$
0
0

Hi There,

I get an error in the second phase of installation when I run sapinst for trial version.

 

An error occurred while processing option SAP NetWeaver 7.0 including Enhancement Package 3 > SAP Application Server ABAP > MaxDB > Central System > Central System( Last error reported by the step: Assertion failed: in function () { NW.trace("NWInstall.createPorts()"); gui.updateMsg("nw.progress.creatingPorts", this.getSID()); installer.writeInfo("nw.progress.creatingPorts", this.getSID()); var ports = []; ports.push({name:"saphostctrl", number:1128, protocol:"tcp", comment:"SAPHostControl over SOAP/HTTP"}); ports.push({name:"saphostctrl", number:1128, protocol:"udp", comment:"SAPHostControl over SOAP/HTTP"}); ports.push({name:"saphostctrls", number:1129, protocol:"tcp", comment:"SAPHostControl over SOAP/HTTPS"}); ports.push({name:"saphostctrls", number:1129, protocol:"udp", comment:"SAPHostControl over SOAP/HTTPS"}); var instances = NWInstanceInstall.find(NWInstance.bySID(this.getSID())); for (var i = 0; i instances.length; ++i) { ports = ports.concat(instances[i].getPorts()); } if (this.needGWPorts()) { var ranges = [{prefix:"sapdp", base:3200, comment:"SAP System Dispatcher Port"}, {prefix:"sapgw", base:3300, comment:"SAP System Gateway Port"}, {prefix:"sapdp", postfix:"s", base:4700, comment:"SAP System Dispatcher Security Port"}, {prefix:"sapgw", postfix:"s", base:4800, comment:"SAP System Gateway Security Port"}, ]; for (var i = 0; i ranges.length; ++i) { var r = ranges[i]; if (!r.postfix) { r.postfix = ""; } for (var j = 0; j 100; ++j) { var num = String(j); if (j 10) { num = "0" + num; } var name = r.prefix + num + r.postfix; var number = j + r.base; ports.push({name:name, number:number, comment:r.comment}); } } } ports = ports.concat(this.getDB().getPorts()); var nwmgt = new NetworkMgt(); var mgt = new FileMgt(); var changed = false; var nodeName = nwmgt.getServicesFileName(); if (!installer.onOS400()) { var node = mgt.getNode(nodeName, true); ASSERT_DEFINED(arguments.callee, node, "node(" + nodeName + ")"); node.saveVersion(installer.onUnix()); } for (var i = 0; i ports.length; ++i) { var p = ports[i]; var entry = nwmgt.createServicesEntry(); entry.set(p.name, "tcp", p.number); if (!p.force && entry.getFromServices()) { installer.writeTrace("services entry '" + p.name + " " + p.number + "/tcp' exists. Nothing to do."); continue; } if (p.comment) { entry.addName("# " + p.comment); } entry.addToServices("REPLACE_NAME"); changed = true; } if (!changed && !installer.onOS400()) { NW.trace("NWInstall.createPorts(): nothing changed, reverting ", nodeName, "."); node.revertVersion(); } if (installer.onzOS()) { var node = mgt.getNode(nodeName, true); node.convertToEBCDIC(); node.tagEBCDIC(); } NW.trace("NWInstall.createPorts() done"); } Variable node(C:\Windows\system32\drivers\etc\services) should be defined). You can now

 

 

 

Also find the log file attached . Please help.

content server document upload issue

$
0
0

We are trying to upload a document to SAP Content Server using a C# application that connect to SAP over https.

 

 

 

the upload URL is something like this:

 

 

https://<hostname>:8443/sap/bc/contentserver/800/ContentServer.dll?create&pVersion=0046&contRep=ZC&docId=f42187b5d56d4eb2b1c88a0816b12672&compId=data

 

 

 

We get an exception when trying to connect :

 

 

The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.

--->

System.Security.Authentication.AuthenticationException:

 

The remote certificate is invalid according to the validation procedure.We exported the certificate (but is it the correct one?) from SAP.

 

We installed it in the store of the local machine when are trying to connect from (but is it in the correct part of the store?)

 

any suggestion would be very helpful.. thanks !!!

Problem with installing NAD 3.0 on miniSAP

$
0
0

Pls help, i read this forum, about my Error, but nothing help me. This error appered, on miniSAP, on different PC.

Error in phase: CHECK_REQUIREMENTS

 

Reason for error: TP_CANNOT_CONNECT_SYSTEM

 

Return code: 0208

 

Error message: error in transportprofil (param missing,

unknown,...)

 

 

all say about SMTS or SE06 when i can to install the TP, but, i did this, and this didnt help me.
Help me, write step by step what can i do. I write all about whats error i have and where.

I am looking for OLAP (BW) system response time refrences

$
0
0

Hi

 

I need to present Reference Times DIA for my BI system. I have seen the Reference Time in RFC as below in EWA report. I am not able to get any  of such values in Google for BI system. We have these reference/SAP recommended values for ECC system but was not able to get these values in BI system.

 

 

Task

  1. for Avg. Response Time[ms] - Yellow Rating
  2. for Avg. Response Time[ms] - Red Rating
  3. for Avg. DB time[ms] - Yellow Rating
  4. for Avg. DB time[ms] - Red Rating

RFC

2400

3600

1200

1800

 

 

Please help me with some values that can be used as reference/SAP recommended values for BI system to mark the transactions as green-red-yellow.

 

Regards

Naeem

Viewing all 2997 articles
Browse latest View live




Latest Images