Application Development and Automation 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: 
Read only

Conversion routine help

Former Member
0 Likes
442

Hello Frnds,

Iwant to have a conversion routines which permits only upper case alphas and number (i.e. A-Z and 0-9)

If anybody knows that, I wud be thankful if you can help me.

Thanks

Arpit

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
364

Hi~ Arpit.

You said you want to find conversion routines which permits only upper case alphas and number.

Conversion routines is used to converting, as it's name means, not permitting.

for example, when we look at conversion routine 'ALPHA'.

when I input 12345, conversion routine 'ALPAH' convert 12345 with '0000012345'.

<b>not check but convert</b>.

If you want convert lowercase to upper, you can make you own conversion routine.

make function,

 conversion_exit_XXXXX_input
 conversion_exit_XXXXX_output

and then in your domain, in the tab 'output characteristic' at the field convers.routine

write down your conversion routine XXXXX.

If you want to check it is uppercase or not, you can have

to program other ways.

for exaple, in PBO check or something...

I wish I could help you

Best Regards

Kyung Woo

2 REPLIES 2
Read only

Former Member
0 Likes
365

Hi~ Arpit.

You said you want to find conversion routines which permits only upper case alphas and number.

Conversion routines is used to converting, as it's name means, not permitting.

for example, when we look at conversion routine 'ALPHA'.

when I input 12345, conversion routine 'ALPAH' convert 12345 with '0000012345'.

<b>not check but convert</b>.

If you want convert lowercase to upper, you can make you own conversion routine.

make function,

 conversion_exit_XXXXX_input
 conversion_exit_XXXXX_output

and then in your domain, in the tab 'output characteristic' at the field convers.routine

write down your conversion routine XXXXX.

If you want to check it is uppercase or not, you can have

to program other ways.

for exaple, in PBO check or something...

I wish I could help you

Best Regards

Kyung Woo

Read only

0 Likes
364

thanks Nam,

yes i did the same thing as u suggested. i made a routine for the same thing.

thanks anyway

Arpit