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

asterisk

Former Member
0 Likes
419

hi,

in declaration, the asterisk means?

TABLES: *ZMM0123 .

TABLES: ZMM0123 .

thanks

2 REPLIES 2
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
378

This is simply the "old way" of declaring a second work area for a table. It has the same structure as the table name, just another memory area that can be used in your program. For example, *ZMM0123 could hold the data before manipulation, and ZMM0123 could hold the data after, like if a value has been changed by the user, then you can do a comparison. This is just one example of the use.

REgards,

RIch Heilman

Read only

Former Member
0 Likes
378

thanks