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

Detailed documentation for SM21 ABAP system log

$
0
0

We are fine tuning our Solution Manager Technical Monitoring for the ABAP system log.

 

There are delivered metrics for different types of alerts that correspond to the System Log Message Group (GRP) and Sub-Name (N) fields in the output of the ABAP system log.   The documentation for these "codes" comes from here


Log File Monitoring Data Provider - SAP Solution Manager - SAP Library

 

Area Code     Subname     Message Short Text

 

BV                          4         Work process is in status Reconnect

BY                         2          Database error

BY                         4          Database error, access to table

BY                          M         SQL error

ED                          4          Name of SAP system not found

FB                          N          Spooler full

AB                                 Short dump created   

 

However, in the technical monitoring there is also a message type B19 which does not map to this table shown above.   Furthermore, I see many entries in SM21 output that don't map the this small table of messages:

 

Q0                           I

R4                           9

 

(and there are many others)

 

I have been looking for a comprehensive reference that goes beyond that simple table in order to (perhaps) configure alerts on those values if they show up in the log.

 

 

We have been searching for some time but haven't found anything that goes into detail about those codes found in the GRP, and N field headings in the SM21 output.

 

If anyone can provide any insight that would be much appreciated.

 

Thanks,

 

Jeff Henke

 

 

 

 

 

 

 

 

 

 

 



Re: standard text / Text module not printed correctly in Adobe forms

$
0
0

Hi Kartik,

 

1. ead standard text by FM READ_TEXT.

 

2. Read text lines content Read internal table LINES into wa_lines.

 

Concat wa_lines-tdline into string separated by as CL_ABAP_CHAR_UTILITIES=>CR_LF.

 

Bind that String to variable to text.

 

That will display text as you create.

 

Santosh

Re: Oracle restore with datafiles

$
0
0

Can i do a fresh install of Java 7.02 and then attach these datafiles in the fresh system

Re: BCM: Password can not be set

Re: Problem with connection string addon

$
0
0

Hi Maik, sorry but I have my SDK based in self-instructed I cant tell you about it, but I am using my code based in SDK Examples. I think this are based in old code.


Thank you.

Re: CSS style classes in SAP UI5 Table & Controls

$
0
0

I'm not aware of any specific documentation for the CSS classes, however I use a combination of developer tools to inspect elements and the actual renderer class source code.

 

Regards,

Jason

Re: Identification of Output-Firmed SNP Planned Orders

$
0
0

Hi There,

 

Go to table PLAF in ECC and extract the results based on location.

Click on change layout and select the below columns in the Displayed Column tab from the list of Column set.

Planned order,Material, Planning plant, Production plant, Procurement type, Planned order qty, Requirement Quantity ,Order start date, Order finish date, Conversion indicator, Firming indicator

Firming Indicator suggests fixed orders.

 

Note: The result from PLAF Table contains both Production Confirmed and Production Planned.

 

For all product and location combination extracted from PLAF extract the respective entries in /sapapo/rrp4: (order type 1F )This would give all the production confirmed and production planned order details.

 

Only keep entries with category as SNP:PL-ORD and ignore rest of the entries.


This would give you all the fixed planned orders.

Let me know if you have any query.


Cheers

Ajay

Re: Modify T-Code MCI4 Report

$
0
0

Hi,

I really appreciate Narasimhan's reply to this post. He has listed step bystep instructions on everything involved in creating a PM info structure. It was exactly what I was looking for. The post is old but I hope that

Narasimhan sees my appreiciation.

 

I have created a new  info structure S510 copied from S115 and I know  that I can access S510 using MCIS. But is it feasible to create a custom Z transaction that will access my new  info structure? If so, how can I do that?

 

Thank you in advance,

Marcia


Re: PO 7.3.1 multi-mapping with AEX

$
0
0

Hello,

For multimapping, u have to change the occ of MTs under signature tab - So that's correct.

Similarly, u have to change the SI occurrence in OM also and once done then test ur OM.

 

Thanks

Amit Srivastava

 

 

Re: Need to get display only mode in ess

Re: Get event on Form - Matrix

$
0
0

Hi Pablo,

I am still not sure whether I understand.

You mean this form, right ?

 

This is gonna be a little tricky. Form_Data_Load won't help you.

There is a lot of UI limitations coming together.

From the top of my head, I would do the following :

Form loaded -> disable Matrix, when batches gert created SBO enables again, so you can check for unload of creation form (65053) or what I prefer disable Matrix again when event GotFocus is fired.

Only problem : when Matrix is in focus ( active ) it cant be disabled -> so I put a "helper" EditText that is out of screen and give focus to that.

 

A little simplified it would look like that in ItemEvent :

 

if (pVal.EventType == SAPbouiCOM.BoEventTypes.et_FORM_DRAW && !pVal.BeforeAction && pVal.FormTypeEx == "41")
{    SAPbouiCOM.Form oForm = SBO_Application.Forms.Item(pVal.FormUID);    SAPbouiCOM.Item oItem = oForm.Items.Add("Test", SAPbouiCOM.BoFormItemTypes.it_EDIT);    oItem.Left = 2400; // out of visible area   ((SAPbouiCOM.EditText)oForm.Items.Item("Test").Specific).Active  = true;//put focus to this edittext    oForm.Items.Item("3").Enabled = false; //disable Matrix
}
if (pVal.EventType == SAPbouiCOM.BoEventTypes.et_GOT_FOCUS && pVal.FormTypeEx == "41" && pVal.ItemUID == "3")
{    SAPbouiCOM.Form oForm = SBO_Application.Forms.Item(pVal.FormUID);    if (oForm.Visible) //after from is loaded    {        ((SAPbouiCOM.EditText)oForm.Items.Item("Test").Specific).Active = true;        oForm.Items.Item("3").Enabled = false;    }
}

 

regards,

Maik

Re: install BODS 4.x 64 bits on solaris X86 system amd64

$
0
0

Hi,

 

Is it meeting the minimum requirements for installation? To my knowledge, DS 4.0 needs a minimum memory of 8 GB. At what point of the installation this error occurs?

 

Arun

Re: Information Design Tool Windows Authenication Error

$
0
0

Hi Hassanein,

 

Did you ever find a solution to the BI 4.1 IDT SSO issue?

 

I am facing the same problem now.

 

Thanks for any help.

 

David

Re: Sample ASAP 8 Project Plan

Internal Reconciliation - upto a specific date in ageing receivables

$
0
0

Hi!

 

I have run the following query to produce an ageing report. However, the ageing shows reconciled transactions as outstanding in the ageing buckets.

 

 

My query is as follows:

 

DECLARE @D1 DATETIME

SET @D1=  '1900-01-01 00:00:00.000'

 

select T1.cardcode 'Bp Code',T1.cardname 'Name',sysdeb 'Debit Amount',syscred 'Credit Amount',

(T0.SYSDEB-T0.SYSCRED) as 'Balance Due',

case T0.transtype

when '13' then 'INV'

when '14' then 'AR CN'

when '24' then 'INCOMING'

else 'Other'

end 'Type',

Ref1,

fccurrency 'BP Currency',

CONVERT(VARCHAR(10), refdate, 103) 'Posting Date',

CONVERT(VARCHAR(10), duedate, 103) 'Due Date',

CONVERT(VARCHAR(10), taxdate, 103) 'Doc Date' ,

CASE

when (DATEDIFF(dd,taxdate,{?Age})) <= 30

then

case

when SYSCRED <> 0 then -SYSCRED

else SYSDEB

end

end "0-30 days",

case when ((datediff(dd,TaxDate,{?Age})) > 30 and (datediff(dd,TaxDate,{?Age}))<= 60)

then

case

when SYSCRED <> 0 then -SYSCRED

else SYSDEB

end

end "31 to 60 days",

case when ((datediff(dd,TaxDate,{?Age})) > 60 and (datediff(dd,TaxDate,{?Age}))<= 90)

then

case

when SYSCRED <> 0 then -SYSCRED

else SYSDEB

end

end "61 to 90 days",

CASE

when (DATEDIFF(dd,TaxDate,{?Age})) > 90

then

case

when SYSCRED= 0 then SYSDEB

when SYSDEB= 0 then -SYSCRED

end

end "90 + days"

from dbo.JDT1 T0

INNER JOIN dbo.OCRD T1 ON T0.shortname = T1.cardcode and T1.cardtype = 'c'

INNER JOIN CRD1 T2 ON T1.CardCode = T2.CardCode

where T0.intrnmatch = '0' and T0.TaxDate >= @D1 and T0.TaxDate <= {?Age}

  ORDER BY T1.CARDCODE, T0.taxdate


In this instance, {?Age} refers to the date as at which I am running the report


What code should I be using in the above query so that it does not show reconciled transactions as at my ageing date i.e. items reconciled before  and upto the ageing date of the report


Re: Where are the Sybase ASE 15.7 client downloads for 64bit?

$
0
0

Hi,

 

thank you both for your fast answers,

 

Regards

Arthur

Re: Landscape com mais de um servidor PI é aconselhavel?

$
0
0

Oi Mariano, boa noite.

 

Desconheço qualquer recomendação formal da SAP, mas, em função das atualizações constantes da SEFAZ e necessidade de aplicação de SPs para NF-e com maior frequencia, seria interessante sim separar o PI corpartivo do PI NF-e.

 

Com relação ao alto volume do ambiente, sugiro consultar o material abaixo que foi muito útil no último projeto aonde tínhamos um ambiente robusto, mas o HA não estava devidamente configurado.

 

http://scn.sap.com/community/netweaver-administrator/blog/2013/09/21/steps-for-running-sap-netweaver-pi-on-high-availability-ha

 

Abs.

QA40 making usage decision for 03 lots with rejected MIC also

$
0
0


Hi Friends ,

 

 

QA40 is making Usage decision for 03 type lots having defects also and also for the lost having rejected MICs . can anybody explain why its so because SAP help has mentioned that for automatic UD there should be no rejected MIC .

 

 

Regards

Re: How to use custom component or SAP UI Component in Design Studio

Re: SQL Server Installation

$
0
0

Thanks for the reply Matt, I've got more question regarding my database layout.

 

I'm planning this:

 

Disk1: OS + SQL Server Software

Disk2: SAP Kernel

Disk3: TEMPDB

Disk4: Database
Disk5: Database Logs
Disk6: SWAP

 

My questions are:

 

- Is there an advantage to have more than one database log file?

- Is there an advantage to have the database (DATAX.mdf) in several Disks and not only in one(Disk4)?

 

Thanks for your time.

 

Regards,

 

JAM

Viewing all 8902 articles
Browse latest View live




Latest Images