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

Re: SAP Basis

$
0
0

Good Morning Abhijit,

 

These are not something one can easly answer in 1 post. I would recommend going for the BASIS Academy for this.

 

1)Difference between client copy & client refresh?
http://www.saptechies.org/what-is-the-difference-between-a-client-copy-and-client-refr/
2)How to tuneup sap system?
http://scn.sap.com/thread/958133
3)If sap system is working slow then how to rectify the reason beyond of slowness?
http://scn.sap.com/thread/958133
4)What is the O/S parameter or SAP parameter & their functions?
this all depends on the Operating System version and database version please check on Service Market Place
0016 - DB2-z/OS: BW: DB settings and performance
5)what is the function of TP?
tp command is used to import transports
tp help
This is tp version 380.08.41 (release 720, unicode enabled)
usage:   tp <command> [argument(s)] [option(s)], where <command> may be one of:
-----------------------------+-----------------------------+-------------------
Exporting                   I Buffer Actions              I Disk Space
-----------------------------+-----------------------------+------------------
EXPORT       I EXPWBO       I ADDTOBUFFER  I DELFROMBUFFERI CLEAROLD
R3E          I VERSE        I SETSYNCMARK  I ADDSYNCMARK  I DELSYNCMARK
CHECK        I SDE          I SETSTOPMARK  I DELSTOPMARK  I TESTOLD
TST          I              I MARK         I UNMARK       I
              I              I CLEANBUFFER  I              I
-----------------------------+-----------------------------+------------------
Importing                   I Special Functions           I Information
-----------------------------+-----------------------------+------------------
PUT          I              I LOCKSYS      I UNLOCKSYS    I SHOWBUFFER
IMPORT       I              I LOCK_EU      I UNLOCK_EU    I COUNT
CMD          I R3I          I WRITELOG     I GETPROTS     I SHOWPARAMS
              I              I SAPSTART     I SAPSTOP      I GO
R3H          I              I GETTBATGENT  I GETTRBATENT  I CONNECT
ACT          I MVKERNEL     I GETDDXTTENT  I GETDDXTFENT  I CHECKIMPDP
SXPRA        I SDI          I GETOPENCORR  I CREATECOFILE I SHOWINFO
GENTB        I GENT1        I PREPAREBUFFERI CREATEINFO   I GETOBJLIST
GENT2        I GEN          I CONTP        I EXPCHK       I EXTRDOCU
DIST         I XPA          I SHOWSEMAPHOREI SHOWSEMACLIENI GETCONVENT
MVNTABS      I VERSI        I SETSEMAPHORE I DELSEMACLIENTI EXPLAINRC
IMPSYNC      I DELIVER      I DELSEMAPHORE I GETTPSTATENT I
DEPLOY       I IMPORTPREVIEWI CHECKIN      I CHECKINMOVE  I CHECKOUT
CHECKDEPLOY  I              I              I              I
For more details call tp with the desired command (and no other parameters)

6)why need to require sap kernel of spam update?
add the improvements developed by SAP
7)what is the function of message server?
source : comes out of the basis manual
TheMessage Server (MS) handles communication between the distributed
dispatchers within the AS ABAP, thereby enabling scalability of several
parallel application servers. The message server is configured only once
per SAP system.
8)what is the best percentage of database and buffer?
again depends on OS version an DB version
1086130 - DB6: DB2 9.5 Standard Parameter Settings
9)by using the tcode st02, then find red color in some buffer area. why is it showing & how to do then?
you can double click on the red ones and get the parameter names and search on SMP
10)how can i justify that sap system is working fine. what are those process need to be justified in this regards?
you can use a basis checklist to check the system and make sure there are no errors etc.

 

http://scn.sap.com/docs/DOC-18590

  • Search before you post. There are many answered questions and helpful postings already in SCN. Before posting a new question, please search SCN to see if it’s already been asked / answered. That’s the fastest way to get your information.

 

Best Regards

Marius


Re: Extract data from contact persons - Work address and private communication address

$
0
0

Hi Hannes,

 

You can use the BADI :  CRM_MKT_READ_BP_ATTR to implement custom logic for file export scenario of the campaign.

 

For code reference you can use the default implementation class of this BADI :  CL_DEF_IM_CRM_MKT_READ_BP_ATTR.

 

Regards,

Hasan

Re: Maintain pricing procedures

$
0
0

If the 2 scenarios that you have mentioned are the prices you want to charge for two different customers...... I suggest you maintain two pricing procedure one with ZOCH as the statistical condition( Bill total of 3,635,159.36) type and the other with ZOCH as a normal condition (Bill Total of 3,745,397.90) type. (Tcode V\08)

 

Also, for these two customers create different Customer Pricing Procedures and assign it to the respective customer master data.

 

Now go to Tcode OVKK and set up respective pricing procedure determination.

 

(Sales Area+ Customer pricing procedure + Document Pricing procedure)

 

1. Sales Area + Cusotmer pricing pro 1 + Document pricing procedure = Pricing with ZOCH as statistical condition type.

 

2. Sales Area + Cusotmer pricing pro 2 + Document pricing procedure = Pricing with ZOCH as  a normal condition.

 

 

I hope this helps.

 

Thanks,

Kishor

Re: MEB1 Problem

$
0
0

Hi,

   Please refer the document: Rebate in MM for vendor rebate process.

   I didnt get that you were talking about rebate process. Please ignore my previous comment.

 

Thanks & Regards,

AKPT

Re: How to correct running sum in Webi

$
0
0

Both gıvıng ıncorrect results Sunil.

Re: DropDownListBox resets selected line value

$
0
0

The problem was solved with adding «,» to the number, e.g. «9999» → «9,999» in BSP-page.

Now dropdownListBox doesn't reset selected line value.

Re: Error message issued using BADI MRM_HEADER_CHECK appears more than once

$
0
0

just declare the flag as

 

static:lv_flag type c. it will store the value

BUG! CR 13 VerifyDatabase not using updated credentials

$
0
0

Hi,

I recently updated my Visual Studio project from CR2008 to the latest (CR 13) and now all my reports fail to log on.

 

The thing is that my reports all refer to a no longer existent database. What I have done successfully with CR2008 is that I set the connection info like this:

 

            foreach (CrystalDecisions.CrystalReports.Engine.Table table in ThisReport.Database.Tables)

            {

                table.LogOnInfo.ConnectionInfo = myConnectionInfo;

                table.ApplyLogOnInfo(table.LogOnInfo);

            }

 

And now I also added:

 

          ThisReport.SetDatabaseLogon(DatabaseLogin, DatabasePassword, DatabaseServerName, DatabaseName);

 

 

However, the VerifyDatabase() now fails!!

 

If I manually open up my report and change the connection settings to an existing database and save the report I can use the above code.

 

Note that the report will execute on the database provided in my code above, it is just the actual verification that is being performed on the connection info stored in the report.

 

As far as I can see, this is a bug!

 

Please help me!


Re: Error while determining root tag of XML: BOM / charset detection failed

$
0
0

Hi Saiyog,

 

can you let me know what was the resolution for this error as same error is throwing in my Java Code.

 

Regards,

Mani

Re: SP01 display issue

$
0
0

Is not this parameter only managed in MM reporting, not SP01 ?

 

Regards,

Raymond

Re: GL report not showing in proper sort order

$
0
0

Hi Pravin,

 

Have you check the below answer ?

Re: Basic settings need to be maintained for qm in plant

$
0
0

Hi,

 

Please Copy the Existing Plant Setting to New Plant by using Copy Functionality & Change required Field.

Re: CIM_ERR_FAILED: User Credentials Invalid or User denid access

$
0
0

HI,

Some thing has not gone correct. I would suggest remove all the file and set these peoperty to

 

log.internalInfo=true

log.internalDebug=true

 

and try to configure it.

 

also mentioned earlier the source should be pi and target should be solman.

 

What is the java version that you are using.

 

Thanks

Rishi Abrol

Re: After submitting the access request is not coming in Workinbox in GRC AC10.

$
0
0

Dear Maltesh,

 

This document was really help full. I had same issue as page 35  This is resolved now after performing those steps.

 

Only thing is my email notification for Approval and Rejection is not going. Also the email notification which is working now doesn't show the status of the request link.

 

Regards,

Abhisshek

Re: Parameters statement

$
0
0

Hi,

I try differents values on report's parameters, but no conclusive effect !

If I only assign my report one time, the first result is for all parameters (no selection), but on the others calls it takes the selection. Is there any initialization to do when calling a integrated report ? Strange...


Re: Authorization error; unknown user name or incorrect password. How to fix?

$
0
0

Try simple solution: type password on notepad, copy paste on ID, login now.

 

Regards,

Pranav

Re: price not updated

$
0
0

Hi Lars

Try to use 'UnitPrice' instead.

 

Kind regards,

Radek

Re: SAP Basis Help Desk Tickets

$
0
0

thank you, but do you have any input for me ?

 

E

Digital signature SFTP channel:No private key with signing capability found

$
0
0

Hi Experts,

 

I am trying to digitally sign messages being sent to the SFTP server using the PGP modules and I am getting the below error :

 

PGP Encryption Module: No
private key with signing capability found in
/usr/sap/<SID>/<instance>/sec/<sid>_private_key.key.  (<sid>_private_key.key is the name of the private key file given by me )

 

I have followed the instructions in "Generating SSH Keys for SFTP Adapters - Type 2 - Process Integration - SCN Wiki".

 

Please see the below screen capture of the channel configuration.Quick help will be much appreciated, I also tried exporting the private key from NWA key storage, imported it in the /usr/sap/<SID>/<instance>/sec/ directory and calling that key in the module but same is the result.

 

 

I tried checking the XPI_INSPECTOR logs as well but no futher information is available there.

 

Thanks & Regards,

Harish.

 

 

 

Re: Error after upgrading to sp7

$
0
0

Now, check the subreports.The connection to these should be the same (OLE DB, SQL Native 10).

If that checks out and you still get errors, I'd say it's time to start "digging". E.g.; download CR 2013 and start to remove the subreports as I described in my previous post.

 

 

 

- Ludek

Viewing all 8798 articles
Browse latest View live




Latest Images