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

Which Command....

Former Member
0 Likes
1,429

HI all,

Which Command flushes the database buffers and Which data type cannot be used to define parameters.

9 REPLIES 9
Read only

Former Member
0 Likes
1,134

hi..

Data type F doesnot in parameters

siva

Read only

0 Likes
1,134

Thnx Siva and wt is the command

Read only

Former Member
0 Likes
1,134

Hi,

type F and XSTRING are not allowed for creating parameters.

rgds,

bharat.

Read only

0 Likes
1,134

HI all,

Which Command flushes the database buffers

Read only

0 Likes
1,134

Hi.

You can reset the table buffers on the corresponding application servers by entering $TAB in the command field

siva.

Read only

0 Likes
1,134

i dnt know the command but there is a function module.

BUFFER_REFRESH_ALL

Read only

Former Member
0 Likes
1,134

Please use delete command to delete the entries in the database.

Read only

dhruv_shah3
Active Contributor
0 Likes
1,134

Hi,

To minimize the network load between the application and presentation servers, method calls are buffered in the automation queue before being sent to the presentation server at defined synchronization points . One of the automatic synchronization points is the end of PBO processing . You can force a synchronization point in your program by calling a method that is not buffered, or by calling the static method FLUSH.

Calls from automation methods are collected in the automation buffer until the function module FLUSH - which is provided for this purpose - is called and the FREE OBJECT statement is passed or, at the most, until a change of screen. They are then transferred to the automation server on the current presentation

server for asynchronous execution.

The Flush is executed and the transfer takes place as soon as a statement that does not belong to the automation command set is reached. Note that in the ABAP Debugger, the return values of the individual automation statements are not available until after the transfer to the presentation server.

[

http://sap.ittoolbox.com/documents/popular-q-and-a/the-flush-command-2537];

HTH

Regards,

Dhruv Shah

Read only

Clemenss
Active Contributor
0 Likes
1,134

$NAM flushes database nametyb buffers, $TAB flushes database table buffers, $SYNC flushes all buffers of the application server.

These command should be used carefully because they affect all processes of all users of the server.

Regards,

Clemens