I'll recommend to debug the process which set status Pass to Quality Order and you'll understand how it works and which objects are related to this process step by step.
RE: Creating button to update close Quality Order destructive sample Materials
How to add custom drop down field in ProjTable
RE: Compatibility of SQL Server 2014 SP2 with AX 2012 R3 CU 12
Just google for Dynamics AX 2012 system requirements and you will find the official document that contains the information.
Compatibility of SQL Server 2014 SP2 with AX 2012 R3 CU 12
Hi All,
I just want to confirm SQL server 2014 SP2 compatible with Ax 2012 R3 CU12 or not ? I am also trying to findout white paper but no luck... Please help me on the same ...
Regards,
Piyush
RE: I am trying to populate a form grid with a temprory table which is set as form's datasource
its a temprory table with same name ABC_TMPPurchtData i have created the same object.
By the way the code is working fine now as settmp method works with inmemory type.
Now there is another issue everytym i select a new po and click on find it appends the last tym searched data.
RE: I am trying to populate a form grid with a temprory table which is set as form's datasource
Put the delete_from tMPPurchtData
PurchTable purchTable1; PurchLine purchLine; delete_from tMPPurchtData; while select purchTable1 join purchLine where purchTable1.PurchId == purchLine.PurchId && purchTable1.PurchId == _PurchId {
RE: I am trying to populate a form grid with a temprory table which is set as form's datasource
Thnaks alot it worked.
RE: Setting up PricePriceListService on an inbound port
RE: Data Contract Inside another data contract
Hi Martin,
I have tried the below code to meet the expectation but am not able to get the values from the nested contract. Please let me know how can i proceed further.
Main Contract Class:
[DataContractAttribute]
class Login
{
str EmailId;
AuthenticationContract authenticationContract;
}
[DataMemberAtribute("EmailID")]
public str parmEmailId(str _EmailId = EmailId)
{
EmailId = _EmailId;
return EmailId;
}
- Nested Contract parm method in main contract class:
[DataMemberAttribute("Authentication")]
public AuthenticationContract parmAuthentication(AuthenticationContract authenticationContract)
{
authenticationContract = _authenticationContract;
return authenticationContract;
}
Nested Contract class:
[DataContractAttribute("Authentication")]
class AuthenticationContract
{
str Description;
}
[DataMemberAttribute("Description")]
public str parmDescription(str _des = des)
{
des = _des;
return des;
}
Service Operation:
[SysEntryPointAttribute(true)]
public LoginContract validateCredentials(str _emailId)
{
LoginContract login;
AuthenticationContract authentication;
login = new LoginContract();
if(_emailid == ' ')
{
authentication.parmDescription('Please provide the Email')
}
return login;
}
Response XML:
In the response xml, i am not able to get the value for description tag and also the description is not aligned as a sub tag.
<?xml version="1.0"?>
<LoginResponse>
<EmailId />
<Authentication i:nil = "true /">
</LoginResponse>
Data Contract Inside another data contract
Hi Team,
Can you please help me in knowing the way to write a data contract inside another data contract as i want to build a custom service xml schema with sub xml elements. As per my knowledge i need to write the contract in the parm methods of another data contract but not sure how to write. Can you please help me in knowing it.
<?xml version="1.0"?>
<LoginResponse>
<SessionId>987</SessionId>
<EmailId>testing@gmail.com</EmailId>
<Authentication>
<ResponseCode>1</ResponseCode>
<ReasonCode>10</ReasonCode>
<ReasonDescription>Not Valid</ReasonDescription>
</Authentication>
</LoginResponse>
Regards
Venky
RE: AX installation Error
What do you mean by configuring an old database? What are you trying toto install?
AX installation Error
RE: Setting up PricePriceListService on an inbound port
Check the URL field. If url contain "\" at the end, remove it.
Picking List Registration
Hi,
We have created a normal transfer order. It's ship transfer order option is disabled and Picking List Registration is enabled. We make many TOs daily, but only 2 TOs have got this option. Can you please explain why this option is enabled and how to process this TO now
RE: Setting up PricePriceListService on an inbound port
It didn't. It has a "/" which I removed. Still the same error :-(
RE: Error while running Sales invoice
Hi,
Is there mod3GetSalesUnitConvertTxt() method in custinvoiceTrans table ?
Because its looks like you have written
if(custInvoiceTrans.mod3GetSalesUnitConvertTxt())
Check table custinvoiceTrans
RE: AX installation Error
RE: AX installation Error
What are you trying to add to the existing database? Maybe it already has all standard models installed.
RE: What is required to process credit cards in AX?
Mircosoft Payment Service is now retired. You need a payment gateway and a merchant account. I do not recommend an 'all-in-one' for a lot of reasons, including flexibility. I would eliminate calling customers for card numbers, but if needed, you can capture payment in sales orders. Our MS Dynamics plugin will enable you to push out invoices and get paid remotely in just a couple clicks for repeat customers.
What is required to process credit cards in AX?
Do I need to sign up for Mircosoft Payment Service and a provider such as CyberSource? I am not sure what all the pieces are that I need in place. We are taking sales order via email/fax/phone, entering in to AX, and calling customer for credit card information. Not the most effecient but I can t change that right now. I just need to be able to enter orders and have credit card transactions processed.
Thanks,
John