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

Error - data object has no structure

sudha_naik
Product and Topic Expert
Product and Topic Expert
0 Likes
2,248

Hello Experts,

I defined a structure like this.

TYPES: begin of struct_f_plrc,

j_4kplrc like j_4kcprc-j_4kplrc,

j_4kprpl like j_4kcprc-j_4kprpl,

j_4kcnes like j_4kcprc-j_4kcnes,

end of struct_f_plrc.

and I am declaring it as

Data: f_plrc_tab type struct_f_plrc occurs 10 with header line.

I am getting an error "The Data object "F_PLRC_TAB" has no structure and therefore no component called j_4kplrc.

Am i doing anything wrong here ?? Please help

Thanks

Sudha

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,298

Hi,

Define strucure as

Data: begin of ...

Reward if useful!

3 REPLIES 3
Read only

Former Member
0 Likes
1,299

Hi,

Define strucure as

Data: begin of ...

Reward if useful!

Read only

dev_parbutteea
Active Contributor
0 Likes
1,298

Hi,

do like this

TYPES:BEGIN OF t_mvke,

matnr LIKE mvke-matnr,

slorg LIKE mvke-vkorg,

dstch LIKE mvke-vtweg,

mtpos LIKE mvke-mtpos,

END OF t_mvke.

DATA: lwa_mvke TYPE t_mvke,

li_mvke TYPE STANDARD TABLE OF t_mvke.

Regards,

Sooness

Read only

Former Member
0 Likes
1,298

what is structure of j_4kcprc..