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: 

function module to fetch data from table

Former Member
0 Kudos

Hi All,

I want to get the entries from the table 'arfcsstate' for a particular date. Is there a function module to get the same.

Thanks in advance.

Regards,

Anju

4 REPLIES 4

Former Member
0 Kudos

Use a SELECT statement to get the entries with the date in your where condition. You need not use a function module for this.

0 Kudos

Hi,

I wanted to fetch data using a standard function to fetch data as there are function modules available to fetch data from standard tables.

Regards,

Anju

Former Member
0 Kudos

Hi,

You can use select query

Select * from arfcsstate into <Internal table name>

where date <give ur condition.>

if date is in selection screen than write

date in s_date.

Thanx

Ankur Sharma

Former Member
0 Kudos

k