i search a solution to build a internal table with value.
I have read many books and any Internet Forum, but in result, it will not work.
Who can help?
TYPES: BEGIN OF t_struct1,
jahr(4) TYPE n,
j(2) TYPE n,
tab1 TYPE p decimals 3,
tab2(4) type n,
tab3(3) type n,
END OF t_struct1,
t_itab1n TYPE STANDARD TABLE OF t_struct1.
DATA itab1n type t_itab1n.
By cheking the program, the following Errors Comes:
Feld "VALUE" unbekannt. Es ist weder in einer der angegebenen Tabellen
enthalten noch durch eine "DATA"-Anweisung definiert.
You post in a German-speaking forum, giving an error message from your system that is in German, too, and still you use English? Hmm...
Either way, your syntax looks fine. However, remember that the VALUE keyword belongs to the new 7.40 instruction set, so if your SAP release is below 7.40, it will not work.
Entschuldigen Sie bitte, dass ich in englisch gepostet habe!
Ich bin darauf gekommen, dass die Value-Angabe erst ab Version 7.40 funktioniert, hatte noch mit der Alt-Version 7.20 rumgespielt.
So bin ich eine Erfahrung reicher, hätte mir viel Zeit sparen können (fast ein Tag mit Probieren, Recherchieren), aber ich habe festgestellt, dass da noch sehr viel erklärungsbedarf besteht.
Du weist der Tabelle direkt einen kompletten Tabellenkörper als Inhalt zu. Eine sehr geniale Syntax (ebenso wie vieles andere, was neu in 7.40 gekommen ist). Wenn Du Dich mit den neuen Syntaxen mal beschäftigt hast, magst Du Dich mit dem alten ABAP nicht mehr abgeben!