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

Select Data From Table than Show Many Row

Former Member
0 Likes
833

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

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
Read only

vinoth_aruldass
Contributor
0 Likes
805

hi

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

hope this helps,

Vinoth.

Read only

0 Likes
805

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.

Read only

0 Likes
805

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.

Read only

0 Likes
805

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

hope it helps,

Vinoth