‎2007 Jun 07 10:45 AM
hi,
i have a badi(se19), and i want to declare an internal table in method IF_EX_BOM_UPDATE~CHANGE_AT_SAVE.
my problem is that i dont know how can i declare it.
is anyone can please help me?
thanks,
dana.
‎2007 Jun 07 10:52 AM
‎2007 Jun 07 11:23 AM
Hi!
In ABAP Objects you can't declare internal tables with header line, but simple internal tables should work.
Here's an example:
TYPES: BEGIN OF your_structure,
field1 TYPE nachn,
"----more fields-----
fieldz TYPE vorna.
TYPES END OF your_structure.
DATA: it_table TYPE TABLE OF your_structure_type.Does this answer help you?
Regards
‎2007 Jun 07 11:39 AM
im sorry but no, i tried this and it write that in oo is not possible to declare in that way.
‎2007 Jun 07 12:15 PM
Could you post the code of your internal table definition and also the exact error message text?
Regards