fidley / falv

FALV - Fast ALV Grid
https://abapblog.com
GNU General Public License v3.0
141 stars 52 forks source link

Syntax error in program "ZCL_FALV_COLUMN===============CP ". #83

Closed Nioniotte closed 8 months ago

Nioniotte commented 8 months ago

Hello,

When I run, the program ZDEMO_FALV01 or other demo, I have this dump:

Error in the ABAP application program.

The current ABAP program "ZCL_FALV======================CP" had to be terminated because it found a statement that could not be executed. In include "ZCL_FALV_COLUMN===============CM03U ", in line 15 of program "ZCL_FALV_COLUMN===============CP ", the following syntax errors have occurred: Le type 'FIXVALUES' est inconnu.

In ZCL_FALV_COLUMN, method SET_DRDN_HNDL: lt_fixed_values TYPE cl_abap_elemdescr=>fixvalues

But fixvalues is not exist in class cl_abap_elemdescr.

I'm in SAP SAP_ABA 750 SP 0023.

Misha

fidley commented 8 months ago

Hello Misha, could you update the method to use type DDFIXVALUES there and see if this works? According to comments it should be compatible with cl_abap_elemdescr=>fixvalues.

Cheers Łukasz

Nioniotte commented 8 months ago

I changed the line ,lt_fixed_values TYPE cl_abap_elemdescr=>fixvalues by: ,lt_fixed_values TYPE STANDARD TABLE OF ddfixvalue WITH EMPTY KEY

Now it work

fidley commented 8 months ago

Are you able to make pull request with your changes?

Nioniotte commented 8 months ago

Are you able to make pull request with your changes?

I never do that. But I will try it...

Nioniotte commented 8 months ago

Ok I tried to pull the request

fidley commented 8 months ago

Thanks!