Hi experts,
I have some planning function types which uses query structures and copy the values of a certain column in another one.
I have used an internal table of Standard table type of a self defined structure so far:
DATA: l_t_data type STANDARD TABLE OF ZBW_S_MD_IP_ZMD_AL163,
l_s_data type ZBW_S_MD_IP_ZMD_AL163.
And we assign C_TH_DATA table anywhere before going through g_t_data_charsel:
l_t_data[] = c_th_data[].
It has actually worked properly all the time. But after 7.4. Upgrade those planning functions don't work anymore and I get a short dump when trying to assign c_th_data[] to l_t_data[].
In ST22 I can see the error message that two internal table are neither compatible nor convertible.
Could anybody let me know what has been changed with the upgrade and what I can do to solve the issue.
I would really appreciate any help.
Thank you in advance.
Kind regards,
Ali Ansari