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: 

modulpool programming

Former Member
0 Kudos

can any body tell me about 36 logic.

i am working in modulpool programming, and i want to increment 5 digit alpha numeric

num by 36 logic.

plz give me any hint..

2 REPLIES 2

Former Member
0 Kudos

Not sure what you mean, but maybe: A = A + 36

naveen_kumar116
Active Participant
0 Kudos

can any body tell me about 36 logic.

i am working in modulpool programming, and i want to increment 5 digit alpha numeric

num by 36 logic.

***************************************************************************************************

data variable3(5) type c.

data variable4(5) type c.

Variable1 = SAM5T(as ur example)

Variable2 = variable1.

Replace all occurance of 'A' 'B' 'C'.......... IN variable2 with space.

variable3 = variable2.

variable4 = variable2.

CONDENSE variable3, variable4.

variable3 = variable 3 + 36.

Replace all occurance of variable4 in Variable1 with Variable3.

i think this may work.

Cheers,

Naveen