web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

X++ Code to get Company name , Phone and fax in D365FO

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224

 Below is X++ Code to get Company name , Phone and fax in D365FO. You can try in Job to check to values.


CompanyInfo Company;
;
Company = CompanyInfo::find();
info(strFmt("Company Name : %1", Company.Name));
info(strFmt("Company Phone : %1", Company.phone()));
info(strFmt("Company Phone : %1", Company.telefax()));

This was originally posted here.

Comments

*This post is locked for comments