cancel
Showing results for 
Search instead for 
Did you mean: 

Any idea...

Former Member
0 Kudos

Where this can come from ? I'm trying to display table in webdynpro...


Note 

The following error text was processed in the system SDI : The ASSERT condition was violated. 
The error occurred on the application server sapsdi_SDI_02 and in the work process 0 . 
The termination type was: RABAX_STATE 
The ABAP call stack was: 
Method: GET_VISIBLE_TABLE_DATA of program CL_WDR_TABLE_DATA_PROVIDER====CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L3STANDARD==============CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L7STANDARD==============CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L7STANDARD==============CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP
Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/L8STANDARD==============CP

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

I'm displaying a table

With header from data binding

and also attribute visible from binding

What are the values to be put so that the column is displayed or not ??? I've used 'X' and space, maybe other value needed...

Don't you think ?

Former Member
0 Kudos

Hi Stephen,

you have to take attribute of type WDUI_VISIBILITY and you should populate the value of attribute with either '01' for none and '02' is for Visible.

thats all your problem will be solved.

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Althought 01 and 02 are the technically correct values, you should never hard code them - as they could change at some point. Always use the class constants from CL_WD_UIELEMENT

CL_WD_UIELEMENT=>E_VISIBLE-BLANK, CL_WD_UIELEMENT=>E_VISIBLE-NONE, and CL_WD_UIELEMENT=>E_VISIBLE-VISIBLE

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Stephen,

What you are trying to display and what are you doing with table.Can you please provide your code and tell eloborately about your requirement.