Application Development 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: 

What does *vbep-lifsp mean?

Former Member
0 Kudos

Hi all,

I came a piece of code where the field vbep-lifsp and *vbep-lifsp is being referred. Can I know what this ' * ' indicates?? Please reply soon.

Thanks in advance,

archana

1 ACCEPTED SOLUTION

h_senden2
Active Contributor
0 Kudos

You can use VBEP as workarea, and when you need a second one you can also use *VBEP.

But its better to declare workareas like

DATA: wa_vbep type vbep.

regards,

hans

4 REPLIES 4

h_senden2
Active Contributor
0 Kudos

You can use VBEP as workarea, and when you need a second one you can also use *VBEP.

But its better to declare workareas like

DATA: wa_vbep type vbep.

regards,

hans

JozsefSzikszai
Active Contributor
0 Kudos

somewhere in the code has to be:

TABLES : vbep, *vbep.

Both declare a work area for vbep, with names like above. The *vbep-lifsp refers to the field (lifsp) of the work area *vbep.

This kind of coding is obsolate now.

Former Member
0 Kudos

If order quantity, and confirmed quantity are not equal, that is schedule line error.

Regards,

Ajay

Former Member
0 Kudos

Thanks for the responses.. My question is answered

-archana