ProjName should be printed in the ProjInvoice Report

Hi

I need to fetch the Project name in to the ProjInvoice Report, IN that report ProjId is there , so i am tring to write the following code to fetch the proj , but i am not able to display the Project name.

display ProjName projName_USS()
{
;

return ProjTable::find(ProjInvoiceEmpl.ProjId).Name;
}

can any one help me how to retify this problem.

Project->Reports->Invoice.

When i am tring to write

Hi,

Did you place the debugger and checked whther the value is been displayed during debugging?

And what place are you calling this particular method?

Where you are placed this method in the report?

I have place this method , in the below path .

\Reports\ProjInvoice\Designs\Standard\Generated Design\Section Group: ProjInvoiceJour\Body:ProjectInvoiceJour\Section Group: ProjInvoiceEmpl\Body:ProjectEmployeeInvoiceTrans

display ProjName projName_USS()
{
;

return ProjTable::find(ProjInvoiceEmpl.ProjId).Name;
}

By doing this i achived this solution.