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

ABAP(logic required)

Former Member
0 Likes
388

i want to write an abap code for a ebanking form where i got the places where i have to create a logic for entering phone no. and bank account no. where in both the places customer has fixed number of places.

Moderator Message: Requirements dumping is not allowed in the forums. Thread locked.

Edited by: Suhas Saha on Feb 7, 2012 11:51 AM

i want to write an abap code for a ebanking form where i got the places where i have to create a logic for entering phone no. and bank account no. where in both the places customer has fixed number of places.

Moderator Message: Requirements dumping is not allowed in the forums. Thread locked.

Edited by: Suhas Saha on Feb 7, 2012 11:51 AM

1 REPLY 1
Read only

Kartik2
Contributor
0 Likes
360

Dear Rajsekhar,

Please be clear with your question...

As far as my understanding, you are struggling to fix the lenght of some input fields.

If you are using simple abap report, then you can declare a parameter of type data element which is having the required number of characters, then the input field will be restricted to number of characters defined in the dataelement.

Here is an example

parameters:
            p_acct         type /BEV3/CHBANKN.

Here the output lenght of data element /BEV3/CHBANKN is 18 characters, so user cannot exceed 18 characters while feeding data.

Hope this is helpful. Thank you.

Regards,

kartik