alerts
4th December 2013, 09:18
Hi,
There is customized field in standard table whinh310. When we created report, then customized field is not added in input fields of the report. Please kindly anyone suggest me to add the field in reports input fields.


Thanks & Regards,

bhushanchanda
4th December 2013, 10:03
Hi,

To print CDF in your report, you will need to declare a variable with the same domain as that of CDF.
Now, you can assign the CDF value to the variable. Put the declared variable in your report input field and you can use it wherever you like.

e.g. If I have a CDF field test with domain tcmcs.str10 in table tcibd001. Hence it will look like this:-

tcibd001.cdf_test

If I want to print the table fields and the CDF field related to that item I will do this:-

extern domain tcmcs.str10 x

select tcibd001.*
from tcibd001
selectdo
x = tcibd001.cdf_test
rprt_send()
endselect

alerts
5th December 2013, 07:43
Thank you very much ...