Click here to Skip to main content
15,905,566 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
can anyone tell me how to update records in microsoft dynamics NAV classics from c# asp.net... I have imported all the services to c# and tried following ways..

LeaveRequestCard_Binding LeaveRequest_Serv = new LeaveRequestCard_Binding();
var NewLeaveRequest = new LeaveRequestCard();
LeaveRequest_Serv.Credentials = new NetworkCredential(G_UserName, G_PassWord, G_Domain);
LeaveRequest_Serv.Read(leaveRequestNo);
string no= NewLeaveRequest.Leave_Request_No;
LeaveRequest_Serv.Update(ref NewLeaveRequest);


this is not at all working.. any help
Posted
Updated 22-Jan-14 20:55pm
v2

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900