Hi All,
I have created a scripted calculation view which data from multiple standard and custom tables.
The output in hana studio is like below (all output fields are nvarchar type)
Doc Number | Column 2 | Column 3 | Column 4 | Column 5 | Column 6 | Column 7 | Column 8 |
---|---|---|---|---|---|---|---|
1234567890 | ABC | 123 | 41 | ASAHS | JHSJDH | HAJSHDJ | HJAHS |
1234567891 | CDF | 123 | 231 | MMMM | HAJDHJ | JHJADHJAS | JHADJ |
1234567892 | SDS | 1133 | 33 | JCCC | JHASDJH | AJDHSD | MMMM |
1234567893 | ASDS | 1 | 76 | DDD | DDD | ASD | JHAJSD |
But when i am calling the same view in ABAP report, doc number's value is changed to null.
Doc Number | Column 2 | Column 3 | Column 4 | Column 5 | Column 6 | Column 7 | Column 8 |
---|---|---|---|---|---|---|---|
ABC | 123 | 41 | ASAHS | JHSJDH | HAJSHDJ | HJAHS | |
CDF | 123 | 231 | MMMM | HAJDHJ | JHJADHJAS | JHADJ | |
SDS | 1133 | 33 | JCCC | JHASDJH | AJDHSD | MMMM | |
ASDS | 1 | 76 | DDD | DDD | ASD | JHAJSD |
The columns in HANA calculation view and the internal table in ABAP report both refer to the same Database Table.
Please help here.
Thanks,
Vijay Sah