cancel
Showing results for 
Search instead for 
Did you mean: 

Getting dump through cell variant

Former Member
0 Kudos

Hi all,

I am getting following dump while executing ALV in which i have use cell variant.



The following error text was processed in the system ECX : WebDynpro Exception: IDs Can Only Contain Characters of Syntactical Character Set 
The error occurred on the application server BMPSCNT891_ECX_00 and in the work process 0 . 
The termination type was: RABAX_STATE 
The ABAP call stack was: 
Method: RAISE of program CX_WD_GENERAL=================CP
Method: CONSTRUCTOR of program CL_WDR_VIEW_ELEMENT===========CP
Method: CONSTRUCTOR of program CL_WD_TABLE_STANDARD_CELL=====CP
Method: NEW_TABLE_STANDARD_CELL of program CL_WD_TABLE_STANDARD_CELL=====CP
Method: IF_SALV_WD_COMP_TABLE_UI~CREATE_CELL_VARIANTS of program CL_SALV_WD_C_TABLE_V_TABLE====CP
Method: IF_SALV_WD_COMP_TABLE_UI~UPDATE_COLUMN of program CL_SALV_WD_C_TABLE_V_TABLE====CP
Method: IF_SALV_WD_COMP_TABLE_UI~UPDATE_COLUMNS of program CL_SALV_WD_C_TABLE_V_TABLE====CP
Method: IF_SALV_WD_COMP_TABLE_UI~UPDATE_TABLE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
Method: IF_SALV_WD_COMP_TABLE_UI~UPDATE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
Method: IF_SALV_WD_VIEW~MODIFY of program CL_SALV_WD_C_TABLE_V_TABLE====CP.

and my code is:



 CREATE OBJECT lo_input_ft1
    EXPORTING
      value_fieldname = 'FT1'.
  lo_column->set_cell_editor( lo_input_ft1 ).

* Variant For Time ie when entry type is Time
  CREATE OBJECT lo_cell_var.
  lo_input_ft1->set_read_only_fieldname( 'FT1_UI' ).
  lo_cell_var->set_key( gv_time ).
  lo_cell_var->set_editor( value = lo_input_ft1 ).
  lo_cell_var->set_h_align( cl_wd_table_column=>e_h_align-forced_left ).
  lo_cell_var->set_cell_design_fieldname( value = 'DAY1_DESIGN' ).
  lo_column->add_cell_variant( r_cell_variant = lo_cell_var ).
  lo_column->set_sel_cell_variant_fieldname( 'TYPE' ).

Thanks in adcance.

Edited by: Nidhi Sharma on Apr 28, 2010 2:07 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Solved Myself.

Implemented SAP Note Number: 1457512 .