2013 Mar 12 3:51 PM
Hi,
Can any one please let me know why I am getting the following error.
An exception with the type CX_SY_DYN_CALL_ILLEGAL_TYPE occurred, but was neither handled locally, nor declared in a RAISING clause
{O:28*\CLASS=CX_SY_NO_HANDLER}
FM has a structure as a input parameter of type /POSDW/MON_FS_FILTER.
When I am passing businessdaydate as
| S | OP | LOW | High |
|---|---|---|---|
| I | EQ | 01.01.2012 | 01.01.2012 |
I am getting the error.
businessdaydate is having data type as DATS.
Thanks,
Rahul
2013 Mar 12 4:08 PM
Hi,
Just match Import/Export parameters of FM with data type of variables that you are passing to that Fm. They should be exactly same(Check data element).
Regards
Purnand
2013 Mar 12 4:46 PM
Yes, Purnand is correct. Try to declare a working area in exactly same way as your FM import parameter structure, fill it and pass it to FM, it might work.
Regards,
Edgar
2013 Mar 12 6:34 PM
2013 Mar 13 4:33 AM
Hi,
Try date with parameters rather than select options. It will match, I think,
Regards
Purnand
2013 Mar 13 5:38 AM
Hi Rahul,
DATS is of 8 digits and in YYYYMMDD format so you will need to pass the above data as
SIGN OPTION LOW HIGH
I EQ 20120101 20120101
2013 Mar 13 7:20 AM
Hi,
Did you get the solution? Please do let us know if you are still facing any issue?
Regards
Purnand
2013 Mar 13 11:03 AM