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

Re: schedule right to Webi Documents

$
0
0

Login to CMC.  Right Click on webi document, run a security query.


Re: Help with career change into SAP

$
0
0

Before I discovered the world of SAP, my background was the same as yours - Unix, Windows and Mac systems admin, with a bit of networking thrown in. I had also done some programming. The place I started in the SAP world was with Basis (called NetWeaver these days...). That's the area of SAP work that will most closely match your existing skill set.

 

There are many other areas within the world of SAP, obviously. You already mentioned you know about BI. Most of them, though, require business knowledge. That's not to say that a techie can't get that knowledge. On the contrary, I have. But I started in Basis and learned from there, and it took a while.

 

Of course, I know almost nothing about you, your abilities and your skills. Based purely on the few sentences you've written above, I'd suggest you start in an area that most closely matches your existing skills - Basis - and use that as a way to learn about other areas and see if any appeal to you.

 

But it is hard to make a good recommendation with so little knowledge. Bear that in mind when reading this and any other comments you may get.

 

Steve.

Re: Error-Product does not exist in /n/scwm/adhu

$
0
0

HI Kris

 

 

your right this note is for VAS.. I think you can try and check for issue resolve if error not in Production system.

 

Also this not is a code correction for your error .

 

or try to debug with technical consultant and find that note code and your debug code is at same place

 

Regards

Suraj

Re: Saint/Spam error at Test_Import Phase:

$
0
0

Hello,

 

Have you tried solution?

 

Resolution

  1. Go to transaction SE80
  2. Enter the Function group as NF_UTILITY.
  3. Select the FM ITL_NF_NUMBER_CONDENSE right click on FM and select option 'Delete'
  4. Afterwards continue in SPAM.

BR,

K.

Re: HR Renewal - PAOM Integration fail

Re: SAP ECC6.0 Ehp4 Kernel

Financial Report Templates: Printing First Level rows

$
0
0

Hi,

 

In the Print Preview of Financial Report templates, the first level rows do not get printed.

Why is it so and how can it be printed?

 

Thanks.

Crystal Reports layout samples for Profit and Loss, and Balance Sheet

$
0
0

Hi,

 

Are there Crystal Report samples available for final accounts financial reports, like Profit and Loss, and Balance Sheet for the India localization or any other localization? Are Schedule VI formats available as per Indian compliance requirements?

 

The standard PLD layouts are too simple and do not have visual appeal.

 

Thanks.


Re: Document date and Type is not coming through source file during LSMW upload.

$
0
0

You should focus on the error message.

you wrote "System throws message as document type "SA" is not defined."

I doubt that SAP would issue a message about a wrong document type if the reason would be the document date.

The document date may come up as next error, after the initial error is fixed, but before you can be certain, you have to fix the problem with the document type.

Further you should post the original message, unmodified, along with the message number

Re: Se80 transaction layout "This program cannot display the webpage"

$
0
0

Thank you, Aakash. Your information about it, was helpful.

 

In addition I enabled http port 8000 (smicm transaction), and after that in se80 layout tab ask me user and password I wrote my user and password of minisap, and now show me the grey screen in layout tab. Someone knows how can i resolve this problem?

 

Enclose picture.

reorg'ed table, no change in wasted space

$
0
0

Hi,

 

I need to reorg a table because it is a top in wasted space:

 

SELECT * FROM

(SELECT

    SUBSTR(TABLE_NAME, 1, 21) TABLE_NAME,

    NUM_ROWS,

    AVG_ROW_LEN ROWLEN,

    BLOCKS,

    ROUND((AVG_ROW_LEN + 1) * NUM_ROWS / 1000000, 0) NET_MB,

    ROUND(BLOCKS * (8000 - 23 * INI_TRANS) *

      (1 - PCT_FREE / 100) / 1000000, 0) GROSS_MB,

    ROUND((BLOCKS * (8000 - 23 * INI_TRANS) * (1 - PCT_FREE / 100) -

      (AVG_ROW_LEN + 1) * NUM_ROWS) / 1000000) "WASTED_MB"

  FROM DBA_TABLES

  WHERE

    NUM_ROWS IS NOT NULL AND

    OWNER LIKE 'SAP%' AND

    PARTITIONED = 'NO' AND

    (IOT_TYPE != 'IOT' OR IOT_TYPE IS NULL)

  ORDER BY 7 DESC)

WHERE ROWNUM <=50; 

 

TABLE_NAME                                                        NUM_ROWS     ROWLEN     BLOCKS     NET_MB   GROSS_MB  WASTED_MB

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

EDI40                                                                              63643300       3904   61161993     248527     439100          190573

 

 

I reorged this table to another tablespace with brspace, then reorged it back to PSAPSR3, and the WASTED_MB in this query stayed exactly the same.

 

I did some reading and it seems that the reason is that this table contains a BLOB:

 

SQL> desc sapsr3.EDI40;

Name Null?    Type

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

MANDT NOT NULL VARCHAR2(9)

DOCNUM NOT NULL VARCHAR2(48)

COUNTER NOT NULL VARCHAR2(9)

PAGENO NOT NULL NUMBER(5)

TIMESTMP NOT NULL VARCHAR2(138)

PAGELG NOT NULL NUMBER(5)

VARDATA BLOB


The CLOB column size of this table is 350 GB:

 

SQL> select

  2 l.segment_name,

  3 l.column_name,

  sl.segment_type,

  4 5    sl.bytes as gig

from

  dba_lobs l,

  6 7    8    dba_segments sl

  9  where

10    l.owner = 'SAPSR3' and

11 l.table_name = 'EDI40' and

12 sl.owner=l.owner and

13 sl.segment_name in (l.segment_name, l.index_name)

14  union (

15  select

16 segment_name,

17    null,

18 segment_type,

19 sum(bytes)/(1024*1024) GIG

20  from

21 dba_segments

where

  owner = 'SAPSR3' and

  segment_name = 'EDI40' and

22   23 24   25    segment_type in ('TABLE','TABLE PARTITION')

26  group by

27 segment_name,

  segment_type

);

28   29

 

SEGMENT_NAME COLUMN_NAME SEGMENT_TYPE GIG

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

EDI40                                                        TABLE     348998

SYS_LOB0000368442C00007$$ VARDATA LOBINDEX 65536

SYS_LOB0000368442C00007$$ VARDATA LOBSEGMENT 131072



Refer to SAP note 646681 and in particular, the section regarding reorganization of tables with LONG fields. In short, you must [STOP SAP]; then 1) generate the ddl for these tables, 2) export their contents to a file, 3)drop them, 4)re-create them with the ddl statements, 6) import the data back into them, 7) re-create their indexes and 8) check their statistics.


Is the process the same for BLOB? To reclaim the wasted space in this table, is this what is needed to be done?


Thanks,

Willem



Re: BPC reporting limits

$
0
0

Hello,

The reporting tools for SAP BPC are.

1. MS Excel EPM Addin

2. BW Bex Reporting (Limited area of BPC data can be reported/queried in BEX for that Query development to be done as Bex consumes only Query. )

3. BO WEB-i (Backend settings to be done, Limited area of BPC data can be reported/queried in BO WEB-i for that backend settings are mandate. )

 

Apart of these I did not see any other Non-SAP reporting tools on BPC.

 

Hope this is helpful-Thank you

BW on Hana trial: Unable to connect to A4H

$
0
0

Hi

 

In June I created a free BW on Hana Developer Edition trial on AWS (I selected the version without BO to get a free license - AS ABAP incl. BW 7.4 SP8 on SAP HANA 1.0 SP8 [Developer Edition]). I ony used it a couple of times so far. Now I am able to start my instance and log on to the remote logon. Everything looks good, but when i try to log on to BW (A4H) with SAP GUI or connect to A4H from Hana Studio I only get the error message that "partner not reached" or unable to connect to A4H.  

 

I tried to stop and then start the instance again but it did not solve the issue.

 

On the desktop there is a text document called A4H. I opened it and theres some license info there. There I can see the text EXPIRATION=20140909. So does this mean that A4H do not respond because there is some license that has expired? I thought this was a free trial license with no limitations in days like the other....

 

Has anyone else encountered the same?

 

Kind regards

 

Erik

Re: how to define commitment item as a document splitting characteristic

$
0
0

Hi,

 

If you're trying to assign the profit center field and the FM is active with PSGLFLEXT, you won't be able to do it because, SAP understands the Public Sector don't used profit center.

 

If your client isn't Public Sector, you can active FM, but before this, what you should have to do is enabled Document Splitting for all companies code.

 

Check the note: 891144 - New GL - Document splitting - Risks with subsequent changes. Maybe this can help you.

 

JPA

storage Location delivery address

$
0
0

Hello,

We have a custom print program for PO's.

Also the sapscript form has been customized.

It contains however window 'consgnee' and element 'HEADER_DELADDRESS'  like original(medruck).

I have setup a strage location with a specific address.

While trying to print a PO with this storage location at line level, PO shows the correct address in tab delivery address.

When calling PO-Preview it will show a blank window 'consgnee'-

I have been looking into almost every forum and didn't get an answer on this,

Please advice. Thanks in advance.

Raf


Re: Install SAP ERP 6.0 with EHP7 - Inst Master ???

$
0
0

Hi Tomas,

 

Good day, as per you advice. I manage to go thru the IDES installation but its stuck on 19 of 34 (Import ABAP) with error code 2.

 

Below are the text written in ECC Message Box.

 

An error occurred while processing option SAP Business Suite 7i 2013 Support Release 1 > EHP7 for SAP ERP 6.0 ABAP Support Release 1 > Oracle > SAP Systems > Application Server ABAP > Standard System > Standard System( Last error reported by the step: Process call 'D:\usr\sap\ECC\SYS\exe\uc\NTAMD64\R3load.exe -testconnect' exits with error code 2. For details see log file(s) R3load.exe.log.). You can now:

  • Choose Retry
    to repeat the current step.
  • Choose Log Files
    to get more information about the error.
  • Stop the option and continue later.

Log files are written to C:\Program Files/sapinst_instdir/BS2013/BS2013SR1/ERP607SR1/ORA/INSTALL/STD/ABAP.


Below are the logs:-

TRACE      2014-10-06 02:41:00.279

Using custom value flow_trace for property SAPINST_MESSAGE_DEVLOG_THRESHOLD.

 

TRACE      2014-10-06 02:41:00.279

Using custom value info for property SAPINST_MESSAGE_GUILOG_THRESHOLD.

 

TRACE      2014-10-06 02:40:31.676 [iaxxclib.cpp:174]

CLib::load()

Opened C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428\\sylib722.dll

 

TRACE      2014-10-06 02:40:31.681

exe dir is C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428

 

TRACE      2014-10-06 02:40:31.836

MessageLib initialized successfully.

 

INFO       2014-10-06 02:40:31.851 [synxcpath.cpp:799]

CSyPath::createFile() lib=syslib module=syslib

Creating file C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428\dev_sap_kernel_test_06_Oct_2014_02_40_31.

 

INFO       2014-10-06 02:40:31.851 [synxcfile.cpp:376]

CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)

           lib=syslib module=syslib

Removed file C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428\dev_sap_kernel_test_06_Oct_2014_02_40_31.

 

TRACE      2014-10-06 02:40:31.851 [syxxclogbook.cpp:219]

PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)

           lib=syslib module=syslib

Initialized SAP kernel tracing to file C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428\dev_sap_kernel

 

TRACE      2014-10-06 02:40:31.851 [csicomponentsetmanager.cpp:112]

CSiComponentSetManager::readFrameworkJslib()

Reading framework jslib.

 

TRACE      2014-10-06 02:40:32.266 [csicomponentsetmanager.cpp:146]

CSiComponentSetManager::readFrameworkJslib()

Reading framework jslib done.

 

TRACE      2014-10-06 02:40:32.271 [iaxxclib.cpp:174]

CLib::load()

Opened C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428\iaguieng722.dll

 

TRACE      2014-10-06 02:40:32.271 [syxxclogbook.cpp:219]

PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)

           lib=syslib module=syslib

Initialized SAP kernel tracing to file dev_sap_kernel

 

TRACE      2014-10-06 02:40:39.31 [synxcuser.cpp:2083]

CSyUserImpl::isExistingOnOS() lib=syslib module=syslib

existence check for user User returned true.

 

TRACE      2014-10-06 02:40:39.31 [syxxccache.cpp:419]

CSyAccountCache::addToCache(const IaPtr<CSyAccountImpl> account)

           lib=syslib module=syslib

inserted account (User, S-1-5-21-3140821232-796471121-1237701465-1000, USER) into the accountcache.

 

TRACE      2014-10-06 02:40:39.36 [cguiproxy.cpp:74]

CGuiProxy::doLog()

Waiting for client connection (1)

 

TRACE      2014-10-06 02:40:39.36 [synxccuren.cpp:901]

CSyCurrentProcessEnvironmentImpl::setEnvironmentVariable(const iastring & 'SAPINST_JRE_HOME', const iastring & 'C:/Users/User/AppData/Local/Temp/sapinst_exe.3676.1412534428/jre')

           lib=syslib module=syslib

Environment variable SAPINST_JRE_HOME set to value 'C:/Users/User/AppData/Local/Temp/sapinst_exe.3676.1412534428/jre'.

 

TRACE      2014-10-06 02:40:42.848 [cguiproxy.cpp:74]

CGuiProxy::doLog()

Start client logon ...

 

TRACE      2014-10-06 02:40:42.848 [cguiproxy.cpp:398]

CGuiProxy::checkIfLogon

Connection request to guiengine backend by host child process at (696:700)

 

TRACE      2014-10-06 02:40:42.848 [cguiproxy.cpp:455]

CGuiProxy::checkIfLogon

GUI Protocol version is 3.1

 

TRACE      2014-10-06 02:40:42.848 [cguiproxy.cpp:456]

           CGuiProxy::checkIfLogon

Send connect information

 

TRACE      2014-10-06 02:40:42.848 [cguilogon.cpp:246]

CGuiLogon::testForAutoLogon()

client connected from child process at (696:700)

 

TRACE      2014-10-06 02:40:42.901 [cguiproxy.cpp:74]

CGuiProxy::doLog()

Client successfully logged on from child process at (696:700)

 

INFO       2014-10-06 02:40:43.87 [synxcpath.cpp:799]

CSyPath::createFile() lib=syslib module=syslib

Creating file C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428\dev_sap_kernel_test_06_Oct_2014_02_40_43.

 

INFO       2014-10-06 02:40:43.89 [synxcfile.cpp:376]

CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)

           lib=syslib module=syslib

Removed file C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428\dev_sap_kernel_test_06_Oct_2014_02_40_43.

 

TRACE      2014-10-06 02:40:43.90 [csimanagerinterfaces.cpp:3798]

CSiManagerInterfaces::tryToLoadMessageDictionary

Loading E:/New folder/messages.xml ...

 

TRACE      2014-10-06 02:40:43.210 [csimanagerinterfaces.cpp:3800]

CSiManagerInterfaces::tryToLoadMessageDictionary

Loaded E:/New folder/messages.xml

 

TRACE      2014-10-06 02:40:43.217 [csimanagerinterfaces.cpp:3798]

CSiManagerInterfaces::tryToLoadMessageDictionary

Loading E:/New folder/messages.xml ...

 

TRACE      2014-10-06 02:40:43.288 [csimanagerinterfaces.cpp:3800]

CSiManagerInterfaces::tryToLoadMessageDictionary

Loaded E:/New folder/messages.xml

 

TRACE      2014-10-06 02:40:43.288

exe dir is C:/Users/User/AppData/Local/Temp/sapinst_exe.3676.1412534428

 

INFO       2014-10-06 02:40:43.290 [synxcpath.cpp:799]

CSyPath::createFile() lib=syslib module=syslib

Creating file C:\Program Files\sapinst_instdir\x.

 

INFO       2014-10-06 02:40:43.290 [synxcfile.cpp:376]

CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)

           lib=syslib module=syslib

Removed file C:\Program Files\sapinst_instdir\x.

 

TRACE      2014-10-06 02:40:43.292 [iaxxclib.cpp:174]

CLib::load()

Opened C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428\iakdblib722.dll

 

TRACE      2014-10-06 02:40:43.292 [sixxcreate.cpp:46]

startInstallationViaStarter()

 

SAPinst build information:

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

Version: 2014.09.0

Build:         1521363

Compile time:  Sep 15 2014 - 16:33:56

Make type:     optU

Codeline: 720-2_REL

Platform:      NTAMD64

Kernel build:  721, patch 319, changelist 1516453

Exe directory: C:\Users\User\AppData\Local\Temp\sapinst_exe.3676.1412534428

 

Looking forward for your reply.

 

Regards,

Jay

-96-

Re: Transshipment Location Unloading restriction

$
0
0

Hi Vicente;

 

The detail of the Whole scenario bellows:

 

The operating time of the Plant just for departures is 06:00hrs to 23:59hrs

 

Each customer has its own operating times for instance:

 

For Customer "A" Lead Time: 14 hrs - Oper Window: 07:00 to 14:00 hrs

For customer "B" Lead Time: 9 hrs - Oper Window: 07:00 to 18:00 hrs

 

And here is where it becomes tricky:

 

If you send a Truck to customer A:

                -For safety reason you are available to send it from 03:00 to 10:00 hrs

                -You can have the truck loaded early.

 

If you send a Truck to customer B:

                -For safety reason you are available to send it from 06:00 to 18:00 hrs

                -You can have the truck loaded early

 

So we are working with the transshipment location as a "Parking lot" where the truck remains until the departure window match the "safety departure time"

 

This is why we don´t really want to unload and reload the cargo because it is just a parking lot, once the "safety departure time" is reached the truck will continue the trip.

 

Thanks for your Help.

 

Camilo Martín

Re: deletion of request cancelled due to internal error

$
0
0

Hi,

 

Refer to Note 1150724, which introduces the check and repair programs for PSA. They can be used to solve most PSA issues

Re: ICCRepoConfig - Could not initialize Information Steward Core (COR-10095)

$
0
0

HI Sateesh, I am having this same error too. I have tried running the ISRepositoryUtility command in create mode. Still showing the same error. The error log is attached. I have battled with this error for 2weeks.

Re: SAML2 Web Single Sign-on updates too many services.

$
0
0

Hi,

 

SICF uses inheritance. So children inherits logon procedure unless you specify otherwise. Hence it's not that much work. You can go to top one - disable SAML and then enable SAML for nodes that you wish for.

 

Cheers

Viewing all 8798 articles
Browse latest View live




Latest Images