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

GET NODE

Former Member
0 Likes
1,606

HELLO,

can any one tell me what is the difference between GET NODE and GET NODE LATE ?

Thank you very much in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
893

Hi Vijaya lakshmi,

I think you might not aware of giving reward points for satisfactory answers. I saw one of your questions (example Logical data base). You have closed that thread without giving the points.

Kodanda Ramireddy Garu I really appreciate your patience.

4 REPLIES 4
Read only

Former Member
0 Likes
893

HI,

GET NODE

This is the most important event for executable programs that use a logical database. It occurs when the logical database has read a line from the node node and made it available to the program in the work area declared using the statement NODES node.

When you define the corresponding event block in the program, you can specify a field list if the logical database supports field selection for this node:

GET node [FIELDS f1 f2...|.

please check this link

http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9aa335c111d1829f0000e829fbfe/content.htm

GET node LATE

This event is triggered when all of the data records for a node of the logical database have been read.

When you define the corresponding event block in the program, you can – as with GET –specify a field list if the logical database supports field selection for this node:

GET node LATE [..FIELDS f1 f2...|.

Please check this link

http://help.sap.com/saphelp_nw70/helpdata/en/9f/db9abd35c111d1829f0000e829fbfe/content.htm

regards

raam

Read only

Former Member
0 Likes
894

Hi Vijaya lakshmi,

I think you might not aware of giving reward points for satisfactory answers. I saw one of your questions (example Logical data base). You have closed that thread without giving the points.

Kodanda Ramireddy Garu I really appreciate your patience.

Read only

Former Member
0 Likes
893

Hi,

Syntax:GET node[field1,field2......]

Description:This statement defines an event block whose result is triggered by the ABAP runtime environment after submitting an executable program, if the logical database to which the program is linked, provides data in the work area node. The node work area must be declared with the NODES statement (or TABLES). The data can be processed in the event block.

GET node LATE [FIELDS1,FIELDS2 .......].

Description:This statement defines an event block whose result is triggered by the ABAP runtime environment after submitting an executable program, when the logical database has read in all records of node node. For node and FIELDS, the same applies as for the previous variant. Use this event block for final processing actions concerning the hierarchy level of the node.

Read only

Former Member
0 Likes
893

Hi Vijaya,

Get node.

Read the first record from the database for corresponding

node(table).

Get node Late.

Read the first record from the database for corresponding

node(table) after processing all child nodes.

thanks

sagar

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Apr 30, 2008 4:27 PM