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: 

what is <?????> = <????> in abap rewards for help......

former_member193357
Participant
0 Kudos

hello....

In the below code what does <x_buffer> = <x_aplog> means while debugging <x_aplog> consist of value 3330312020412031303030323431333130303141303131202020323030353038303439393939313233314B2020202020202020203030303230303730323133524153.

can anyone explain in detail what does it means. Pls its urgent.

LOOP AT aplog.

IF t_id-hr_is_pp = kreuz.

CLEAR aplog-ukz.

ENDIF.

CASE aplog-ukz.

WHEN space.

ppkey = aplog.

READ TABLE buffer

WITH KEY ppkey

BINARY SEARCH.

<x_buffer> = <x_aplog>.

IF sy-subrc = 4.

INSERT buffer INDEX sy-tabix.

ELSEIF sy-subrc = 8.

APPEND buffer.

Regards.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

<?????> means a field-symbol. Field symbol is like pointer and a data type is assigned to it.

<x_buffer> = <x_aplog> means, you are passing the value which is assigned to the <x_aplog> to the data element which is assigned to <x_buffer>

The value is of type 'X' and thats the reason you are seeing all those numbers.

Regards

Navneet

1 REPLY 1

Former Member
0 Kudos

Hi

<?????> means a field-symbol. Field symbol is like pointer and a data type is assigned to it.

<x_buffer> = <x_aplog> means, you are passing the value which is assigned to the <x_aplog> to the data element which is assigned to <x_buffer>

The value is of type 'X' and thats the reason you are seeing all those numbers.

Regards

Navneet