Company information report

aelmichsabaaelmichsaba Member Posts: 7
Dear community of mibuso,

i am new on dynamics NAV, currently i am working on the report customization, but now i was trying to print company information, like company name, company address and other information from company information table on my new report. please help me,

thanks
Marry

Comments

  • geordiegeordie Member Posts: 655
    You need to add new textboxes with SourceExpr like these:
    CompanyInfo.Name
    CompanyInfo.Address
    CompanyInfo.City
    CompanyInfo."Post Code"
    ...
    

    Don't forget to retrieve the record at the beginning of the report (usually OnPreReport trigger) and use CALCFIELDS statement to show correctly the logo:
    CompanyInfo.GET;
    CompanyInfo.CALCFIELDS(Picture);
    
Sign In or Register to comment.