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: 

regarding the length of pincode for Infy Australia

Former Member
0 Kudos

hi ,

can u all help me in giving the maximum length of pin code for Infy Australia bcz its not accepting more than 4 digits

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Make a new data element(or domain) in SE11 and fix the length suppose 4 and make a new variable of that type.

then it will not let u enter more than four.

data pincode type <New_domain>.

Regards,

Rohit

3 REPLIES 3

Former Member
0 Kudos

Hi,

Make a new data element(or domain) in SE11 and fix the length suppose 4 and make a new variable of that type.

then it will not let u enter more than four.

data pincode type <New_domain>.

Regards,

Rohit

Former Member
0 Kudos

Hi,

I think u are creating new varible like

data pincode type i.

make variable like this.

Data pincode(6) type numc.

Regards,

Rohit

Edited by: Rohit Makkar on Oct 22, 2008 10:22 AM

Former Member
0 Kudos

Hi,

Try using this in your program,

Tables ADRC.

data Pin_Code type ADRC-CITYP_CODE.

Regards,

Amit.