‎2009 Apr 10 11:59 AM
Dear Friends
I had one doubt in smartforms
i had declared the vbrk table as internal table but how can i define the table types in form interface
plz help to solve it
In Parameter Type : t_vbrk
in Type assignment : type
in Associated type : ty_vbrk
If i given like this
Node : Form Interface
Error : The Type ty_vbrk is unknown
Thanks & Regards
Selvendran.P
‎2009 Apr 10 12:01 PM
hi,
in form interface
there is a tab tables in that
t_vbrk like vbrk.
Regards,
R K.
‎2009 Apr 10 12:30 PM
use the internal table defination t_vbrk for the assignment of the variable .
DATA : wa_vbrk type t_vbrk .
Ankit
‎2009 Apr 10 12:38 PM
Hi,
use LIKE in TYPE assignment and associated tye as 'VBRK'.
In Parameter Type : t_vbrk
in Type assignment : LIKE
in Associated type : VBRK
Regards,
Pavan
‎2009 Apr 10 7:07 PM
what you can do is declare the internal table structure in global parameters of the smartform
Then in the form interface you can define the table, type <internal table>.
Regards,
Lalit Mohan Gupta.