Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Smart Forms Error

Former Member
757

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

4 REPLIES 4
Read only

Former Member
0 Likes
668

hi,

in form interface

there is a tab tables in that

t_vbrk like vbrk.

Regards,

R K.

Read only

Former Member
0 Likes
668

use the internal table defination t_vbrk for the assignment of the variable .

DATA : wa_vbrk type t_vbrk .

Ankit

Read only

Former Member
0 Likes
668

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

Read only

Former Member
0 Likes
668

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.