‎2007 Aug 08 6:55 AM
hi,
how to use offset in report.suppose if i want to use srtfd from table rfdt and want to match the user name and the document number separately .how do i separately use them for.eg : name = srtfd(+0(10)); or
doc no. = srtfd(+12(10));
can anyone show me by an example.???
regards
thanks
‎2007 Aug 08 7:00 AM
Hi,
If the First 10 charecters are User name then
NAME = SRTFD+0(10). " It will move the first 10 charecters
DOC_NO = SRTFD+11(12). " The it will take from 11th charecter to 23 charecter
Regards
Sudheer
‎2007 Aug 08 7:00 AM
Hi,
If the First 10 charecters are User name then
NAME = SRTFD+0(10). " It will move the first 10 charecters
DOC_NO = SRTFD+11(12). " The it will take from 11th charecter to 23 charecter
Regards
Sudheer
‎2007 Aug 08 7:00 AM
Hi Sudipta,
Name = strfd + 0(10)
doc no = strfd + 12(10).
here name contains first 10 char's of strfd and doc no contains from 12 th char to 21 rd char
Reward points for helpful answers,
kiran.M
Message was edited by:
KIRAN KUMAR
‎2007 Aug 08 7:00 AM
hi,
use the offset as follows:
doc_number = srtfd+12(10).
regards,
Navneeth K.