cancel
Showing results for 
Search instead for 
Did you mean: 

Calling DSO field in update rule.

former_member199653
Participant
0 Kudos

dear all,

i need to check if my key_field1 in the DSO contains certain values that i would like to match up against an internal table.

my problem is, how can i call up this DSO characteristics in the update rule? what are the codes to do it?

Accepted Solutions (1)

Accepted Solutions (1)

mansi_dandavate
Active Contributor
0 Kudos

Hi,

You can select the data of the DSO into an internal table.

eg.

TYPES : begin of fs,

f1 type /bic/a<DSO>00-f1,

f2 type /bic/a<DSO>00-f2,

end of fs.

Data : it type standard table of fs.

select * from /bic/a<DSO>00 into it.

So now you have your DSO data into it. You can use it for comparison.

Regards,

Mansi

Answers (0)