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

Calling sets in an ABAP program

Former Member
0 Likes
516

i am working on a validation exit for FI. Is it possible to create sets to group data and call the sets in a ABAP program in a validation exit.

Any clarification will be appreciated.

thank you

Krishna

1 REPLY 1
Read only

andreas_mann3
Active Contributor
0 Likes
336

Hi,

you can group data:

1) in special standard trx. like KDH2

and read them with table setheader and setleaf

or (better)

2) creat your own customer Table to group data with key-fields:

mandt groupname fieldname fieldvalue

100 Z001 SAKNR 4711

100 Z001 SAKNR 4712

and in your val.-exit you can check values against this table

A.

Message was edited by:

Andreas Mann