Quantcast
Channel: SCN : All Content - SAP NetWeaver Administrator
Viewing all 5139 articles
Browse latest View live

Country version in ecc6

$
0
0

Hi Guru's

 

How to check which country version is installed  in sap ecc6.0 system and how to install the same

 

Regards

Mohammed


TLS 1.2 Support For ECC 6.0

$
0
0

Hello All ,

 

We have a situation where we have to Establish connection from SAP To External web services running on Protocol HTTPs and TLS V 1.2.

 

I have went through the note http://service.sap.com/sap/support/notes/510007       and established all the configuration as need and we are able to connect to that web service on HTTPs and TLS V 1.2. where SAP machines are running on EHP5 and above.

 

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

But we have one of our major system running on ECC 6.0 Kernel 700 , according to this note http://service.sap.com/sap/support/notes/1848999 we cannot upgrade Crypto lib to common Crypto lib to support TLS 1.2 because it supports only kernel 7.20 PL88 and above.

 

Important

You must not use CommonCryptoLib if you are running Kernel releases prior to 7.20 PL88, as CommonCryptoLib is not fully compatible with such old releases. Use SAPCRYPTOLIB 5.5 PL38 in such cases.

 

But i have to use TLS 1.2 even in lower version of ECC running , because out vendor who serves us that webservice they will not support TLS 1.2 and below due to major security issues.

 

Please  help me understand how should i able to over come this issues , do i really need to upgrade kernel to 720 will ECC 6.0 support kernel 720.

is there a way where in i can run common crypto lib on kernel 700 version.

 

How do i know the compatibility issues so that i can understand in which areas that would impact our day to day business.

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

Please help me in moving forward.

 

Thanks in advance!!

 

Regards,

Vardhan.

Looking for effective putsteps ... ... ready . ERROR: stopping on error 12 during DD ACTIVATION

$
0
0

Hi Experts,

 

We are doing stack upgrade of our PI  system using SUM tool. In the preprocessing step; it got terminated with error "Checks after MAIN_SHDRUN/ACT_UPG were negatice. Last error code set : Detected 40 aborted activities in 'ACTUPG.ELG' . tp returned with code 12. Check SAPup.ECO.

 

In SAPup.ECO; we have below logs

 

"

EXECUTING /usr/sap/SID/SUM/abap/exe/tp pf=/usr/sap/SID/SUM/abap/var/ACTUPG.TPP put SID
This is tp version 380.29.44 (release 721, unicode enabled)
Looking for effective putsteps ... ... ready (looking for putsteps)
ERROR: stopping on error 12 during DD ACTIVATION
stopping on error 12 during DD ACTIVATION

tp returncode summary:

TOOLS: Highest return code of single steps was: 12
WARNS: Highest tp internal warning was: 0118
tp finished with return code: 12
meaning:
  A tool used by tp aborted
SAPup> Process with PID 28990 terminated with status 12 at 20150623073200!

"

 

 

But other than above; there is no errors like lw memory or an ySQL error as found in few SDN posts or SA notes. Went through other log files as wel but there is nothign much useful. In SAP; there is no ABAP dump or failed jobs. Could you please help

 

Thanks

Varun


MSCS cluster testing- SAP is not started.

$
0
0

Hi All,

 

We have successfully installed SAP ERP6.0 EHP3 system with pracle and windows 2008 MSCS.

 

We are able to move the services from node to another node.

 

When we are testing we have performed as below.

 

First both SAP and oracle service are on node 1. we can see SAP is started on both the nodes.

 

We have rebooted node 1. both SAP and Oracle services moved to Node2.

 

We are able to connect to SAP. We have not done anything on Node 1 after reboot.

 

Now we have rebooted node 2. both SAP and oracle service moved to Node 1.

 

Oracle is in open state, we unable to connect to SAP, when we check in MMC its in Grey.

 

Why is that SAP  not started automatically. Is there issue with installation or this is correct way SAP MSCS works.

 

Please let me the workaround for this issue.

 

Regards,

Kiran M

TMS configuration

$
0
0

Hi Expert ,

 

I m learner just i configured virtual system as dev , qty , prd but when i add transport route dev to qty it shows red route whenever i configure consolidation route so plz tell me step by step how to configure .that   and one thing when i release transport req. child properly released but parent gives error  :- NO AUTHORIZATION TO CHANGE FILE \\netweaver\sapmnt\trans\tmp\ecce90004




thx

ashish

SAP Logon with VBA

$
0
0

Good morning, everybody!

 

 

I've been looking for the solution in the last days but I really have not managed to succeed:

I am trying to make a vba code to:

1-log into SAP,

2-run some transactions

3-export to excel.

 

 

But even the "log into SAP" part is not OK!

 

 

I tried several codes, the one below OPENS the SAP logon screen, but does not fill in any fields. I Used CreateObject("Sapgui.ScriptingCtrl.1"):

Sub Entrar_SAP()

 

 

 

 

If Not IsObject(SAPguiApp) Then

Set SAPguiApp = CreateObject("Sapgui.ScriptingCtrl.1")

End If

If Not IsObject(Connection) Then

Set Connection = SAPguiApp.OpenConnection("xxxxxxx)", True)

End If

If Not IsObject(session) Then

Set session = Connection.Children(0)

End If

session.findById("wnd[0]/usr/txtRSYST-MANDT").Text = "100"

session.findById("wnd[0]/usr/txtRSYST-BNAME").Text = "user"

session.findById("wnd[0]/usr/pwdRSYST-BCODE").Text = "pass"

session.findById("wnd[0]/usr/txtRSYST-LANGU").Text = "PT"

session.findById("wnd[0]/usr/txtRSYST-LANGU").SetFocus session.findById("wnd[0]/usr/txtRSYST-LANGU").caretPosition = 2

session.findById("wnd[0]").sendVKey 0

 

 

 

 

 

 

ANother one, with CreateObject("SAP.Functions"), showed:

"RFC error received. No RFC authorization for function module RFC PING"

 

 

the code is:

'Declaration

Dim objBAPIControl As Object 'Function Control (Collective object)

Dim sapConnection As Object 'Connection object

Set objBAPIControl = CreateObject("SAP.Functions")

Set sapConnection = objBAPIControl.Connection

sapConnection.Client = "xxxxx"

sapConnection.User = "xxxxxx"

sapConnection.Language = "PT"

sapConnection.hostname = "xxxxx"

sapConnection.Password = "xxxxxxxx" 'Fake password

sapConnection.SystemNumber = "4"

sapConnection.System = "xxxxxx)"

sapConnection.Logon

If sapConnection.Logon(1, True) <> True Then

MsgBox "No connection to R/3!"

Exit Sub 'End program

End If

 

 

 

 

 

 

Can someone please help me?

Thanks!!

Welcome Pop-Up message on each SAP transactions (T Codes)?

$
0
0

Hi  Experts,

 

 

We are implementing the SAP for our client. I am doing it for the first time and posting my query here.

 

 

For the first few hours of SAP Go-live we want to display a pop-up message for each and every authorized (or successful )T-code. This message will be like greeting our users on SAP.

 

 

Please tell me if this is possible in SAP?

May be some settings in GUI or ABAP program or T Code or Table settings?

 

 

I am very optimistic  on this. Please let me know

 

 

Thanks,

A.

SAP Instance profile parameter inconsitency

$
0
0

Hi All,

 

 

Once we performed upgrade from ECC EHP5 to ECC EHP7 , whenever making any changes to instance profile parameter from SAP level and doing a system restart , it is removing start profile parameters values from instance profile. Due to this system was not comming up.

 

Did any one face this issue. Is there any solution for this inconsistency.

 

Kindly suggest me.

 

Thanks

Pradeep.


SQL-Info Button missing from Detail-View in SM50

$
0
0


Dear Experts,

 

I implemented SAP Note 1926911 SM50: Display of SQL statements fails in two of our systems.

In both systems I can go to transaction SM50 and double-click on a process to see its details.

The problem is that only one system shows the button "SQL-Info" and the last executed SQL statement.

The other system doesn't show this information and I don't know why. An authorization trace is all green. Maybe there is some customizing involved?

 

Can you help me?

 

Thanks!

Calin

Faster process for SAP Client delete

$
0
0


Hi ,

 

I have just completed a homogeneous system copy (MS SQL Server-Specific: Detach/Attach or Backup/Restore) process.

 

Currently, I am doing a post processing steps. I have a copy a master client from the source system client (800) to the current system client (111).

 

1) I would like to know if there is any faster process for SAP full client deletion. I have been deleting the client since past 2 day and it's still 60 % completed. We have a space issue so we have to delete client first then copy the master client into another client.

 

2) I would like to know if I have to run BDLS. I think I don't have to since I used backup/restore process. How can I verify at db level that all the tables have the current SID ?

 

Our database is MSSQL 900GB.

 

Thanks

Mohammad Farooq

Installing db2 LUW client into application server

$
0
0

Hi folks,

 

One doubt.

Is it required to install DB2 LUW client in a application server or only a CI?

 

 

thanks in advance,

Ma

ANST "The RFC connection was improperly configured"

$
0
0

Hello Gurus,

 

after EHP7 update we try to find some note with ANST (Automated Notes Search Tool) but get always the error

"The RFC connection was improperly configured".

 

RFC SAPSNOTE in SM59 is fine.

SAP_OSS in SM59 is fine.

 

Has someone a suggestion?!

 

regards

Chris

Support for Microsoft Edge (Codename Spartan in Windows 10)

$
0
0

Hi,

 

I am looking for some indication as to what will be the minimum requirements for supporting the new Microsoft Edge browser that will ship with Windows 10. In the past a minimum SPS Level was required for all kinds of systems (ERP, Portal, BW, etc.) to get support from SAP.

 

Most of our systems are already running NW 7.40 or 7.30, but the SPS level varies :-(

 

So far I have found no information to that effect.

 

Thanks in advance and best regards,

Thomas

Issue in content server migration

$
0
0

Hi All,

 

We are in the process of moving our content server from one windows server to another windows server. Our content server version of source system is 7.6 and the target system in on 7.9.

But during recovery we are facing the attached issue.

We have taken backup from source system and trying to import in to target system.

Tried both offline and online backup.

 

But getting the same error.

Please suggest.

 

Regards,

Shyam

error while adding the server node in sap pi 7.0

$
0
0

Hi Experts ,

we are facing the issue while adding the additional server nodes  in config tool. we are using PI 7.0 version

below is the error we are getting

[Thr 140474361538304] *** ERROR => JHVM_LoadJavaVM: Cannot create Java VM (rc=-6) [jhvmxx_mt.c  707]
[Thr 140474361538304] *** ERROR => Cannot load Java VM (server) (rc=-1) [jlnchxxi_mt. 836]
[Thr 140474361538304] **********************************************************************
[Thr 140474361538304] *** ERROR => Java VM initialization failed.
[Thr 140474361538304] *** Please see SAP Note 943602 , section 'Java VM initialization issues'
[Thr 140474361538304] *** for additional information and trouble shooting.
[Thr 140474361538304] **********************************************************************
[Thr 140474361538304] SigISetIgnoreAction : SIG_IGN for signal SIGCHLD
[Thr 140474361538304] JLaunchCloseProgram: good bye (exitcode = -1)

 

could you please us  how we solve this issue...

 

Regards,

Suresh.


Installing UI5_731

$
0
0

Hello to all! I am trying to install add-on UI5_731 for SAP ERP 6.0 EHP 6 (NW 7.31). When I am loading this package into SAINT transaction

it ask me for stack.xml. I am trying to generate this stack.xml via Solution Manager, but I don't know how. I choose this ERP system, and what I should do next ?

 

Should I chose Add-on Products?

Снимок экрана 2015-06-26 в 16.15.08.png

If I do this I can't find any UI5 components there:

What should I choose to get a right stack.xml for SAINT transaction ? Thanks!

Снимок экрана 2015-06-26 в 16.19.41.png

DB13 offline backup is failed

$
0
0

Hi,

 

I scheduled offline backup of production system through DB13. It is not completing and getting failed with return code 0005.

 

Error log is attached. Kindly provide solution to overcome this.

 

BR0280I BRBACKUP time stamp: 2015-06-18 01.35.32

BR0279E Return code from 'SHELL=/bin/sh /oracle/VEP/112_64/bin/rman nocatalog': 1

BR0536E RMAN call for database instance VEP failed

BR0280I BRBACKUP time stamp: 2015-06-18 01.35.32

BR0532E Cataloging backups of all database files failed

BR0280I BRBACKUP time stamp: 2015-06-18 01.35.32

BR0307I Shutting down database instance VEP ...

BR0280I BRBACKUP time stamp: 2015-06-18 01.35.38

BR0308I Shutdown of database instance VEP successful

BR0280I BRBACKUP time stamp: 2015-06-18 01.35.38

BR0304I Starting and opening database instance VEP ...

BR0280I BRBACKUP time stamp: 2015-06-18 01.35.51

BR0305I Start and open of database instance VEP successful

BR0056I End of database backup: beqtgiet.ffd 2015-06-18 01.35.32

BR0280I BRBACKUP time stamp: 2015-06-18 01.35.52

BR0054I BRBACKUP terminated with errors

 

Thanks in advance,

Maheswari.

SSL error

$
0
0

Hello,

 

SSL is configued properly.I have imported certificate in browser.

But when i am accessing link it has following https mark in browser

 

https.png

 

 

Please guide me how to resolved it.I need to resolve it urgently.I have some work on fiori launch pad.

 

Regards,

Akshay

Error accessing the BEx Web Application

$
0
0

Hello,


This is an error in SAP BW Netweaver 7.31.

We done a support packages update a week ago to SP11.

 

Now, we´re facing one error when we try to connect to BEx Web Application (web access to reports):

SNAG-0201.jpg

SNAG-0202.jpg

 

The error details show the following error:

 

The initial exception that caused the request to fail was: com/sap/tc/ur/browser/BrowserDescriptor : cannot initialize class because prior initialization attempt failed


We already tried to apply the SAP notes 1995970 and also the 2000082 but unfortunately they are not applicable through SNOTE transaction, because we searched for a solution and we found the BI exception with class "BIBaseRuntimeException"

 

 

Any tips? Can you help us to find a solution for our problem?

 

 

Kind regards,

JD

Which Application Help (Online Documentation) to install?

$
0
0

I'm trying to configure the Application Help for ECC6.0 EHP7.  I know I have to download the Online Documentation, install it using SWPM, and configure the variant for SAP Library (SR13).  I'm using PlainHtmlFile help type.  It is working but only partially.  For most transactions, the application help is coming up when I click Help> Application Help on SAPGui.  But for some transactions (e.g. CAT2), I'm getting the following error message:

 

Could not find file "\\<fileserver>\<share>\PLAINHTM\EN\64\40008a470211d189720000e8322d00\frameset.htm"

 

I tried the following versions of Application Help.  The results varies.

  • 50129858 (SAP ERP 6.0 SPS27 Onl. Doc. )
  • 50129488 (SAP ERP 6.0 EHP7 SPS08 Online Documentation)
  • 50127703 (SAP Netweaver 7.4 SPS09 Onl. Doc.)

 

Am I downloading the wrong version of Application Help?  Did I missed a step?  Any help would be appreciated.  Thanks.

 

Henry

Viewing all 5139 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>