Using the GP Web Services, is it possible to do Intercompany Distributions for Payables Transactions?

StackOverflow https://stackoverflow.com/questions/19411419

  •  01-07-2022
  •  | 
  •  

문제

invoice.IsIntercompanyTransaction = true;
invoice.HasIntercompanyDistributions = true;

var dist = new PayablesDistribution();
dist.CompanyKey = new CompanyKey { Id = 2 }; // different company

Consider the code above. All three of the properties set are said to be read-only in the Dynamics GP 2010 Web Service Reference. So is it even possible to do Intercompany transactions using only GP Web Services?

Below is a link to the same question, asked by someone else, on the Dynamics Community board. http://community.dynamics.com/gp/f/32/t/106478.aspx

도움이 되었습니까?

해결책

Unfortunately it is not possible to create intercompany payables transactions using GP Web Services or eConnect. I have seen some creative solutions that involved direct SQL updates following the import to set the intercompany flags though this method is not supported by Microsoft.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top