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: 

at new

Former Member
0 Kudos

Hi expertz,

my issue is ,

In the internal table i have the value fddd which type i ..and it got value = 1.iam using atnew and this value changing to 0.

plz advise..

regards

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Explain clearly.

See F1 help for At New for more details.

Regards

Karthik D

3 REPLIES 3

Former Member
0 Kudos

Explain clearly.

See F1 help for At New for more details.

Regards

Karthik D

Former Member
0 Kudos

At new event only key fields <non numeric> key fields are available. Key fields are positioned from first upto <at new used field>

Regards,

Mahesh

0 Kudos

Hello,

Inside the at new block, the fields after the field used in the at new will be * if character type and 0 if numeric type.

For example you have an internal table with fields fname, lname, age, dob.

Then if there is an at new statement on lname like

at new lname.

endat.

then inside the at block, the fields age and dob will be 0 and * respectively.

Outside this at block it will be accessible. If you want access these fields inside the at block, you need to back up the value to some other variable.

If you are not clear with this solution, if you give me the full scenario I can give you a better solution.

Regards

Farzan