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: 

How to convert an accounting model to a key figure model

Former Member
0 Kudos

Hello all,

I've got a table modelled as an accounting model. That's means I've got a separate column per month (= 12 columns). I want to convert this accounting model to a key figure model. That means the months are arranged one below the other in the same column. 

How can I implement it in ABAP?

Regards,

Sergio

1 ACCEPTED SOLUTION

FredericGirod
Active Contributor
0 Kudos

Hi sergio,

to help you, there is a statement for this : 

DO ... TIMES ... VARYING .. FROM ... NEXT  

see the doc : http://help.sap.com/abapdocu_70/en/ABAPDO_VARYING.htm

it's like a loop but column by column

good luck

Fred

1 REPLY 1

FredericGirod
Active Contributor
0 Kudos

Hi sergio,

to help you, there is a statement for this : 

DO ... TIMES ... VARYING .. FROM ... NEXT  

see the doc : http://help.sap.com/abapdocu_70/en/ABAPDO_VARYING.htm

it's like a loop but column by column

good luck

Fred