T006S is an SAP Structure so does not store data like a database table does but can be used to process "Transfer structure for the units of measurement" Information within sap ABAP programs. This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.
i.e. DATA: wa_T006S TYPE T006S .
Below is the documentation avaialable and full details of the fields which make up this Structure.
You can view further information about this via relevant transactions such as SE11 or SE80. Also check out the Comments section below to view or add related contributions and example screen shots.
Field | Component Type | Data Type | length (Decimals) | Check table | Description | Conversion Routine |
NUMERATOR | FLTP | 16(16) | Numerator, floating point | |||
DENOMINAT | FLTP | 16(16) | Denominator, floating point | |||
NUM_FRAC5 | DEC | 5 | Numerator in 5-digit field | |||
DEN_FRAC5 | DEC | 5 | Denominator in 5-digit field | |||
NUM_FRAC10 | INT4 | 10 | Numerator in integer 2**31-1 | |||
DEN_FRAC10 | INT4 | 10 | Denominator in integer 2**31-1 | |||
FLTP_IN | FLTP | 16(16) | Input Value | |||
FLTP_OUT | FLTP | 16(16) | Output value | |||
ROUND_SIGN | CHAR | 1 | Rounding off sign | |||
BASMG | QUAN | 13(3) | Quantity field (Input/output) |
Key field | |
Non-key field |