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: 

Select Data From Table than Show Many Row

Former Member
0 Kudos
115

I try to select datas from my table with Function Module, but there are import and export values, this values return only one value at the same time. I wanna to implement many record show at the same time.. How can do that this kind of operation.

Thanks for supporting me..

Moderator Message - Basic ABAP question. Thread locked.

Message was edited by: Suhas Saha

4 REPLIES 4

vinoth_aruldass
Contributor
0 Kudos
87

hi

you can find tables tab in your function module . tables can hold many entries as you require.

hope this helps,

Vinoth.

0 Kudos
87

hi,

understand, i tried create table in tables tab. but, i don't how exactly show my entries on table. for example i have user table, i use this code in my function:

data gs_user  type ZUSER.

gs_user-ID = I_IDM.

gs_user-NAME = I_AD.

gs_user-SURNAME = I_SOYAD.

insert ZUSERS from gs_user.

ZUSERS is defined on table tab. I want to try insert all enries to my function table. After this definition completed again i show one record on function execution screen.. I can't do any operation on my function tables.

0 Kudos
87

create one structure in se11 zuser which contains id name and surname . in your tables tab table type zuser you have to define . so it will fetch all the records you need .

select * from table into table zuser you have to give in your select statement.

hope it helps

vinoth.

0 Kudos
87

inside your function module i hope you are passing multiple entries to table.

hope it helps,

Vinoth