cancel
Showing results for 
Search instead for 
Did you mean: 

HI SAP GURUS

Former Member
0 Kudos

What does IDES stand for?

SPRO stands for?

What are different kinds of messages in the R/3 system?

How many types of tables exist in Data dictionary?

Which 2 of the functions are generated by the R/3 system when you activate a lock object?

What is SAP MMC good for?

What is component of the component Monitoring?

BASIS Stands for----


regards,

rao

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear M. Rao,

Most of your queries can be answered by doing a small internet seach from google. I tried it and it really answered most of the queries.

I will suggest you to visit http://sap-img.com/sap-sd.htm. It will give you the overview of SAP SD module.

Moreover there is a separate section of FAQs with answers which will help you in great deal.

Do let me know in case of any queries.

Hope this helps you.

Do award points if you found them useful.

Regards,

Rakesh

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Rao,

What does IDES stand for?

Ans. International Demonstration and Evaluation or Education System

SPRO stands for?

Ans. SAP Project Review Object

What are different kinds of messages in the R/3 system?

Ans. A --> Termination Message

The message appears in a dialog box, and the program terminates. When the user has confirmed the message, control returns to the next-highest area menu.

E --> Error Message

Depending on the program context, an error dialog appears or the program terminates.

I --> Information

The message appears in a dialog box. Once the user has confirmed the message, the program continues immediately after the MESSAGE statement.

S --> Status Message and Sucess message

The program continues normally after the MESSAGE statement, and the message is displayed in the status bar of the next screen.

W --> Warning

Depending on the program context, an error dialog appears or the program terminates.

X --> Exit

No message is displayed, and the program terminates with a short dump. Program terminations with a short dump normally only occur when a runtime error occurs. Message type X allows you to force a program termination. The short dump contains the message ID.

How many types of tables exist in Data dictionary?

Ans. There are three types of tables.

1. Transparent Table

Exists with the same structure both in dictionary as well as in database exactly with the same data and fields.

2. Pooled Table

Pooled tables are logical tables that must be assigned to a table pool when they are defined. Pooled tables are used to store control data. Several pooled tables can be cominied in a table pool. The data of these pooled tables are then sorted in a common table in the database.

3. Cluster Table

Cluster tables are logical tables that must be assigned to a table cluster when they are defined. Cluster tables can be used to strore control data. They can also be used to store temporary data or texts, such as documentation.

The major difference between transparent tables, pooled tables and clusterd Tables are:

A transparent table is a table that stores data directly. You can read these tables directly on the database from outside SAP with for instance an SQL statement.

Transparent table is a one to one relation table i.e. when you create one transparent table then exactly same table will create in data base and if is basically used to store transaction data.

A clustered and a pooled table cannot be read from outside SAP because certain data are clustered and pooled in one field.

One of the possible reasons is for instance that their content can be variable in length and build up. Database manipulations in Abap are limited as well.

But pool and cluster table is a many to one relationship table. This means many pool table store in a database table which is know as table pool.

All the pool table stored table in table pool does not need to have any foreign key relationship but in the case of cluster table it is must. And pool and cluster table is basically use to store application data.

Table pool can contain 10 to 1000 small pool table which has 10 to 100 records. But cluster table can contain very big but few (1 to 10) cluster table.

For pool and cluster table you can create secondary index and you can use select distinct, group for pool and cluster table. You can use native SQL statement for pool and cluster table.

A structure is a table without data. It is only filled by program logic at the moment it is needed starting from tables.

A view is a way of looking at the contents of tables. It only contains the combination of the tables at the basis and the way the data needs to be represented. You actually call directly upon the underlying tables.

Which 2 of the functions are generated by the R/3 system when you activate a lock object?

What is SAP MMC good for?

What is component of the component Monitoring?

BASIS Stands for----


Reward points pls.

Regards,

Govind.

Former Member
0 Kudos

IDES

"Internet Demonstration and Evaluation System"

SPRO

SAP Project Reference Object

Messages in R/3 System

There are 6 types of normal messages they are

TYPE->DESCRIPTION->DILOG BEHAVIOUR->MESSAGE APPEARS IN

1. i ->Info Message->Program continues after Interruption->Model Dilog Box

2. s->Set Message->Program continues without Interruption->Status bar of next screen

3. w->Warning->Context Dependent->Status bar or model dilog box

4. e->Error->Context Dependent->Status bar or model dilog box

5. a->Abort->Program Cancelled->Model dilog box

6. x->Exit->Runtime error MESSAGE_TYPE_X triggered->Short dump

Tables in Data Dictionary

Difference between transparent tables, pooled tables & Cluster Table.-

Transparent tables:

Transparent tables in the dictionary has a one-to-one relation with the table in database. Its structure corresponds to single database field. Table in the database has the same name as in the dictionary. Transparent table holds application data.

Pooled tables.

Pooled tables in the dictionary has a many-to-one relation with the table in database. Table in the database has the different name as in the dictionary. Pooled table are stored in table pool at the database level.

Cluster Tables

Cluster tables contain continuous text, for example, documentation. Several cluster tables can be combined to form a table cluster. Several logical lines of different tables are combined to form a physical record in this table type. This permits object-by-object storage or object-by-object access. In order to combine tables in clusters, at least parts of the keys must agree. Several cluster tables are stored in one corresponding table on the database.

Views

Contents of a view are dynamically generated when called from a program.

Lock Object Function Modules:

When you create a lock object System automatically creat two function module.

1. ENQUEUE_<Lockobject name>. to insert the object in a queue.

2. DEQUEUE_<Lockobject name>. To remove the object is being queued through above FM.

BASIS:

Business Access to State Information and Services

Reward points if useful.