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

Re: CR Reports won't run against SQL Server with TLS1.0 disabled

$
0
0

Hi Mike,

 

No, update your reports to use the Native 11 driver, MS has limitations to SQL 2008 and above when using the MDAC client dll's.

You'll find that info on MSDN also, weve found most issues are with Stored Procedure but there are others...

 

CR is aware of these new Clients so as you have confirmed, the Native driver works.

 

If you want to do the updates in code search for "replaceconnection_click" and you will find code samples on how to.

 

I suggest creating a test, once updated then save the reports so they don't have to update each time.

 

If you don't want to then log a ticket with MS to support their MDAC driver when using SQL 2008 or above. This is not a CR issue....

 

Thanks again

Don


Re: when refresh workbook, last prompt value is copied to all prompts...

$
0
0

ah we thought the same, yes, it "hides" the problem away.

Thanks Tammy, great suggestion.

Hopefully SAP can correct the bug anyway.

Re: = EPMLocalMember()

$
0
0

Hi Lucy,

 

RC is Excel reference style (can be used instead of A1 style), please read Excel help!

 

But please provide screenshots. I don't know where do you see this formula!

 

Vadim

MSSQL JDBC error

$
0
0

Hi All,

 

I am using SAP BO 4.1.  I have created a JDBC connection to MSSQL express edition on development server using IDT and i created a webi report and published the report on development.  It works fine, then i promoted the report to production server when i open the report and click refresh i am getting an error saying.

The following database error occurred: (CS) "Java Class not found in classpath : com.microsoft.sqlserver.jdbc.SQLServerDriver" . For information about this error, please refer to SAP Knowledge Base Article 2054721 on the SAP Support Portal. (IES 10901)

 

but when i open the connection setting on idt and test the connection it shows it is working fine. but when i refresh the report it wont work fine.

 

can someone help me how to fix this issue.

Value Mapping -

$
0
0

We have a scenario where, we might have to put 40,000 entries in the value mapping tables to use them during the mapping run time.

 

The maximum that I had in my previous projects was around 5,000.

 

I just wanted to get some input on what are your experiences on using 40,000 entries in the value mapping - from the performance perspective.

 

We are on PO 7.4 - Java only - installation.

Re: Affordable Care Act (ACA)

$
0
0

Hi all, has anyone seen the issue of those that terminate in a month and have coverage for the entire month get fixed.  It is still now working for us after application of the 7th update version 14.  I had an incident open with our system open (although they never logged in).  They told us to apply the 7th update when it was version 10.  That didn't work and when we replied we have not heard back since.  We are still having this issue and in fact now have other issues. I have seen this issue on the blog has anyone heard from SAP on a plan to fix this.  We are having to hold off on our upgrade to EHP6 until we get this done and I worried this is going to go all the way to March.

 

Thanks

Gina Gillespie

Re: Script for export to excel from Post processing invoices in SAP

$
0
0

Hi. Scriptman so much thanks for your answer. You are really expert in this. I moderated it a little but its working brilliant.

So great really and thanks allot for your brilliant help. Really appreciated.

 

Sincerely  Abjac

 

I ended in this one below

 

If Not IsObject(application) Then

   Set SapGuiAuto  = GetObject("SAPGUI")

   Set application = SapGuiAuto.GetScriptingEngine

End If

If Not IsObject(connection) Then

   Set connection = application.Children(0)

End If

If Not IsObject(session) Then

   Set session    = connection.Children(0)

End If

If IsObject(WScript) Then

   WScript.ConnectObject session,     "on"

   WScript.ConnectObject application, "on"

End If

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

session.findById("wnd[0]/usr/tabsSTR_BUCHG/tabpTB_BSID/ssubSTR_BUCHG_SCA:/HOAG/AK_POSTPROCESSING:0102/btnPB_MODAL").press

 

 

session.findById("wnd[1]/usr/tbl/HOAG/AK_POSTPROCESSINGTC_BSID_MODAL/txt/HOAG/AB_BSID_ST-BELNR[0,1]").setFocus

 

 

 

 

 

 

 

 

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

 

myFile = "C:\Users\xxx_xxxxx\Desktop\SapBigAdvizer.xlsm"

mySheet = "Advice"

 

Set xclApp = CreateObject("Excel.Application")

'xclApp.workbooks.add

Set xclwbk = xclapp.Workbooks.Open(myFile)

set xclsht = xclwbk.Sheets(mySheet)

 

xclApp.Visible = True

xclapp.DisplayAlerts = false

 

k = 1

 

do

 

set myTable = session.findById("wnd[1]/usr/tbl/HOAG/AK_POSTPROCESSINGTC_BSID_MODAL")

 

if k = 1 then

  'rows = myTable.RowCount

  cols = myTable.Columns.Count

  vRows = myTable.VisibleRowCount

  for j = 0 to cols - 1

   'xclApp.ActiveWorkbook.sheets(mySheet).Cells(k,j + 1).Value = myTable.columns.elementAt(j).title

    xclsht.Cells(k,j + 1).Value = myTable.columns.elementAt(j).title

  next

  k = k + 1

end if

 

 

for i = 0 to vRows - 1

l = 1

  for j = 0 to Cols - 1

    on error resume next

    myVariable = trim(myTable.GetCell(i,j).Text)

    if err.number <> 0 then  exit for   

    on error goto 0

    if left(right(myVariable,3),1) = "," then

       myVariable = replace(myVariable, "." , "")

       myVariable = replace(myVariable, "," , "")

      'xclApp.ActiveWorkbook.sheets(mySheet).Cells(k,l).Value = myVariable/100

       xclsht.Cells(k,l).Value = myVariable/100

    else

      'xclApp.ActiveWorkbook.sheets(mySheet).Cells(k,l).Value = myVariable

       xclsht.Cells(k,l).Value = myVariable

    end if

    l = l + 1

  next

  if err.number <> 0 then  exit for    

  k = k + 1

next

if err.number <> 0 then  exit do    

myTable.VerticalScrollbar.Position = myTable.VerticalScrollbar.Position + vRows

 

Loop

 

'xclapp.ActiveWorkbook.SaveAs myFile

'xclapp.ActiveWorkbook.Save

 

'xclapp.ActiveWorkbook.Close

 

Set xclwbk = Nothing

Set xclsheet = Nothing

'xclapp.Quit

set xclapp = Nothing

Re: Table size vs Table size in SAP HANA


Re: Adding Fields in MD04 screen

$
0
0

I did not get to do anything about it, maybe I was just trying to help in any way!

 

Please!

Re: COLLECT_DOCUMENTS para CT-e?

$
0
0

Obrigado José,

 

O processo então seria baixar estes xml na mão do site da sefaz e dar entrada no GRC, ou solicitar envio do transportador?

 

Att,

Alan Oliveira

Re: Using Windows based Database Studio to manage Maxdb on Unix

$
0
0

DB Studio is showing the error

 

User management exception: Cannot connect to host 192.168.10.100:7210 [Connection timed out: connect], -813.

 

I already checked

> x_server stop

2016-01-21 18:03:48  8544 INF  12905          sdbgloballistener on port 7210 stopped

 

> x_server start

2016-01-21 18:03:52  6976 INF  12916          Found running XServer on port 7200

2016-01-21 18:03:52  6976 INF  13011            version 'U64/LIX86 7.8.02   Build 041-121-251-982'

2016-01-21 18:03:52  6976 INF  13010            installation sid  - path:/sapdb/sid/db

2016-01-21 18:03:52  7584 INF  12798 NISERVER NI support started.

2016-01-21 18:03:52 96992 WNG  12453 NISSLSRV NISSL Init: SSL: Could not locate ticket file

2016-01-21 18:03:52 54048 INF  12903          sdbgloballistener on port 7210 started


> x_server

2016-01-21 18:07:34 91744 INF  12916          Found running XServer on port 7200

2016-01-21 18:07:34 91744 INF  13011            version 'U64/LIX86 7.8.02   Build 041-121-251-982'

2016-01-21 18:07:34 91744 INF  13010            installation sid  - path: /sapdb/sid/db

2016-01-21 18:07:34 42528 INF  12916          Found running sdbgloballistener on port 7210

2016-01-21 18:07:34 42528 INF  13011            version 'U64/LIX86 7.8.02   Build 031-121-246-245'


> sdbregview -l

Installation: Global    /sapdb/programs

Global Listener                7.8.02.31    valid    64 bit

Installation Compatibility     7.8.02.31    valid    64 bit

Installer                      7.8.02.31    valid

SAP Utilities Compatibility    7.8.02.31    valid    64 bit

 

Installation: SID    /sapdb/SID/db

Base                7.8.02.41      valid    64 bit

DB Analyzer         7.8.02.41      valid    64 bit

Database Kernel     7.8.02.41      valid    64 bit

Fastload API        7.8.02.41      valid    64 bit

JDBC                7.6.09.00      valid

Loader              7.8.02.41      valid    64 bit

Messages            MSG 0.10269    valid

ODBC                7.8.02.41      valid    64 bit

Redist Python       7.8.02.41      valid    64 bit

SAP Utilities       7.8.02.41      valid    64 bit

SQLDBC              7.8.02.41      valid    64 bit

SQLDBC 76           7.6.06.27      valid    64 bit

SQLDBC 77           7.8.02.41      valid    64 bit

Server Utilities    7.8.02.41      valid    64 bit

 

Installation: CL_SID    /sapdb/clients/SID

Base             7.8.02.41      valid    64 bit

Fastload API     7.8.02.41      valid    64 bit

JDBC             7.6.09.00      valid

Loader           7.8.02.41      valid    64 bit

Messages         MSG 0.10269    valid

ODBC             7.8.02.41      valid    64 bit

Redist Python    7.8.02.41      valid    64 bit

SAP Utilities    7.8.02.41      valid    64 bit

SQLDBC           7.8.02.41      valid    64 bit

SQLDBC 76        7.6.06.27      valid    64 bit

SQLDBC 77        7.8.02.41      valid    64 bit

 

> xinstinfo SID

GlobalDataPath      : /sapdb/data

GlobalProgramsPath  : /sapdb/programs

PrivateDataPath     : /sapdb/SID/data

Rundirectory        : /sapdb/SID/data/wrk/SID

InstallationPath    : /sapdb/SID/db

Kernelversion       : KERNEL    7.8.02   BUILD 041-121-251-982

 

:~ # /sapdb/programs/bin/sdbverify

Checking installation "Global" (/sapdb/programs, 7.8.02.31)

Checking package Installer

Checking package SAP Utilities Compatibility

Checking package Global Listener

Checking package Installation Compatibility

Checking installation "Legacy" (/sapdb/programs, )

Checking installation "sid" (/sapdb/sid/db, 7.8.02.41)

Checking package Base

Checking package SQLDBC

Checking package SQLDBC 77

Checking package Fastload API

Checking package SQLDBC 76

Checking package SAP Utilities

Checking package Server Utilities

Checking package Database Kernel

Checking package Redist Python

Checking package Loader

Checking package ODBC

Checking package Messages

Checking package JDBC

Checking package DB Analyzer

Checking installation "CL_sid" (/sapdb/clients/sid, 7.8.02.41)

Checking package Base

Checking package SQLDBC

Checking package SQLDBC 77

Checking package Fastload API

Checking package SQLDBC 76

Checking package SAP Utilities

Checking package Redist Python

Checking package Loader

Checking package ODBC

Checking package Messages

Checking package JDBC

Successfully done

 

> xuser list

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

XUSER Entry  1

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

Key           :DEFAULT

Username      :SAPSID

UsernameUCS2  :S.A.P.S.I.D. . . . . . . . . . . . . . . . . . . . . . . . . . .

Password      :?????????

PasswordUCS2  :?????????

Long Password :?????????

Dbname        :SID

Nodename      :bigmama

Sqlmode       :SAPR3

Cachelimit    :-1

Timeout       0

Isolation     0

Charset       :<unspecified>

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

XUSER Entry  2

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

Key           :w

Username      :SUPERDBA

UsernameUCS2  :S.U.P.E.R.D.B.A. . . . . . . . . . . . . . . . . . . . . . . . .

Password      :?????????

PasswordUCS2  :?????????

Long Password :?????????

Dbname        :SID

Nodename      :bigmama

Sqlmode       :SAPR3

Cachelimit    :-1

Timeout       0

Isolation     0

Charset       :<unspecified>

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

XUSER Entry  3

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

Key           :c

Username      :CONTROL

UsernameUCS2  :C.O.N.T.R.O.L. . . . . . . . . . . . . . . . . . . . . . . . . .

Password      :?????????

PasswordUCS2  :?????????

Long Password :?????????

Dbname        :SID

Nodename      :bigmama

Sqlmode       :SAPR3

Cachelimit    :-1

Timeout       0

Isolation     0

Charset       :<unspecified>

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

XUSER Entry  4

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

Key           :c_J2EE

Username      :CONTROL

UsernameUCS2  :C.O.N.T.R.O.L. . . . . . . . . . . . . . . . . . . . . . . . . .

Password      :?????????

PasswordUCS2  :?????????

Long Password :?????????

Dbname        :SID

Nodename      :bigmama

Sqlmode       :SAPR3

Cachelimit    :-1

Timeout       0

Isolation     0

Charset       :<unspecified>

Re: CANADA Year End 2015

$
0
0

Dear community,

 

SAP Note 2270284 - YE: RL1 and RL2 certification numbers for tax year 2015 has been released.

 

Addressing some questions raised in this forum:

 

You need to apply the transport file (which delivers workbench objects) to client 000.

If you receive an error saying that the family font ARIAL does not exist, you can follow the steps described in SAP Note 1605966 - Upload True Type fonts to SAP for use in SAPscript forms and Smart Forms to install this font family in your system.

 

Furthermore, T4 has not been changed by CRA this year, therefore, you will still see T4(14) when printing the form. You can check the official form in the following URL: http://www.cra-arc.gc.ca/E/pbg/tf/t4/README.html

 

Kind Regards,

Felipe.

Re: Sap error message no M3354 : Valuation XX not maintained for material XXXX

$
0
0

Hi Chhandak

 

Did some further research..

 

This happens when Stock Segment does not exist for a Material..  It is created manually in such cases, it seems.. now I dont know how

 

Do you have Costing view for the material? Usually you dont have it for Non-Valuated. But it does not harm even if you have.. May be you can try with a Material that has Costing View

 

Ajay M

Re: smp 3.0 with side car ( mbo)

$
0
0

Hi Jitendra.

thanks for your faster answer.

let me to ask some question in order understand you.

 

An app develop off-line in smp 2.3 mbo, can i deploy and i still working, development new funcionality  in smp 3.0 mbo ?

if i want to create a new app off-line with mbo in smp 3.0, is it possible?  or i have to create it in smp 2.3.

 

happy weekend.

Re: making current month's weeks output only


Re: Transport ESB and ID objects

$
0
0

Thank you so much Praveen for your reply!

I am in ESR of QA now and don't see any of my objects been transported over. Is there any steps I need to do and missed?

 

Blue

couldnt find xs project after eclipse installation

$
0
0

Hi all,

my requirement is to work on HANA modelling by connecting to my cloud account data.

 

i installed Eclipse Mars/luna 32/64 bit - tried all options one by one after un-installing current,

but unable to find xs project.

 

as mentioned in other threads, i did restart eclipse in clean mode from cmd prompt and other option by adding -clean to first line in eclipse.ini file.

 

but still no luck. Can anyone please suggest on this ?

 

i followed the same process mentioned in SAP Development Tools for Eclipse

 

i have already checked on SCN/google for the solutions and none of them helped out.

Capture.PNG

Re: Error when updating Values in Characteristic via Batch Input LSMW

$
0
0

Hello Jurgen,

 

I had already seen that SAP note, but unfortunately when I try the batch input method with the transaction CT02 for an existing characteristic I get the error that "CT02 is not supported". I also tried the BAPI method but I only can select the BAPI_CHARACT_CREATE, not the one called BAPI_CHARACT_CHANGE. Since I dont have too much time to investigate due to the deadlines of the project, I will live with the solution of creating the characteristic from scracth with all its values, and if they want some change they will have to do it manually. Maybe I will investigate more in this subject when I finish this project and I have more free time.

 

My programmer also said to me that she might create a Z program which leverages the functionality of that BAPI_CHARACT_CHANGE and that could be another option too.

 

 

Anyway, thank you again for your help.

 

Kind regards,

 

Antonio

Re: Call a subroutine from a standard include program

$
0
0

Thank you Raymond and Goppi,

I replaced the include with the main program SAPLKWTF.

 

Unfortunately, I do not have adequate data to test this. But the good news is, the EPC/ATC program checks are all positive now.

 

I will test this on Monday and get back to you with the results.

 

How do we check the main program for a given include?

Re: Stat Forecast execution Error

$
0
0

Thanks Rohit,

 

We will definitely abide by your advice.

 

regards,

Viewing all 2803 articles
Browse latest View live


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