Forum Post: RE: Is able to obtain AuthToken from XRMHelperClasess to use in...
Thanks for the links, But php examples (Excelent article of http://jlattimer.blogspot.com ) explain how to connect and retrieve data using SOAP and PHP. I want to use the Rest Api of CRM Online , for...
View ArticleForum Post: RE: CRM view of Opportunity records with Notes attachment
Yes, It will not work for one scenario. (Its not a bug in CRM). Scenario: "Opportunity X" record has more than one notes (one note with attachment and one note without attachment) Notes entity will...
View ArticleForum Post: RE: What is The Best Way To Testing Different User login
Thanks, For testing this i need all user credentials whom i want to test.As they are live user(AD) i can not get there credentials. But i want to use my credentials and mimic there role.
View ArticleForum Post: Create Multiple Orders from Quote
Is there a way where we can create Multiple Orders from 1 single Quote. By selecting a certain product/line item and just creating an order for that or even changing the quantity of that same line...
View ArticleForum Post: Console app for MS Dynamics CRM
I am using late binding to connect to MS CRM using console application. My program.cs file looks like this class Program { private static OrganizationServiceProxy _serviceProxy; private static...
View ArticleForum Post: RE: Console app for MS Dynamics CRM
use the simplified connection CrmConnection crmConnection = CrmConnection.Parse("Url= https://XXX.crm.dynamics.com ; Username=user@domain.onmicrosoft.com; Password=passwordhere;"); OrganizationService...
View ArticleForum Post: RE: Console app for MS Dynamics CRM
Thanks Guido! What changes I need to make in app.config file?
View ArticleForum Post: RE: Console app for MS Dynamics CRM
the connection details are in the code, you don't need to use app.config if you want to use app.config, store the connection details as AppSettings and read the settings as string and put as the...
View ArticleForum Post: RE: Console app for MS Dynamics CRM
so can I delete the app.config file? Also, how to pass user name password in case of on premise? Thank you!
View ArticleForum Post: RE: Console app for MS Dynamics CRM
you need to add Microsoft.Xrm.Sdk.Client.dll as reference, you find the dll inside the CRM SDK (same place as the other CRM SDK dll files you are already using)
View ArticleForum Post: RE: Attachment is not working if it is greater 2KB
Hi Muhammed, This isn't Microsoft Support, just a group of people who love using CRM. If this is a problem you're having but other people aren't, it's probably not a server or organization wide...
View ArticleForum Post: RE: Attachment is not working if it is greater 2KB
If attachment is working fine with others who has the same role as you have then you should try deactivating or activating you role and then re login and try. If problem further persist make a new user...
View ArticleForum Post: Associate Order and Product/Create OrderProduct (salesorderdetail)
Hi, I'm trying to relate Order and Product by create Order Product (salesorderdetail) entity record using OData but I'm facing below error: { "error": { "code": "-2147220970", "message": { "lang":...
View ArticleForum Post: RE: User unable to see the data
Hi, You must check: User role ( ok u mentioned) role on form if any? any security profiles (field security) on entity if any.? Hope this helps
View ArticleForum Post: RE: CRM view of Opportunity records with Notes attachment
Hi, 1. Create one console application 2. replace the below code in Program.cs file 3. Add reference of Microsoft.Xrm.Sdk.dll, Microsoft.Xrm.Client.dll...
View ArticleForum Post: RE: Associate Order and Product/Create OrderProduct...
Based on error message it seems you are not passing/setting salesorderid value.SAlesorderid is a required field in order to create salesorderdetail record. sample code in c# to set this value ....
View ArticleForum Post: RE: Associate Order and Product/Create OrderProduct...
Thanks Chitra for perfect answer. Best, Muhammad
View ArticleForum Post: RE: Create Chart Which Get Category From Another Entity
Hi From order you have potential customer (account/contact) and you can get the gender field. Please explain in detail what you want to accomplish. I couldn't get it. Thanks
View Article