TSK_CLASS_DATA_VIEW SAP (Texts, descriptions, additional data for header) Structure details
Description: Texts, descriptions, additional data for header
Related tables to TSK_CLASS_DATA_VIEW
Access table TSK_CLASS_DATA_VIEW
TSK_CLASS_DATA_VIEW is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Texts, descriptions, additional data for header" 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_TSK_CLASS_DATA_VIEW TYPE TSK_CLASS_DATA_VIEW.
The TSK_CLASS_DATA_VIEW table consists of various fields, each holding specific information or linking keys about Texts, descriptions, additional data for header data available in SAP. These include VAGRP_TXT (Description of the Planner Group), PPKZTLZU_TXT (Description of the partial lot assignment), QPRVKT_KURZTEXT (Text for Sample-Drawing Procedure), QDDRT_KURZTEXT (Description of the dynamic modification rule)... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .
TSK_CLASS_DATA_VIEW structure Technical Details:
Delivery Class:Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)
SAP TSK_CLASS_DATA_VIEW structure fields - Full list of fields found in SAP data dictionary
| Field | Description | Data Element | Data Type | length (Dec) | Check table | Conversion Routine | Domain Name | MemoryID | SHLP |
| FLG_CAPO_TXT | Description of standard values at order creation | CWB_FLG_CAPO_TXT | CHAR | 60 | DDTEXT | ||||
| VAGRP_TXT | Description of the Planner Group | DISPTXT | CHAR | 30 | TEXT30 | ||||
| PPKZTLZU_TXT | Description of the partial lot assignment | CWB_PPKZTLZU | CHAR | 60 | DDTEXT | ||||
| QPRVKT_KURZTEXT | Text for Sample-Drawing Procedure | PRZIEHVERF_KTEXT | CHAR | 40 | CHAR40 | ||||
| QDDRT_KURZTEXT | Description of the dynamic modification rule | QDDRT_QKURZTEXT | CHAR | 40 | CHAR40 | ||||
| STATU_TXT | Description of the status | STTEXT | CHAR | 40 | TEXT40 | ||||
| TQ12T_KURZTEXT | Description of external numbering | TQ12T_TXT | CHAR | 40 | CHAR40 | ||||
| TQ39L_KURZTEXT | Description of dynamic modification level (TQ39A) | TQ39L_QKURZTEXT | CHAR | 40 | CHAR40 | ||||
| TQ79T_KURZTEXT | Description of key words for inspection point user fields | TQ79T_TXT | CHAR | 40 | CHAR40 | ||||
| VERWE_TXT | Description of usage | CWB_VERWE_TXT | CHAR | 20 | TEXT20 | ||||
| PLNTX | Desccription of the task list type | PLNTX | CHAR | 30 | TEXT30 | ||||
| KTEXT | Task list description | PLANTEXT | CHAR | 40 | TEXT40 | ||||
| TXT | Description of the Planner Group | DISPTXT | CHAR | 30 | TEXT30 | ||||
| VTEXT | Description | VTEXT | CHAR | 20 | TEXT20 | ||||
| STTEXT | Description of the status | STTEXT | CHAR | 40 | TEXT40 | ||||
| NAME1 | Name | NAME1 | CHAR | 30 | TEXT30 | ||||
| LINE_KTEXT | Work center description | KTXT40 | CHAR | 40 | TEXT40 | ||||
| KAP_ARBPL_TXT | Work center description | KTXT40 | CHAR | 40 | TEXT40 | ||||
| STRAT_TEXT | Description of maintenance strategy | TXWSTRA | CHAR | 30 | TXT30 |
| Key field | Non-key field |
How do I retrieve data from SAP structure TSK_CLASS_DATA_VIEW using ABAP code?
As TSK_CLASS_DATA_VIEW is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on TSK_CLASS_DATA_VIEW as there is no data to select.How to access SAP table TSK_CLASS_DATA_VIEW
Within an ECC or HANA version of SAP you can also view further information about TSK_CLASS_DATA_VIEW and the data within it using relevant transactions such asSE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).
Search for further information about these or an SAP related objects