on 2005 Oct 05 7:38 PM
Hi,
Can any one tell me whats the difference between mseg and *mseg.
I am trying to add few more fields in goods issue form WASCHEIN like KOSTL and SAKTO but i am not getting the values and i am not even able to debug the form. Can any one suggest on this.
Thanks.
Request clarification before answering.
Lakshmi,
I am not sure about the form, but as far as the tables are concerned *MSEG is something internally used by SAP. I would suggest you go with MSEG.
Regards,
Ravi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In this following statement...
TABLES: MSEG,
*MSEG.
These are two different work areas of the same structure(MSEG). So you can do two select statement into each one of these work areas.
Select * from mseg where ...
and
Select * from *mseg where ...now MSEG and *MSEG can be accessed and could have two totally different records.
Just remember that saying
Tables: MSEG, *MSEG.is just like saying...
Data: wa_mseg1 type mseg,
wa_mseg2 type mseg.Make sense?
Regards,
Rich Heilman
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.