Skip to main content

Posts

Types of fields in D365 SDK(C#) corresponding to D365 Fields

D365Types of fields in D365 SDK(C#) corresponding to D365 Fields String---------------1.)Single Line of text Picklist-------------2.)Option Set Memo-----------------3.)Multi Select OptionSet Boolean--------------4.)Two OptionSet Integer--------------6.)Whole Number Double---------------7.)Floting Point Number Decimal--------------8.)Decimal Number Money----------------9.)Currency Memo----------------10.)Multipal Line of Text DateTime------------11.)Date and Time Lookup--------------12.)Loopkup Customer------------13.)Customer

How to open a create record form in new tab using JS

    // Info of child entity     var entityFormOptions = {};     entityFormOptions [ "entityName" ] = "cr1a2_class" ;     entityFormOptions [ "useQuickCreateForm" ] = true ;     entityFormOptions [ "openInNewWindow" ] = true ;     // Info of parent entity     var formParameters = {};     formParameters [ "new_classesid" ] = Xrm . Page . data . entity . getId ();     formParameters [ "new_classesidname" ] = Xrm . Page . getAttribute ( "name" ). getValue ();     formParameters [ "new_classesidtype" ] = "account" ;     // Open form in new window     Xrm . Navigation . openForm ( entityFormOptions , formParameters ). then (         function ( lookup ) {             console . log ( "Success" ); a         },         function ( error ) { console . log ( "Error" ); }     );...