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

System aommands

Former Member
0 Likes
595

Hi,

What is SY-BATCH? and what is the main difference between function module and RFC function module?

Hi,

What is SY-BATCH? and what is the main difference between function module and RFC function module?

4 REPLIES 4
Read only

Former Member
0 Likes
563

Hi Sudha,

SY-Batch is a system field symbol. It is used for Program is running in the background.

Background active (X)

IF SY-BATCH EQ SPACE.

WRITE: / 'Report was started on-line'.

WRITE: / 'Using variant:', SY-SLSET.

ELSE.

WRITE: / 'Report was started in background'.

ENDIF.

Read only

Former Member
0 Likes
563

Hi,

RFC: The FM are globally Existed.RFC is Remote Function Call which can be used to execute

the function module on remote system to get the required

data.To call the function module remotely,we have to enable

the remote call radio button located in the attribute of

the function module.

Normal FM: these are existed locally. Normal function module is one which can be used to

execute the function module in the local system to get the

required data.

Both return values.

sy-batch is use to check the programm running in back

ground

Regards

Divya

Read only

Former Member
0 Likes
563

Check SYST table for all the available system fields.

Read only

matt
Active Contributor
0 Likes
563

Are these interview questions? Also, do not ask questions that can be easily answered by searching, and don't ask two question in one posting.

matt