cancel
Showing results for 
Search instead for 
Did you mean: 

assert error

Former Member
0 Kudos

Hi everyone,

i have a screen with four drop down by keys and an alv...i get a dump saying ASSERT error on every third click on the screen.This click could just be scrolling the alv.Also note the dump happens only when the ALV has some data in it.No of hits for ALV is 10,000.

Any ideas regarding this issue?

PS:helpful answers will be rewarded with points

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

TYPE-POOLS : icon.

*****Create an Instance of ALV component

DATA:

l_ref_cmp_usage1 TYPE REF TO if_wd_component_usage,

l_value TYPE REF TO cl_salv_wd_config_table.

l_ref_cmp_usage1 = wd_this->wd_cpuse_mesg_alv( ).

IF l_ref_cmp_usage1->has_active_component( ) IS INITIAL.

l_ref_cmp_usage1->create_component( ).

ENDIF.

DATA: l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table .

l_ref_interfacecontroller = wd_this->wd_cpifc_mesg_alv( ).

DATA:

wa_search TYPE smmw_st_mesg_search,

it_messages TYPE smmwui_mesg_hdr_t,

TEXT TYPE STRING.

DATA:

node_search_results TYPE REF TO if_wd_context_node,

elem_search_results TYPE REF TO if_wd_context_element,

stru_search_results TYPE if_main=>element_search_results,

lt_search_results LIKE TABLE OF stru_search_results.

  • navigate from <CONTEXT> to <SEARCH_RESULTS> via lead selection

node_search_results = wd_context->get_child_node( name =

wd_this->wdctx_search_results ).

DATA:

node_mesg_hdr TYPE REF TO if_wd_context_node,

elem_mesg_hdr TYPE REF TO

if_wd_context_element,

stru_mesg_hdr TYPE if_main=>element_mesg_hdr .

  • navigate from <CONTEXT> to <MESG_HDR> via lead selection

node_mesg_hdr = wd_context->get_child_node( name =

wd_this->wdctx_mesg_hdr ).

l_ref_interfacecontroller->set_data(

r_node_data = node_search_results

" Ref to if_Wd_Context_Node

).

***For the table settings

l_value = l_ref_interfacecontroller->get_model(

).

*----Hide Pushbutton Excel

l_value->if_salv_wd_std_functions~set_export_allowed( abap_false ).

*----Hide Pushbutton Print Version

l_value->if_salv_wd_std_functions~set_pdf_allowed( abap_false ).

*----Hide Views dropdown list box

l_value->if_salv_wd_std_functions~set_view_list_allowed( abap_false ).

l_value->if_salv_wd_table_settings~set_width( '100%' ).

CALL METHOD l_value->if_salv_wd_table_settings~set_scrollable_col_count

EXPORTING

value = 6.

CALL METHOD l_value->if_salv_wd_table_settings~set_visible_row_count

EXPORTING

value = 15.

DATA:

lr_column_settings TYPE REF TO if_salv_wd_column_settings,

lr_column TYPE REF TO cl_salv_wd_column,

lr_column_header TYPE REF TO cl_salv_wd_column_header.

lr_column_settings ?= l_value.

DATA lr_seperator TYPE REF TO cl_salv_wd_fe_separator.

CREATE OBJECT lr_seperator.

*

DATA :

sep TYPE REF TO cl_salv_wd_function,

sep1 TYPE REF TO cl_salv_wd_function,

sep2 TYPE REF TO cl_salv_wd_function.

*----


*Create button

*----Declarations for Custom button & function

DATA:

lr_function TYPE REF TO cl_salv_wd_function,

lr_button TYPE REF TO cl_salv_wd_fe_button,

  • ls_functions TYPE if_main=>element_function,

  • lt_functions TYPE if_main=>elements_function,

lr_function_settings TYPE REF TO if_salv_wd_function_settings.

DATA:

l_header TYPE string.

lr_function_settings ?= l_value.

*To Check consistency

lr_function = lr_function_settings->create_function( 'CHECK' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '232' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

lr_function->set_editor( lr_button ).

*To Restart Message

lr_function = lr_function_settings->create_function( 'RESTART' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '068' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

lr_function->set_editor( lr_button ).

*To display Restart History

lr_function = lr_function_settings->create_function( 'RESTLOG' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '069' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

lr_function->set_editor( lr_button ).

lr_function->set_group( 'Button' ).

sep1 = l_value->if_salv_wd_function_settings~create_function( id = 'SEP1' ).

sep1->set_editor( lr_seperator ).

  • To dislpay message details

lr_function = lr_function_settings->create_function( 'DISP_BODY' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '217' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

lr_function->set_editor( lr_button ).

*To display log details

lr_function = lr_function_settings->create_function( 'DISPDET' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '218' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

lr_function->set_editor( lr_button ).

*To display error details

lr_function = lr_function_settings->create_function( 'ERR_DET' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '219' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

  • CALL METHOD LR_BUTTON->SET_IMAGE_SOURCE

  • EXPORTING

  • VALUE = 'ICON_DISPLAY_TEXT'

  • .

lr_function->set_editor( lr_button ).

*separator

lr_function->set_editor( lr_button ).

lr_function->set_group( 'Button' ).

sep2 = l_value->if_salv_wd_function_settings~create_function( id = 'SEP2' ).

sep2->set_editor( lr_seperator ).

*To refresh details

lr_function = lr_function_settings->create_function( 'REFRESH' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '063' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

  • CALL METHOD LR_BUTTON->SET_IMAGE_SOURCE

  • EXPORTING

  • VALUE = 'ICON_REFRESH'

  • .

lr_function->set_editor( lr_button ).

*To display Troubleshooting information

lr_function = lr_function_settings->create_function( 'TROBSH' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '220' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

  • CALL METHOD LR_BUTTON->SET_TEXT

  • EXPORTING

  • VALUE = text.

lr_function->set_editor( lr_button ).

*separator

sep = l_value->if_salv_wd_function_settings~create_function( id = 'SEP' ).

sep->set_editor( lr_seperator ).

*To delete Message

lr_function = lr_function_settings->create_function( 'DELETE' ).

lr_function->set_group( 'Button' ).

CREATE OBJECT lr_button.

text = wd_assist->if_wd_component_assistance~get_text( '221' ).

lr_button->set_tooltip( text ).

lr_button->set_text( text ).

lr_function->set_editor( lr_button ).

*---- Hide columns

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'STATE_DESC' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'STATUS_DESC' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'MSG_TYPE' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'SWCV_NAME' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'STATE_CATEGORY' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'ERRORHANDLER' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'MFD' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'RCV_USR' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'RCV_TIME' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'RCV_DATE' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'DEVICE_SENDER_ID' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'MBO_TRANS' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'DM_SWCV' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'CLNT_MSG_ID' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'RESTART_ALLOWED' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'QNAME' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'IS_RESTART' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'EXTRACT_KEY' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'FBP' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'SERV_NAME' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'DEVICE' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'PROCESS_ID' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'MSG_TYPE_DESC' ).

IF NOT lr_column IS INITIAL.

lr_column->set_visible( if_wdl_core=>visibility_none ).

ENDIF.

  • Change column heading

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'STATE' ).

lr_column_header = lr_column->create_header( ).

text = wd_assist->if_wd_component_assistance~get_text( '076' ).

lr_column_header->set_text( text ).

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'STATUS' ).

lr_column_header = lr_column->create_header( ).

text = wd_assist->if_wd_component_assistance~get_text( '222' ).

lr_column_header->set_text( text ).

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'SWCV_CAPTION' ).

lr_column_header = lr_column->create_header( ).

text = wd_assist->if_wd_component_assistance~get_text( '223' ).

lr_column_header->set_text( text ).

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'MBO_NAME' ).

lr_column_header = lr_column->create_header( ).

text = wd_assist->if_wd_component_assistance~get_text( '224' ).

lr_column_header->set_text( text ).

DATA : lr_link TYPE REF TO cl_salv_wd_uie_link_to_action,

lr_link_t TYPE REF TO cl_salv_wd_uie_link_to_action.

CREATE OBJECT lr_link.

lr_link->set_text_fieldname( 'DEVICE' ).

lr_column->set_cell_editor( lr_link ).

lr_column_header = lr_column->create_header( ).

text = wd_assist->if_wd_component_assistance~get_text( '152' ).

lr_column_header->set_text( text ).

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'SND_USR' ).

lr_column_header = lr_column->create_header( ).

text = wd_assist->if_wd_component_assistance~get_text( '225' ).

lr_column_header->set_text( text ).

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'SND_DATE' ).

lr_column_header = lr_column->create_header( ).

text = wd_assist->if_wd_component_assistance~get_text( '226' ).

lr_column_header->set_text( text ).

CLEAR: lr_column.

lr_column = lr_column_settings->get_column( 'SND_TIME' ).

lr_column_header = lr_column->create_header( ).

text = wd_assist->if_wd_component_assistance~get_text( '227' ).

lr_column_header->set_text( text ).

changing the icons from 3 lights to ICON_LED_ type

*----Set Column positions

DATA :lt_columns TYPE salv_wd_t_column_ref,

ls_column TYPE salv_wd_s_column_ref.

lt_columns = lr_column_settings->get_columns( ).

LOOP AT lt_columns INTO ls_column.

CASE ls_column-id.

  • when 'MFD'.

  • ls_column-r_column->set_position( 0 ).

  • ls_column-r_column->set_fixed_position(

*CL_WD_ABSTR_TABLE_COLUMN=>E_FIXED_POSITION-LEFT ).

WHEN 'STATE'.

ls_column-r_column->set_position( 1 ).

ls_column-r_column->set_fixed_position(

cl_wd_abstr_table_column=>e_fixed_position-left ).

*setting the image source

DATA:

lr_image TYPE REF TO cl_salv_wd_uie_image.

CREATE OBJECT lr_image.

lr_image->set_source_fieldname( 'STATE' ).

CALL METHOD ls_column-r_column->set_cell_editor

EXPORTING

value = lr_image.

WHEN 'STATUS'.

ls_column-r_column->set_position( 2 ).

ls_column-r_column->set_fixed_position(

cl_wd_abstr_table_column=>e_fixed_position-left ).

WHEN 'SWCV_CAPTION'.

ls_column-r_column->set_position( 3 ).

ls_column-r_column->set_fixed_position(

cl_wd_abstr_table_column=>e_fixed_position-left ).

WHEN 'MBO_NAME'.

ls_column-r_column->set_position( 4 ).

ls_column-r_column->set_fixed_position(

cl_wd_abstr_table_column=>e_fixed_position-left ).

WHEN 'SND_USR'.

ls_column-r_column->set_position( 5 ).

ls_column-r_column->set_fixed_position(

cl_wd_abstr_table_column=>e_fixed_position-left ).

WHEN 'SND_DATE'.

ls_column-r_column->set_position( 6 ).

ls_column-r_column->set_fixed_position(

cl_wd_abstr_table_column=>e_fixed_position-left ).

WHEN 'SND_TIME'.

ls_column-r_column->set_position( 7 ).

ls_column-r_column->set_fixed_position(

cl_wd_abstr_table_column=>e_fixed_position-left ).

ENDCASE.

ENDLOOP.

wd_this->r_table = l_value.

*making alv invisible if messages are not there

DATA : lv_count TYPE i.

CALL METHOD node_search_results->get_element_count

RECEIVING

count = lv_count.

IF lv_count <= 0.

basic_adv_visibility( 'I' ).

ELSE.

basic_adv_visibility( 'V' ).

ENDIF.

ENDMETHOD.

Former Member
0 Kudos

yea every third time when the alv is filled...regardless of what is filled

Former Member
0 Kudos

Hi rahul,

Can you please provide the code you use to fill ALV?

Former Member
0 Kudos

Runtime Errors ASSERTION_FAILED

Date and Time 07.06.2007 05:54:00

-

-


-

-


Short text

The ASSERT condition was violated.

-

-


-

-


What happened?

In the running application program, the ASSERT statement recognized a

situation that should not have occurred.

The runtime error was triggered for one of these reasons:

- For the checkpoint group specified with the ASSERT statement, the

activation mode is set to "abort".

- Via a system variant, the activation mode is globally set to "abort"

for checkpoint groups in this system.

- The activation mode is set to "abort" on program level.

- The ASSERT statement is not assigned to any checkpoint group.

-

-


-

-


What can you do?

Take note of the actions and inputs that lead to the error.

Contact your SAP administrator for further processing of the problem.

Using transaction ST22 for ABAP short dump analysis you can see and

administrate termination messages and retain them for a longer period.

-

-


-

-


Error analysis

The following checkpoint group was used: "No checkpoint group specified"

If in the ASSERT statement the addition FIELDS was used, you can find

the content of the first 8 specified fields in the following overview:

" (not used) "

" (not used) "

" (not used) "

" (not used) "

" (not used) "

" (not used) "

" (not used) "

" (not used) "

-

-


-

-


How to correct the error

Probably the only way to eliminate the error is to correct the program.

-

You may able to find an interim solution to the problem

in the SAP note system. If you have access to the note system yourself,

please use the following search criteria:

"ASSERTION_FAILED" " "

"/1WDA/L8STANDARD==============CP" bzw.

"/1WDA/L8STANDARD==============CCIMP"

"IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT"

If you cannot solve the problem yourself, please send the

following documents to SAP:

1. A hard copy print describing the problem (short dump).

To obtain this, select "System->List->Save->Local File (unconverted)"

on the current screen.

2. A suitable hardcopy printout of the system log.

To obtain this, call the system log with Transaction SM21

and set the time interval to 10 minutes before and 5 minutes after

the short dump. In the display choose "System->List->Save->

Local File (unconverted)"

3. If the programs are your own programs or modified SAP programs,

supply the source code.

To do this, choose "More Utilities->Upload/Download->Download" in the

Editor.

4. Details regarding the conditions under which the error occurred

or which actions and input led to the error.

-

-


-

-


System environment

SAP-Release 710

Application server... "pwdf6276"

Network address...... "10.66.70.146"

Operating system..... "Windows NT"

Release.............. "5.2"

Hardware type........ "4x AMD64 Level"

Character length.... 16 Bits

Pointer length....... 64 Bits

Work process number.. 3

Shortdump setting.... "full"

Database server... "PWDF6276"

Database type..... "MSSQL"

Database name..... "BUZ"

Database user ID.. "buz"

Char.set.... "C"

SAP kernel....... 710

created (date)... "May 29 2007 01:15:47"

create on........ "NT 5.2 3790 Service Pack 1 x86 MS VC++ 14.00"

Database version. "SQL_Server_9.00 "

Patch level. 0

Patch text.. " "

Database............. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"

SAP database version. 710

Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2, Windows

NT 6.0, , Development system build information:,


, Release: 710, Pltfrm : NTAMD64, Host :

pwdfm153, Srcdir : d:depot asBCO22src, Gendir : D:depot"

Memory consumption

Roll.... 16192

EM...... 29328768

Heap.... 0

Page.... 0

MM Used. 24246112

MM Free. 5078672

-

-


-

-


User and Transaction

Client.............. 000

User................ "C5091327"

Language Key........ "E"

Transaction......... " "

Transaction ID...... "87AA14DC037BF1638FDD0017A4A73AEA"

Program............. "/1WDA/L8STANDARD==============CP"

Screen.............. "SAPMHTTP 0010"

Screen Line......... 2

Debugger Active..... "none"

Information on Caller ofr "HTTP" Connection:

Plug-in Type.......... "HTTP"

Caller IP............. "10.53.138.131"

Caller Port........... 50010

Universal Resource Id. "/sap/bc/webdynpro/sap/smmw_central_inbox/"

-

-


-

-


Information on where terminated

Termination occurred in the ABAP program "/1WDA/L8STANDARD==============CP" -

in "IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT".

The main program was "SAPMHTTP ".

In the source code you have the termination point in line 353

of the (Include) program "/1WDA/L8STANDARD==============CCIMP".

-

-


-

-


Source Code Extract

-

-


Line

SourceCde

-

-


323

method if_wdr_view_element_adapter~set_content.

324

assert m_is_alive = abap_true.

325

data wd_FLOW_DATA type ref to CL_WD_FLOW_DATA. "#EC NEEDED

326

data imagetooltip type string. "#EC NEEDED

327

data _srclen type i. "#EC NEEDED

328

329

  • cast it to the more specific view element

330

wd_FLOW_DATA ?= m_view_element. "#EC NEEDED

331

332

333

if env-showverbose_ids = abap_true.

334

if m_context_element is not initial.

335

m_id = m_context_element->get_path( withoutcontroller = abap_true ).

336

concatenate m_view_element->_component->id '.' m_view_element->view->name '.' m_view

337

else.

338

concatenate m_view_element->_component->id '.' m_view_element->view->name '.' m_view

339

endif.

340

if if_wdr_view_element_adapter~m_suffix is not initial.

341

concatenate m_id '__' if_wdr_view_element_adapter~m_suffix into m_id. "#EC NOTEXT

342

endif.

343

endif.

344

endmethod.

345

346

method finalize.

347

super->finalize( reusable ).

348

endmethod.

349

endclass.

350

351

class cl_FLOW_LAYOUT_NOWRAP implementation.

352

method if_wdr_view_element_adapter~set_content.

>>>>>

assert m_is_alive = abap_true.

354

data wd_FLOW_DATA type ref to CL_WD_FLOW_DATA. "#EC NEEDED

355

data imagetooltip type string. "#EC NEEDED

356

data _srclen type i. "#EC NEEDED

357

IF IFUR_NW5_FLOWLAYOUT~FLOWLAYOUTITEMS IS NOT BOUND.

358

GET REFERENCE OF MU__FLOWLAYOUTITEMS INTO IFUR_NW5_FLOWLAYOUT~FLOWLAYOUTITEMS.

359

ENDIF.

360

data temp_id type string. "#EC NEEDED

361

data temp_namespace type string. "#EC NEEDED

362

data is_reused type abap_bool. "#EC NEEDED

363

364

  • cast it to the more specific view element

365

wd_FLOW_DATA ?= m_view_element. "#EC NEEDED

366

367

368

if env-showverbose_ids = abap_true.

369

if m_context_element is not initial.

370

m_id = m_context_element->get_path( withoutcontroller = abap_true ).

371

concatenate m_view_element->_component->id '.' m_view_element->view->name '.' m_view

372

else.

-

-


-

-


Contents of system fields

-

-


Name

Val.

-

-


SY-SUBRC

0

SY-INDEX

20

SY-TABIX

1

SY-DBCNT

1

SY-FDPOS

0

SY-LSIND

0

SY-PAGNO

0

SY-LINNO

1

SY-COLNO

1

SY-PFKEY

SY-UCOMM

SY-TITLE

HTTP Control

SY-MSGTY

E

SY-MSGID

MMW_ADM_MON

SY-MSGNO

034

SY-MSGV1

SY-MSGV2

SY-MSGV3

SY-MSGV4

SY-MODNO

0

SY-DATUM

20070607

SY-UZEIT

055356

SY-XPROG

SY-XFORM

-

-


-

-


Active Calls/Events

-

-


No. Ty. Program Include Line

Name

-

-


33 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 353

CL_FLOW_LAYOUT_NOWRAP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

32 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 171

CL_FLOW_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

31 METHOD /1WDA/L7STANDARD==============CP /1WDA/L7STANDARD==============CCIMP 751

CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

30 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 650

CL_GRID_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

29 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 806

CL_GRID_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

28 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 510

CL_GRID_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

27 METHOD /1WDA/L7STANDARD==============CP /1WDA/L7STANDARD==============CCIMP 751

CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

26 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 650

CL_GRID_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

25 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 806

CL_GRID_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

24 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 541

CL_GRID_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

23 METHOD /1WDA/L7STANDARD==============CP /1WDA/L7STANDARD==============CCIMP 2066

CL_GROUP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

22 METHOD /1WDA/L9STANDARD==============CP /1WDA/L9STANDARD==============CCIMP 2722

CL_TABSTRIP_ITEM=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

21 METHOD /1WDA/L9STANDARD==============CP /1WDA/L9STANDARD==============CCIMP 2258

CL_TABSTRIP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

20 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 1181

CL_MATRIX_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

19 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 1313

CL_MATRIX_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

18 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 1030

CL_MATRIX_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

17 METHOD /1WDA/L7STANDARD==============CP /1WDA/L7STANDARD==============CCIMP 2066

CL_GROUP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

16 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 298

CL_FLOW_LAYOUT_ITEM=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

15 METHOD /1WDA/L8STANDARD==============CP /1WDA/L8STANDARD==============CCIMP 101

CL_FLOW_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

14 METHOD /1WDA/L7STANDARD==============CP /1WDA/L7STANDARD==============CCIMP 751

CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

13 METHOD CL_WDR_INTERNAL_WINDOW_ADAPTERCP CL_WDR_INTERNAL_WINDOW_ADAPTERCM005 66

CL_WDR_INTERNAL_WINDOW_ADAPTER=>CONV_VIEW_INTO_VE_ADAPTER_TREE

12 METHOD CL_WDR_INTERNAL_WINDOW_ADAPTERCP CL_WDR_INTERNAL_WINDOW_ADAPTERCM006 168

CL_WDR_INTERNAL_WINDOW_ADAPTER=>SET_CONTENT_BY_WINDOW

11 METHOD CL_WDR_CLIENT_SSR=============CP CL_WDR_CLIENT_SSR=============CM01H 36

CL_WDR_CLIENT_SSR=>RENDER_WINDOWS

10 METHOD CL_WDR_CLIENT_SSR=============CP CL_WDR_CLIENT_SSR=============CM004 6

CL_WDR_CLIENT_SSR=>IF_WDR_RESPONSE_RENDERER~RENDER_USER_INTERFACE_UPDATES

9 METHOD CL_WDR_CLIENT_ABSTRACT_HTTP===CP CL_WDR_CLIENT_ABSTRACT_HTTP===CM00N 4

CL_WDR_CLIENT_ABSTRACT_HTTP=>IF_WDR_CLIENT~SEND_RESPONSE

8 METHOD CL_WDR_CLIENT_SSR=============CP CL_WDR_CLIENT_SSR=============CM003 19

CL_WDR_CLIENT_SSR=>IF_WDR_CLIENT~SEND_RESPONSE

7 METHOD CL_WDR_MAIN_TASK==============CP CL_WDR_MAIN_TASK==============CM00I 126

CL_WDR_MAIN_TASK=>EXECUTE

6 METHOD CL_WDR_MAIN_TASK==============CP CL_WDR_MAIN_TASK==============CM00U 6

CL_WDR_MAIN_TASK=>IF_WDR_RUNTIME~EXECUTE

5 METHOD CL_WDR_CLIENT_ABSTRACT_HTTP===CP CL_WDR_CLIENT_ABSTRACT_HTTP===CM01F 105

CL_WDR_CLIENT_ABSTRACT_HTTP=>HANDLE_REQUEST

4 METHOD CL_WDR_MAIN_TASK==============CP CL_WDR_MAIN_TASK==============CM00J 66

CL_WDR_MAIN_TASK=>IF_HTTP_EXTENSION~HANDLE_REQUEST

3 METHOD CL_HTTP_SERVER================CP CL_HTTP_SERVER================CM01F 365

CL_HTTP_SERVER=>EXECUTE_REQUEST_FROM_MEMORY

2 FUNCTION SAPLHTTP_RUNTIME LHTTP_RUNTIMEU02 1050

HTTP_DISPATCH_REQUEST

1 MODULE (PBO) SAPMHTTP SAPMHTTP 13

%_HTTP_START

-

-


-

-


Chosen variables

-

-


Name

Val.

-

-


No. 33 Ty. METHOD

Name CL_FLOW_LAYOUT_NOWRAP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

-

-


ME->M_IS_ALIVE

2

0

0

0

ABAP_TRUE

X

5

8

0

0

SY-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

ME->IFUR_NW5_FLOWLAYOUT~FLOWLAYOUTITEMS

0.0.0.0.0.0.0.1.

D0001000

B0004C00

SYST-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

ME->MU__FLOWLAYOUTITEMS

0.0.0.0.0.0.0.1.

80700000

F0000010

00100000

00300000

WD_FLOW_DATA

| | F0000000 | | F0000000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT | |

70008000

0000F100

ME->_ENV-SHOW_VERBOSE_IDS

2

0

0

0

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | %_PRINT | | 000 0### | | 2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_ID | | WD04D8 | | 543343 | | 740448 | | 000000 | | 000000 | | %_DUMMY$$ | | | | 2222 | | 0000 | | 0000 | | 0000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT->ID | | SWCV_CAPTION_LAYOUT_DATA | | 554554455444544545554454 | | 3736F31049FEFC19F54F4141 | | 000000000000000000000000 | | 000000000000000000000000 | | SYST | | ##############################################################################T#########XC#### | | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 | | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C | - -


| No. 32 Ty. METHOD | | Name CL_FLOW_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT | - -
| SY-REPID | | /1WDA/L8STANDARD==============CP | | 2354424355444454333333333333334522222222 | | F1741FC8341E4124DDDDDDDDDDDDDD3000000000 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | %_SPACE | | | | 2 | | 0 | | 0 | | 0 | | %_DUMMY$$ | | | | 2222 | | 0000 | | 0000 | | 0000 | | ME->MT__FLOWLAYOUTITEMS | | Table IT_21343[2x8] | | DATA=MT__FLOWLAYOUTITEMS

Table reference: 4974

TABH+ 0(20) = F0215F58FE070000000000000000000000000000

TABH+ 20(20) = 6E1300005F5300000200000008000000FFFFFFFF

TABH+ 40(16) = 044703006072020010000000C1280003

store = 0xF0215F58FE070000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 4974 (0x6E130000)

label = 21343 (0x5F530000)

fill = 2 (0x02000000)

leng = 8 (0x08000000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000007

occu = 16 (0x10000000)

accKind = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniNo)

keyKind = 1 (default)

cmpMode = 4 (cmpSingleEq)

occu0 = 1

stMode = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

hasScndKeys = 0

hasRowId = 0

scndKeysOutdated = 0

scndUniKeysOutdated = 0


Shareable Table Header Data -

-


tabi = 0x50215F58FE070000

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

id = 14821 (0xE5390000)

shmTabhSet = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

pageDoubling = 1

rowId = 18446744073709551615

scndKeyAdmin = 0x0000000000000000

FLI_NOWRAP

| | 70008100 | | 60009400 | | FL_NOWRAP->MT__FLOWLAYOUTITEMS | | Table IT_21344[1x8] | | DATA=MT__FLOWLAYOUTITEMS

Table reference: 4975

TABH+ 0(20) = B0275F58FE070000000000000000000000000000

TABH+ 20(20) = 6F130000605300000100000008000000FFFFFFFF

TABH+ 40(16) = 044703006072020010000000C1280003

store = 0xB0275F58FE070000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 4975 (0x6F130000)

label = 21344 (0x60530000)

fill = 1 (0x01000000)

leng = 8 (0x08000000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000007

occu = 16 (0x10000000)

accKind = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniNo)

keyKind = 1 (default)

cmpMode = 4 (cmpSingleEq)

occu0 = 1

stMode = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

hasScndKeys = 0

hasRowId = 0

scndKeysOutdated = 0

scndUniKeysOutdated = 0


Shareable Table Header Data -

-


tabi = 0x10275F58FE070000

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

id = 14822 (0xE6390000)

shmTabhSet = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

pageDoubling = 1

rowId = 18446744073709551615

scndKeyAdmin = 0x0000000000000000

FLI

| | 70008100 | | 90006400 | | CL_WD_ROW_HEAD_DATA=>E_ROW_BACKGROUND_DESIGN+4(4) | | 01 | | 33 | | 01 | | 00 | | 00 | | RECYCLE_ITEMS_INDEX | | 4 | | 0000 | | 4000 | | SYST | | ##############################################################################T#########XC#### | | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 | | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C | | %_FSREG_001 | | ??? | | ?????? | | ?????? | | CL_WD_FLOW_DATA=>E_V_GUTTER+16(4) | | 04 | | 33 | | 04 | | 00 | | 00 | | ME->MT_ALL_ITEMS | | Table IT_21346[1x8] | | DATA=MT_ALL_ITEMS

Table reference: 4977

TABH+ 0(20) = A0025F58FE070000000000000000000000000000

TABH+ 20(20) = 71130000625300000100000008000000FFFFFFFF

TABH+ 40(16) = 044703006072020010000000C9280003

store = 0xA0025F58FE070000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 4977 (0x71130000)

label = 21346 (0x62530000)

fill = 1 (0x01000000)

leng = 8 (0x08000000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000007

occu = 16 (0x10000000)

accKind = 1 (ItAccessStandard)

idxKind = 1 (ItIndexLinear)

uniKind = 2 (ItUniNo)

keyKind = 1 (default)

cmpMode = 4 (cmpSingleEq)

occu0 = 1

stMode = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

hasScndKeys = 0

hasRowId = 0

scndKeysOutdated = 0

scndUniKeysOutdated = 0


Shareable Table Header Data -

-


tabi = 0x00025F58FE070000

pgHook = 0x0000000000000000

idxPtr = 0xE0DA5258FE070000

id = 15872 (0x003E0000)

shmTabhSet = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

pageDoubling = 1

rowId = 18446744073709551615

scndKeyAdmin = 0x0000000000000000

FL_NOWRAP

| | 70008100 | | 70008400 | | VA__ALL_ITEMS | |

70008100

70008400

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | WD_FLOW_DATA | |

70008000

0000F100

AC__ALL_ITEMS

Table IT_24072[4x8]

CLASS-POOL=/1WDA/L8STANDARDCLASS=CL_FLOW_LAYOUTMETHOD=IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTE

Table reference: 4832

TABH+ 0(20) = C09E5B58FE070000000000000000000000000000

TABH+ 20(20) = E0120000085E00000400000008000000FFFFFFFF

TABH+ 40(16) = 04470300908D020010000000C1280003

store = 0xC09E5B58FE070000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 4832 (0xE0120000)

label = 24072 (0x085E0000)

fill = 4 (0x04000000)

leng = 8 (0x08000000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000152

occu = 16 (0x10000000)

accKind = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniNo)

keyKind = 1 (default)

cmpMode = 4 (cmpSingleEq)

occu0 = 1

stMode = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

hasScndKeys = 0

hasRowId = 0

scndKeysOutdated = 0

scndUniKeysOutdated = 0


Shareable Table Header Data -

-


tabi = 0x209E5B58FE070000

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

id = 16342 (0xD63F0000)

shmTabhSet = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

pageDoubling = 1

rowId = 18446744073709551615

scndKeyAdmin = 0x0000000000000000

-

-


No. 31 Ty. METHOD

Name CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

-

-


SYST-REPID

/1WDA/L7STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC7341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

WD_LAYOUT

| | 60009000 | | F0000100 | | SY-REPID | | /1WDA/L7STANDARD==============CP | | 2354424355444454333333333333334522222222 | | F1741FC7341E4124DDDDDDDDDDDDDD3000000000 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | %_FSREG_001 | | ??? | | ?????? | | ?????? | | ME | |

70008100

D0002400

RSJOBINFO

00000000000000 ##

2222222222222222222222222222222233333333333333222222222222222222222222222222222200

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

VA__CONTENT

| | 70008100 | | C0003400 | | ME->MV_WD_CHILDREN | | Table IT_24071[2x8] | | DATA=MV_WD_CHILDREN

Table reference: 5089

TABH+ 0(20) = 505D5E57FE070000000000000000000000000000

TABH+ 20(20) = E1130000075E00000200000008000000FFFFFFFF

TABH+ 40(16) = 046C0100C0AC000010000000C1280803

store = 0x505D5E57FE070000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 5089 (0xE1130000)

label = 24071 (0x075E0000)

fill = 2 (0x02000000)

leng = 8 (0x08000000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000016

occu = 16 (0x10000000)

accKind = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniNo)

keyKind = 1 (default)

cmpMode = 4 (cmpSingleEq)

occu0 = 1

stMode = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 1

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

hasScndKeys = 0

hasRowId = 0

scndKeysOutdated = 0

scndUniKeysOutdated = 0


Shareable Table Header Data -

-


tabi = 0x10755E57FE070000

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

id = 588 (0x4C020000)

shmTabhSet = 0x0000000000000000

refCount = 4 (0x04000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 5 (0x05000000)

pageDoubling = 1

rowId = 18446744073709551615

scndKeyAdmin = 0x0000000000000000

WD_TRANSPARENT_CONTAINER

70008000

4000B100

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->/1WDA/VUIELEMENT~MV_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | SY-XPROG | | | | 2222222222222222222222222222222222222222 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | ME->IFUR_NW5_SCROLLCONTAINER~CONTENT | |

70008100

C0003400

SY

##############################################################################T#########XC####

1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000

4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C

WD_TRANSPARENT_CONTAINER->IP_SCROLLING_MODE

2

0

0

0

ABAP_TRUE

X

5

8

0

0

%_SPACE

2

0

0

0

ME->IFUR_NW5_SCROLLCONTAINER~SCROLLINGMODE

4

0000

4000

WD_TRANSPARENT_CONTAINER->PL_SCROLLING_MODE

00

33

00

00

00

-

-


No. 30 Ty. METHOD

Name CL_GRID_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

-

-


VA__CONTENT

| | 70008100 | | D0002400 | | ME->IFUR_NW5_GRIDLAYOUTCELL~CONTENT | |

70008100

D0002400

SYST-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT

| | 70008000 | | 4000B100 | | SI__CONTENT | |

70008000

4000B100

SY-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_FSREG_001

???

??????

??????

ME

70008100

E0001400

RSJOBINFO

00000000000000 ##

2222222222222222222222222222222233333333333333222222222222222222222222222222222200

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

F0000000

F0000000

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | %_SPACE | | | | 2 | | 0 | | 0 | | 0 | | SY | | ##############################################################################T#########XC#### | | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 | | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C | | ME->IFUR_NW5_GRIDLAYOUTCELL~HALIGN | | 2 | | 0000 | | 2000 | | WD_GRID_DATA->VL_H_ALIGN | | 08 | | 33 | | 08 | | 00 | | 00 | | CL_WD_GRID_DATA=>E_H_ALIGN+24(4) | | 08 | | 33 | | 08 | | 00 | | 00 | - -


| No. 29 Ty. METHOD | | Name CL_GRID_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT | - -
| CELL_WD_GRID_DATA | |

60009000

E0001100

CL_WD_ROW_HEAD_DATA=>E_ROW_BACKGROUND_DESIGN+4(4)

01

33

01

00

00

SY-SUBRC

0

0000

0000

SPACE

2

0

0

0

ME->MT__CELLS

Table IT_21349[0x8]

DATA=MT__CELLS | | Table reference: 4979 | | TABH+ 0(20) = 60D45E58FE070000000000000000000000000000 | | TABH+ 20(20) = 73130000655300000000000008000000FFFFFFFF | | TABH+ 40(16) = 044703006072020010000000C1280003 | | store = 0x60D45E58FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 4979 (0x73130000) | | label = 21349 (0x65530000) | | fill = 0 (0x00000000) | | leng = 8 (0x08000000) | | loop = -1 (0xFFFFFFFF) | | xtyp = TYPE#000007 | | occu = 16 (0x10000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 0 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -


Shareable Table Header Data - -
| | tabi = 0xC0D35E58FE070000 | | pgHook = 0x0000000000000000 | | idxPtr = 0x0000000000000000 | | id = 15874 (0x023E0000) | | shmTabhSet = 0x0000000000000000 | | refCount = 0 (0x00000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 16 (0x10000000) | | lineAlloc = 16 (0x10000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 1 (0x01000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | | SY-TABIX | | 1 | | 0000 | | 1000 | | VA___CELLS | |

70008100

E0001400

VI___CELLS

| | 70008100 | | E0001400 | | SY-XPROG | | | | 2222222222222222222222222222222222222222 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | %_DUMMY$$ | | | | 2222 | | 0000 | | 0000 | | 0000 | | SY-XFORM | | | | 222222222222222222222222222222 | | 000000000000000000000000000000 | | 000000000000000000000000000000 | | 000000000000000000000000000000 | | ME | |

70008100

F0000400

/1WDA/L8STANDARD=>MC_AID_GRID_LAYOUT_CELL

`#yºÏì#KªÉ+#®bm(

687BCE04AC20A662

0B9AFC6BA9B9E2D8

VA___CELLS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

F0000000

F0000000

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | VA___CELLS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | VA___CELLS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT | |

60009000

E0001100

SY-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

VA___CELLS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED

X

5

8

0

0

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED

X

5

8

0

0

%_SPACE

2

0

0

0

AC___CELLS

Table[initial]

SYST

##############################################################################T#########XC####

1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000

4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C

-

-


No. 28 Ty. METHOD

Name CL_GRID_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

-

-


ME->/1WDA/VLAYOUT~MV_WD_CHILDREN

Table IT_21336[23x8]

DATA=/1WDA/VLAYOUT~MV_WD_CHILDREN | | Table reference: 4968 | | TABH+ 0(20) = C07C5E57FE070000000000000000000000000000 | | TABH+ 20(20) = 6813000058530000170000000800000020050000 | | TABH+ 40(16) = 04410300D0F3010010000000C1280803 | | store = 0xC07C5E57FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 4968 (0x68130000) | | label = 21336 (0x58530000) | | fill = 23 (0x17000000) | | leng = 8 (0x08000000) | | loop = 1312 (0x20050000) | | xtyp = TYPE#000010 | | occu = 16 (0x10000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 1 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -


Shareable Table Header Data - -
| | tabi = 0x50105E57FE070000 | | pgHook = 0x70635557FE070000 | | idxPtr = 0x0000000000000000 | | id = 591 (0x4F020000) | | shmTabhSet = 0x0000000000000000 | | refCount = 4 (0x04000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 1008 (0xF0030000) | | lineAlloc = 48 (0x30000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 5 (0x05000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | | WD_CHILD | |

60009000

D0002100

ABAP_FALSE

2

0

0

0

%_FSREG_001

???

??????

??????

%_DUMMY$$

2222

0000

0000

0000

WD_GRID_DATA

| | 60009000 | | C0003100 | | %_SPACE | | | | 2 | | 0 | | 0 | | 0 | | COL_SPAN | | 1 | | 0000 | | 1000 | | WD_GRID_DATA->VL_COL_SPAN | | 1 | | 0000 | | 1000 | | CL_WD_GRID_DATA=>E_H_ALIGN+24(4) | | 08 | | 33 | | 08 | | 00 | | 00 | | CL_WD_ROW_HEAD_DATA=>E_ROW_BACKGROUND_DESIGN+4(4) | | 01 | | 33 | | 01 | | 00 | | 00 | | COL_INDEX | | 5 | | 0000 | | 5000 | | ME->MV_COL_COUNT | | 4 | | 0000 | | 4000 | | WD_ROW_GRID_DATA | |

60009000

E0001100

%_VIASELSCR

#

0

4

VA___ROWS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

F0000000

F0000000

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | VA___ROWS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | VA___ROWS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT | |

60009000

E0001100

SY-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

VA___ROWS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED

X

5

8

0

0

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED

X

5

8

0

0

VA___ROWS

| | 70008100 | | F0000400 | | ME->MT__ROWS | | Table IT_21382[6x8] | | DATA=MT__ROWS

Table reference: 4996

TABH+ 0(20) = 40055F58FE070000000000000000000000000000

TABH+ 20(20) = 84130000865300000600000008000000FFFFFFFF

TABH+ 40(16) = 044703006072020010000000C9280003

store = 0x40055F58FE070000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 4996 (0x84130000)

label = 21382 (0x86530000)

fill = 6 (0x06000000)

leng = 8 (0x08000000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000007

occu = 16 (0x10000000)

accKind = 1 (ItAccessStandard)

idxKind = 1 (ItIndexLinear)

uniKind = 2 (ItUniNo)

keyKind = 1 (default)

cmpMode = 4 (cmpSingleEq)

occu0 = 1

stMode = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

hasScndKeys = 0

hasRowId = 0

scndKeysOutdated = 0

scndUniKeysOutdated = 0


Shareable Table Header Data -

-


tabi = 0xA0045F58FE070000

pgHook = 0x0000000000000000

idxPtr = 0xB06B6058FE070000

id = 15871 (0xFF3D0000)

shmTabhSet = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

pageDoubling = 1

rowId = 18446744073709551615

scndKeyAdmin = 0x0000000000000000

VI___ROWS

| | 70008100 | | F0000400 | | SY-SUBRC | | 0 | | 0000 | | 0000 | | SPACE | | | | 2 | | 0 | | 0 | | 0 | | SY-TABIX | | 1 | | 0000 | | 1000 | - -


| No. 27 Ty. METHOD | | Name CL_TRANSPARENT_CONTAINER=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT | - -
| SYST-REPID | | /1WDA/L7STANDARD==============CP | | 2354424355444454333333333333334522222222 | | F1741FC7341E4124DDDDDDDDDDDDDD3000000000 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | WD_LAYOUT | |

4000B000

1000E100

SY-REPID

/1WDA/L7STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC7341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_FSREG_001

???

??????

??????

ME

| | 80007100 | | 1000E400 | | RSJOBINFO | | 00000000000000 ## | | 2222222222222222222222222222222233333333333333222222222222222222222222222222222200 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | %_DUMMY$$ | | | | 2222 | | 0000 | | 0000 | | 0000 | | VA__CONTENT | |

80007100

0000F400

ME->MV_WD_CHILDREN

Table IT_24069[23x8]

DATA=MV_WD_CHILDREN | | Table reference: 5082 | | TABH+ 0(20) = C07C5E57FE070000000000000000000000000000 | | TABH+ 20(20) = DA130000055E00001700000008000000FFFFFFFF | | TABH+ 40(16) = 046C0100C0AC000010000000C1280803 | | store = 0xC07C5E57FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 5082 (0xDA130000) | | label = 24069 (0x055E0000) | | fill = 23 (0x17000000) | | leng = 8 (0x08000000) | | loop = -1 (0xFFFFFFFF) | | xtyp = TYPE#000016 | | occu = 16 (0x10000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 1 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -


Shareable Table Header Data - -
| | tabi = 0x50105E57FE070000 | | pgHook = 0x70635557FE070000 | | idxPtr = 0x0000000000000000 | | id = 591 (0x4F020000) | | shmTabhSet = 0x0000000000000000 | | refCount = 4 (0x04000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 1008 (0xF0030000) | | lineAlloc = 48 (0x30000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 5 (0x05000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | | WD_TRANSPARENT_CONTAINER | |

70008000

5000A100

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->/1WDA/VUIELEMENT~MV_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | SY-XPROG | | | | 2222222222222222222222222222222222222222 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | ME->IFUR_NW5_SCROLLCONTAINER~CONTENT | |

80007100

0000F400

SY

##############################################################################T#########XC####

1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000

4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C

WD_TRANSPARENT_CONTAINER->IP_SCROLLING_MODE

2

0

0

0

ABAP_TRUE

X

5

8

0

0

%_SPACE

2

0

0

0

ME->IFUR_NW5_SCROLLCONTAINER~SCROLLINGMODE

4

0000

4000

WD_TRANSPARENT_CONTAINER->PL_SCROLLING_MODE

00

33

00

00

00

-

-


No. 26 Ty. METHOD

Name CL_GRID_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

-

-


VA__CONTENT

| | 80007100 | | 1000E400 | | ME->IFUR_NW5_GRIDLAYOUTCELL~CONTENT | |

80007100

1000E400

SYST-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT

| | 70008000 | | 5000A100 | | SI__CONTENT | |

70008000

5000A100

SY-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_FSREG_001

???

??????

??????

ME

80007100

2000D400

RSJOBINFO

00000000000000 ##

2222222222222222222222222222222233333333333333222222222222222222222222222222222200

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

F0000000

F0000000

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | %_SPACE | | | | 2 | | 0 | | 0 | | 0 | | SY | | ##############################################################################T#########XC#### | | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 | | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C | | ME->IFUR_NW5_GRIDLAYOUTCELL~HALIGN | | 2 | | 0000 | | 2000 | | WD_GRID_DATA->VL_H_ALIGN | | 08 | | 33 | | 08 | | 00 | | 00 | | CL_WD_GRID_DATA=>E_H_ALIGN+24(4) | | 08 | | 33 | | 08 | | 00 | | 00 | - -


| No. 25 Ty. METHOD | | Name CL_GRID_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT | - -
| CELL_WD_GRID_DATA | |

4000B000

0000F100

CL_WD_ROW_HEAD_DATA=>E_ROW_BACKGROUND_DESIGN+4(4)

01

33

01

00

00

SY-SUBRC

0

0000

0000

SPACE

2

0

0

0

ME->MT__CELLS

Table IT_21385[0x8]

DATA=MT__CELLS | | Table reference: 5001 | | TABH+ 0(20) = 60925F58FE070000000000000000000000000000 | | TABH+ 20(20) = 89130000895300000000000008000000FFFFFFFF | | TABH+ 40(16) = 044703006072020010000000C1280003 | | store = 0x60925F58FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 5001 (0x89130000) | | label = 21385 (0x89530000) | | fill = 0 (0x00000000) | | leng = 8 (0x08000000) | | loop = -1 (0xFFFFFFFF) | | xtyp = TYPE#000007 | | occu = 16 (0x10000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 0 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -


Shareable Table Header Data - -
| | tabi = 0xC0915F58FE070000 | | pgHook = 0x0000000000000000 | | idxPtr = 0x0000000000000000 | | id = 15881 (0x093E0000) | | shmTabhSet = 0x0000000000000000 | | refCount = 0 (0x00000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 16 (0x10000000) | | lineAlloc = 16 (0x10000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 1 (0x01000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | | SY-TABIX | | 1 | | 0000 | | 1000 | | VA___CELLS | |

80007100

2000D400

VI___CELLS

| | 80007100 | | 2000D400 | | SY-XPROG | | | | 2222222222222222222222222222222222222222 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | %_DUMMY$$ | | | | 2222 | | 0000 | | 0000 | | 0000 | | SY-XFORM | | | | 222222222222222222222222222222 | | 000000000000000000000000000000 | | 000000000000000000000000000000 | | 000000000000000000000000000000 | | ME | |

80007100

3000C400

/1WDA/L8STANDARD=>MC_AID_GRID_LAYOUT_CELL

`#yºÏì#KªÉ+#®bm(

687BCE04AC20A662

0B9AFC6BA9B9E2D8

VA___CELLS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

F0000000

F0000000

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | VA___CELLS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | VA___CELLS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT | |

4000B000

0000F100

SY-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

VA___CELLS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED

X

5

8

0

0

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED

X

5

8

0

0

%_SPACE

2

0

0

0

AC___CELLS

Table[initial]

SYST

##############################################################################T#########XC####

1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000

4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C

-

-


No. 24 Ty. METHOD

Name CL_GRID_LAYOUT=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

-

-


%_DUMMY$$

2222

0000

0000

0000

VA___ROWS

| | 80007100 | | 3000C400 | | SY-XFORM | | | | 222222222222222222222222222222 | | 000000000000000000000000000000 | | 000000000000000000000000000000 | | 000000000000000000000000000000 | | ME | |

80007100

4000B400

/1WDA/L8STANDARD=>MC_AID_GRID_LAYOUT_ROW

úªÿ#Õ#ÍHª´%þ;«ñµ

FAF8D0C4AB2F3AFB

AAFA52D8A45EBB15

VA___ROWS->MV_WD_GRID_DATAS

Table IT_21334[1x8]

DATA=MV_WD_GRID_DATAS | | Table reference: 4966 | | TABH+ 0(20) = 10115F58FE070000000000000000000000000000 | | TABH+ 20(20) = 6613000056530000010000000800000050040000 | | TABH+ 40(16) = 044703004083020010000000C1280003 | | store = 0x10115F58FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 4966 (0x66130000) | | label = 21334 (0x56530000) | | fill = 1 (0x01000000) | | leng = 8 (0x08000000) | | loop = 1104 (0x50040000) | | xtyp = TYPE#000097 | | occu = 16 (0x10000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 0 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -


Shareable Table Header Data - -
| | tabi = 0x70105F58FE070000 | | pgHook = 0x0000000000000000 | | idxPtr = 0x0000000000000000 | | id = 14817 (0xE1390000) | | shmTabhSet = 0x0000000000000000 | | refCount = 0 (0x00000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 16 (0x10000000) | | lineAlloc = 16 (0x10000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 1 (0x01000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | | AC___ROWS | | Table IT_24068[1x8] | | CLASS-POOL=/1WDA/L8STANDARDCLASS=CL_GRID_LAYOUTMETHOD=IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTE | | Table reference: 4962 | | TABH+ 0(20) = A05B5E58FE070000000000000000000000000000 | | TABH+ 20(20) = 62130000045E00000100000008000000FFFFFFFF | | TABH+ 40(16) = 04470300908D020010000000C1280003 | | store = 0xA05B5E58FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 4962 (0x62130000) | | label = 24068 (0x045E0000) | | fill = 1 (0x01000000) | | leng = 8 (0x08000000) | | loop = -1 (0xFFFFFFFF) | | xtyp = TYPE#000152 | | occu = 16 (0x10000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 0 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -
Shareable Table Header Data - -
| | tabi = 0x303E8D58FE070000 | | pgHook = 0x0000000000000000 | | idxPtr = 0x0000000000000000 | | id = 16340 (0xD43F0000) | | shmTabhSet = 0x0000000000000000 | | refCount = 0 (0x00000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 16 (0x10000000) | | lineAlloc = 16 (0x10000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 1 (0x01000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | | WD_GRID_DATA | |

4000B000

0000F100

WD_ROW_GRID_DATA

4000B000

0000F100

%_VIASELSCR

#

0

4

VA___ROWS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

F0000000

F0000000

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | VA___ROWS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | VA___ROWS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT | |

4000B000

0000F100

SY-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

VA___ROWS->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED

X

5

8

0

0

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED

X

5

8

0

0

%_SPACE

2

0

0

0

ME->MT__ROWS

Table IT_21387[0x8]

DATA=MT__ROWS | | Table reference: 4969 | | TABH+ 0(20) = 00FD5E58FE070000000000000000000000000000 | | TABH+ 20(20) = 691300008B5300000000000008000000FFFFFFFF | | TABH+ 40(16) = 044703006072020010000000C1280003 | | store = 0x00FD5E58FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 4969 (0x69130000) | | label = 21387 (0x8B530000) | | fill = 0 (0x00000000) | | leng = 8 (0x08000000) | | loop = -1 (0xFFFFFFFF) | | xtyp = TYPE#000007 | | occu = 16 (0x10000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 0 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -


Shareable Table Header Data - -
| | tabi = 0x60FC5E58FE070000 | | pgHook = 0x0000000000000000 | | idxPtr = 0x0000000000000000 | | id = 15870 (0xFE3D0000) | | shmTabhSet = 0x0000000000000000 | | refCount = 0 (0x00000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 16 (0x10000000) | | lineAlloc = 16 (0x10000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 1 (0x01000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | | VI___ROWS | |

80007100

3000C400

SYST

##############################################################################T#########XC####

1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000

4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C

%_FSREG_001

???

??????

??????

ME->IFUR_NW5_GRIDLAYOUT~ROWS->OBJECTS

Table IT_21388[1x8]

DATA=MU__ROWS-OBJECTS | | Table reference: 5003 | | TABH+ 0(20) = E09C5F58FE070000000000000000000000000000 | | TABH+ 20(20) = 8B1300008C5300000100000008000000FFFFFFFF | | TABH+ 40(16) = 044703008073020001000000C1280003 | | store = 0xE09C5F58FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 5003 (0x8B130000) | | label = 21388 (0x8C530000) | | fill = 1 (0x01000000) | | leng = 8 (0x08000000) | | loop = -1 (0xFFFFFFFF) | | xtyp = TYPE#000013 | | occu = 1 (0x01000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 0 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -


Shareable Table Header Data - -
| | tabi = 0xA09C5F58FE070000 | | pgHook = 0x0000000000000000 | | idxPtr = 0x0000000000000000 | | id = 14848 (0x003A0000) | | shmTabhSet = 0x0000000000000000 | | refCount = 0 (0x00000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 1 (0x01000000) | | lineAlloc = 1 (0x01000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 1 (0x01000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | - -
| No. 23 Ty. METHOD | | Name CL_GROUP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT | - -
| SYST-REPID | | /1WDA/L7STANDARD==============CP | | 2354424355444454333333333333334522222222 | | F1741FC7341E4124DDDDDDDDDDDDDD3000000000 | | 0000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000 | | WD_LAYOUT | |

3000C000

E0001100

SY-REPID

/1WDA/L7STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC7341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_FSREG_001

???

??????

??????

ME

| | 80007100 | | 5000A400 | | RSJOBINFO | | 00000000000000 ## | | 2222222222222222222222222222222233333333333333222222222222222222222222222222222200 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | %_DUMMY$$ | | | | 2222 | | 0000 | | 0000 | | 0000 | | VA__CONTENT | |

80007100

4000B400

ME->MV_WD_CHILDREN

Table IT_24067[1x8]

DATA=MV_WD_CHILDREN | | Table reference: 4825 | | TABH+ 0(20) = B0945557FE070000000000000000000000000000 | | TABH+ 20(20) = D9120000035E00000100000008000000FFFFFFFF | | TABH+ 40(16) = 046C0100C0AC000010000000C1280803 | | store = 0xB0945557FE070000 | | ext1 = 0x0000000000000000 | | shmId = 0 (0x00000000) | | id = 4825 (0xD9120000) | | label = 24067 (0x035E0000) | | fill = 1 (0x01000000) | | leng = 8 (0x08000000) | | loop = -1 (0xFFFFFFFF) | | xtyp = TYPE#000016 | | occu = 16 (0x10000000) | | accKind = 1 (ItAccessStandard) | | idxKind = 0 (ItIndexNone) | | uniKind = 2 (ItUniNo) | | keyKind = 1 (default) | | cmpMode = 4 (cmpSingleEq) | | occu0 = 1 | | stMode = 0 | | groupCntl = 0 | | rfc = 0 | | unShareable = 0 | | mightBeShared = 1 | | sharedWithShmTab = 0 | | isShmLockId = 0 | | gcKind = 0 | | isUsed = 1 | | isCtfyAble = 1 | | hasScndKeys = 0 | | hasRowId = 0 | | scndKeysOutdated = 0 | | scndUniKeysOutdated = 0 | | -


Shareable Table Header Data - -
| | tabi = 0x10945557FE070000 | | pgHook = 0x0000000000000000 | | idxPtr = 0x0000000000000000 | | id = 614 (0x66020000) | | shmTabhSet = 0x0000000000000000 | | refCount = 4 (0x04000000) | | tstRefCount = 0 (0x00000000) | | lineAdmin = 16 (0x10000000) | | lineAlloc = 16 (0x10000000) | | shmVersId = 0 (0x00000000) | | shmRefCount = 5 (0x05000000) | | pageDoubling = 1 | | rowId = 18446744073709551615 | | scndKeyAdmin = 0x0000000000000000 | | WD_GROUP | |

70008000

60009100

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->/1WDA/VUIELEMENT~MV_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | ME->IFUR_NW5_GROUP~CONTENT | |

80007100

4000B400

SY

##############################################################################T#########XC####

1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000

4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C

WD_GROUP->IP_SCROLLING_MODE

2

0

0

0

ABAP_TRUE

X

5

8

0

0

%_SPACE

2

0

0

0

ME->IFUR_NW5_GROUP~SCROLLINGMODE

4

0000

4000

WD_GROUP->PL_SCROLLING_MODE

00

33

00

00

00

-

-


No. 22 Ty. METHOD

Name CL_TABSTRIP_ITEM=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

-

-


VA__CONTENT

| | 80007100 | | 5000A400 | | ME->IFUR_NW5_TABSTRIPITEM~CONTENT | |

80007100

5000A400

SYST-REPID

/1WDA/L9STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC9341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT

| | 70008000 | | 60009100 | | SI__CONTENT | |

70008000

60009100

SY-REPID

/1WDA/L9STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC9341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_FSREG_001

???

??????

??????

ME

80007100

60009400

RSJOBINFO

00000000000000 ##

2222222222222222222222222222222233333333333333222222222222222222222222222222222200

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

F0000000

F0000000

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | ME->IFUR_NW5_TABSTRIPITEM~ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | %_SPACE | | | | 2 | | 0 | | 0 | | 0 | | SY | | ##############################################################################T#########XC#### | | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 | | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C | - -


| No. 21 Ty. METHOD | | Name CL_TABSTRIP=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT | - -
| ME->MT__ITEMS | | Table IT_21467[2x8] | | DATA=MT__ITEMS

Table reference: 5024

TABH+ 0(20) = 40175F58FE070000000000000000000000000000

TABH+ 20(20) = A0130000DB5300000200000008000000FFFFFFFF

TABH+ 40(16) = 04260400A0F8020010000000C9280003

store = 0x40175F58FE070000

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 5024 (0xA0130000)

label = 21467 (0xDB530000)

fill = 2 (0x02000000)

leng = 8 (0x08000000)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000115

occu = 16 (0x10000000)

accKind = 1 (ItAccessStandard)

idxKind = 1 (ItIndexLinear)

uniKind = 2 (ItUniNo)

keyKind = 1 (default)

cmpMode = 4 (cmpSingleEq)

occu0 = 1

stMode = 0

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

hasScndKeys = 0

hasRowId = 0

scndKeysOutdated = 0

scndUniKeysOutdated = 0


Shareable Table Header Data -

-


tabi = 0xA0165F58FE070000

pgHook = 0x0000000000000000

idxPtr = 0xD0EE5258FE070000

id = 15882 (0x0A3E0000)

shmTabhSet = 0x0000000000000000

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 16 (0x10000000)

lineAlloc = 16 (0x10000000)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x01000000)

pageDoubling = 1

rowId = 18446744073709551615

scndKeyAdmin = 0x0000000000000000

SY-TABIX

1

0000

1000

SY-XPROG

2222222222222222222222222222222222222222

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

VA___ITEMS

| | 80007100 | | 60009400 | | SY-XFORM | | | | 222222222222222222222222222222 | | 000000000000000000000000000000 | | 000000000000000000000000000000 | | 000000000000000000000000000000 | | ME | |

80007100

70008400

/1WDA/L9STANDARD=>MC_AID_TABSTRIP_ITEM

^#Àé#N>K#§##åÉM§

50CE04349A88EC4A

EF090EEB970259D7

SY-REPID

/1WDA/L9STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC9341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

ME->MV_HAS_ON_CLOSE

2

0

0

0

%_SPACE

2

0

0

0

INDEX

0

0000

0000

ME->MV_RENDER_CONTENT

X

5

8

0

0

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | WD_TAB | |

3000C000

80007000

ME->/1WDA/VUIELEMENT~MV_ENABLED

X

5

8

0

0

AC___ITEMS

Table[initial]

SYST

##############################################################################T#########XC####

1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000

4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C

%_FSREG_001

???

??????

??????

-

-


No. 20 Ty. METHOD

Name CL_MATRIX_LAYOUT_CELL=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT

-

-


VA__CONTENT

| | 80007100 | | 70008400 | | ME->IFUR_NW5_MATRIXLAYOUTCELL~CONTENT | |

80007100

70008400

SYST-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_VIEW_ELEMENT

| | 70008000 | | 70008100 | | SI__CONTENT | |

70008000

70008100

SY-REPID

/1WDA/L8STANDARD==============CP

2354424355444454333333333333334522222222

F1741FC8341E4124DDDDDDDDDDDDDD3000000000

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

%_FSREG_001

???

??????

??????

ME

80007100

80007400

RSJOBINFO

00000000000000 ##

2222222222222222222222222222222233333333333333222222222222222222222222222222222200

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_DUMMY$$

2222

0000

0000

0000

VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

F0000000

F0000000

ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_ELEMENT

| | F0000000 | | F0000000 | | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_CONTEXT_NODE_PATH_NAME | | | | VA__CONTENT->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | ME->IF_WDR_VIEW_ELEMENT_ADAPTER~M_PARENT_ENABLED | | X | | 5 | | 8 | | 0 | | 0 | | %_SPACE | | | | 2 | | 0 | | 0 | | 0 | | SY | | ##############################################################################T#########XC#### | | 1000000000000000000000000000000000000000000000001000000000000000000000000000105000100010540000 | | 4000105000000000000010001000100000000080000000009000000000000000000000000000604000900000830400 | | 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 | | 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000E000000C | | ME->IFUR_NW5_MATRIXLAYOUTCELL~HALIGN | | 2 | | 0000 | | 2000 | | WD_MATRIX_DATA->VL_H_ALIGN | | 08 | | 33 | | 08 | | 00 | | 00 | | CL_WD_MATRIX_DATA=>E_H_ALIGN+24(4) | | 08 | | 33 | | 08 | | 00 | | 00 | - -


| No. 19 Ty. METHOD | | Name CL_MATRIX_LAYOUT_ROW=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT | - -
| WD_MATRIX_DATA | |

1000E000

4000B000

CL_WD_ROW_HEAD_DATA=>E_ROW_BACKGROUND_DESIGN+4(4)

01

33

01

00

00

SY-SUBRC

0

0000

0000

SPACE

Former Member
0 Kudos

And the assert error appears regardless what you click? Every third time?

I don't have ac lue.

Sorry,

Sascha

Former Member
0 Kudos

hi

can u post the source code extract of the dump and the exact message of the dump pls?

Cheers,

Sascha