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: 

i want Function Module on providing address no. i want telephone. no.

Former Member
0 Kudos

hi,

when i provide the address number it has to display telephone number...

for that table is ADRC...

and fields are ADDRNUMBER

TEL_NUMBER.....

i need a function module for the above case...

ie., import --> address number

export --> telephone number

Thanks,

Vishnu. R

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hello Vishnu.

function module ADDRESS_GET_DATA.

Try using the search criteria in SE37.

That maybe the best option.

Good Luck & Regards.

Harsh Dave

4 REPLIES 4

Former Member
0 Kudos

Why do you need a Fm? Why not do a simple select:


       SELECT tel_number FROM adrc INTO v_telnum WHERE addrnumber = v_addrnumber.

GauthamV
Active Contributor
0 Kudos

hi,

why do u need a function module for such a small requirement.

u can write a simple program with select from that table or write a simple query using sq01 or sqvi.

Former Member
0 Kudos

Hello Vishnu.

function module ADDRESS_GET_DATA.

Try using the search criteria in SE37.

That maybe the best option.

Good Luck & Regards.

Harsh Dave

former_member188685
Active Contributor
0 Kudos

use Function ADDRESS_READ