Hi All,
I have a quick technical question about 2 standard fields in AX ( Created date time & Modified date Time ),
I'm working now on a SQL Query, and i'm using " LOGISTICSELECTRONICADDRESS " table, but i didn't find these 2 fields,
PS: I'm obliged to use SQL, and i need to know the date of creation and modification of the customer contact, im wondering if there is any alternative to do that, or other fields to trieve Creation / Modification date.
Here is my SQL Query:
SELECT CUSTTABLE.ACCOUNTNUM AS [Customer account], LOGISTICSELECTRONICADDRESS.DESCRIPTION AS [Description], LOGISTICSELECTRONICADDRESS.TYPE AS [Type], LOGISTICSELECTRONICADDRESS.LOCATOR AS [Contact Number/Address], LOGISTICSELECTRONICADDRESS.ISPRIMARY AS [Primary], CUSTTABLE.DATAAREAID AS [Data Area Id] FROM CUSTTABLE, DIRPARTYLOCATION, LOGISTICSELECTRONICADDRESS WHERE CUSTTABLE.PARTY = DIRPARTYLOCATION.PARTY AND LOGISTICSELECTRONICADDRESS.LOCATION = DIRPARTYLOCATION.LOCATION ORDER BY CUSTTABLE.ACCOUNTNUM, CUSTTABLE.CREATEDDATETIME
*This post is locked for comments