Aug
28th

How to check the OSS notes validity

Files under SAP | 3 Comments

Maybe I must start with a simple classification of the OSS notes first.

There are three types of OSS notes.

1. Descriptive – in this notes you can find a description of a problem and how to resolve it with means of customizing or different settings in the system. Kind of these notes are FAQ’s, general notes for something – there is collection of OSS notes related to any problem.

2. Code correction – these notes are easily to implement with SNOTE transaction.

3. Mixed type – in this case there are some manual corrections or customizing in the system described in the note and also code correction implementation. Implementation could be before or after manual corrections – this is described in the note and is very important in some cases.

The other classification of the OSS notes is: release dependent or release independent. Below we will discuss about release dependent OSS notes with code corrections.

First you need to check the section “Affected Releases”. You must find whether your release is mentioned there. After that you must check in the next section “Correction delivered in Support Package” for your release what Package Name is mentioned there. If this package is greater than what you have installed in the system then the note is applicable. The opposite – when the package in the note is equal or less than yours – the note is not applicable, because the functionality delivered with the note are already in the system.

Chk_OSS_1

Some times there is a section “Related notes”. Some of them could be a prerequisite for our note. It is better practice you to check the correction instructions, because there you could find also the prerequisites, even though they are not mentioned as related notes. It is better you to check these prerequisites (if there are) before implementing, because some of them could consists of manual corrections.

Chk_OSS_2

Aug
27th

At work

Files under Uncategorized | 5 Comments

And again back …

Aug
10th

On holiday

Files under Uncategorized | 3 Comments

It is great … sea, sun, breeze, dreams … :)

Aug
6th

How to change an ABAP program package from $TMP to a z* package

Task

You would like to change the ABAP program package from $TMP to a z* package.

Solution

You could do this with the following steps:

In SE38, enter your program name. Then use the menu option “goto -> object directory entry”. Click on “Change”, and you can enter the new package. You’ll be prompted for a workbench request number also. The same technique can be used to change packages in other objects.

You can also use transaction SE03 (or the tools option from SE09/SE10), but access is sometimes restricted.

Aug
4th

Script How-to find the indexes for a table in Oracle

Files under Uncategorized | 4 Comments

You would like to find the indexes for a table in Oracle database.

You could find this with the following SQL using user_ind_columns view:
Select table_name, index_name, column_name,

FROM user_ind_columns

WHERE table_name= ‘My_Table_Name’;

If you want to find Column position then add column_position column in the query.

My_Table_Name is the name of the table which you would like to check the history of the statistics for.

In an SAP system you can use the report RSORADJV for this purpose or use SQL*Plus at OS level.

Aug
1st

Happy SysAdmin Day

Files under Uncategorized | 4 Comments

It is a little bit late for some countries, but for other it is still valid – 31 July is a SysAdmin Day this year.
I would like to wish all the best to all colleagues – Sys Admins and they to be as always very professional and good in all their activities in computer’s areas.