cancel
Showing results for 
Search instead for 
Did you mean: 

Number range problem

Former Member
0 Kudos

Hi

I want to create a number range for year, comp code , house bank, acckey.

what data element should i use

sarangan r

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can use ranges...

DATA year TYPE i.

RANGES : range FOR year.

range-low = 1990.

range-high = 2006.

range-sign = 'BT'.

APPEND range.

Answers (2)

Answers (2)

hymavathi_oruganti
Active Contributor
0 Kudos

FOR CREATING NUMBER RANGES,

u need to go to transaction SNRO, with this tcode u can create number range for an object.

to generate number ranges , in the program,

call fn module GUI_CREATE

CALL FUNCTION 'GUID_CREATE'

IMPORTING

EV_GUID_22 = guid.

Former Member
0 Kudos

Hi,

I am not sure can you check the Tranx: FI12 (Define House Bank).

Thanks.

If this helps you reward with points.