Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

What ABAP tables s*** do mean

Former Member
0 Kudos

Dear Experts,

could you please explain what the tables s*** are for?

As far I understed there are actually structures, but in DD I see as a description they are transportation tables...

And in my case I do have one such a table in one system but not in other...so can I just create a simular table with custom name?

Thanks

BR

1 ACCEPTED SOLUTION

former_member202818
Active Contributor
0 Kudos

Hi Denis,

Tables start with 'S' are standard tables used to store aggregate results.

For example table S013 is for vendor evaluation. Which will hold different vendors rating got calculated from all dealings done with vendors.

For example this table will get updated when we do a good receipt through MIGO.

Regards

5 REPLIES 5

PeterJonker
Active Contributor
0 Kudos

I have transparent tables in my SAP system that starts with S.

So your conclusion that these are (always) structures is not correct.

What is really the problem you are facing ? And which structure / table are you talking about ?

0 Kudos

I'm talking about e.g. this piece  of code where the table s905 will be used:

SELECT *

          INTO CORRESPONDING FIELDS OF TABLE ts_menge

          FROM zdyu_s905

          FOR ALL ENTRIES IN g_v_it_marc_wlbm

             WHERE matnr = g_v_it_marc_wlbm-matnr

             AND werks = g_v_it_marc_wlbm-werks

             AND spwoc IN r_zeitr

             AND werks = g_v_it_marc_wlbm-werks

             AND ( bwart = '251' OR bwart = '252' OR

                bwart = '301' OR bwart = '302' ).

And I was going to do simular select in other system, but this system doesn't contain such a table,

so I don't know...can I just create any z-table with the same structure as s905 or ?

0 Kudos

Hi Denis,

S001 to S499 are standard tables that belong to LIS (Logistic Information System)

S500 to S999 are customer tables that belong to LIS (Logistic Information System)

These tables are created in customizing, ask your LO consultant.

Regards

JCD

former_member202818
Active Contributor
0 Kudos

Hi Denis,

Tables start with 'S' are standard tables used to store aggregate results.

For example table S013 is for vendor evaluation. Which will hold different vendors rating got calculated from all dealings done with vendors.

For example this table will get updated when we do a good receipt through MIGO.

Regards

Former Member
0 Kudos

There are lot of S*** tables as well as structures in system. You need to let us know which table you are referring to which is not there in both of your systems. It could be an LIS table BW table etc.

As for your question you can create an custom name space table with similar structure.

You will have to handle the DB operations yourself unless.

Regards