ā2015 Jan 30 4:07 AM
Hi guys ,
i have got some runtime error 'Data objects in Unicode programs cannot be converted' like this.So, please give me the suggestion what can i do.
Regards,
Mahesh
ā2015 Jan 30 4:49 AM
Hi Mahesh,
it looks some compatibility error. Can you share your code so that it will be easy for us to analyse.
ā2015 Jan 30 4:54 AM
PROCESS BEFORE OUTPUT.
* MODULE STATUS_9001.
LOOP AT IT_ZCABLESPEC INTO ZCABLESPEC WITH CONTROL TC1
CURSOR TC1-CURRENT_LINE.
ENDLOOP.
PROCESS AFTER INPUT.
LOOP .
ENDLOOP.
Error will came at Pbo loop.
ā2015 Jan 30 5:10 AM
It's not much clear from here. In the run time error document the issue would be mentioned. Please check that. Also you can refer RSDEMO_TABLE_CONTROL.
ā2015 Jan 30 5:13 AM
ā2015 Jan 30 2:02 PM
ā2015 Jan 30 2:23 PM
Hi Mahesh,
MAHESH K wrote:
PROCESS BEFORE OUTPUT.
* MODULE STATUS_9001.
LOOP AT IT_ZCABLESPEC INTO ZCABLESPEC WITH CONTROL TC1
CURSOR TC1-CURRENT_LINE.
ENDLOOP.
Kindly make sure both the IT_ZCABLESPEC And ZCABLESPEC have same structure. Check the global structure as shown below.
DATA: IT_ZCABLESPEC TYPE TABLE OF TY_ZCABLESPEC, "Internal Table
ZCABLESPEC TYPE TY_ZCABLESPEC. "Work Area
Regards
Rajkumar Narasimman
ā2015 Jan 30 10:15 AM
If you're making a new development, I suggest you to use editable ALV grid, it's much better than table control.
ā2015 Jan 31 10:23 AM
Hi,
If you are using and currency and quantity field.
Change Dictionary type to decimal.
You will find above in screen painter Attributes.
Thank you.
Dular Sharma.