Hi,
In a table for a same document no., there are multiple narrations.
The narration values are flowing in a report. The issue is the narrations are coming on different lines as per the data entered in the
Narration field For Eg in Table the data is entered as follows:
Doc. No. Narration
1 Test-1
1 Test-2
1 Test-3
In the report the data is also coming in the same manner. But the issue is how can it be added like
Narration: Test-1+Test-2+Test-3
I have got the data of narration by copystr as:
Narr1 := COPYSTR(Narration,1,170);
0