Produced by Araxis Merge on 2/1/2017 2:56:43 PM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | C:\Araxis_Merge_Comprasion\Pub_un\BTSSS_CIF_122016.zip\BTSSS_CIF_12_20_16\clean\CRM\trunk\SDK\SampleCode\CS\HelperCode | ErrorCodes.cs | Tue Dec 20 19:51:44 2016 UTC |
| 2 | Wed Feb 1 19:56:43 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 0 | 0 |
| Removed | 1 | 6366 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | // ======= ========== ========== ========== ========== ========== ========== == | |||||
| 2 | // File: ErrorC odes.cs | |||||
| 3 | // Summar y: Cont ains helpe r types fo r building queries. | |||||
| 4 | // ======= ========== ========== ========== ========== ========== ========== == | |||||
| 5 | // | |||||
| 6 | // This f ile is par t of the M icrosoft C RM SDK Cod e Samples. | |||||
| 7 | // | |||||
| 8 | // Copyri ght (C) Mi crosoft Co rporation. All right s reserved . | |||||
| 9 | // | |||||
| 10 | // This s ource code is intend ed only as a supplem ent to Mic rosoft | |||||
| 11 | // Develo pment Tool s and/or o n-line doc umentation . See thes e other | |||||
| 12 | // materi als for de tailed inf ormation r egarding M icrosoft c ode sample s. | |||||
| 13 | // | |||||
| 14 | // THIS C ODE AND IN FORMATION ARE PROVID ED "AS IS" WITHOUT W ARRANTY OF ANY | |||||
| 15 | // KIND, EITHER EXP RESSED OR IMPLIED, I NCLUDING B UT NOT LIM ITED TO TH E | |||||
| 16 | // IMPLIE D WARRANTI ES OF MERC HANTABILIT Y AND/OR F ITNESS FOR A | |||||
| 17 | // PARTIC ULAR PURPO SE. | |||||
| 18 | // | |||||
| 19 | // ======= ========== ========== ========== ========== ========== ========== == | |||||
| 20 | using Syst em; | |||||
| 21 | using Syst em.Collect ions; | |||||
| 22 | ||||||
| 23 | namespace CrmSdk | |||||
| 24 | { | |||||
| 25 | pu blic seale d class Er rorCodes | |||||
| 26 | { | |||||
| 27 | publ ic enum Er rorType | |||||
| 28 | { | |||||
| 29 | System Failure, | |||||
| 30 | Timeou t, | |||||
| 31 | Client Error | |||||
| 32 | }; | |||||
| 33 | ||||||
| 34 | // T o prevent instantiat ion | |||||
| 35 | priv ate ErrorC odes() | |||||
| 36 | {} | |||||
| 37 | ||||||
| 38 | priv ate static Hashtable ErrorMess ages = new Hashtable (); | |||||
| 39 | priv ate static Hashtable ErrorType s= new Has htable(); | |||||
| 40 | ||||||
| 41 | stat ic ErrorCo des() | |||||
| 42 | { | |||||
| 43 | ErrorM essages.Ad d(LowerVer sionUpgrad e, "The im port solut ion must h ave a high er version than the existing s olution it is upgrad ing."); | |||||
| 44 | ErrorM essages.Ad d(PatchMis singBase, "You can't import th e patch ({ 0}) for th e solution ({1}) bec ause the s olution is n't presen t. The ope ration has been canc eled."); | |||||
| 45 | ErrorM essages.Ad d(Subcompo nentDoesNo tExist, "S ubcomponen t {0} of t ype {1} is not found in the or ganization , it can n ot be adde d to the S olutionCom ponents.") ; | |||||
| 46 | ErrorM essages.Ad d(Subcompo nentMissin gARoot, "S ubcomponen t {0} cann ot be adde d to the s olution be cause the root compo nent {1} i s missing. "); | |||||
| 47 | ErrorM essages.Ad d(CannotMo difyPatche dSolution, "Cannot m odify solu tion becau se it has the follow ing patche s: {0}."); | |||||
| 48 | ErrorM essages.Ad d(CloneSol utionExcep tion, "Ope ration on clone solu tion faile d."); | |||||
| 49 | ErrorM essages.Ad d(CloneSol utionPatch Exception, "Patch '{ 0}' has a matching o r higher v ersion ({1 }) than th at of the patch bein g installe d."); | |||||
| 50 | ErrorM essages.Ad d(QuickFin dSavedQuer yAlreadyEx ists, "\"O nly one qu ickfind sa ved query can exist for an ent ity. There already e xists a qu ick-find s aved query for entit y with obj ecttypecod e: {0}\"") ; | |||||
| 51 | ErrorM essages.Ad d(Solution UpgradeNot Available, "\"The {0 } solution doesn’t h ave an upg rade that is ready t o be appli ed.\""); | |||||
| 52 | ErrorM essages.Ad d(Solution UpgradeWro ngSolution Selected, "\"To use this actio n, you mus t first se lect the o ld solutio n and then try again .\""); | |||||
| 53 | ErrorM essages.Ad d(CustomIm ageAttribu teOnlyAllo wedOnCusto mEntity, " A custom i mage attri bute can o nly be add ed to a cu stom entit y."); | |||||
| 54 | ErrorM essages.Ad d(SqlEncry ptionSymme tricKeyCan notOpenBec auseWrongP assword, " Cannot ope n encrypti on Symmetr ic Key bec ause the p assword is wrong."); | |||||
| 55 | ErrorM essages.Ad d(SqlEncry ptionSymme tricKeyDoe sNotExistO rNoPermiss ion, "Cann ot open en cryption S ymmetric K ey because it does n ot exist i n the data base or us er does no t have per mission.") ; | |||||
| 56 | ErrorM essages.Ad d(SqlEncry ptionSymme tricKeyPas swordDoesN otExistInC onfigDB, " Encryption Symmetric Key passw ord does n ot exist i n Config D B."); | |||||
| 57 | ErrorM essages.Ad d(SqlEncry ptionSymme tricKeySou rceDoesNot ExistInCon figDB, "En cryption S ymmetric K ey Source does not e xist in Co nfig DB.") ; | |||||
| 58 | ErrorM essages.Ad d(CannotEx ecuteReque stBecauseH ttpsIsRequ ired, "HTT PS protoco l is requi red for th is type of request, please ena ble HTTPS protocol a nd try aga in."); | |||||
| 59 | ErrorM essages.Ad d(SqlEncry ptionResto reEncrypti onKeyCanno tDecryptEx istingData , "Cannot perform 'a ctivate' b ecause the encryptio n key does n’t match the origin al encrypt ion key th at was use d to encry pt the dat a."); | |||||
| 60 | ErrorM essages.Ad d(SqlEncry ptionSetEn cryptionKe yIsAlready RunningCan notRunItIn Parallel, "The syste m is curre ntly runni ng a reque st to 'cha nge' or 'a ctivate' t he encrypt ion key. P lease wait before ma king anoth er request ."); | |||||
| 61 | ErrorM essages.Ad d(SqlEncry ptionChang eEncryptio nKeyExceed edQuotaFor TheInterva l, "'Chang e' encrypt ion key ha s already been execu ted {0} ti mes in the last {1} minutes. P lease wait a couple of minutes and then try again. "); | |||||
| 62 | ErrorM essages.Ad d(SqlEncry ptionEncry ptionKeyVa lidationEr ror, "The new encryp tion key d oes not me et the str ong encryp tion key r equirement s. The key must be b etween 10 and 100 ch aracters i n length, and must h ave at lea st one num eral, at l east one l etter, and one symbo l or speci al charact er. {0}"); | |||||
| 63 | ErrorM essages.Ad d(SqlEncry ptionIsIna ctiveCanno tChangeEnc ryptionKey , "Cannot perform 'c hange' enc ryption ke y because the encryp tion key i s not alre ady set or is not wo rking. Fir st use 'ac tivate' en cryption k ey instead to set th e correct current en cryption k ey and the n use 'cha nge' encry ption if y ou want to re-encryp t data usi ng a new e ncryption key."); | |||||
| 64 | ErrorM essages.Ad d(SqlEncry ptionDelet eEncryptio nKeyError, "Cannot d elete the encryption key."); | |||||
| 65 | ErrorM essages.Ad d(SqlEncry ptionIsAct iveCannotR estoreEncr yptionKey, "Cannot p erform 'ac tivate' en cryption k ey because the encry ption key is already set and i s working. Use 'chan ge' encryp tion key i nstead."); | |||||
| 66 | ErrorM essages.Ad d(SqlEncry ptionKeyCa nnotDecryp tExistingD ata, "Cann ot decrypt existing encrypted data (Enti ty='{0}', Attribute= '{1}') usi ng the cur rent encry ption key. Use 'acti vate' encr yption key to set th e correct encryption key."); | |||||
| 67 | ErrorM essages.Ad d(SqlEncry ptionEncry ptionDecry ptionTestE rror, "Err or while t esting dat a encrypti on and dec ryption.") ; | |||||
| 68 | ErrorM essages.Ad d(SqlEncry ptionDelet eSymmetric KeyError, "Cannot de lete Symme tric Key w ith Name=' {0}' becau se it does not exist ."); | |||||
| 69 | ErrorM essages.Ad d(SqlEncry ptionCreat eSymmetric KeyError, "Cannot cr eate Symme tric Key w ith Name=' {0}' becau se it alre ady exists ."); | |||||
| 70 | ErrorM essages.Ad d(SqlEncry ptionSymme tricKeyDoe sNotExist, "Symmetri c Key with Name='{0} ' does not exist in the databa se."); | |||||
| 71 | ErrorM essages.Ad d(SqlEncry ptionDelet eCertifica teError, " Cannot del ete Certif icate with Name='{0} ' because it does no t exist.") ; | |||||
| 72 | ErrorM essages.Ad d(SqlEncry ptionCreat eCertifica teError, " Cannot cre ate Certif icate with Name='{0} ' because it already exists.") ; | |||||
| 73 | ErrorM essages.Ad d(SqlEncry ptionCerti ficateDoes NotExist, "Certifica te with Na me='{0}' d oes not ex ist in the database. "); | |||||
| 74 | ErrorM essages.Ad d(SqlEncry ptionDelet eDatabaseM asterKeyEr ror, "Cann ot delete Database M aster Key because it does not exist."); | |||||
| 75 | ErrorM essages.Ad d(SqlEncry ptionCreat eDatabaseM asterKeyEr ror, "Cann ot create Database M aster Key because al ready exis ts."); | |||||
| 76 | ErrorM essages.Ad d(SqlEncry ptionCanno tOpenSymme tricKeyBec auseDataba seMasterKe yDoesNotEx istOrIsNot Opened, "C annot open Symmetric Key becau se Databas e Master K ey does no t exist in the datab ase or is not opened ."); | |||||
| 77 | ErrorM essages.Ad d(SqlEncry ptionDatab aseMasterK eyDoesNotE xist, "Dat abase Mast er Key doe s not exis t in the d atabase.") ; | |||||
| 78 | ErrorM essages.Ad d(SqlEncry ption, "Th ere was an error in Data Encry ption."); | |||||
| 79 | ErrorM essages.Ad d(ErrorsIn SlaWorkflo wActivatio n, "You ca n't activa te this se rvice leve l agreemen t (SLA). Y ou don't h ave the re quired per missions o n the reco rd types t hat are re ferenced b y this SLA ."); | |||||
| 80 | ErrorM essages.Ad d(Manifest ParsingFai lure, "Fai led to par se the spe cified man ifest file to retrie ve Organiz ationId"); | |||||
| 81 | ErrorM essages.Ad d(InvalidM anifestFil ePath, "Fa iled to lo cate the m anifest fi le in the specified location") ; | |||||
| 82 | ErrorM essages.Ad d(OnPremis eRestoreOr ganization ManifestFa iled, "Fai led to res tore Organ ization's configdb s tate from manifest") ; | |||||
| 83 | ErrorM essages.Ad d(InvalidA uth, "Orga nization A uthenticat ion does n ot match t he current discovery service R ole."); | |||||
| 84 | ErrorM essages.Ad d(CannotUp dateOrgDBO rgSettingW henOffline , "Organiz ation Sett ings store d in Organ ization Da tabase can not be set when offl ine."); | |||||
| 85 | ErrorM essages.Ad d(InvalidO rgDBOrgSet ting, "Inv alid Organ ization Se tting pass ed in. Ple ase check the dataty pe and pas s in an ap propriate value."); | |||||
| 86 | ErrorM essages.Ad d(UnknownI nvalidTran sformation ParameterG eneric, "O ne or more input tra nsformatio n paramete r values a re invalid : {0}."); | |||||
| 87 | ErrorM essages.Ad d(InvalidT ransformat ionParamet erOutsideR angeGeneri c, "One or more inpu t transfor mation par ameter val ues are ou tside the permissibl e range: { 0}."); | |||||
| 88 | ErrorM essages.Ad d(InvalidT ransformat ionParamet erEmptyCol lection, " The transf ormation p arameter: {0} has an invalid i nput value length: { 1}. The pa rameter le ngth canno t be an em pty collec tion."); | |||||
| 89 | ErrorM essages.Ad d(InvalidT ransformat ionParamet erOutsideR ange, "The transform ation para meter: {0} has an in valid inpu t value: { 1}. The pa rameter is out of th e permissi ble range: {2}. "); | |||||
| 90 | ErrorM essages.Ad d(InvalidT ransformat ionParamet erZeroToRa nge, "The transforma tion param eter: {0} has an inv alid input value: {1 }. The par ameter val ue must be greater t han 0 and less than the length of the pa rameter 1. "); | |||||
| 91 | ErrorM essages.Ad d(InvalidT ransformat ionParamet erString, "The trans formation parameter: {0} has a n invalid input valu e: {1}. Th e paramete r must be a string t hat is not empty."); | |||||
| 92 | ErrorM essages.Ad d(InvalidT ransformat ionParamet ersGeneric , "The tra nsformatio n paramete r: {0} has an invali d input va lue: {1}. The parame ter must b e of type: {2}."); | |||||
| 93 | ErrorM essages.Ad d(Insuffic ientTransf ormationPa rameters, "Insuffici ent parame ters to ex ecute tran sformation mapping." ); | |||||
| 94 | ErrorM essages.Ad d(MaximumN umberHandl ersExceede d, "This s olution ad ds form ev ent handle rs so the number of event hand lers for a form even t exceeds the maximu m number." ); | |||||
| 95 | ErrorM essages.Ad d(ErrorInU nzipAltern ate, "An e rror occur red while the upload ed compres sed (.zip) file was being extr acted. Try to upload the file again. If the proble m persists , contact your syste m administ rator."); | |||||
| 96 | ErrorM essages.Ad d(Incorrec tSingleFil eMultipleE ntityMap, "There sho uld be two or more E ntity Mapp ings defin ed when En titiesPerF ile in Imp ortMap is set to Mul tiple"); | |||||
| 97 | ErrorM essages.Ad d(Activity EntityCann otBeActivi tyParty, " An activit y entity c annot be a lso an act ivity part y"); | |||||
| 98 | ErrorM essages.Ad d(TargetAt tributeInv alidForIgn ore, "Targ et attribu te name sh ould be em pty when t he process code is ig nore."); | |||||
| 99 | ErrorM essages.Ad d(MaxUnzip FolderSize Exceeded, "The selec ted compre ssed (.zip ) file can 't be unzi pped becau se it's to o large.") ; | |||||
| 100 | ErrorM essages.Ad d(InvalidM ultipleMap ping, "A s ource fiel d is mappe d to more than one D ynamics 36 5 fields o f lookup/p icklist ty pe."); | |||||
| 101 | ErrorM essages.Ad d(ErrorInS toringImpo rtFile, "A n error oc curred whi le storing the impor t file in database." ); | |||||
| 102 | ErrorM essages.Ad d(UnzipTim eout, "Tim eout happe ned in unz ipping the zip file uploaded f or import. "); | |||||
| 103 | ErrorM essages.Ad d(Unsuppor tedZipFile ForImport, "The comp ressed (.z ip) or .ca b file cou ldn't be u ploaded be cause the file is co rrupted or doesn't c ontain val id importa ble files. "); | |||||
| 104 | ErrorM essages.Ad d(UnzipPro cessCountL imitReache d, "Cannot start a n ew process to unzip. "); | |||||
| 105 | ErrorM essages.Ad d(Attachme ntNotFound , "The ref erence to the attach ment could n't be fou nd."); | |||||
| 106 | ErrorM essages.Ad d(TooManyP icklistVal ues, "Numb er of dist inct pickl ist values exceed th e limit.") ; | |||||
| 107 | ErrorM essages.Ad d(VeryLarg eFileInZip Import, "O ne of the files in t he compres sed (.zip) or .cab f ile that y ou're tryi ng to impo rt exceeds the size limit."); | |||||
| 108 | ErrorM essages.Ad d(InvalidA ttachments Folder, "T he compres sed (.zip) file can' t be uploa ded becaus e the fold er \"Attac hments\" c ontains on e or more subfolders . Remove t he subfold ers and tr y again.") ; | |||||
| 109 | ErrorM essages.Ad d(ZipInsid eZip, "The compresse d (.zip) f ile that y ou are try ing to upl oad contai ns another .zip file within it ."); | |||||
| 110 | ErrorM essages.Ad d(InvalidZ ipFileForm at, "The f ile that y ou're tryi ng to uplo ad isn't a valid fil e. Check t he file an d try agai n."); | |||||
| 111 | ErrorM essages.Ad d(EmptyFil eForImport , "The sel ected file contains no data.") ; | |||||
| 112 | ErrorM essages.Ad d(EmptyFil esInZip, " One or mor e files in the compr essed (.zi p) or .cab file don' t contain data. Chec k the file s and try again."); | |||||
| 113 | ErrorM essages.Ad d(ZipFileH asMixOfCsv AndXmlFile s, "The co mpressed ( .zip) file that you' re trying to upload contains m ore than o ne type of file. The file can contain ei ther Excel (.xlsx) f iles, comm a-delimite d (.csv) f iles or XM L Spreadsh eet 2003 ( .xml) file s, but not a combina tion of fi le types." ); | |||||
| 114 | ErrorM essages.Ad d(Duplicat eFileNames InZip, "Tw o or more files have the same name. File names mus t be uniqu e."); | |||||
| 115 | ErrorM essages.Ad d(ErrorInU nzip, "An error occu rred while extractin g the uplo aded compr essed (.zi p) or .cab file. Mak e sure tha t the file isn't pas sword prot ected, and try uploa ding the f ile again. If this p roblem per sists, con tact your system adm inistrator ."); | |||||
| 116 | ErrorM essages.Ad d(InvalidZ ipFileForI mport, "Th e selected compresse d (.zip) f ile contai ns files t hat can't be importe d. A .zip file can c ontain onl y .xlsx, . csv, or .x ml files." ); | |||||
| 117 | ErrorM essages.Ad d(InvalidL ookupMapNo de, "The l ookup enti ty provide d is not v alid for t he given t arget attr ibute."); | |||||
| 118 | ErrorM essages.Ad d(ImportMa ilMergeTem plateEntit yMissingEr ror, "The {0} mail m erge templ ate was no t imported because t he {1} ent ity associ ated with this templ ate is not in the ta rget syste m."); | |||||
| 119 | ErrorM essages.Ad d(CannotUp dateOpport unityCurre ncy, "The currency c annot be c hanged bec ause this opportunit y has Prod ucts Quote s, and/ or Orders as sociated w ith it. I f you want to change the curre ncy please delete al l of the P roducts/qu otes/order s and then change th e currency or create a new opp ortunity w ith the ap propriate currency." ); | |||||
| 120 | ErrorM essages.Ad d(ParentRe cordAlread yExists, " This recor d cannot b e added be cause it a lready has a parent record."); | |||||
| 121 | ErrorM essages.Ad d(MissingW ebToLeadRe direct, "T he redirec tto is mis sing for w eb2lead re direct."); | |||||
| 122 | ErrorM essages.Ad d(InvalidW ebToLeadRe direct, "T he redirec tto is inv alid for w eb2lead re direct."); | |||||
| 123 | ErrorM essages.Ad d(Template NotAllowed ForInterne tMarketing , "Creatin g Template s with Int ernet Mark eting Camp aign Activ ities is n ot allowed "); | |||||
| 124 | ErrorM essages.Ad d(CopyNotA llowedForI nternetMar keting, "D uplicating campaigns that have Internet Marketing Campaign A ctivities is not all owed"); | |||||
| 125 | ErrorM essages.Ad d(MissingO rInvalidRe directId, "The Redir Id paramet er is miss ing for th e partner redirect." ); | |||||
| 126 | ErrorM essages.Ad d(ImportNo tComplete, "One or m ore import s are not in complet ed state. Imported r ecords can only be d eleted fro m complete d jobs. Wa it until j ob complet es, and th en try aga in."); | |||||
| 127 | ErrorM essages.Ad d(UIDataMi ssingInWor kflow, "Th e workflow does not contain UI Data."); | |||||
| 128 | ErrorM essages.Ad d(RefEntit yRelations hipRoleReq uired, "Th e entity r elationshi p role of the refere ncing enti ty is requ ired when creating a new one-t o-many ent ity relati onship."); | |||||
| 129 | ErrorM essages.Ad d(ImportTe mplateLang uageIgnore d, "You ca nnot impor t this tem plate beca use its la nguage is not enable d in your Microsoft Dynamics 3 65 organiz ation."); | |||||
| 130 | ErrorM essages.Ad d(ImportTe mplatePers onalIgnore d, "You ca nnot impor t this tem plate beca use it is set as \"p ersonal\" in your Mi crosoft Dy namics 365 organizat ion."); | |||||
| 131 | ErrorM essages.Ad d(ImportCo mponentDel etedIgnore d, "You ca nnot updat e this com ponent bec ause it do es not exi st in this Microsoft Dynamics 365 organi zation."); | |||||
| 132 | ErrorM essages.Ad d(Customer Relationsh ipCannotBe Deleted, " This relat ionship {1 } is requi red by the {0} attri bute and c an't be de leted. To delete thi s relation ship, firs t delete t he lookup attribute. "); | |||||
| 133 | ErrorM essages.Ad d(Relation shipRoleNo deNumberIn valid, "Th ere must b e two enti ty relatio nship role nodes whe n creating a new man y-to-many entity rel ationship. "); | |||||
| 134 | ErrorM essages.Ad d(Associat ionRoleOrd inalInvali d, "The as sociation role ordin al is not valid - it must be 1 or 2."); | |||||
| 135 | ErrorM essages.Ad d(Relation shipRoleMi smatch, "T he relatio nship role name {0} does not m atch eithe r expected entity na me of {1} or {2}."); | |||||
| 136 | ErrorM essages.Ad d(ImportMa pInUse, "O ne or more of the se lected dat a maps can not be del eted becau se it is c urrently u sed in a d ata import ."); | |||||
| 137 | ErrorM essages.Ad d(Previous OperationN otComplete , "An oper ation on w hich this operation depends di d not comp lete succe ssfully.") ; | |||||
| 138 | ErrorM essages.Ad d(Transfor mationResu meNotSuppo rted, "The resume/re try of Tra nsformatio n job of I mport is n ot support ed."); | |||||
| 139 | ErrorM essages.Ad d(CannotDi sableDupli cateDetect ion, "Dupl icate dete ction cann ot be disa bled becau se a dupli cate detec tion job i s currentl y in progr ess. Try a gain later ."); | |||||
| 140 | ErrorM essages.Ad d(TargetEn tityNotMap ped, "Targ et Entity Name not d efined for source:{0 } file."); | |||||
| 141 | ErrorM essages.Ad d(BulkDele teChildFai lure, "One of the Bu lk Delete Child Jobs Failed"); | |||||
| 142 | ErrorM essages.Ad d(CannotRe moveNonLis tMember, " Specified Item not a member of the speci fied List. "); | |||||
| 143 | ErrorM essages.Ad d(JobNameI sEmptyOrNu ll, "Job N ame can no t be null or empty." ); | |||||
| 144 | ErrorM essages.Ad d(ImportMa ilMergeTem plateError , "There w as an erro r in parsi ng the mai l merge te mplates in Import Xm l"); | |||||
| 145 | ErrorM essages.Ad d(ErrorsIn WorkflowDe finition, "The selec ted workfl ow has err ors and ca nnot be pu blished. P lease open the workf low, remov e the erro rs and try again."); | |||||
| 146 | ErrorM essages.Ad d(Distribu teNoListAs sociated, "This camp aign activ ity cannot be distri buted. No marketing lists are associated with it. Add at lea st one mar keting lis t and try again."); | |||||
| 147 | ErrorM essages.Ad d(Distribu teListAsso ciatedVary , "This ca mpaign act ivity cann ot be dist ributed. M ail merge activities can be do ne only on marketing lists tha t are all the same r ecord type . For this campaign activity, remove mar keting lis ts so that the remai ning ones are the sa me record type, and then try a gain."); | |||||
| 148 | ErrorM essages.Ad d(OfflineF ilterParen tDownloade d, "You ca nnot use t he Parent Downloaded condition in a loca l data gro up."); | |||||
| 149 | ErrorM essages.Ad d(OfflineF ilterNeste dDateTimeO R, "You ca nnot use n ested date time cond itions wit hin an OR clause in a local da ta group." ); | |||||
| 150 | ErrorM essages.Ad d(Duplicat eOfflineFi lter, "You can creat e only one local dat a group fo r each rec ord type." ); | |||||
| 151 | ErrorM essages.Ad d(CannotAs signAddres sBookFilte rs, "Canno t assign a ddress boo k filters" ); | |||||
| 152 | ErrorM essages.Ad d(CannotCr eateAddres sBookFilte rs, "Canno t create a ddress boo k filters" ); | |||||
| 153 | ErrorM essages.Ad d(CannotGr antAccessT oAddressBo okFilters, "Cannot g rant acces s to addre ss book fi lters"); | |||||
| 154 | ErrorM essages.Ad d(CannotMo difyAccess ToAddressB ookFilters , "Cannot modify acc ess for ad dress book filters") ; | |||||
| 155 | ErrorM essages.Ad d(CannotRe vokeAccess ToAddressB ookFilters , "Cannot revoke acc ess for ad dress book filters") ; | |||||
| 156 | ErrorM essages.Ad d(Duplicat eMapName, "A data ma p with the specified name alre ady exists ."); | |||||
| 157 | ErrorM essages.Ad d(InvalidW ordXmlFile , "Only Mi crosoft Wo rd xml for mat files can be upl oaded."); | |||||
| 158 | ErrorM essages.Ad d(FileNotF ound, "The attachmen t file was not found ."); | |||||
| 159 | ErrorM essages.Ad d(Multiple FilesFound , "The att achment fi le name is not uniqu e."); | |||||
| 160 | ErrorM essages.Ad d(InvalidA ttributeMa pping, "On e or more attribute mappings i s invalid. "); | |||||
| 161 | ErrorM essages.Ad d(FileRead Error, "Th ere was an error rea ding the f ile from t he file sy stem. Make sure you have read permission for this file, and then try m igrating t he file ag ain."); | |||||
| 162 | ErrorM essages.Ad d(ViewForD uplicateDe tectionNot Defined, " Required v iew for vi ewing dupl icates of an entity not define d."); | |||||
| 163 | ErrorM essages.Ad d(FileInUs e, "Could not read t he file be cause anot her applic ation is u sing the f ile."); | |||||
| 164 | ErrorM essages.Ad d(NoPublis hedDuplica teDetectio nRules, "T here are n o publishe d duplicat e detectio n rules in the syste m. To run duplicate detection, you must create and publish o ne or more rules."); | |||||
| 165 | ErrorM essages.Ad d(NoEntiti esForBulkD elete, "Th e Bulk Del ete Wizard cannot be opened be cause ther e are no v alid entit ies for de letion."); | |||||
| 166 | ErrorM essages.Ad d(BulkDele teRecordDe letionFail ure, "The record can not be del eted."); | |||||
| 167 | ErrorM essages.Ad d(RuleAlre adyPublish ing, "The selected d uplicate d etection r ule is alr eady being published ."); | |||||
| 168 | ErrorM essages.Ad d(RuleNotF ound, "No rules were found tha t match th e criteria ."); | |||||
| 169 | ErrorM essages.Ad d(CannotDe leteSystem EmailTempl ate, "Syst em e-mail templates cannot be deleted.") ; | |||||
| 170 | ErrorM essages.Ad d(EntityDu pCheckNotS upportedSy stemWide, "Duplicate detection is not en abled for one or mor e of the s elected en tities. Th e duplicat e detectio n job cann ot be star ted."); | |||||
| 171 | ErrorM essages.Ad d(Duplicat eDetection NotSupport edOnAttrib uteType, " The rule c ondition c annot be c reated or updated be cause dupl icate dete ction is n ot support ed on the data type of the sel ected attr ibute."); | |||||
| 172 | ErrorM essages.Ad d(MaxMatch CodeLength Exceeded, "The rule condition cannot be created or updated b ecause it would caus e the matc hcode leng th to exce ed the max imum limit ."); | |||||
| 173 | ErrorM essages.Ad d(CannotDe leteUpdate InUseRule, "The dupl icate dete ction rule is curren tly in use and canno t be updat ed or dele ted. Pleas e try agai n later.") ; | |||||
| 174 | ErrorM essages.Ad d(ImportMa ppingsInva lidIdSpeci fied, "The XML file has one or more inva lid IDs. T he specifi ed ID cann ot be used as a uniq ue identif ier."); | |||||
| 175 | ErrorM essages.Ad d(NotAWell FormedXml, "The inpu t XML is n ot well-fo rmed XML." ); | |||||
| 176 | ErrorM essages.Ad d(Noncompl iantXml, " The input XML does n ot comply with the X ML schema. "); | |||||
| 177 | ErrorM essages.Ad d(Duplicat eDetection TemplateNo tFound, "M icrosoft D ynamics 36 5 could no t retrieve the e-mai l notifica tion templ ate."); | |||||
| 178 | ErrorM essages.Ad d(RulesInI nconsisten tStateFoun d, "One or more rule s cannot b e unpublis hed, eithe r because they are i n the proc ess of bei ng publish ed, or are in a stat e where th ey cannot be unpubli shed."); | |||||
| 179 | ErrorM essages.Ad d(BulkDete ctInvalidE mailRecipi ent, "The e-mail rec ipient eit her does n ot exist o r the e-ma il address for the e -mail reci pient is n ot valid." ); | |||||
| 180 | ErrorM essages.Ad d(CannotEn ableDuplic ateDetecti on, "Dupli cate detec tion canno t be enabl ed because one or mo re rules a re being p ublished." ); | |||||
| 181 | ErrorM essages.Ad d(CannotDe leteInUseE ntity, "Th e selected entity ca nnot be de leted beca use it is referenced by one or more dupl icate dete ction rule s that are in proces s of being published ."); | |||||
| 182 | ErrorM essages.Ad d(StringAt tributeInd exError, " One of the attribute s of the s elected en tity is a part of da tabase ind ex and so it cannot be greater than 900 bytes."); | |||||
| 183 | ErrorM essages.Ad d(CannotCh angeAttrib uteRequire dLevel, "A n attribut e's requir ed level c annot be c hanged fro m SystemRe quired"); | |||||
| 184 | ErrorM essages.Ad d(MaximumN umberOfAtt ributesFor EntityReac hed, "The maximum nu mber of at tributes a llowed for an entity has alrea dy been re ached. The attribute cannot be created." ); | |||||
| 185 | ErrorM essages.Ad d(CannotPu blishMoreR ules, "The selected record typ e already has the ma ximum numb er of publ ished rule s. Unpubli sh or dele te existin g rules fo r this rec ord type, and then t ry again." ); | |||||
| 186 | ErrorM essages.Ad d(CannotDe leteInUseA ttribute, "The selec ted attrib ute cannot be delete d because it is refe renced by one or mor e duplicat e detectio n rules th at are bei ng publish ed."); | |||||
| 187 | ErrorM essages.Ad d(CannotDe leteInUseO ptionSet, "This opti on set can not be del eted. The current se t of entit ies that r eference t his option set are: {0}. These reference s must be removed be fore this option set can be de leted"); | |||||
| 188 | ErrorM essages.Ad d(InvalidE ntityName, "The reco rd type do es not mat ch the bas e record t ype and th e matching record ty pe of the duplicate detection rule."); | |||||
| 189 | ErrorM essages.Ad d(InvalidO peratorCod e, "The op erator is not valid or it is n ot support ed."); | |||||
| 190 | ErrorM essages.Ad d(CannotPu blishEmpty Rule, "No criteria h ave been s pecified. Add criter ia, and th en publish the dupli cate detec tion rule. "); | |||||
| 191 | ErrorM essages.Ad d(CannotPu blishInact iveRule, " The select ed duplica te detecti on rule is marked as Inactive. Before pu blishing, you must a ctivate th e rule."); | |||||
| 192 | ErrorM essages.Ad d(Duplicat eCheckNotE nabled, "D uplicate d etection i s not enab led. To en able dupli cate detec tion, clic k Settings , click Da ta Managem ent, and t hen click Duplicate Detection Settings." ); | |||||
| 193 | ErrorM essages.Ad d(Duplicat eCheckNotS upportedOn Entity, "D uplicate d etection i s not supp orted on t his record type."); | |||||
| 194 | ErrorM essages.Ad d(InvalidS tateCodeSt atusCode, "State cod e is inval id or stat e code is valid but status cod e is inval id for a s pecified s tate code. "); | |||||
| 195 | ErrorM essages.Ad d(SyncToMs deFailure, "Failed t o start or connect t o the offl ine mode M SDE databa se."); | |||||
| 196 | ErrorM essages.Ad d(FormDoes NotExist, "Form does n't exist" ); | |||||
| 197 | ErrorM essages.Ad d(AccessDe nied, "Acc ess is den ied."); | |||||
| 198 | ErrorM essages.Ad d(CannotDe leteOption Set, "The selected O ptionSet c annot be d eleted"); | |||||
| 199 | ErrorM essages.Ad d(InvalidO ptionSetOp eration, " Invalid Op tionSet"); | |||||
| 200 | ErrorM essages.Ad d(OptionVa luePrefixO utOfRange, "Customiz ationOptio nValuePref ix must be a number between {0 } and {1}" ); | |||||
| 201 | ErrorM essages.Ad d(CheckPri vilegeGrou pForUserOn PremiseErr or, "Pleas e select a n account that is a member of the PrivUs erGroup se curity gro up and try again."); | |||||
| 202 | ErrorM essages.Ad d(CheckPri vilegeGrou pForUserOn SplaError, "Please s elect a Dy namics 365 System Ad ministrato r account that belon gs to the root busin ess unit a nd try aga in."); | |||||
| 203 | ErrorM essages.Ad d(unManage dIdsAccess Denied, "N ot enough privilege to access the Micros oft Dynami cs 365 obj ect or per form the r equested o peration." ); | |||||
| 204 | ErrorM essages.Ad d(EntityIs Intersect, "The spec ified enti ty is inte rsect enti ty"); | |||||
| 205 | ErrorM essages.Ad d(CannotDe leteTeamOw ningRecord s, "Can't delete a t eam which owns recor ds. Reassi gn the rec ords and t ry again." ); | |||||
| 206 | ErrorM essages.Ad d(CannotRe moveMember sFromDefau ltTeam, "C an't remov e members from the d efault bus iness unit team."); | |||||
| 207 | ErrorM essages.Ad d(CannotAd dMembersTo DefaultTea m, "Can't add member s to the d efault bus iness unit team."); | |||||
| 208 | ErrorM essages.Ad d(CannotUp dateNameDe faultTeam, "The defa ult busine ss unit te am name ca n't be upd ated."); | |||||
| 209 | ErrorM essages.Ad d(CannotSe tParentDef aultTeam, "The defau lt busines s unit tea m parent c an't be se t."); | |||||
| 210 | ErrorM essages.Ad d(CannotDe leteDefaul tTeam, "Th e default business u nit team c an't be de leted."); | |||||
| 211 | ErrorM essages.Ad d(TeamName TooLong, " The specif ied name f or the tea m is too l ong."); | |||||
| 212 | ErrorM essages.Ad d(CannotAs signRolesO rProfilesT oAccessTea m, "Cannot assign ro les or pro files to a n access t eam."); | |||||
| 213 | ErrorM essages.Ad d(TooManyE ntitiesEna bledForAut oCreatedAc cessTeams, "Too many entities enabled fo r auto cre ated acces s teams.") ; | |||||
| 214 | ErrorM essages.Ad d(TooManyT eamTemplat esForEntit yAccessTea ms, "Too m any team t emplates f or auto cr eated acce ss teams f or this en tity."); | |||||
| 215 | ErrorM essages.Ad d(EntityNo tEnabledFo rAutoCreat edAccessTe ams, "This entity is not enabl ed for aut o created access tea ms."); | |||||
| 216 | ErrorM essages.Ad d(InvalidA ccessMaskF orTeamTemp late, "Inv alid acces s mask is specified for team t emplate.") ; | |||||
| 217 | ErrorM essages.Ad d(CannotCh angeTeamTy peDueToRol eOrProfile , "You can not modify the type of the tea m because there are security r oles or fi eld securi ty profile s assigned to the te am."); | |||||
| 218 | ErrorM essages.Ad d(CannotCh angeTeamTy peDueToOwn ership, "Y ou cannot modify the type of t he team be cause ther e are reco rds owned by the tea m."); | |||||
| 219 | ErrorM essages.Ad d(CannotDi sableAutoC reateAcces sTeams, "Y ou cannot disable th e auto cre ate access team sett ing while there are associated team temp lates."); | |||||
| 220 | ErrorM essages.Ad d(CannotSh areSystemM anagedTeam , "You can 't share o r unshare a record w ith a syst em-generat ed access team."); | |||||
| 221 | ErrorM essages.Ad d(CannotAs signToAcce ssTeam, "Y ou cannot assign a r ecord to t he access team. You can assign a record to the own er team.") ; | |||||
| 222 | ErrorM essages.Ad d(Duplicat eSalesTeam Member, "T he user yo u're tryin g to add i s already a member o f the sale s team."); | |||||
| 223 | ErrorM essages.Ad d(TargetUs erInsuffic ientPrivil eges, "The user can' t be added to the te am because the user doesn't ha ve the \"{ 0}\" privi lege."); | |||||
| 224 | ErrorM essages.Ad d(CannotDi sableOrDel etePositio nDueToAsso ciatedUser s, "This p osition ca n’t be del eted until all assoc iated user s are remo ved from t his positi on."); | |||||
| 225 | ErrorM essages.Ad d(CannotCr eateOrEnab lePosition DueToParen tPositionI sDisabled, "A child position c annot be c reated/ena bled under a disable d parent p osition.") ; | |||||
| 226 | ErrorM essages.Ad d(InvalidD omainName, "The doma in logon f or this us er is inva lid. Selec t another domain log on and try again."); | |||||
| 227 | ErrorM essages.Ad d(InvalidU serName, " You must e nter the u ser name i n the form at <name>@ <domain>. Correct th e format a nd try aga in."); | |||||
| 228 | ErrorM essages.Ad d(BulkMail ServiceNot Accessible , "The Mic rosoft Dyn amics 365 Bulk E-Mai l Service is not run ning."); | |||||
| 229 | ErrorM essages.Ad d(RSMoveIt emError, " Cannot mov e report i tem {0} to {1}"); | |||||
| 230 | ErrorM essages.Ad d(ReportPa rentChildN otCustomiz able, "The report co uld not be updated b ecause eit her the pa rent repor t or the c hild repor t is not c ustomizabl e."); | |||||
| 231 | ErrorM essages.Ad d(ConvertF etchDataSe tError, "A n unexpect ed error o ccurred wh ile proces sing the F etch data set."); | |||||
| 232 | ErrorM essages.Ad d(ConvertR eportToCrm Error, "An unexpecte d error oc curred whi le convert ing suppli ed report to Dynamic s 365 form at."); | |||||
| 233 | ErrorM essages.Ad d(ReportVi ewerError, "An error occurred during rep ort render ing. Repor tId:{0}"); | |||||
| 234 | ErrorM essages.Ad d(RSGetIte mTypeError , "Error o ccurred wh ile fetchi ng the rep ort."); | |||||
| 235 | ErrorM essages.Ad d(RSSetPro pertiesErr or, "Error occurred while sett ing proper ty values for the re port."); | |||||
| 236 | ErrorM essages.Ad d(RSReport ParameterT ypeMismatc hError, "T he paramet er type of the repor t is not v alid."); | |||||
| 237 | ErrorM essages.Ad d(RSUpdate ReportExec utionSnaps hotError, "Error occ urred whil e taking s napshot of a report. "); | |||||
| 238 | ErrorM essages.Ad d(RSSetRep ortHistory LimitError , "Error o ccurred wh ile settin g report h istory sna pshot limi t."); | |||||
| 239 | ErrorM essages.Ad d(RSSetRep ortHistory OptionsErr or, "Error occurred while sett ing report history s napshot op tions."); | |||||
| 240 | ErrorM essages.Ad d(RSSetExe cutionOpti onsError, "Error occ urred whil e setting execution options.") ; | |||||
| 241 | ErrorM essages.Ad d(RSSetRep ortParamet ersError, "Error occ urred whil e setting report par ameters.") ; | |||||
| 242 | ErrorM essages.Ad d(RSGetRep ortParamet ersError, "Error occ urred whil e getting report par ameters.") ; | |||||
| 243 | ErrorM essages.Ad d(RSSetIte mDataSourc esError, " Error occu rred while setting t he data so urce."); | |||||
| 244 | ErrorM essages.Ad d(RSGetIte mDataSourc esError, " Error occu rred while fetching current da ta sources ."); | |||||
| 245 | ErrorM essages.Ad d(RSCreate BatchError , "Error o ccurred wh ile creati ng a batch operation ."); | |||||
| 246 | ErrorM essages.Ad d(RSListRe portHistor yError, "E rror occur red while fetching t he report history sn apshots.") ; | |||||
| 247 | ErrorM essages.Ad d(RSGetRep ortHistory LimitError , "Error o ccurred wh ile fetchi ng the num ber of sna pshots sto red for th e report." ); | |||||
| 248 | ErrorM essages.Ad d(RSExecut eBatchErro r, "Error occurred w hile perfo rming the batch oper ation."); | |||||
| 249 | ErrorM essages.Ad d(RSCancel BatchError , "Error o ccurred wh ile cancel ing the ba tch operat ion."); | |||||
| 250 | ErrorM essages.Ad d(RSListEx tensionsEr ror, "Erro r occurred while fet ching the list of da ta extensi ons instal led on the report se rver."); | |||||
| 251 | ErrorM essages.Ad d(RSGetDat aSourceCon tentsError , "Error o ccurred wh ile gettin g the data source co ntents."); | |||||
| 252 | ErrorM essages.Ad d(RSSetDat aSourceCon tentsError , "Error o ccurred wh ile settin g the data source co ntents."); | |||||
| 253 | ErrorM essages.Ad d(RSFindIt emsError, "Error occ urred whil e finding an item on the repor t server." ); | |||||
| 254 | ErrorM essages.Ad d(RSDelete ItemError, "Error oc curred whi le deletin g an item from the r eport serv er."); | |||||
| 255 | ErrorM essages.Ad d(ReportSe curityErro r, "The re port conta ins a secu rity viola tion. Repo rtId:{0}") ; | |||||
| 256 | ErrorM essages.Ad d(ReportMi ssingRepor tSourceErr or, "No so urce has b een specif ied for th e report. ReportId:{ 0}"); | |||||
| 257 | ErrorM essages.Ad d(ReportMi ssingParam eterError, "A parame ter expect ed by the report has not been supplied. ReportId:{ 0}"); | |||||
| 258 | ErrorM essages.Ad d(ReportMi ssingEndpo intError, "The SOAP endpoint u sed by the ReportVie wer contro l could no t be acces sed."); | |||||
| 259 | ErrorM essages.Ad d(ReportMi ssingDataS ourceError , "A data source exp ected by t he report has not be en supplie d. ReportI d:{0}"); | |||||
| 260 | ErrorM essages.Ad d(ReportMi ssingDataS ourceCrede ntialsErro r, "Creden tials have not been supplied f or a data source use d by the r eport. Rep ortId:{0}" ); | |||||
| 261 | ErrorM essages.Ad d(ReportLo calProcess ingError, "Error occ urred whil e viewing locally pr ocessed re port. Repo rtId:{0}") ; | |||||
| 262 | ErrorM essages.Ad d(ReportSe rverSP2Hot FixNotAppl ied, "Repo rt server SP2 Workgr oup does n ot have th e hotfix f or role cr eation"); | |||||
| 263 | ErrorM essages.Ad d(DataSour ceProhibit ed, "A non fetch bas ed data so urce is no t permitte d on this report"); | |||||
| 264 | ErrorM essages.Ad d(ReportSe rverVersio nLow, "Rep ort server does not meet the m inimal ver sion requi rement"); | |||||
| 265 | ErrorM essages.Ad d(ReportSe rverNoPriv ilege, "No t enough p rivilege t o configur e report s erver"); | |||||
| 266 | ErrorM essages.Ad d(ReportSe rverInvali dUrl, "Can not contac t report s erver from given URL "); | |||||
| 267 | ErrorM essages.Ad d(ReportSe rverUnknow nException , "Unknown exception thrown by report se rver"); | |||||
| 268 | ErrorM essages.Ad d(ReportNo tAvailable , "Report not availa ble"); | |||||
| 269 | ErrorM essages.Ad d(ErrorUpl oadingRepo rt, "An er ror occurr ed while t rying to a dd the rep ort to Mic rosoft Dyn amics 365. Try addin g the repo rt again. If this pr oblem pers ists, cont act your s ystem admi nistrator. "); | |||||
| 270 | ErrorM essages.Ad d(ReportFi leTooBig, "The file is too lar ge and can not be upl oaded. Ple ase reduce the size of the fil e and try again."); | |||||
| 271 | ErrorM essages.Ad d(ReportFi leZeroLeng th, "You h ave upload ed an empt y file. P lease sele ct a new f ile and tr y again.") ; | |||||
| 272 | ErrorM essages.Ad d(ReportTy peBlocked, "The repo rt is not a valid ty pe. It ca nnot be up loaded or downloaded ."); | |||||
| 273 | ErrorM essages.Ad d(ReportUp loadDisabl ed, "Repor ting Servi ces report s cannot b e uploaded . If you w ant to cre ate a new report, pl ease use t he Report Wizard."); | |||||
| 274 | ErrorM essages.Ad d(ReportRd lSandboxin g, "Report upload fa iled due t o RDL Sand boxing lim itations o n the Repo rt Server. "); | |||||
| 275 | ErrorM essages.Ad d(SrsDataC onnectorNo tInstalled Upload, "T his report can’t upl oad becaus e Dynamics 365 Repor ting Exten sions, req uired comp onents for reporting , are not installed on the ser ver that i s running Microsoft SQL Server Reporting Services. "); | |||||
| 276 | ErrorM essages.Ad d(BothConn ectionSide sAreNeeded , "You mus t provide a name or select a r ole for bo th sides o f this con nection.") ; | |||||
| 277 | ErrorM essages.Ad d(CannotCo nnectToSel f, "Cannot connect a record to itself.") ; | |||||
| 278 | ErrorM essages.Ad d(Unrelate dConnectio nRoles, "T he connect ion roles are not re lated."); | |||||
| 279 | ErrorM essages.Ad d(Connecti onRoleNotV alidForObj ectType, " The record type {0} is not def ined for u se with th e connecti on role {1 }."); | |||||
| 280 | ErrorM essages.Ad d(Connecti onCannotBe EnabledOnT hisEntity, "Connecti ons cannot be enable d on this entity"); | |||||
| 281 | ErrorM essages.Ad d(Connecti onNotSuppo rted, "The selected record doe s not supp ort connec tions. You cannot ad d the conn ection."); | |||||
| 282 | ErrorM essages.Ad d(Connecti onObjectsM issing, "B oth object s being co nnected ar e missing. "); | |||||
| 283 | ErrorM essages.Ad d(Connecti onInvalidS tartEndDat e, "Start date / end date is i nvalid."); | |||||
| 284 | ErrorM essages.Ad d(Connecti onExists, "Connectio n already exists."); | |||||
| 285 | ErrorM essages.Ad d(Decouple UserOwnedE ntity, "Ca n only dec ouple user owned ent ities."); | |||||
| 286 | ErrorM essages.Ad d(Decouple ChildEntit y, "Cannot decouple a child en tity."); | |||||
| 287 | ErrorM essages.Ad d(Existing ParentalRe lationship , "A paren tal relati onship alr eady exist s."); | |||||
| 288 | ErrorM essages.Ad d(InvalidC ascadeLink Type, "The cascade l ink type i s not vali d for the cascade ac tion."); | |||||
| 289 | ErrorM essages.Ad d(InvalidD eleteModif ication, " A system r elationshi p's delete cascading action ca nnot be mo dified."); | |||||
| 290 | ErrorM essages.Ad d(Customer Opportunit yRoleExist s, "Custom er opportu nity role exists."); | |||||
| 291 | ErrorM essages.Ad d(Customer Relationsh ipExists, "Customer relationsh ip already exists.") ; | |||||
| 292 | ErrorM essages.Ad d(Multiple Relationsh ipsNotSupp orted, "Mu ltiple rel ationships are not s upported") ; | |||||
| 293 | ErrorM essages.Ad d(ImportDu plicateEnt ity, "This import ha s failed b ecause a d ifferent e ntity with the ident ical name, {0}, alre ady exists in the ta rget organ ization.") ; | |||||
| 294 | ErrorM essages.Ad d(CascadeP roxyEmptyC allerId, " Empty Call er Id"); | |||||
| 295 | ErrorM essages.Ad d(CascadeP roxyInvali dPrincipal Type, "Inv alid secur ity princi pal type") ; | |||||
| 296 | ErrorM essages.Ad d(CascadeP roxyInvali dNativeDAP tr, "Inval id pointer of unmana ged data a ccess obje ct"); | |||||
| 297 | ErrorM essages.Ad d(CascadeF ailToCreat eNativeDAW rapper, "F ailed to c reate unma naged data access wr apper"); | |||||
| 298 | ErrorM essages.Ad d(CascadeR eparentOnN onUserOwne d, "Cannot perform C ascade Rep arent on N on-UserOwn ed entitie s"); | |||||
| 299 | ErrorM essages.Ad d(CascadeM ergeInvali dSpecialCo lumn, "Inv alid Colum n Name for Merge Spe cial Casin g"); | |||||
| 300 | ErrorM essages.Ad d(CascadeR emoveLinkO nNonNullab le, "Casca deDelete i s defined as RemoveL ink while the foreig n key is n ot nullabl e"); | |||||
| 301 | ErrorM essages.Ad d(CascadeD eleteNotAl lowDelete, "Object i s not allo wed to be deleted"); | |||||
| 302 | ErrorM essages.Ad d(CascadeI nvalidLink Type, "Inv alid Casca deLink Typ e"); | |||||
| 303 | ErrorM essages.Ad d(IsvExten sionsPrivi legeNotPre sent, "To import ISV .Config, y our user a ccount mus t be assoc iated with a securit y role tha t includes the ISV E xtensions privilege. "); | |||||
| 304 | ErrorM essages.Ad d(Relation shipNameLe ngthExceed sLimit, "R elationshi p name can not be mor e than 50 characters long."); | |||||
| 305 | ErrorM essages.Ad d(ImportEm ailTemplat eErrorMiss ingFile, " E-mail Tem plate '{0} ' import: The attach ment '{1}' was not f ound in th e import z ip file.") ; | |||||
| 306 | ErrorM essages.Ad d(CascadeI nvalidExtr aCondition Value, "In valid Extr a-conditio n value"); | |||||
| 307 | ErrorM essages.Ad d(ImportWo rkflowName ConflictEr ror, "Work flow {0} c annot be i mported be cause a wo rkflow wit h same nam e and diff erent uniq ue identif ier exists in the ta rget syste m. Change the name o f this wor kflow, and then try again."); | |||||
| 308 | ErrorM essages.Ad d(ImportWo rkflowPubl ishedError , "Workflo w {0}({1}) cannot be imported because a workflow w ith same u nique iden tifier is published on the tar get system . Unpublis h the work flow on th e target s ystem befo re attempt ing to imp ort this w orkflow ag ain."); | |||||
| 309 | ErrorM essages.Ad d(ImportWo rkflowEnti tyDependen cyError, " Cannot imp ort workfl ow definit ion. Requi red entity dependenc y is missi ng."); | |||||
| 310 | ErrorM essages.Ad d(ImportWo rkflowAttr ibuteDepen dencyError , "Cannot import wor kflow defi nition. Re quired att ribute dep endency is missing." ); | |||||
| 311 | ErrorM essages.Ad d(ImportWo rkflowErro r, "Cannot import wo rkflow def inition. T he workflo w with spe cified wor kflow id i s not upda table or w orkflow na me is not unique."); | |||||
| 312 | ErrorM essages.Ad d(ImportGe nericEntit iesError, "An error occurred w hile impor ting gener ic entitie s."); | |||||
| 313 | ErrorM essages.Ad d(ImportRo lePermissi onError, " You do not have the necessary privileges to import security roles."); | |||||
| 314 | ErrorM essages.Ad d(ImportRo leError, " Cannot imp ort securi ty role. T he role wi th specifi ed role id is not up datable or role name is not un ique."); | |||||
| 315 | ErrorM essages.Ad d(ImportOr gSettingsE rror, "The re was an error pars ing the Or ganization Settings during Imp ort."); | |||||
| 316 | ErrorM essages.Ad d(InvalidS harePointS iteCollect ionUrl, "T he URL mus t conform to the htt p or https schema.") ; | |||||
| 317 | ErrorM essages.Ad d(InvalidS iteRelativ eUrlFormat , "The rel ative url contains i nvalid cha racters. P lease use a differen t name. Va lid relati ve url nam es cannot end with t he followi ng strings : .aspx, . ashx, .asm x, .svc , cannot beg in or end with a dot or /, can not contai n consecut ive dots o r / and ca nnot conta in any of the follow ing charac ters: ~ \" # % & * : < > ? \\ { | }."); | |||||
| 318 | ErrorM essages.Ad d(InvalidR elativeUrl Format, "T he relativ e url cont ains inval id charact ers. Pleas e use a di fferent na me. Valid relative u rl names c annot ends with the following strings: . aspx, .ash x, .asmx, .svc , can not begin or end wit h a dot, c annot cont ain consec utive dots and canno t contain any of the following character s: ~ \" # % & * : < > ? / \\ { | }."); | |||||
| 319 | ErrorM essages.Ad d(InvalidA bsoluteUrl Format, "T he absolut e url cont ains inval id charact ers. Pleas e use a di fferent na me. Valid absolute u rl cannot ends with the follow ing string s: .aspx, .ashx, .as mx, .svc") ; | |||||
| 320 | ErrorM essages.Ad d(InvalidU rlConsecut iveSlashes , "The Url contains consecutiv e slashes which is n ot allowed ."); | |||||
| 321 | ErrorM essages.Ad d(SharePoi ntRecordWi thDuplicat eUrl, "The re is alre ady a reco rd with th e same Url ."); | |||||
| 322 | ErrorM essages.Ad d(SharePoi ntAbsolute AndRelativ eUrlEmpty, "Both abs olute URL and relati ve URL can not be nul l."); | |||||
| 323 | ErrorM essages.Ad d(ImportOp tionSetsEr ror, "An e rror occur red while importing OptionSets ."); | |||||
| 324 | ErrorM essages.Ad d(ImportRi bbonsError , "An erro r occurred while imp orting Rib bons."); | |||||
| 325 | ErrorM essages.Ad d(ImportRe portsError , "An erro r occurred while imp orting Rep orts."); | |||||
| 326 | ErrorM essages.Ad d(ImportSo lutionErro r, "An err or occurre d while im porting a Solution." ); | |||||
| 327 | ErrorM essages.Ad d(ImportDe pendencySo lutionErro r, "{0} re quires sol utions tha t are not currently installed. Import th e followin g solution s before I mporting t his one. { 1} "); | |||||
| 328 | ErrorM essages.Ad d(ExportSo lutionErro r, "An err or occurre d while ex porting a Solution." ); | |||||
| 329 | ErrorM essages.Ad d(ExportMa nagedSolut ionError, "An error occurred w hile expor ting a sol ution. Man aged solut ions canno t be expor ted."); | |||||
| 330 | ErrorM essages.Ad d(ExportMi ssingSolut ionError, "An error occurred w hile expor ting a sol ution. The solution does not e xist in th is system. "); | |||||
| 331 | ErrorM essages.Ad d(ImportSo lutionMana gedError, "Solution '{0}' alre ady exists in this s ystem as m anaged and cannot be upgraded. "); | |||||
| 332 | ErrorM essages.Ad d(ImportOp tionSetAtt ributeErro r, "Attrib ute '{0}' was not im ported as it referen ces a non- existing g lobal Opti on Set ('{ 1}')."); | |||||
| 333 | ErrorM essages.Ad d(ImportSo lutionMana gedToUnman agedMismat ch, "The s olution is already i nstalled o n this sys tem as an unmanaged solution a nd the pac kage suppl ied is att empting to install i t in manag ed mode. I mport can only updat e solution s when the modes mat ch. Uninst all the cu rrent solu tion and t ry again." ); | |||||
| 334 | ErrorM essages.Ad d(ImportSo lutionUnma nagedToMan agedMismat ch, "The s olution is already i nstalled o n this sys tem as a m anaged sol ution and the packag e supplied is attemp ting to in stall it i n unmanage d mode. Im port can o nly update solutions when the modes matc h. Uninsta ll the cur rent solut ion and tr y again.") ; | |||||
| 335 | ErrorM essages.Ad d(ImportSo lutionIsvC onfigWarni ng, "ISV C onfig was overwritte n."); | |||||
| 336 | ErrorM essages.Ad d(ImportSo lutionSite MapWarning , "SiteMap was overw ritten."); | |||||
| 337 | ErrorM essages.Ad d(ImportSo lutionOrga nizationSe ttingsWarn ing, "Orga nization s ettings we re overwri tten."); | |||||
| 338 | ErrorM essages.Ad d(ImportEx portDeprec atedError, "This mes sage is no longer av ailable. P lease cons ult the SD K for alte rnative me ssages."); | |||||
| 339 | ErrorM essages.Ad d(ImportSy stemSoluti onError, " System sol ution cann ot be impo rted."); | |||||
| 340 | ErrorM essages.Ad d(ImportTr anslationM issingSolu tionError, "An error occurred while impo rting the translatio ns. The so lution ass ociated wi th the tra nslations does not e xist in th is system. "); | |||||
| 341 | ErrorM essages.Ad d(ExportDe faultAsPac kagedError , "The def ault solut ion cannot be export ed as a pa ckage."); | |||||
| 342 | ErrorM essages.Ad d(ImportDe faultAsPac kageError, "The pack age suppli ed for the default s olution is trying to install i t in manag ed mode. T he default solution cannot be managed. I n the XML for the de fault solu tion, set the Manage d value ba ck to \"fa lse\" and try to imp ort the so lution aga in."); | |||||
| 343 | ErrorM essages.Ad d(ImportCu stomizatio nsBadZipFi leError, " The soluti on file is invalid. The compre ssed file must conta in the fol lowing fil es at its root: solu tion.xml, customizat ions.xml, and [Conte nt_Types]. xml. Custo mization f iles expor ted from p revious ve rsions of Microsoft Dynamics 3 65 are not supported ."); | |||||
| 344 | ErrorM essages.Ad d(ImportTr anslations BadZipFile Error, "Th e translat ion file i s invalid. The compr essed file must cont ain the fo llowing fi les at its root: {0} , [Content _Types].xm l."); | |||||
| 345 | ErrorM essages.Ad d(ImportAt tributeNam eError, "I nvalid nam e for attr ibute {0}. Custom a ttribute n ames must start with a valid c ustomizati on prefix. The prefi x for a so lution com ponent sho uld match the prefix that is s pecified f or the pub lisher of the soluti on."); | |||||
| 346 | ErrorM essages.Ad d(ImportFi eldSecurit yProfileIs SecuredMis singError, "Some fie ld securit y permissi ons could not be imp orted beca use the fo llowing fi elds are n ot securab le: {0}.") ; | |||||
| 347 | ErrorM essages.Ad d(ImportFi eldSecurit yProfileAt tributesMi ssingError , "Some fi eld securi ty permiss ions could not be im ported bec ause the f ollowing f ields are not in the system: { 0}."); | |||||
| 348 | ErrorM essages.Ad d(ImportFi leSignatur eInvalid, "The impor t file has an invali d digital signature. "); | |||||
| 349 | ErrorM essages.Ad d(ImportSo lutionPack ageNotVali d, "The so lution pac kage you a re importi ng was gen erated on a version of Microso ft Dynamic s 365 that cannot be imported into this system. Pa ckage Vers ion: {0} { 1}, System Version: {2} {3}.") ; | |||||
| 350 | ErrorM essages.Ad d(ImportSo lutionPack ageNeedsUp grade, "Th e solution package y ou are imp orting was generated on a diff erent vers ion of Mic rosoft Dyn amics 365. The syste m will att empt to tr ansform th e package prior to i mport. Pac kage Versi on: {0} {1 }, System Version: { 2} {3}."); | |||||
| 351 | ErrorM essages.Ad d(ImportSo lutionPack ageInvalid SolutionPa ckageVersi on, "You c an only im port solut ions with a package version of {0} or ea rlier into this orga nization. Also, you can't impo rt any sol utions int o this org anization that were exported f rom Micros oft Dynami cs 365 201 1 or earli er."); | |||||
| 352 | ErrorM essages.Ad d(ImportSo lutionPack ageMinimum VersionNee ded, "Depr ecated, no t removing now as it might cau se issues during int egrations. "); | |||||
| 353 | ErrorM essages.Ad d(ImportSo lutionPack ageRequire sOptInAvai lable, "So me compone nts in the solution package yo u are impo rting requ ire opt in . Opt in i s availabl e, please consult yo ur adminis trator."); | |||||
| 354 | ErrorM essages.Ad d(ImportSo lutionPack ageRequire sOptInNotA vailable, "The solut ion packag e you are importing was genera ted on a S KU of Micr osoft Dyna mics 365 t hat suppor ts opt in. It cannot be import ed in your system.") ; | |||||
| 355 | ErrorM essages.Ad d(ImportSd kMessagesE rror, "An error occu rred while importing Sdk Messa ges."); | |||||
| 356 | ErrorM essages.Ad d(ImportEm ailTemplat ePersonalE rror, "E-m ail Templa te was not imported. The Templ ate is a p ersonal te mplate on the target system; i mport cann ot overwri te persona l template s."); | |||||
| 357 | ErrorM essages.Ad d(ImportNo nWellForme dFileError , "Invalid customiza tion file. This file is not we ll formed. "); | |||||
| 358 | ErrorM essages.Ad d(ImportPl uginTypesE rror, "An error occu rred while importing plug-in t ypes."); | |||||
| 359 | ErrorM essages.Ad d(ImportSi teMapError , "An erro r occurred while imp orting the Site Map. "); | |||||
| 360 | ErrorM essages.Ad d(DefaultS iteMapDele teFailure, "Cannot d elete defa ult site m ap."); | |||||
| 361 | ErrorM essages.Ad d(ImportMa ppingsMiss ingEntityM apError, " This custo mization f ile contai ns a refer ence to an entity ma p that doe s not exis t on the t arget syst em."); | |||||
| 362 | ErrorM essages.Ad d(ImportMa ppingsSyst emMapError , "Import cannot cre ate system attribute mappings" ); | |||||
| 363 | ErrorM essages.Ad d(ImportIs vConfigErr or, "There was an er ror parsin g the IsvC onfig duri ng Import" ); | |||||
| 364 | ErrorM essages.Ad d(ImportAr ticleTempl ateError, "There was an error in parsing the artic le templat es in Impo rt Xml"); | |||||
| 365 | ErrorM essages.Ad d(ImportEm ailTemplat eError, "T here was a n error in parsing t he email t emplates i n Import X ml"); | |||||
| 366 | ErrorM essages.Ad d(ImportCo ntractTemp lateError, "There wa s an error in parsin g the cont ract templ ates in Im port Xml") ; | |||||
| 367 | ErrorM essages.Ad d(ImportRe lationship RoleMapsEr ror, "The number of format par ameters pa ssed into the input string is incorrect" ); | |||||
| 368 | ErrorM essages.Ad d(ImportRe lationship RolesError , "The num ber of for mat parame ters passe d into the input str ing is inc orrect"); | |||||
| 369 | ErrorM essages.Ad d(ImportRe lationship RolesPrivi legeError, "{0} cann ot be impo rted. The {1} privil ege is req uired to i mport this component ."); | |||||
| 370 | ErrorM essages.Ad d(ImportEn tityNameMi smatchErro r, "The nu mber of fo rmat param eters pass ed into th e input st ring is in correct"); | |||||
| 371 | ErrorM essages.Ad d(ImportFo rmXmlError , "The num ber of for mat parame ters passe d into the input str ing is inc orrect"); | |||||
| 372 | ErrorM essages.Ad d(ImportFi eldXmlErro r, "The nu mber of fo rmat param eters pass ed into th e input st ring is in correct"); | |||||
| 373 | ErrorM essages.Ad d(ImportSa vedQueryEx istingErro r, "The nu mber of fo rmat param eters pass ed into th e input st ring is in correct"); | |||||
| 374 | ErrorM essages.Ad d(ImportSa vedQueryOt cMismatchE rror, "The re was an error proc essing sav ed queries of the sa me object type code (unresolva ble system collision )"); | |||||
| 375 | ErrorM essages.Ad d(ImportEn tityCustom ResourcesN ewStringEr ror, "Inva lid Entity new strin g in the C ustom Reso urces"); | |||||
| 376 | ErrorM essages.Ad d(ImportEn tityCustom ResourcesE rror, "Inv alid Custo m Resource s in the I mport File "); | |||||
| 377 | ErrorM essages.Ad d(ImportEn tityIconEr ror, "Inva lid Icon i n the Impo rt File"); | |||||
| 378 | ErrorM essages.Ad d(ImportSa vedQueryDe letedError , "A saved query wit h the same id is mar ked as del eted in th e system. Please fir st publish the custo mized enti ty and imp ort again. "); | |||||
| 379 | ErrorM essages.Ad d(ImportEn titySystem UserOnPrem iseMismatc hError, "T he systemu ser entity was impor ted, but c ustomized forms for the entity were not imported. Systemuser entity fo rms from M icrosoft D ynamics 36 5 Online c annot be i mported in to on-prem ises or ho sted versi ons of Mic rosoft Dyn amics 365. "); | |||||
| 380 | ErrorM essages.Ad d(ImportEn titySystem UserLiveMi smatchErro r, "The sy stemuser e ntity was imported b ut customi zed forms for the en tity were not import ed. System user entit y forms fr om on-prem ises or ho sted versi ons of Mic rosoft Dyn amics 365 cannot be imported i nto Micros oft Dynami cs 365 Onl ine."); | |||||
| 381 | ErrorM essages.Ad d(ImportLa nguagesIgn oredError, "Translat ed labels for the fo llowing la nguages co uld not be imported because th ey have no t been ena bled for t his organi zation: {0 }"); | |||||
| 382 | ErrorM essages.Ad d(ImportIn validFileE rror, "Inv alid Impor t File"); | |||||
| 383 | ErrorM essages.Ad d(ImportXs dValidatio nError, "T he import file is in valid. XSD validatio n failed w ith the fo llowing er ror: '{0}' . The vali dation fai led at: '. ..{1} <<<< <ERROR LOC ATION>>>>> {2}...'.\ ""); | |||||
| 384 | ErrorM essages.Ad d(ImportIn validXmlEr ror, "This solution package ca nnot be im ported bec ause it co ntains inv alid XML. You can at tempt to r epair the file by ma nually edi ting the X ML content s using th e informat ion found in the sch ema valida tion error s, or you can contac t your sol ution prov ider."); | |||||
| 385 | ErrorM essages.Ad d(ImportWr ongPublish erError, " The follow ing manage d solution cannot be imported: {0}. The publisher name canno t be chang ed from {1 } to {2}." ); | |||||
| 386 | ErrorM essages.Ad d(ImportMi ssingDepen denciesErr or, "The f ollowing s olution ca nnot be im ported: {0 }. Some de pendencies are missi ng."); | |||||
| 387 | ErrorM essages.Ad d(ImportGe nericError , "The imp ort failed . For more informati on, see th e related error mess ages."); | |||||
| 388 | ErrorM essages.Ad d(ImportMi ssingCompo nent, "Can not add a Root Compo nent {0} o f type {1} because i t is not i n the targ et system. "); | |||||
| 389 | ErrorM essages.Ad d(ImportMi ssingRootC omponentEn try, "The import has failed be cause comp onent {0} of type {1 } is not d eclared in the solut ion file a s a root c omponent. To fix thi s, import again usin g the XML file that was genera ted when y ou exporte d the solu tion."); | |||||
| 390 | ErrorM essages.Ad d(Unmanage dComponent ParentsMan agedCompon ent, "Foun d {0} depe ndency rec ords where unmanaged component is the pa rent of a managed co mponent. F irst recor d (depende ntcomponen tobjectid = {1}, typ e = {2}, r equiredcom ponentobje ctid = {3} , type= {4 }, solutio n = {5})." ); | |||||
| 391 | ErrorM essages.Ad d(FailedTo GetNetwork ServiceNam e, "Failed to obtain the local ized name for Networ kService a ccount"); | |||||
| 392 | ErrorM essages.Ad d(CustomPa rentingSys temNotSupp orted, "A custom ent ity can no t have a p arental re lationship to a syst em entity" ); | |||||
| 393 | ErrorM essages.Ad d(InvalidF ormatParam eters, "Th e number o f format p arameters passed int o the inpu t string i s incorrec t"); | |||||
| 394 | ErrorM essages.Ad d(InvalidH ierarchica lRelations hip, "This relations hip is not self-refe rential an d therefor e cannot b e made hie rarchical. "); | |||||
| 395 | ErrorM essages.Ad d(MissingH ierarchica lRelations hipForOper ator, "Thi s query us es a hiera rchical op erator, bu t the {0} entity doe sn't have a hierarch ical relat ionship.") ; | |||||
| 396 | ErrorM essages.Ad d(Duplicat ePrimaryNa meAttribut e, "The ne w {2} attr ibute is s et as the primary na me attribu te for the {1} entit y. The {1} entity al ready has the {0} at tribute se t as the p rimary nam e attribut e. An enti ty can onl y have one primary n ame attrib ute."); | |||||
| 397 | ErrorM essages.Ad d(Configur ationPageN otValidFor Solution, "The solut ion config uration pa ge must ex ist within the solut ion it rep resents.") ; | |||||
| 398 | ErrorM essages.Ad d(Solution Configurat ionPageMus tBeHtmlWeb Resource, "The solut ion config uration pa ge must ex ist within the solut ion it rep resents.") ; | |||||
| 399 | ErrorM essages.Ad d(InvalidS olutionCon figuration Page, "The specified configura tion page for this s olution is invalid." ); | |||||
| 400 | ErrorM essages.Ad d(InvalidH ierarchica lRelations hipChange, "You can’ t change t his entity ’s hierarc hy because the {0} h ierarchica l relation ship can’t be custom ized."); | |||||
| 401 | ErrorM essages.Ad d(InvalidL anguageFor Solution, "Solution and Publis her Option s are not available since your language does not m atch syste m base lan guage."); | |||||
| 402 | ErrorM essages.Ad d(CannotHa veDuplicat eYomi, "On e attribut e can be t ied to onl y one yomi at a time "); | |||||
| 403 | ErrorM essages.Ad d(SavedQue ryIsNotCus tomizable, "The spec ified view is not cu stomizable "); | |||||
| 404 | ErrorM essages.Ad d(CannotDe leteChildA ttribute, "The Child Attribute is not va lid for de letion"); | |||||
| 405 | ErrorM essages.Ad d(EntityHa sNoStateCo de, "Speci fied entit y does not have a st atecode.") ; | |||||
| 406 | ErrorM essages.Ad d(NoAttrib utesForEnt ityCreate, "No attri butes for Create Ent ity action ."); | |||||
| 407 | ErrorM essages.Ad d(Duplicat eAttribute SchemaName , "An attr ibute with the speci fied name already ex ists"); | |||||
| 408 | ErrorM essages.Ad d(Duplicat eDisplayCo llectionNa me, "An ob ject with the specif ied displa y collecti on name al ready exis ts."); | |||||
| 409 | ErrorM essages.Ad d(Duplicat eDisplayNa me, "An ob ject with the specif ied displa y name alr eady exist s."); | |||||
| 410 | ErrorM essages.Ad d(Duplicat eName, "An object wi th the spe cified nam e already exists"); | |||||
| 411 | ErrorM essages.Ad d(InvalidR elationshi pType, "Th e specifie d relation ship type is not val id for thi s operatio n"); | |||||
| 412 | ErrorM essages.Ad d(InvalidP rimaryFiel dType, "Pr imary UI A ttribute h as to be o f type Str ing"); | |||||
| 413 | ErrorM essages.Ad d(InvalidO wnershipTy peMask, "T he specifi ed ownersh ip type ma sk is not valid for this opera tion"); | |||||
| 414 | ErrorM essages.Ad d(InvalidD isplayName , "The spe cified dis play name is not val id"); | |||||
| 415 | ErrorM essages.Ad d(InvalidS chemaName, "An entit y with the specified name alre ady exists . Please s pecify a u nique name ."); | |||||
| 416 | ErrorM essages.Ad d(Relation shipIsNotC ustomRelat ionship, " The specif ied relati onship is not a cust om relatio nship"); | |||||
| 417 | ErrorM essages.Ad d(Attribut eIsNotCust omAttribut e, "The sp ecified at tribute is not a cus tom attrib ute"); | |||||
| 418 | ErrorM essages.Ad d(EntityIs NotCustomi zable, "Th e specifie d entity i s not cust omizable") ; | |||||
| 419 | ErrorM essages.Ad d(Multiple ParentsNot Supported, "An entit y can have only one parental r elationshi p"); | |||||
| 420 | ErrorM essages.Ad d(CannotCr eateActivi tyRelation ship, "Rel ationship with activ ities cann ot be crea ted throug h this ope ration"); | |||||
| 421 | ErrorM essages.Ad d(Cyclical Relationsh ip, "The s pecified r elationshi p will res ult in a c ycle."); | |||||
| 422 | ErrorM essages.Ad d(InvalidR elationshi pDescripti on, "The s pecified r elationshi p cannot b e created" ); | |||||
| 423 | ErrorM essages.Ad d(CannotDe letePrimar yUIAttribu te, "The P rimary UI Attribute is not val id for del etion"); | |||||
| 424 | ErrorM essages.Ad d(RowGuidI sNotValidN ame, "rowg uid is a r eserved na me and can not be use d as an id entifier") ; | |||||
| 425 | ErrorM essages.Ad d(FailedTo ScheduleAc tivity, "F ailed to s chedule ac tivity."); | |||||
| 426 | ErrorM essages.Ad d(CannotDe leteLastEm ailAttribu te, "You c annot dele te this fi eld becaus e the reco rd type ha s been ena bled for e -mail."); | |||||
| 427 | ErrorM essages.Ad d(SystemAt tributeMap , "SystemA ttributeMa p Error Oc curred"); | |||||
| 428 | ErrorM essages.Ad d(UpdateAt tributeMap , "UpdateA ttributeMa p Error Oc curred"); | |||||
| 429 | ErrorM essages.Ad d(InvalidA ttributeMa p, "Invali dAttribute Map Error Occurred") ; | |||||
| 430 | ErrorM essages.Ad d(SystemEn tityMap, " SystemEnti tyMap Erro r Occurred "); | |||||
| 431 | ErrorM essages.Ad d(UpdateEn tityMap, " UpdateEnti tyMap Erro r Occurred "); | |||||
| 432 | ErrorM essages.Ad d(NonMappa bleEntity, "NonMappa bleEntity Error Occu rred"); | |||||
| 433 | ErrorM essages.Ad d(unManage didsCallou tException , "Callout code thro ws excepti on"); | |||||
| 434 | ErrorM essages.Ad d(unManage didscallou tinvalidev ent, "Inva lid callou t event"); | |||||
| 435 | ErrorM essages.Ad d(unManage didscallou tinvalidco nfig, "Inv alid callo ut configu ration"); | |||||
| 436 | ErrorM essages.Ad d(unManage didscallou tisvstop, "Callout I SV code st opped the operation" ); | |||||
| 437 | ErrorM essages.Ad d(unManage didscallou tisvabort, "Callout ISV code a borted the operation "); | |||||
| 438 | ErrorM essages.Ad d(unManage didscallou tisvexcept ion, "Call out ISV co de throws exception" ); | |||||
| 439 | ErrorM essages.Ad d(unManage didscustom entityambi guousrelat ionship, " More than one relati onship bet ween the r equested e ntities ex ists."); | |||||
| 440 | ErrorM essages.Ad d(unManage didscustom entitynore lationship , "No rela tionship e xists betw een the re quested en tities."); | |||||
| 441 | ErrorM essages.Ad d(unManage didscustom entitypare ntchildide ntical, "T he supplie d parent a nd child e ntities ar e identica l."); | |||||
| 442 | ErrorM essages.Ad d(unManage didscustom entityinva lidparent, "The supp lied paren t passed i n is not a valid ent ity."); | |||||
| 443 | ErrorM essages.Ad d(unManage didscustom entityinva lidchild, "The suppl ied child passed in is not a v alid entit y."); | |||||
| 444 | ErrorM essages.Ad d(unManage didscustom entitywoul dcreateloo p, "This a ssociation would cre ate a loop in the da tabase."); | |||||
| 445 | ErrorM essages.Ad d(unManage didscustom entityexis tingloop, "There is an existin g loop in the databa se."); | |||||
| 446 | ErrorM essages.Ad d(unManage didscustom entitystac kunderflow , "Custom entity MD stack unde rflow."); | |||||
| 447 | ErrorM essages.Ad d(unManage didscustom entitystac koverflow, "Custom e ntity MD s tack overf low."); | |||||
| 448 | ErrorM essages.Ad d(unManage didscustom entitytlsf ailure, "C ustom enti ty MD TLS not initia lized."); | |||||
| 449 | ErrorM essages.Ad d(unManage didscustom entityinva lidownersh ip, "Custo m entity o wnership t ype mask i s improper ly set."); | |||||
| 450 | ErrorM essages.Ad d(unManage didscustom entitynoti nitialized , "Custom entity int erface was not prope rly initia lized."); | |||||
| 451 | ErrorM essages.Ad d(unManage didscustom entityalre adyinitial ized, "Cus tom entity interface already i nitialized on this t hread."); | |||||
| 452 | ErrorM essages.Ad d(unManage didscustom entityname violation, "Supplied entity fo und, but i t is not a custom en tity."); | |||||
| 453 | ErrorM essages.Ad d(unManage didscascad eunexpecte derror, "U nexpected error occu rred in ca scading op eration"); | |||||
| 454 | ErrorM essages.Ad d(unManage didscascad eemptylink error, "Th e relation ship link is empty") ; | |||||
| 455 | ErrorM essages.Ad d(unManage didscascad eundefined relationer ror, "Rela tionship t ype is not supported "); | |||||
| 456 | ErrorM essages.Ad d(unManage didscascad einconsist encyerror, "Cascade map inform ation is i nconsisten t."); | |||||
| 457 | ErrorM essages.Ad d(MergeLos sOfParenti ngWarning, "Merge wa rning: sub -entity mi ght lose p arenting") ; | |||||
| 458 | ErrorM essages.Ad d(MergeDif ferentlyPa rentedWarn ing, "Merg e warning: sub-entit y will be differentl y parented ."); | |||||
| 459 | ErrorM essages.Ad d(MergeEnt itiesIdent icalError, "Merge ca nnot be pe rformed on master an d sub-enti ties that are identi cal."); | |||||
| 460 | ErrorM essages.Ad d(MergeEnt ityNotActi veError, " Merge cann ot be perf ormed on e ntity that is inacti ve."); | |||||
| 461 | ErrorM essages.Ad d(unManage didsmerged ifferentbi zorgerror, "Merge ca nnot be pe rformed on entities from diffe rent busin ess entity ."); | |||||
| 462 | ErrorM essages.Ad d(MergeAct iveQuoteEr ror, "Merg e cannot b e performe d on sub-e ntity that has activ e quote.") ; | |||||
| 463 | ErrorM essages.Ad d(MergeSec urityError , "Merge i s not allo wed: calle r does not have the privilege or access. "); | |||||
| 464 | ErrorM essages.Ad d(MergeCyc licalParen tingError, "Merge co uld create cyclical parenting. "); | |||||
| 465 | ErrorM essages.Ad d(unManage didscalend arruledoes notexist, "The calen dar rule d oes not ex ist."); | |||||
| 466 | ErrorM essages.Ad d(unManage didscalend arinvalidc alendar, " The calend ar is inva lid."); | |||||
| 467 | ErrorM essages.Ad d(Attachme ntInvalidF ileName, " Attachment file name contains invalid ch aracters." ); | |||||
| 468 | ErrorM essages.Ad d(unManage didsattach mentcannot truncatete mpfile, "C annot trun cate tempo rary attac hment file ."); | |||||
| 469 | ErrorM essages.Ad d(unManage didsattach mentcannot unmaptempf ile, "Cann ot unmap t emporary a ttachment file."); | |||||
| 470 | ErrorM essages.Ad d(unManage didsattach mentcannot createtemp file, "Can not create temporary attachmen t file."); | |||||
| 471 | ErrorM essages.Ad d(unManage didsattach mentisempt y, "Attach ment is em pty."); | |||||
| 472 | ErrorM essages.Ad d(unManage didsattach mentcannot readtempfi le, "Canno t read tem porary att achment fi le."); | |||||
| 473 | ErrorM essages.Ad d(unManage didsattach mentinvali dfilesize, "Attachme nt file si ze is too big."); | |||||
| 474 | ErrorM essages.Ad d(unManage didsattach mentcannot getfilesiz e, "Cannot get tempo rary attac hment file size."); | |||||
| 475 | ErrorM essages.Ad d(unManage didsattach mentcannot opentempfi le, "Canno t open tem porary att achment fi le."); | |||||
| 476 | ErrorM essages.Ad d(unManage didscustom izationtra nsformatio nnotsuppor ted, "Tran sformation is not su pported fo r this obj ect."); | |||||
| 477 | ErrorM essages.Ad d(Contract DetailDisc ountAmount AndPercent , "Both 'a mount' and 'percenta ge' cannot be set.") ; | |||||
| 478 | ErrorM essages.Ad d(Contract DetailDisc ountAmount , "The con tract's di scount typ e does not support ' percentage ' discount s."); | |||||
| 479 | ErrorM essages.Ad d(Contract DetailDisc ountPercen t, "The co ntract's d iscount ty pe does no t support 'amount' d iscounts." ); | |||||
| 480 | ErrorM essages.Ad d(Incident IsAlreadyC losedOrCan celled, "A lready Clo sed or Can celed"); | |||||
| 481 | ErrorM essages.Ad d(unManage didsincide ntparentac countandpa rentcontac tnotpresen t, "You sh ould speci fy a paren t contact or account ."); | |||||
| 482 | ErrorM essages.Ad d(unManage didsincide ntparentac countandpa rentcontac tpresent, "You can e ither spec ify a pare nt contact or accoun t, but not both."); | |||||
| 483 | ErrorM essages.Ad d(Incident CannotCanc el, "The i ncident ca n not be c ancelled b ecause the re are ope n activiti es for thi s incident ."); | |||||
| 484 | ErrorM essages.Ad d(Incident InvalidCon tractLineS tateForCre ate, "The case can n ot be crea ted agains t this con tract line item beca use the co ntract lin e item is cancelled or expired ."); | |||||
| 485 | ErrorM essages.Ad d(Incident NullSpentT imeOrBille d, "The ti mespent on the Incid ent is NUL L or Incid entResolut ion Activi ty's IsBil led is NUL L."); | |||||
| 486 | ErrorM essages.Ad d(Incident InvalidAll otmentType , "The all otment typ e for the contract i s invalid. "); | |||||
| 487 | ErrorM essages.Ad d(unManage didsincide ntcannotcl ose, "The incident c an not be closed bec ause there are open activities for this incident." ); | |||||
| 488 | ErrorM essages.Ad d(Incident MissingAct ivityRegar dingObject , "The inc ident id i s missing. "); | |||||
| 489 | ErrorM essages.Ad d(unManage didsincide ntmissinga ctivityobj ecttype, " Missing ob ject type code."); | |||||
| 490 | ErrorM essages.Ad d(unManage didsincide ntnullacti vitytypeco de, "The a ctivitytyp ecode can' t be NULL. "); | |||||
| 491 | ErrorM essages.Ad d(unManage didsincide ntinvalida ctivitytyp ecode, "Th e activity typecode i s wrong.") ; | |||||
| 492 | ErrorM essages.Ad d(unManage didsincide ntassociat edactivity corrupted, "The acti vity assoc iated with this case is corrup ted."); | |||||
| 493 | ErrorM essages.Ad d(unManage didsincide ntinvalids tate, "Inc ident stat e is inval id."); | |||||
| 494 | ErrorM essages.Ad d(Incident ContractDo esNotHaveA llotments, "The cont ract does not have e nough allo tments. Th e case can not be cr eated agai nst this c ontract.") ; | |||||
| 495 | ErrorM essages.Ad d(unManage didsincide ntcontract detaildoes notmatchco ntract, "T he contrac t line ite m is not i n the spec ified cont ract."); | |||||
| 496 | ErrorM essages.Ad d(Incident MissingCon tractDetai l, "The co ntract det ail id is missing.") ; | |||||
| 497 | ErrorM essages.Ad d(Incident InvalidCon tractState ForCreate, "The case can not b e created against th is contrac t because of the con tract stat e."); | |||||
| 498 | ErrorM essages.Ad d(InvalidP rimaryCont actBasedOn Account, " The specif ied contac t doesn't belong to the accoun t selected as the cu stomer. Sp ecify a co ntact that belongs t o the sele cted accou nt, and th en try aga in."); | |||||
| 499 | ErrorM essages.Ad d(InvalidP rimaryCont actBasedOn Contact, " The specif ied contac t doesn't belong to the contac t that was specified in the cu stomer fie ld. Remove the value from the contact fi eld, or se lect a con tact assoc iated to t he selecte d customer , and then try again ."); | |||||
| 500 | ErrorM essages.Ad d(InvalidE ntitlement ForSelecte dCustomerO rProduct, "Select an active en titlement that belon gs to the specified customer, contact, o r product, and then try again. "); | |||||
| 501 | ErrorM essages.Ad d(InvalidE ntitlement Contacts, "The speci fied conta ct isn’t a ssociated with the s elected cu stomer."); | |||||
| 502 | ErrorM essages.Ad d(Entitlem entAlready InCanceled State, "Yo u can't ca ncel an en titlement when it's in the Can celed stat e."); | |||||
| 503 | ErrorM essages.Ad d(Disabled CRMGoingOf fline, "Mi crosoft Dy namics 365 functiona lity is no t availabl e while Of fline Sync hronizatio n is occur ing"); | |||||
| 504 | ErrorM essages.Ad d(Disabled CRMGoingOn line, "Mic rosoft Dyn amics 365 functional ity is not available while Onl ine Synchr onization is occurin g"); | |||||
| 505 | ErrorM essages.Ad d(Disabled CRMAddinLo adFailure, "An error occurred loading Mi crosoft Dy namics 365 functiona lity. Try restarting Outlook. Contact yo ur system administra tor if err ors persis t."); | |||||
| 506 | ErrorM essages.Ad d(Disabled CRMClientV ersionLowe r, "You're running a version o f Microsof t Dynamics 365 for O utlook tha t is not s upported f or offline mode with this Micr osoft Dyna mics 365 o rganizatio n {0}. You 'll need t o upgrade to a compa tible vers ion of Dyn amics 365 for Outloo k. Make su re your cu rrent vers ion of Dyn amics 365 for Outloo k is suppo rted for u pgrading t o the comp atible ver sion."); | |||||
| 507 | ErrorM essages.Ad d(Disabled CRMClientV ersionHigh er, "The M icrosoft D ynamics 36 5 server n eeds to be upgraded before Mic rosoft Dyn amics 365 client can be used. Contact yo ur system administra tor for as sistance." ); | |||||
| 508 | ErrorM essages.Ad d(Disabled CRMPostOff lineUpgrad e, "Micros oft Dynami cs 365 fun ctionality is not av ailable un til the Mi crosoft Dy namics 365 client is taken bac k online") ; | |||||
| 509 | ErrorM essages.Ad d(Disabled CRMOnlineC rmNotAvail able, "Mic rosoft Dyn amics 365 server is not availa ble"); | |||||
| 510 | ErrorM essages.Ad d(GoOfflin eMetadataV ersionsMis match, "Cl ient and S erver meta data versi ons are di fferent du e to new c ustomizati on on the server. Pl ease try g oing offli ne again." ); | |||||
| 511 | ErrorM essages.Ad d(GoOfflin eGetBCPFil eException , "Dynamic s 365 serv er was not able to p rocess you r request. Contact y our system administr ator for a ssistance and try go ing offlin e again.") ; | |||||
| 512 | ErrorM essages.Ad d(GoOfflin eDbSizeLim it, "You h ave exceed ed the sto rage limit for your offline da tabase. Yo u must red uce the am ount of da ta to be t aken offli ne by chan ging your Local Data Groups.") ; | |||||
| 513 | ErrorM essages.Ad d(GoOfflin eServerFai ledGenerat eBCPFile, "Dynamics 365 server was not a ble to gen erate BCP file. Cont act your s ystem admi nistrator for assist ance and t ry going o ffline aga in."); | |||||
| 514 | ErrorM essages.Ad d(GoOfflin eBCPFileSi ze, "Clien t was not able to do wnload BCP file. Con tact your system adm inistrator for assis tance and try going offline ag ain."); | |||||
| 515 | ErrorM essages.Ad d(GoOfflin eFailedMov eData, "Cl ient was n ot able to download data. Cont act your s ystem admi nistrator for assist ance and t ry going o ffline aga in."); | |||||
| 516 | ErrorM essages.Ad d(GoOfflin eFailedPre pareMsde, "Prepare M SDE failed . Contact your syste m administ rator for assistance and try g oing offli ne again." ); | |||||
| 517 | ErrorM essages.Ad d(GoOfflin eFailedRel oadMetadat aCache, "T he Microso ft Dynamic s 365 for Outlook wa s unable t o go offli ne. Please try going offline a gain."); | |||||
| 518 | ErrorM essages.Ad d(DoNotTra ckItem, "S elected it em will no t be track ed."); | |||||
| 519 | ErrorM essages.Ad d(GoOfflin eFileWasDe leted, "Da ta file wa s deleted on server before it was sent t o client." ); | |||||
| 520 | ErrorM essages.Ad d(GoOfflin eEmptyFile ForDelete, "Data fil e for dele te is empt y."); | |||||
| 521 | ErrorM essages.Ad d(InvalidF orOfficeGr aph, "One or both en tities are not enabl ed for off icegraph a nd they ca nnot be us ed for off icegraph." ); | |||||
| 522 | ErrorM essages.Ad d(Trending DocumentsO npremiseDe ploymentEr ror, "The Trending D ocuments d ashboard c omponent i sn't suppo rted by yo ur company 's Microso ft Office service.") ; | |||||
| 523 | ErrorM essages.Ad d(Trending DocumentsI ntegration DisabledEr ror, "Tren ding Docum ents is di sabled for your Micr osoft Dyna mics 365 a ccount."); | |||||
| 524 | ErrorM essages.Ad d(Trending DocumentsD ataRetriev alFailure, "We can't get to th e trending documents . Try agai n later.") ; | |||||
| 525 | ErrorM essages.Ad d(Relation shipNotCre atedForOff iceGraphEr ror, "This relations hip cannot be create d because neither en tity is en abled for officegrap h."); | |||||
| 526 | ErrorM essages.Ad d(Relation shipNotUpd atedForOff iceGraphEr ror, "This relations hip cannot be update d for offi cegraph be cause neit her entity is enable d for offi cegraph.") ; | |||||
| 527 | ErrorM essages.Ad d(Attribut eNotCreate dForOffice GraphError , "This at tribute ca nnot be cr eated sinc e support to enable attribute for office graph is n ot availab le."); | |||||
| 528 | ErrorM essages.Ad d(Attribut eNotUpdate dForOffice GraphError , "This at tribute ca nnot be up dated sinc e support to enable attribute for office graph is n ot availab le."); | |||||
| 529 | ErrorM essages.Ad d(OfficeGr aphDisable dError, "D ocument Re commendati ons has be en disable d for this organizat ion."); | |||||
| 530 | ErrorM essages.Ad d(BaseAttr ibuteNameN otPresentE rror, "Bas eAttribute name shou ld be pres ent in con dition xml ."); | |||||
| 531 | ErrorM essages.Ad d(Operator CodeNotPre sentError, "Operator Code shoul d be prese nt in cond ition xml. "); | |||||
| 532 | ErrorM essages.Ad d(InvalidB aseAttribu teError, " Invalid Ba se attribu te."); | |||||
| 533 | ErrorM essages.Ad d(Matching AttributeN ameNotNull Error, "Ma tching att ribute nam e should b e null sin gle entity rule."); | |||||
| 534 | ErrorM essages.Ad d(InvalidM atchingAtt ributeErro r, "Invali d Matching attribute ."); | |||||
| 535 | ErrorM essages.Ad d(BaseMatc hingAttrib uteNotSame Error, "Ba se and Mat ching attr ibute shou ld be of s ame type." ); | |||||
| 536 | ErrorM essages.Ad d(InvalidO peratorCod eError, "I nvalid ope rator code ."); | |||||
| 537 | ErrorM essages.Ad d(InvalidS imilarityR uleStateEr ror, "Inva lid simila rity rule state."); | |||||
| 538 | ErrorM essages.Ad d(Trending DocumentsI ntegration TurnedOffE rror, "Tre nding Docu ments is t urned off. Please co ntact your system ad ministrato r to turn this featu re on in S ystem Sett ings."); | |||||
| 539 | ErrorM essages.Ad d(OfficeGr aphSiteNot Configured , "No defa ult ShareP oint site has been c onfigured. "); | |||||
| 540 | ErrorM essages.Ad d(Trending DocumentsO fflineMode Error, "Tr ending Doc uments isn 't availab le in offl ine mode." ); | |||||
| 541 | ErrorM essages.Ad d(S2SNotCo nfigured, "Office Gr aph Integr ation reli es on serv er-based S harePoint integratio n. To use this featu re, enable server-ba sed integr ation and have at le ast one ac tive Share Point site ."); | |||||
| 542 | ErrorM essages.Ad d(GraphApi S2SSetupFa ilureExcep tion, "Ser ver to Ser ver Authen tication w ith Exchan ge for Off ice Graph Api is no t set up." ); | |||||
| 543 | ErrorM essages.Ad d(Provisio nRIAccessN otAllowed, "You need system ad ministrato r privileg es to turn Relations hip Insigh ts on for your organ ization.") ; | |||||
| 544 | ErrorM essages.Ad d(InvalidR equestData Format, "T he updated configura tion inclu des invali d data."); | |||||
| 545 | ErrorM essages.Ad d(InvalidF eatureType , "The fea ture type isn’t vali d."); | |||||
| 546 | ErrorM essages.Ad d(UpdateRI Organizati onDataAcce ssNotAllow ed, "This feature co nfiguratio n can only be update d by a sys tem admini strator.") ; | |||||
| 547 | ErrorM essages.Ad d(Deprovis ionRIAcces sNotAllowe d, "Relati onship Ins ights can only be tu rned off b y a system administr ator."); | |||||
| 548 | ErrorM essages.Ad d(Activity AnalysisOr ganization UpdateErro r, "Relati onship Ana lytics org anization setting ca n only be enabled if Relations hip Analyt ics soluti on is inst alled."); | |||||
| 549 | ErrorM essages.Ad d(Relation shipIntell igenceSDKI nvocationE rror, "You need Dyna mics 365 ( online) to use the R elationshi p Insights SDK."); | |||||
| 550 | ErrorM essages.Ad d(EnableRI FeatureNot Allowed, " You need s ystem admi nistrator privileges to update Relations hip Insigh ts tenant informatio n."); | |||||
| 551 | ErrorM essages.Ad d(DisableR IFeatureNo tAllowed, "You need system adm inistrator privilege s to turn Relationsh ip Insight s off for your organ ization.") ; | |||||
| 552 | ErrorM essages.Ad d(RINotPro visioned, "Relations hip Insigh ts hasn’t been turne d on for y our organi zation {0} ."); | |||||
| 553 | ErrorM essages.Ad d(ErrorOnG etRIProvis ionStatus, "We can’t get the R elationshi p Insights provision ing status for organ ization ID {0}. Exce ption deta ils {1}.") ; | |||||
| 554 | ErrorM essages.Ad d(ErrorOnG etRITenant EndPoint, "We can’t get the Re lationship Insights tenant end point info rmation fo r organiza tion ID {0 }. Excepti on details {1}."); | |||||
| 555 | ErrorM essages.Ad d(ErrorOnS tartOfRIPr ovision, " We can’t s tart provi sioning fo r organiza tion ID {0 }. Excepti on details {1}."); | |||||
| 556 | ErrorM essages.Ad d(ErrorOnT enantVerif yUpdate, " We can’t v erify or u pdate tena nt informa tion for o rganizatio n ID {0}. Exception details {1 }."); | |||||
| 557 | ErrorM essages.Ad d(ErrorOnG etRecord, "There was an error fetching a record fo r table {0 }. Excepti on details {1}."); | |||||
| 558 | ErrorM essages.Ad d(ErrorOnQ ryProperty BagCollect ion, "The query didn ’t return all {0} co lumns."); | |||||
| 559 | ErrorM essages.Ad d(ErrorPro pertyBagCo llectionMi ssedColumn , "{0} col umn for ta ble {1} is missing." ); | |||||
| 560 | ErrorM essages.Ad d(ErrorOnF eatureStat usChange, "We can’t enable/dis able the { 0} feature for organ ization Id {1}. Exce ption deta ils {2}.") ; | |||||
| 561 | ErrorM essages.Ad d(ErrorFet chingBaseU rl, "We ca n't fetch base URL f or organiz ation Id { 0}. Except ion detail s {1}"); | |||||
| 562 | ErrorM essages.Ad d(ErrorFet chingRIPro visionStat us, "We ca n't fetch RI provisi oning stat us for org anization Id {0}. Ex ception de tails {1}" ); | |||||
| 563 | ErrorM essages.Ad d(Relation shipInsigh tsFeatureD isableErro r, "Relati onship Ins ights feat ure can't be disable d"); | |||||
| 564 | ErrorM essages.Ad d(Relation shipInsigh tsFeatureN otEnabledE rror, "Rel ationship Insights f eature is not enable d"); | |||||
| 565 | ErrorM essages.Ad d(ClientVe rsionTooLo w, "This v ersion of Outlook cl ient isn't compatibl e with you r Dynamics 365 organ ization (c urrent ver sion {0} i s too low) ."); | |||||
| 566 | ErrorM essages.Ad d(ClientVe rsionTooHi gh, "This version of Outlook c lient isn' t compatib le with yo ur Dynamic s 365 orga nization ( current ve rsion {0} is too hig h)."); | |||||
| 567 | ErrorM essages.Ad d(Insuffic ientAccess Mode, "Use r does not have read -write acc ess to the Dynamics 365 organi zation."); | |||||
| 568 | ErrorM essages.Ad d(ClientSe rverDateTi meMismatch , "Your co mputer's d ate/time i s out of s ync with t he server by more th an 5 minut es."); | |||||
| 569 | ErrorM essages.Ad d(ClientSe rverEmailA ddressMism atch, "The Outlook e mail addre ss and Dyn amics 365 user email address d o not matc h."); | |||||
| 570 | ErrorM essages.Ad d(Federate dEndpointE rror, "The username ADFS endpo int is ena bled, whic h is block ing the in tended aut henticatio n endpoint from bein g reached. "); | |||||
| 571 | ErrorM essages.Ad d(Communic ationBlock ed, "Commu nication i s blocked due to a s ocket exce ption."); | |||||
| 572 | ErrorM essages.Ad d(UserDoes NotHaveAcc essToTheTe nant, "Use r does not have acce ss to the tenant."); | |||||
| 573 | ErrorM essages.Ad d(Configur edUserIsDi fferentTha nSuppliedU ser, "Conf igured use r is diffe rent than supplied u ser."); | |||||
| 574 | ErrorM essages.Ad d(OutlookC lientConfi gActionFai led, "Dyna mics 365 O utlook cli ent config uration ac tion faile d."); | |||||
| 575 | ErrorM essages.Ad d(Organiza tionUIDepr ecated, "T he Organiz ationUI en tity is de precated. It has bee n replaced by the Sy stemForm e ntity."); | |||||
| 576 | ErrorM essages.Ad d(IsKitCan notBeNull, "Attribut e iskit ca nnot be nu ll"); | |||||
| 577 | ErrorM essages.Ad d(SqlMaxRe cursionExc eeded, "Th e maximum recursion has reache d before s tatement c ompletion. "); | |||||
| 578 | ErrorM essages.Ad d(unManage didssqltim eouterror, "SQL time out expire d."); | |||||
| 579 | ErrorM essages.Ad d(unManage didssqlerr or, "Gener ic SQL err or."); | |||||
| 580 | ErrorM essages.Ad d(unManage didsrcsync invalidfil tererror, "Invalid f ilter spec ified."); | |||||
| 581 | ErrorM essages.Ad d(unManage didsrcsync notprimary , "Cannot sync: not the primar y OutlookS ync client ."); | |||||
| 582 | ErrorM essages.Ad d(unManage didsrcsync noprimary, "No prima ry client exists."); | |||||
| 583 | ErrorM essages.Ad d(unManage didsrcsync noclient, "Client do es not exi st."); | |||||
| 584 | ErrorM essages.Ad d(unManage didsrcsync methodnone , "Synchro nization t asks can’t be perfor med on thi s computer since the synchroni zation met hod is set to None." ); | |||||
| 585 | ErrorM essages.Ad d(unManage didsrcsync filternoac cess, "Can not go off line: miss ing access rights on required entity."); | |||||
| 586 | ErrorM essages.Ad d(InvalidO fflineOper ation, "Op eration no t valid wh en offline ."); | |||||
| 587 | ErrorM essages.Ad d(unManage didsrcsync sqlgeneric error, "un Managedids rcsyncsqlg enericerro r"); | |||||
| 588 | ErrorM essages.Ad d(unManage didsrcsync sqlpausede rror, "unM anagedidsr csyncsqlpa usederror" ); | |||||
| 589 | ErrorM essages.Ad d(unManage didsrcsync sqlstopped error, "un Managedids rcsyncsqls toppederro r"); | |||||
| 590 | ErrorM essages.Ad d(unManage didsrcsync subscripti onowner, " The caller id does n ot match t he subscri ption owne r id. Onl y subscrip tion owner s may perf orm subscr iption ope rations.") ; | |||||
| 591 | ErrorM essages.Ad d(unManage didsrcsync invalidsub scription, "The spec ified subs cription d oes not ex ist."); | |||||
| 592 | ErrorM essages.Ad d(unManage didsrcsync soapparsee rror, "unM anagedidsr csyncsoapp arseerror" ); | |||||
| 593 | ErrorM essages.Ad d(unManage didsrcsync soapreader ror, "unMa nagedidsrc syncsoapre aderror"); | |||||
| 594 | ErrorM essages.Ad d(unManage didsrcsync soapfaulte rror, "unM anagedidsr csyncsoapf aulterror" ); | |||||
| 595 | ErrorM essages.Ad d(unManage didsrcsync soapserver error, "un Managedids rcsyncsoap servererro r"); | |||||
| 596 | ErrorM essages.Ad d(unManage didsrcsync soapsendfa iled, "unM anagedidsr csyncsoaps endfailed" ); | |||||
| 597 | ErrorM essages.Ad d(unManage didsrcsync soapconnfa iled, "unM anagedidsr csyncsoapc onnfailed" ); | |||||
| 598 | ErrorM essages.Ad d(unManage didsrcsync soapgenfai led, "unMa nagedidsrc syncsoapge nfailed"); | |||||
| 599 | ErrorM essages.Ad d(unManage didsrcsync msxmlfaile d, "unMana gedidsrcsy ncmsxmlfai led"); | |||||
| 600 | ErrorM essages.Ad d(unManage didsrcsync invalidsyn ctime, "Th e specifie d sync tim e is inval id. Sync times must not be ea rlier than those ret urned by t he previou s sync. P lease rein itialize y our subscr iption."); | |||||
| 601 | ErrorM essages.Ad d(Attachme ntBlocked, "The atta chment is either not a valid t ype or is too large. It cannot be upload ed or down loaded."); | |||||
| 602 | ErrorM essages.Ad d(unManage didsarticl etemplatei snotactive , "KB arti cle templa te is inac tive."); | |||||
| 603 | ErrorM essages.Ad d(unManage didsfullte xtoperatio nfailed, " Full text operation failed."); | |||||
| 604 | ErrorM essages.Ad d(unManage didsarticl etemplatec ontainsart icles, "Ca nnot chang e article template b ecause the re are kno wledge bas e articles using it. "); | |||||
| 605 | ErrorM essages.Ad d(unManage didsqueueo rganizatio nidnotmatc h, "Caller s' organiz ation Id d oes not ma tch busine ssunit's o rganizatio n Id."); | |||||
| 606 | ErrorM essages.Ad d(unManage didsqueuem issingbusi nessunitid , "Missing businessu nitid."); | |||||
| 607 | ErrorM essages.Ad d(SubjectD oesNotExis t, "Subjec t does not exist."); | |||||
| 608 | ErrorM essages.Ad d(SubjectL oopBeingCr eated, "Cr eating thi s parental associati on would c reate a lo op in Subj ects hiera rchy."); | |||||
| 609 | ErrorM essages.Ad d(SubjectL oopExists, "Loop exi sts in the subjects hierarchy. "); | |||||
| 610 | ErrorM essages.Ad d(InvalidS ubmitFromU napprovedA rticle, "Y ou are try ing to sub mit an art icle that has a stat us of unap proved. Yo u can only submit an article w ith the st atus of dr aft."); | |||||
| 611 | ErrorM essages.Ad d(InvalidU npublishFr omUnapprov edArticle, "You are trying to unpublish an article that has a status o f unapprov ed. You ca n only unp ublish an article wi th the sta tus of pub lish."); | |||||
| 612 | ErrorM essages.Ad d(InvalidA pproveFrom DraftArtic le, "You a re trying to approve an articl e that has a status of draft. You can on ly approve an articl e with the status of unapprove d."); | |||||
| 613 | ErrorM essages.Ad d(InvalidU npublishFr omDraftArt icle, "You are tryin g to unpub lish an ar ticle that has a sta tus of dra ft. You ca n only unp ublish an article wi th the sta tus of pub lished."); | |||||
| 614 | ErrorM essages.Ad d(InvalidA pproveFrom PublishedA rticle, "Y ou are try ing to app rove an ar ticle that has a sta tus of pub lished. Yo u can only approve a n article with the s tatus of u napproved. "); | |||||
| 615 | ErrorM essages.Ad d(InvalidS ubmitFromP ublishedAr ticle, "Yo u are tryi ng to subm it an arti cle that h as a statu s of publi shed. You can only s ubmit an a rticle wit h the stat us of draf t."); | |||||
| 616 | ErrorM essages.Ad d(QuoteRev iseExistin gActiveQuo te, "Quote cannot be revised a s there al ready exis ts another quote in Draft/Acti ve state a nd with sa me quote n umber."); | |||||
| 617 | ErrorM essages.Ad d(BaseCurr encyNotDel etable, "T he base cu rrency of an organiz ation cann ot be dele ted."); | |||||
| 618 | ErrorM essages.Ad d(CannotDe leteBaseMo neyCalcula tionAttrib ute, "The base money calculati on Attribu te is not valid for deletion") ; | |||||
| 619 | ErrorM essages.Ad d(InvalidE xchangeRat e, "The ex change rat e is inval id."); | |||||
| 620 | ErrorM essages.Ad d(InvalidC urrency, " The curren cy is inva lid."); | |||||
| 621 | ErrorM essages.Ad d(Currency CannotBeNu llDueToNon NullMoneyF ields, "Th e currency cannot be null."); | |||||
| 622 | ErrorM essages.Ad d(CannotUp dateProduc tCurrency, "The curr ency of th e product cannot be updated be cause ther e are asso ciated pri ce list it ems with p ricing met hod percen tage."); | |||||
| 623 | ErrorM essages.Ad d(InvalidP riceLevelC urrencyFor PricingMet hod, "The currency o f the pric e list nee ds to matc h the curr ency of th e product for pricin g method p ercentage. "); | |||||
| 624 | ErrorM essages.Ad d(Discount TypeAndPri ceLevelCur rencyNotEq ual, "The currency o f the disc ount needs to match the curren cy of the price list for disco unt type a mount."); | |||||
| 625 | ErrorM essages.Ad d(Currency RequiredFo rDiscountT ypeAmount, "The curr ency canno t be null for discou nt type am ount."); | |||||
| 626 | ErrorM essages.Ad d(RecordAn dPricelist CurrencyNo tEqual, "T he currenc y of the r ecord does not match the curre ncy of the price lis t."); | |||||
| 627 | ErrorM essages.Ad d(Exchange RateOfBase CurrencyNo tUpdatable , "The exc hange rate of the ba se currenc y cannot b e modified ."); | |||||
| 628 | ErrorM essages.Ad d(BaseCurr encyCannot BeDeactiva ted, "The base curre ncy cannot be deacti vated."); | |||||
| 629 | ErrorM essages.Ad d(Duplicat eIsoCurren cyCode, "C annot inse rt duplica te currenc y record. Currency w ith the sa me currenc y code alr eady exist in the sy stem."); | |||||
| 630 | ErrorM essages.Ad d(InvalidI soCurrency Code, "Inv alid ISO c urrency co de."); | |||||
| 631 | ErrorM essages.Ad d(Percenta geDiscount CannotHave Currency, "Currency cannot be set when d iscount ty pe is perc entage."); | |||||
| 632 | ErrorM essages.Ad d(RecordAn dOpportuni tyCurrency NotEqual, "The curre ncy of the record do es not mat ch the cur rency of t he price l ist."); | |||||
| 633 | ErrorM essages.Ad d(QuoteAnd SalesOrder CurrencyNo tEqual, "T he currenc y of the r ecord does not match the curre ncy of the price lis t."); | |||||
| 634 | ErrorM essages.Ad d(SalesOrd erAndInvoi ceCurrency NotEqual, "The curre ncy of the record do es not mat ch the cur rency of t he price l ist."); | |||||
| 635 | ErrorM essages.Ad d(BaseCurr encyOverfl ow, "The e xchange ra te set for the curre ncy specif ied in thi s record h as generat ed a value for {0} t hat is lar ger than t he maximum allowed f or the bas e currency ({1})."); | |||||
| 636 | ErrorM essages.Ad d(BaseCurr encyUnderf low, "The exchange r ate set fo r the curr ency speci fied in th is record has genera ted a valu e for {0} that is sm aller than the minim um allowed for the b ase curren cy ({1})." ); | |||||
| 637 | ErrorM essages.Ad d(Currency NotEqual, "The curre ncy of the {0} does not match the curren cy of the {1}."); | |||||
| 638 | ErrorM essages.Ad d(UnitNoNa me, "The u nit name c annot be n ull."); | |||||
| 639 | ErrorM essages.Ad d(unManage didsinvoic ecloseapid eprecated, "The Invo ice Close API is dep recated. I t has been replaced by the Pay and Cance l APIs."); | |||||
| 640 | ErrorM essages.Ad d(ProductD oesNotExis t, "The pr oduct does not exist ."); | |||||
| 641 | ErrorM essages.Ad d(ProductK itLoopBein gCreated, "You can’t add a kit to itself ."); | |||||
| 642 | ErrorM essages.Ad d(ProductK itLoopExis ts, "Loop exists in the kit hi erarchy.") ; | |||||
| 643 | ErrorM essages.Ad d(Discount Percent, " The discou nt type do es not sup port 'amou nt' discou nts."); | |||||
| 644 | ErrorM essages.Ad d(Discount Amount, "T he discoun t type doe s not supp ort 'perce ntage' dis counts."); | |||||
| 645 | ErrorM essages.Ad d(Discount AmountAndP ercent, "B oth 'amoun t' and 'pe rcentage' cannot be set."); | |||||
| 646 | ErrorM essages.Ad d(EntityIs Unlocked, "This enti ty is alre ady unlock ed."); | |||||
| 647 | ErrorM essages.Ad d(EntityIs Locked, "T his entity is alread y locked." ); | |||||
| 648 | ErrorM essages.Ad d(BaseUnit DoesNotExi st, "The b ase unit d oes not ex ist."); | |||||
| 649 | ErrorM essages.Ad d(UnitDoes NotExist, "The unit does not e xist."); | |||||
| 650 | ErrorM essages.Ad d(UnitLoop BeingCreat ed, "Using this base unit woul d create a loop in t he unit hi erarchy.") ; | |||||
| 651 | ErrorM essages.Ad d(UnitLoop Exists, "L oop exists in the un it hierarc hy."); | |||||
| 652 | ErrorM essages.Ad d(Quantity Readonly, "Do not mo dify the Q uantity fi eld when y ou update the primar y unit."); | |||||
| 653 | ErrorM essages.Ad d(BaseUnit NotNull, " Do not use a base un it as the value for a primary unit. This value sho uld always be null." ); | |||||
| 654 | ErrorM essages.Ad d(UnitNotI nSchedule, "The unit does not exist in t he specifi ed unit sc hedule."); | |||||
| 655 | ErrorM essages.Ad d(MissingO pportunity Id, "The o pportunity id is mis sing or in valid."); | |||||
| 656 | ErrorM essages.Ad d(ProductI nvalidUnit , "The spe cified uni t is not v alid for t his produc t."); | |||||
| 657 | ErrorM essages.Ad d(ProductM issingUomS heduleId, "The unit schedule i d of the p roduct is missing.") ; | |||||
| 658 | ErrorM essages.Ad d(MissingP riceLevelI d, "The pr ice level id is miss ing."); | |||||
| 659 | ErrorM essages.Ad d(MissingP roductId, "The produ ct id is m issing."); | |||||
| 660 | ErrorM essages.Ad d(InvalidP ricePerUni t, "The pr ice per un it is inva lid."); | |||||
| 661 | ErrorM essages.Ad d(PriceLev elNameExis ts, "The n ame alread y exists." ); | |||||
| 662 | ErrorM essages.Ad d(PriceLev elNoName, "The name can not be null."); | |||||
| 663 | ErrorM essages.Ad d(MissingU omId, "The unit id i s missing. "); | |||||
| 664 | ErrorM essages.Ad d(ProductI nvalidPric eLevelPerc entage, "T he pricing percentag e must be greater th an or equa l to zero and less t han 100000 ."); | |||||
| 665 | ErrorM essages.Ad d(InvalidB aseUnit, " The base u nit does n ot belong to the sch edule."); | |||||
| 666 | ErrorM essages.Ad d(MissingU omSchedule Id, "The u nit schedu le id is m issing."); | |||||
| 667 | ErrorM essages.Ad d(ParentRe adOnly, "T he parent is read on ly and can not be edi ted."); | |||||
| 668 | ErrorM essages.Ad d(Duplicat eProductPr iceLevel, "This prod uct and un it combina tion has a price for this pric e list."); | |||||
| 669 | ErrorM essages.Ad d(ProductI nvalidQuan tityDecima l, "The nu mber of de cimal plac es on the quantity i s invalid. "); | |||||
| 670 | ErrorM essages.Ad d(ProductP roductNumb erExists, "The speci fied produ ct ID conf licts with the produ ct ID of a n existing record. S pecify a d ifferent p roduct ID and try ag ain."); | |||||
| 671 | ErrorM essages.Ad d(ProductN oProductNu mber, "The product n umber can not be nul l."); | |||||
| 672 | ErrorM essages.Ad d(unManage didscannot deactivate pricelevel , "The pri ce level c annot be d eactivated because i t is the d efault pri ce level o f an accou nt, contac t or produ ct."); | |||||
| 673 | ErrorM essages.Ad d(BaseUnit NotDeletab le, "The b ase unit o f a schedu le cannot be deleted ."); | |||||
| 674 | ErrorM essages.Ad d(Discount RangeOverl ap, "The n ew quantit ies overla p the rang e covered by existin g quantiti es."); | |||||
| 675 | ErrorM essages.Ad d(LowQuant ityGreater ThanHighQu antity, "L ow quantit y should b e less tha n high qua ntity."); | |||||
| 676 | ErrorM essages.Ad d(LowQuant ityLessTha nZero, "Lo w quantity should be greater t han zero." ); | |||||
| 677 | ErrorM essages.Ad d(InvalidS ubstituteP roduct, "A product c an't have a relation ship with itself."); | |||||
| 678 | ErrorM essages.Ad d(InvalidK itProduct, "You cann ot add a p roduct kit to itself . Select a different product o r product kit."); | |||||
| 679 | ErrorM essages.Ad d(InvalidK it, "The p roduct is not a kit. "); | |||||
| 680 | ErrorM essages.Ad d(InvalidQ uantityDec imalCode, "The quant ity decima l code is invalid.") ; | |||||
| 681 | ErrorM essages.Ad d(CannotSp ecifyBothP roductAndP roductDesc , "You can not set bo th 'produc tid' and ' productdes cription' for the sa me record. "); | |||||
| 682 | ErrorM essages.Ad d(CannotSp ecifyBothU omAndProdu ctDesc, "Y ou cannot set both ' uomid' and 'productd escription ' for the same recor d."); | |||||
| 683 | ErrorM essages.Ad d(unManage didsstated oesnotexis t, "The st ate is not valid for this obje ct."); | |||||
| 684 | ErrorM essages.Ad d(FiscalSe ttingsAlre adyUpdated , "Fiscal settings h ave alread y been upd ated. They can be up dated only once."); | |||||
| 685 | ErrorM essages.Ad d(unManage didssalesp eopleinval idfiscalca lendartype , "Invalid fiscal ca lendar typ e"); | |||||
| 686 | ErrorM essages.Ad d(unManage didssalesp eopleinval idfiscalpe riodindex, "Invalid fiscal per iod index" ); | |||||
| 687 | ErrorM essages.Ad d(SalesPeo pleManager NotAllowed , "Territo ry manager cannot be long to ot her territ ory"); | |||||
| 688 | ErrorM essages.Ad d(unManage didssalesp eopleinval idterritor yobjecttyp e, "Territ ories cann ot be retr ieved by t his kind o f object") ; | |||||
| 689 | ErrorM essages.Ad d(SalesPeo pleDuplica teCalendar NotAllowed , "Fiscal calendar a lready exi sts for th is salespe rson/year" ); | |||||
| 690 | ErrorM essages.Ad d(unManage didssalesp eopledupli catecalend arfound, " Duplicate fiscal cal endars fou nd for thi s salesper son/year") ; | |||||
| 691 | ErrorM essages.Ad d(SalesPeo pleEmptyEf fectiveDat e, "Fiscal calendar effective date canno t be empty "); | |||||
| 692 | ErrorM essages.Ad d(SalesPeo pleEmptySa lesPerson, "Parent s alesperson cannot be empty"); | |||||
| 693 | ErrorM essages.Ad d(InvalidN umberGroup Format, "I nvalid inp ut string for number groupforma t. The inp ut string should con tain an ar ray of int egers. Eve ry element in the va lue array should be between on e and nine , except f or the las t element, which can be zero." ); | |||||
| 694 | ErrorM essages.Ad d(BaseUomN ameNotSpec ified, "ba seuomname not specif ied"); | |||||
| 695 | ErrorM essages.Ad d(InvalidA ctivityPar tyAddress, "One or m ore activi ty parties have inva lid addres ses."); | |||||
| 696 | ErrorM essages.Ad d(FaxNoSup port, "The fax canno t be sent because th is type of attachmen t is not a llowed or does not s upport vir tual print ing to a f ax device. "); | |||||
| 697 | ErrorM essages.Ad d(FaxNoDat a, "The fa x cannot b e sent bec ause there is no dat a to send. Specify a t least on e of the f ollowing: a cover pa ge, a fax attachment , a fax de scription. "); | |||||
| 698 | ErrorM essages.Ad d(InvalidP artyMappin g, "Invali d party ma pping."); | |||||
| 699 | ErrorM essages.Ad d(InvalidA ctivityXml , "Invalid Xml in an activity config fil e."); | |||||
| 700 | ErrorM essages.Ad d(Activity InvalidObj ectTypeCod e, "An Inv alid type code was s pecified b y the thro wing metho d"); | |||||
| 701 | ErrorM essages.Ad d(Activity InvalidSes sionToken, "An Inval id session token was passed in to the thr owing meth od"); | |||||
| 702 | ErrorM essages.Ad d(FaxServi ceNotRunni ng, "The M icrosoft W indows fax service i s not runn ing or is not instal led."); | |||||
| 703 | ErrorM essages.Ad d(FaxSendB locked, "T he recipie nt is mark ed as \"Do Not Fax\" ."); | |||||
| 704 | ErrorM essages.Ad d(NoDialNu mber, "The re is no f ax number specified on the fax or for th e recipien t."); | |||||
| 705 | ErrorM essages.Ad d(TooManyR ecipients, "Sending to multipl e recipien ts is not supported. "); | |||||
| 706 | ErrorM essages.Ad d(MissingR ecipient, "The fax m ust have a recipient before it can be se nt."); | |||||
| 707 | ErrorM essages.Ad d(unManage didsactivi tynotrouta ble, "This type of a ctivity is not routa ble"); | |||||
| 708 | ErrorM essages.Ad d(unManage didsactivi tyduration doesnotmat ch, "Activ ity durati on does no t match st art/end ti me"); | |||||
| 709 | ErrorM essages.Ad d(unManage didsactivi tyinvalidd uration, " Invalid ac tivity dur ation"); | |||||
| 710 | ErrorM essages.Ad d(unManage didsactivi tyinvalidt imeformat, "Invalid activity t ime, check format"); | |||||
| 711 | ErrorM essages.Ad d(unManage didsactivi tyinvalidr egardingob ject, "Inv alid activ ity regard ing object , it proba bly does n ot exist") ; | |||||
| 712 | ErrorM essages.Ad d(Activity PartyObjec tTypeNotAl lowed, "Ca nnot creat e activity party of specified object typ e."); | |||||
| 713 | ErrorM essages.Ad d(unManage didsactivi tyinvalidp artyobject type, "Act ivity part y object t ype is inv alid"); | |||||
| 714 | ErrorM essages.Ad d(unManage didsactivi typartyobj ectidortyp emissing, "Activity party obje ct Id or t ype is mis sing"); | |||||
| 715 | ErrorM essages.Ad d(unManage didsactivi tyinvalido bjecttype, "Activity regarding object ty pe is inva lid"); | |||||
| 716 | ErrorM essages.Ad d(unManage didsactivi tyobjectid ortypemiss ing, "Acti vity regar ding objec t Id or ty pe is miss ing"); | |||||
| 717 | ErrorM essages.Ad d(unManage didsactivi tyinvalidt ype, "Inva lid activi ty type co de"); | |||||
| 718 | ErrorM essages.Ad d(unManage didsactivi tyinvalids tate, "Inv alid activ ity state" ); | |||||
| 719 | ErrorM essages.Ad d(Contract InvalidDat esForRenew , "The sta rt date / end date o f this ren ewed contr act can no t overlap with any o ther invoi ced / acti ve contrac ts with th e same con tract numb er."); | |||||
| 720 | ErrorM essages.Ad d(unManage didscontra ctinvalids tartdatefo rrenewedco ntract, "T he start d ate of the renewed c ontract ca n not be e arlier tha n the end date of th e originat ing contra ct."); | |||||
| 721 | ErrorM essages.Ad d(unManage didscontra cttemplate abbreviati onexists, "The value for abbre viation al ready exis ts."); | |||||
| 722 | ErrorM essages.Ad d(Contract InvalidPri ce, "The p rice is in valid."); | |||||
| 723 | ErrorM essages.Ad d(unManage didscontra ctinvalidt otalallotm ents, "The totalallo tments is invalid.") ; | |||||
| 724 | ErrorM essages.Ad d(Contract InvalidCon tract, "Th e contract is invali d."); | |||||
| 725 | ErrorM essages.Ad d(unManage didscontra ctinvalido wner, "The owner of the contra ct is inva lid."); | |||||
| 726 | ErrorM essages.Ad d(Contract InvalidCon tractTempl ate, "The contract t emplate is invalid." ); | |||||
| 727 | ErrorM essages.Ad d(Contract InvalidBil lToCustome r, "The bi ll-to cust omer of th e contract is invali d."); | |||||
| 728 | ErrorM essages.Ad d(Contract InvalidBil lToAddress , "The bil l-to addre ss of the contract i s invalid. "); | |||||
| 729 | ErrorM essages.Ad d(Contract InvalidSer viceAddres s, "The se rvice addr ess of the contract is invalid ."); | |||||
| 730 | ErrorM essages.Ad d(Contract InvalidCus tomer, "Th e customer of the co ntract is invalid.") ; | |||||
| 731 | ErrorM essages.Ad d(Contract NoLineItem s, "There are no con tract line items for this cont ract."); | |||||
| 732 | ErrorM essages.Ad d(Contract TemplateNo Abbreviati on, "Abbre viation ca n not be N ULL."); | |||||
| 733 | ErrorM essages.Ad d(unManage didscontra ctopencase sexist, "T here are o pen cases against th is contrac t line ite m."); | |||||
| 734 | ErrorM essages.Ad d(unManage didscontra ctlineitem doesnotexi st, "The c ontract li ne item do es not exi st."); | |||||
| 735 | ErrorM essages.Ad d(unManage didscontra ctdoesnote xist, "The contract does not e xist."); | |||||
| 736 | ErrorM essages.Ad d(Contract TemplateDo esNotExist , "The con tract temp late does not exist. "); | |||||
| 737 | ErrorM essages.Ad d(Contract InvalidAll otmentType Code, "The allotment type code is invali d."); | |||||
| 738 | ErrorM essages.Ad d(Contract LineInvali dState, "T he state o f the cont ract line item is in valid."); | |||||
| 739 | ErrorM essages.Ad d(Contract InvalidSta te, "The s tate of th e contract is invali d."); | |||||
| 740 | ErrorM essages.Ad d(Contract InvalidSta rtEndDate, "Start da te / end d ate or bil ling start date / bi lling end date is in valid."); | |||||
| 741 | ErrorM essages.Ad d(unManage didscontra ctaccountm issing, "A ccount is required t o save a c ontract.") ; | |||||
| 742 | ErrorM essages.Ad d(unManage didscontra ctunexpect ed, "An un expected e rror occur red in Con tracts."); | |||||
| 743 | ErrorM essages.Ad d(unManage didsevaler rorformatl ookupparam eter, "Err or happens when eval uating WFP M_FORMAT_L OOKUP para meter."); | |||||
| 744 | ErrorM essages.Ad d(unManage didsevaler rorformatt imezonecod eparameter , "unManag edidsevale rrorformat timezoneco deparamete r"); | |||||
| 745 | ErrorM essages.Ad d(unManage didsevaler rorformatd ecimalpara meter, "Er ror happen s when eva luating WF PM_FORMAT_ DECIMAL pa rameter.") ; | |||||
| 746 | ErrorM essages.Ad d(unManage didsevaler rorformati ntegerpara meter, "Er ror happen s when eva luating WF PM_FORMAT_ INTEGER pa rameter.") ; | |||||
| 747 | ErrorM essages.Ad d(unManage didsevaler rorobjectt ype, "Erro r happens when evalu ating WFPM _GetObject Type param eter."); | |||||
| 748 | ErrorM essages.Ad d(unManage didsevaler rorqueueid parameter, "unManage didsevaler rorqueueid parameter" ); | |||||
| 749 | ErrorM essages.Ad d(unManage didsevaler rorformatp icklistpar ameter, "E rror happe ns when ev aluating W FPM_FORMAT _PICKLIST parameter. "); | |||||
| 750 | ErrorM essages.Ad d(unManage didsevaler rorformatb ooleanpara meter, "Er ror happen s when eva luating WF PM_FORMAT_ BOOLEAN pa rameter.") ; | |||||
| 751 | ErrorM essages.Ad d(unManage didsevaler rorformatd atetimepar ameter, "E rror happe ns when ev aluating W FPM_FORMAT _DATETIME parameter. "); | |||||
| 752 | ErrorM essages.Ad d(unManage didsevaler rorisnulll istparamet er, "unMan agedidseva lerrorisnu lllistpara meter"); | |||||
| 753 | ErrorM essages.Ad d(unManage didsevaler rorinlistp arameter, "unManaged idsevalerr orinlistpa rameter"); | |||||
| 754 | ErrorM essages.Ad d(unManage didsevaler rorsetacti vityparty, "unManage didsevaler rorsetacti vityparty" ); | |||||
| 755 | ErrorM essages.Ad d(unManage didsevaler rorremovef romactivit yparty, "u nManagedid sevalerror removefrom activitypa rty"); | |||||
| 756 | ErrorM essages.Ad d(unManage didsevaler rorappendt oactivityp arty, "unM anagedidse valerrorap pendtoacti vityparty" ); | |||||
| 757 | ErrorM essages.Ad d(unManage didsevalti mererrorca lculatesch eduletime, "Failed t o calculat e the sche dule time for the ti mer action ."); | |||||
| 758 | ErrorM essages.Ad d(unManage didsevalti merinvalid parametern umber, "In valid para meters for Timer act ion."); | |||||
| 759 | ErrorM essages.Ad d(unManage didsevalcr eateshould have2param eters, "Cr eate actio n should h ave 2 para meters."); | |||||
| 760 | ErrorM essages.Ad d(unManage didsevaler rorcreate, "Error in create up date."); | |||||
| 761 | ErrorM essages.Ad d(unManage didsevaler rorcontain parameter, "Error oc curred whe n evaluati ng a WFPM_ CONTAIN pa rameter.") ; | |||||
| 762 | ErrorM essages.Ad d(unManage didsevaler rorendwith parameter, "Error oc curred whe n evaluati ng a WFPM_ END_WITH p arameter." ); | |||||
| 763 | ErrorM essages.Ad d(unManage didsevaler rorbeginwi thparamete r, "Error occurred w hen evalua ting a WFP M_BEGIN_WI TH paramet er."); | |||||
| 764 | ErrorM essages.Ad d(unManage didsevaler rorstrlenp arameter, "Error occ urred when evaluatin g a WFPM_S TRLEN para meter."); | |||||
| 765 | ErrorM essages.Ad d(unManage didsevaler rorsubstrp arameter, "Error occ urred when evaluatin g a WFPM_S UBSTR para meter."); | |||||
| 766 | ErrorM essages.Ad d(unManage didsevaler rorinvalid recipient, "Invalid email reci pient."); | |||||
| 767 | ErrorM essages.Ad d(unManage didsevaler rorinparam eter, "Err or occurre d when eva luating a WFPM_IN pa rameter.") ; | |||||
| 768 | ErrorM essages.Ad d(unManage didsevaler rorbetween parameter, "Error oc curred whe n evaluati ng a WFPM_ BETWEEN pa rameter.") ; | |||||
| 769 | ErrorM essages.Ad d(unManage didsevaler rorneqpara meter, "Er ror occurr ed when ev aluating a WFPM_NEQ parameter. "); | |||||
| 770 | ErrorM essages.Ad d(unManage didsevaler roreqparam eter, "Err or occurre d when eva luating a WFPM_EQ pa rameter.") ; | |||||
| 771 | ErrorM essages.Ad d(unManage didsevaler rorleqpara meter, "Er ror occurr ed when ev aluating a WFPM_LEQ parameter. "); | |||||
| 772 | ErrorM essages.Ad d(unManage didsevaler rorltparam eter, "Err or occurre d when eva luating a WFPM_LT pa rameter.") ; | |||||
| 773 | ErrorM essages.Ad d(unManage didsevaler rorgeqpara meter, "Er ror occurr ed when ev aluating a WFPM_GEQ parameter. "); | |||||
| 774 | ErrorM essages.Ad d(unManage didsevaler rorgtparam eter, "Err or occurre d when eva luating a WFPM_GT pa rameter.") ; | |||||
| 775 | ErrorM essages.Ad d(unManage didsevaler rorabspara meter, "Er ror occurr ed when ev aluating a WFPM_ABS parameter. "); | |||||
| 776 | ErrorM essages.Ad d(unManage didsevaler rorinvalid parameter, "Invalid parameter. "); | |||||
| 777 | ErrorM essages.Ad d(unManage didsevalge nericerror , "Evaluat ion error. "); | |||||
| 778 | ErrorM essages.Ad d(unManage didsevaler rorinciden tqueue, "F ailed to e valuate IN CIDENT_QUE UE."); | |||||
| 779 | ErrorM essages.Ad d(unManage didsevaler rorhalt, " Error in a ction halt ."); | |||||
| 780 | ErrorM essages.Ad d(unManage didsevaler rorexec, " Error in a ction exec ."); | |||||
| 781 | ErrorM essages.Ad d(unManage didsevaler rorposturl , "Error i n action p osturl."); | |||||
| 782 | ErrorM essages.Ad d(unManage didsevaler rorsetstat e, "Error in action set state. "); | |||||
| 783 | ErrorM essages.Ad d(unManage didsevaler rorroute, "Error in action rou te."); | |||||
| 784 | ErrorM essages.Ad d(unManage didsevaler rorupdate, "Error in action up date."); | |||||
| 785 | ErrorM essages.Ad d(unManage didsevaler rorassign, "Error in action as sign."); | |||||
| 786 | ErrorM essages.Ad d(unManage didsevaler roremailte mplate, "E rror in ac tion email template. "); | |||||
| 787 | ErrorM essages.Ad d(unManage didsevaler rorsendema il, "Error in action send emai l."); | |||||
| 788 | ErrorM essages.Ad d(unManage didsevaler rorunhandl eincident, "Error in action un handle inc ident."); | |||||
| 789 | ErrorM essages.Ad d(unManage didsevaler rorhandlei ncident, " Error in a ction hand le inciden t."); | |||||
| 790 | ErrorM essages.Ad d(unManage didsevaler rorcreatei ncident, " Error in a ction crea te inciden t."); | |||||
| 791 | ErrorM essages.Ad d(unManage didsevaler rornoteatt achment, " Error in a ction note attachmen t."); | |||||
| 792 | ErrorM essages.Ad d(unManage didsevaler rorcreaten ote, "Erro r in actio n create n ote."); | |||||
| 793 | ErrorM essages.Ad d(unManage didsevaler rorunhandl eactivity, "Error in action un handle act ivity."); | |||||
| 794 | ErrorM essages.Ad d(unManage didsevaler rorhandlea ctivity, " Error in a ction hand le activit y."); | |||||
| 795 | ErrorM essages.Ad d(unManage didsevaler roractivit yattachmen t, "Error in action activity a ttachment. "); | |||||
| 796 | ErrorM essages.Ad d(unManage didsevaler rorcreatea ctivity, " Error in a ction crea te activit y."); | |||||
| 797 | ErrorM essages.Ad d(unManage didsevaler rordivided byzero, "D ivided by zero."); | |||||
| 798 | ErrorM essages.Ad d(unManage didsevaler rormodulus parameter, "Error oc curred whe n evaluati ng a WFPM_ MODULUR pa rameter.") ; | |||||
| 799 | ErrorM essages.Ad d(unManage didsevaler rormodulus parameters , "Modulus parameter can have only two s ubparamete rs."); | |||||
| 800 | ErrorM essages.Ad d(unManage didsevaler rordivisio nparameter , "Error o ccurred wh en evaluat ing a WFPM _DIVISION parameter. "); | |||||
| 801 | ErrorM essages.Ad d(unManage didsevaler rordivisio nparameter s, "Divisi on paramet er can hav e only two subparame ters."); | |||||
| 802 | ErrorM essages.Ad d(unManage didsevaler rormultipl icationpar ameter, "E rror occur red when e valuating a WFPM_MUL TIPLICATIO N paramete r."); | |||||
| 803 | ErrorM essages.Ad d(unManage didsevaler rorsubtrac tionparame ter, "Erro r occurred when eval uating a W FPM_SUBTRA CTION para meter."); | |||||
| 804 | ErrorM essages.Ad d(unManage didsevaler roraddpara meter, "Er ror occurr ed when ev aluating a WFPM_ADD parameter. "); | |||||
| 805 | ErrorM essages.Ad d(unManage didsevalmi ssselectqu ery, "Miss ing the qu ery subpar ameter in a select p arameter." ); | |||||
| 806 | ErrorM essages.Ad d(unManage didsevalch angetypeer ror, "Chan ge type er ror."); | |||||
| 807 | ErrorM essages.Ad d(unManage didsevalal lcompleted , "Evaluat ion comple ted and st op further processin g."); | |||||
| 808 | ErrorM essages.Ad d(unManage didsevalme tabaseattr ibutenotma tchquery, "The speci fied refat tributeid does not t he query f or a WFPM_ SELECT par ameter."); | |||||
| 809 | ErrorM essages.Ad d(unManage didsevalme tabaseenti tynotmatch query, "Th e specifie d refentit yid does n ot the que ry for a W FPM_SELECT parameter ."); | |||||
| 810 | ErrorM essages.Ad d(unManage didsevalpr opertyisnu ll, "The r equired pr operty of the object was not s et."); | |||||
| 811 | ErrorM essages.Ad d(unManage didsevalme tabaseattr ibutenotfo und, "The specified metabase a ttribute d oes not ex ist."); | |||||
| 812 | ErrorM essages.Ad d(unManage didsevalme tabaseenti tycompound keys, "The specified metabase object has compound keys. We d o not supp ort compou nd-key ent ities yet. "); | |||||
| 813 | ErrorM essages.Ad d(unManage didsevalpr opertynotf ound, "The required property o f the obje ct was not found."); | |||||
| 814 | ErrorM essages.Ad d(unManage didsevalob jectnotfou nd, "The r equired ob ject does not exist. "); | |||||
| 815 | ErrorM essages.Ad d(unManage didsevalco mpleted, " Evaluation completed ."); | |||||
| 816 | ErrorM essages.Ad d(unManage didsevalab orted, "Ev aluation a borted."); | |||||
| 817 | ErrorM essages.Ad d(unManage didsevalal laborted, "Evaluatio n aborted and stop f urther pro cessing.") ; | |||||
| 818 | ErrorM essages.Ad d(unManage didsevalas signshould have4param eters, "As sign actio n should h ave 4 para meters."); | |||||
| 819 | ErrorM essages.Ad d(unManage didsevalup dateshould have3param eters, "Up date actio n should h ave 3 para meters."); | |||||
| 820 | ErrorM essages.Ad d(unManage didscpdecr yptfailed, "Decrypti on of the password f ailed."); | |||||
| 821 | ErrorM essages.Ad d(unManage didscpencr yptfailed, "Encrypti on of the supplied p assword fa iled."); | |||||
| 822 | ErrorM essages.Ad d(unManage didscpbadp assword, " Incorrect password f or the spe cified cus tomer port al user.") ; | |||||
| 823 | ErrorM essages.Ad d(unManage didscpuser doesnotexi st, "The c ustomer po rtal user does not e xist, or t he passwor d was inco rrect."); | |||||
| 824 | ErrorM essages.Ad d(unManage didsdataac cessunexpe cted, "Une xpected er ror in dat a access. DB Connec tion may n ot have be en opened successful ly."); | |||||
| 825 | ErrorM essages.Ad d(unManage didspropba gattribute alreadyset , "One of the attrib utes passe d has alre ady been s et"); | |||||
| 826 | ErrorM essages.Ad d(unManage didspropba gattribute notnullabl e, "One of the attri butes pass ed cannot be NULL"); | |||||
| 827 | ErrorM essages.Ad d(unManage didsrsprop bagdbinfoa lreadyset, "The DB i nfo for th e recordse t property bag has a lready bee n set."); | |||||
| 828 | ErrorM essages.Ad d(unManage didsrsprop bagdbinfon otset, "Th e DB info for the re cordset pr operty bag has not b een set.") ; | |||||
| 829 | ErrorM essages.Ad d(unManage didspropba gcolloutof range, "Th e bag inde x in the c ollection was out of range."); | |||||
| 830 | ErrorM essages.Ad d(unManage didspropba gnullprope rty, "The specified property w as null in the prope rty bag.") ; | |||||
| 831 | ErrorM essages.Ad d(unManage didspropba gnointerfa ce, "The p roperty ba g interfac e could no t be found ."); | |||||
| 832 | ErrorM essages.Ad d(unManage dMissingOb jectType, "Object ty pe must be specified for one o f the attr ibutes."); | |||||
| 833 | ErrorM essages.Ad d(unManage dObjectTyp eUnexpecte d, "Object type was specified for one of the attri butes that does not allow it." ); | |||||
| 834 | ErrorM essages.Ad d(Business UnitCannot BeDisabled , "Busines s unit can not be dis abled: no active use r with sys tem admin role exist s outside of busines s unit sub tree."); | |||||
| 835 | ErrorM essages.Ad d(Business UnitIsNotD isabledAnd CannotBeDe leted, "No t disabled business unit canno t be delet ed."); | |||||
| 836 | ErrorM essages.Ad d(Business UnitHasChi ldAndCanno tBeDeleted , "Busines s unit has a child b usiness un it and can not be del eted."); | |||||
| 837 | ErrorM essages.Ad d(Business UnitDefaul tTeamOwnsR ecords, "B usiness un it default team owns records. Business u nit cannot be delete d."); | |||||
| 838 | ErrorM essages.Ad d(RootBusi nessUnitCa nnotBeDisa bled, "Roo t Business unit cann ot be disa bled."); | |||||
| 839 | ErrorM essages.Ad d(unManage didspropba gpropertyn otfound, " The specif ied proper ty was not found in the proper ty bag."); | |||||
| 840 | ErrorM essages.Ad d(ReadOnly UserNotSup ported, "T he read-on ly access mode is no t supporte d"); | |||||
| 841 | ErrorM essages.Ad d(SupportU serCannotB eCreateNor Updated, " The suppor t user can not be upd ated"); | |||||
| 842 | ErrorM essages.Ad d(Delegate dAdminUser CannotBeCr eateNorUpd ated, "The delegated admin use r cannot b e updated" ); | |||||
| 843 | ErrorM essages.Ad d(Applicat ionUserCan notBeUpdat ed, "The u ser repres enting an OAuth appl ication ca nnot not b e updated" ); | |||||
| 844 | ErrorM essages.Ad d(Applicat ionNotRegi steredWith Deployment , "Applica tion needs to be reg istered an d enabled at deploym ent level before it can be cre ated for t his organi zation"); | |||||
| 845 | ErrorM essages.Ad d(InvalidO AuthToken, "The OAut h token is invalid") ; | |||||
| 846 | ErrorM essages.Ad d(ExpiredO AuthToken, "The OAut h token ha s expired" ); | |||||
| 847 | ErrorM essages.Ad d(CannotAs signRolesT oSupportUs er, "The s upport use r are read -only, whi ch cannot be assigne d with oth er roles") ; | |||||
| 848 | ErrorM essages.Ad d(CannotMa keSelfRead OnlyUser, "You canno t make you rself a re ad only us er"); | |||||
| 849 | ErrorM essages.Ad d(CannotMa keReadOnly User, "A u ser cannot be made a read only user if t hey are th e last non read only user that has the S ystem Admi nistrator Role."); | |||||
| 850 | ErrorM essages.Ad d(unManage didsbizmgm tcantchang eorgname, "The organ ization na me cannot be changed ."); | |||||
| 851 | ErrorM essages.Ad d(Multiple Organizati onsNotAllo wed, "Only one organ ization an d one root business are allowe d."); | |||||
| 852 | ErrorM essages.Ad d(UserSett ingsInvali dAdvancedF indStartup Mode, "Inv alid advan ced find s tartup mod e."); | |||||
| 853 | ErrorM essages.Ad d(UserSett ingsInvali dSearchExp erienceVal ue, "Inval id search experience value."); | |||||
| 854 | ErrorM essages.Ad d(CannotMo difySpecia lUser, "No modificat ions to th e 'SYSTEM' or 'INTEG RATION' us er are per mitted."); | |||||
| 855 | ErrorM essages.Ad d(unManage didsbizmgm tcannotadd localuser, "A local user canno t be added to the Dy namics 365 ."); | |||||
| 856 | ErrorM essages.Ad d(CannotMo difySysAdm in, "The S ystem Admi nistrator Role canno t be modif ied."); | |||||
| 857 | ErrorM essages.Ad d(CannotMo difySuppor tUser, "Th e Support User Role cannot be modified." ); | |||||
| 858 | ErrorM essages.Ad d(CannotAs signSuppor tUser, "Th e Support User Role cannot be assigned t o a user." ); | |||||
| 859 | ErrorM essages.Ad d(CannotRe moveFromSu pportUser, "A user c annot be r emoved fro m the Supp ort User R ole."); | |||||
| 860 | ErrorM essages.Ad d(CannotCr eateFromSu pportUser, "Cannot c reate a ro le from Su pport User Role."); | |||||
| 861 | ErrorM essages.Ad d(CannotUp dateSuppor tUser, "Ca nnot updat e the Supp ort User R ole."); | |||||
| 862 | ErrorM essages.Ad d(CannotRe moveFromSy sAdmin, "A user cann ot be remo ved from t he System Administra tor Role i f they are the only user that has the ro le."); | |||||
| 863 | ErrorM essages.Ad d(CannotDi sableSysAd min, "A us er cannot be disable d if they are the on ly user th at has the System Ad ministrato r Role."); | |||||
| 864 | ErrorM essages.Ad d(CannotDe leteSysAdm in, "The S ystem Admi nistrator Role canno t be delet ed."); | |||||
| 865 | ErrorM essages.Ad d(CannotDe leteSuppor tUser, "Th e Support User Role cannot be deleted.") ; | |||||
| 866 | ErrorM essages.Ad d(CannotDe leteSystem Customizer , "The Sys tem Custom izer Role cannot be deleted.") ; | |||||
| 867 | ErrorM essages.Ad d(CannotCr eateSyncUs erObjectMi ssing, "Th is is not a valid Mi crosoft On line Servi ces ID for this orga nization." ); | |||||
| 868 | ErrorM essages.Ad d(CannotUp dateSyncUs erIsLicens edField, " The proper ty IsLicen sed cannot be modifi ed."); | |||||
| 869 | ErrorM essages.Ad d(CannotCr eateSyncUs erIsLicens edField, " The proper ty IsLicen sed cannot be set fo r Sync Use r Creation ."); | |||||
| 870 | ErrorM essages.Ad d(CannotUp dateSyncUs erIsSyncWi thDirector yField, "T he propert y IsSyncUs erWithDire ctory cann ot be modi fied."); | |||||
| 871 | ErrorM essages.Ad d(CannotUp dateAzureA ctiveDirec toryObject IdField, " The proper ty AzureAc tiveDirect oryObjectI d cannot b e modified ."); | |||||
| 872 | ErrorM essages.Ad d(unManage didsbizmgm tcannotrea daccountco ntrol, "In sufficient permissio ns to the specified Active Dir ectory use r. Contact your Syst em Adminis trator."); | |||||
| 873 | ErrorM essages.Ad d(UserAlre adyExists, "The spec ified Acti ve Directo ry user al ready exis ts as a Dy namics 365 user."); | |||||
| 874 | ErrorM essages.Ad d(unManage didsbizmgm tusersetti ngsnotcrea ted, "The specified user's set tings have not yet b een create d."); | |||||
| 875 | ErrorM essages.Ad d(ObjectNo tFoundInAD , "The obj ect does n ot exist i n active d irectory." ); | |||||
| 876 | ErrorM essages.Ad d(GenericA ctiveDirec toryError, "Active D irectory E rror."); | |||||
| 877 | ErrorM essages.Ad d(GenericA zureActive DirectoryE rror, "Azu re Active Directory Error."); | |||||
| 878 | ErrorM essages.Ad d(unManage didsbizmgm tnoparentb usiness, " The specif ied busine ss does no t have a p arent busi ness."); | |||||
| 879 | ErrorM essages.Ad d(ParentUs erDoesNotE xist, "The parent us er Id is i nvalid."); | |||||
| 880 | ErrorM essages.Ad d(ChildUse rDoesNotEx ist, "The child user Id is inv alid."); | |||||
| 881 | ErrorM essages.Ad d(UserLoop BeingCreat ed, "You c annot set the select ed user as the manag er for thi s user bec ause the s elected us er is eith er already the manag er or is i n the user 's immedia te managem ent hierar chy. Eith er select another us er to be t he manager or do not update th e record." ); | |||||
| 882 | ErrorM essages.Ad d(UserLoop Exists, "A manager f or this us er cannot be set bec ause an ex isting rel ationship in the man agement hi erarchy is causing a circular relationsh ip. This is usually caused by a manual edit of th e Microsof t Dynamics 365 datab ase. To fi x this, th e hierarch y in the d atabase mu st be chan ged to rem ove the ci rcular rel ationship. "); | |||||
| 883 | ErrorM essages.Ad d(ParentBu sinessDoes NotExist, "The paren t business Id is inv alid."); | |||||
| 884 | ErrorM essages.Ad d(ChildBus inessDoesN otExist, " The child businesss Id is inva lid."); | |||||
| 885 | ErrorM essages.Ad d(Business Management LoopBeingC reated, "C reating th is parenta l associat ion would create a l oop in bus iness hier archy."); | |||||
| 886 | ErrorM essages.Ad d(Business Management LoopExists , "Loop ex ists in th e business hierarchy ."); | |||||
| 887 | ErrorM essages.Ad d(Business Management InvalidUse rId, "The user Id(s) [{0}] is invalid.") ; | |||||
| 888 | ErrorM essages.Ad d(unManage didsbizmgm tuserdoesn othavepare nt, "This user does not have a parent us er."); | |||||
| 889 | ErrorM essages.Ad d(unManage didsbizmgm tcannotena bleprovisi on, "This is a provi sioned roo t-business . Use IBiz Provision: :Enable to enable th is root-bu siness."); | |||||
| 890 | ErrorM essages.Ad d(unManage didsbizmgm tcannotena blebusines s, "This i s a sub-bu siness. Us e IBizMerc hant::Enab le to enab le this su b-business ."); | |||||
| 891 | ErrorM essages.Ad d(unManage didsbizmgm tcannotdis ableprovis ion, "This is a prov isioned ro ot-busines s. Use IBi zProvision ::Disable to disable this root -business. "); | |||||
| 892 | ErrorM essages.Ad d(unManage didsbizmgm tcannotdis ablebusine ss, "This business u nit cannot be disabl ed."); | |||||
| 893 | ErrorM essages.Ad d(unManage didsbizmgm tcannotdel eteprovisi on, "This is a provi sioned roo t-business . Use IBiz Provision: :Delete to delete th is root-bu siness."); | |||||
| 894 | ErrorM essages.Ad d(unManage didsbizmgm tcannotdel etebusines s, "This i s a sub-bu siness. Us e IBizMerc hant::Dele te to dele te this su b-business ."); | |||||
| 895 | ErrorM essages.Ad d(unManage didsbizmgm tcannotrem ovepartner shipdefaul tuser, "Th e default user of a partnershi p can not be removed ."); | |||||
| 896 | ErrorM essages.Ad d(unManage didsbizmgm tpartnersh ipnotinpen dingstatus , "The par tnership h as been ac cepted or declined." ); | |||||
| 897 | ErrorM essages.Ad d(unManage didsbizmgm tdefaultus ernotinpar tnerbusine ss, "The d efault use r is not f rom partne r business ."); | |||||
| 898 | ErrorM essages.Ad d(unManage didsbizmgm tcallernot inpartnerb usiness, " The caller is not fr om partner business. "); | |||||
| 899 | ErrorM essages.Ad d(unManage didsbizmgm tdefaultus ernotinpri marybusine ss, "The d efault use r is not f rom primar y business ."); | |||||
| 900 | ErrorM essages.Ad d(unManage didsbizmgm tcallernot inprimaryb usiness, " The caller is not fr om primary business. "); | |||||
| 901 | ErrorM essages.Ad d(unManage didsbizmgm tpartnersh ipalreadye xists, "A partnershi p between specified primary bu siness and partner b usiness al ready exis ts."); | |||||
| 902 | ErrorM essages.Ad d(unManage didsbizmgm tprimarysa measpartne r, "The pr imary busi ness is th e same as partner bu siness."); | |||||
| 903 | ErrorM essages.Ad d(unManage didsbizmgm tmisspartn erbusiness , "The par tnership p artner bus iness was unexpected ly missing ."); | |||||
| 904 | ErrorM essages.Ad d(unManage didsbizmgm tmissprima rybusiness , "The par tnership p rimary bus iness was unexpected ly missing ."); | |||||
| 905 | ErrorM essages.Ad d(InvalidA ccessModeT ransition, "The clie nt access license ca nnot be ch anged beca use the us er does no t have a M icrosoft D ynamics 36 5 Online l icense. To change th e access m ode, you m ust first add a lice nse for th is user in the Micro soft Onlin e Service portal."); | |||||
| 906 | ErrorM essages.Ad d(MissingT eamName, " The team n ame was un expectedly missing." ); | |||||
| 907 | ErrorM essages.Ad d(TeamAdmi nistratorM issedPrivi lege, "The team admi nistrator does not h ave privil ege read t eam."); | |||||
| 908 | ErrorM essages.Ad d(CannotDi sableTenan tAdmin, "U sers who a re granted the Micro soft Offic e 365 Glob al adminis trator or Service ad ministrato r role can not be dis abled in M icrosoft D ynamics 36 5 Online. You must f irst remov e the Micr osoft Offi ce 365 rol e, and the n try agai n."); | |||||
| 909 | ErrorM essages.Ad d(CannotRe moveTenant AdminFromS ysAdminRol e, "Users who are gr anted the Microsoft Office 365 Global ad ministrato r or Servi ce adminis trator rol e cannot b e removed from the M icrosoft D ynamics 36 5 System A dministrat or securit y role. Yo u must fir st remove the Micros oft Office 365 role, and then try again. "); | |||||
| 910 | ErrorM essages.Ad d(UserNotI nParentHie rarchy, "T he user is not in pa rent user' s business hierarchy ."); | |||||
| 911 | ErrorM essages.Ad d(unManage didsbizmgm tusercanno tbeownpare nt, "The u ser can no t be its o wn parent user."); | |||||
| 912 | ErrorM essages.Ad d(unManage didsbizmgm tcannotmov edefaultus er, "unMan agedidsbiz mgmtcannot movedefaul tuser"); | |||||
| 913 | ErrorM essages.Ad d(unManage didsbizmgm tbusinessp arentdiffm erchant, " The busine ss is not in the sam e merchant as parent business. "); | |||||
| 914 | ErrorM essages.Ad d(unManage didsbizmgm tdefaultus ernotinbus iness, "Th e default user is no t in the b usiness.") ; | |||||
| 915 | ErrorM essages.Ad d(unManage didsbizmgm tmissparen tbusiness, "The pare nt busines s was unex pectedly m issing."); | |||||
| 916 | ErrorM essages.Ad d(unManage didsbizmgm tmissuserd omainname, "The user 's domain name was u nexpectedl y missing. "); | |||||
| 917 | ErrorM essages.Ad d(unManage didsbizmgm tmissbusin essname, " The busine ss name wa s unexpect edly missi ng."); | |||||
| 918 | ErrorM essages.Ad d(unManage didsxmlinv alidread, "A field t hat is not valid for read was specified" ); | |||||
| 919 | ErrorM essages.Ad d(unManage didsxmlinv alidfield, "An inval id value w as passed in for a f ield"); | |||||
| 920 | ErrorM essages.Ad d(unManage didsxmlinv alidentity attributes , "Invalid attribute s"); | |||||
| 921 | ErrorM essages.Ad d(unManage didsxmlune xpected, " An unexpec ted error has occurr ed"); | |||||
| 922 | ErrorM essages.Ad d(unManage didsxmlpar seerror, " A parse er ror was en countered in the XML "); | |||||
| 923 | ErrorM essages.Ad d(unManage didsxmlinv alidcollec tionname, "The colle ction name specified is incorr ect"); | |||||
| 924 | ErrorM essages.Ad d(unManage didsxmlinv alidupdate , "A field that is n ot valid f or update was specif ied"); | |||||
| 925 | ErrorM essages.Ad d(unManage didsxmlinv alidcreate , "A field that is n ot valid f or create was specif ied"); | |||||
| 926 | ErrorM essages.Ad d(unManage didsxmlinv alidentity name, "The entity na me specifi ed is inco rrect"); | |||||
| 927 | ErrorM essages.Ad d(unManage didsnotesn oattachmen t, "The sp ecified no te has no attachment s."); | |||||
| 928 | ErrorM essages.Ad d(unManage didsnotesl oopbeingcr eated, "Cr eating thi s parental associati on would c reate a lo op in the annotation hierarchy ."); | |||||
| 929 | ErrorM essages.Ad d(unManage didsnotesl oopexists, "A loop e xists in t he annotat ion hierar chy."); | |||||
| 930 | ErrorM essages.Ad d(unManage didsnotesa lreadyatta ched, "The specified note is a lready att ached to a n object." ); | |||||
| 931 | ErrorM essages.Ad d(unManage didsnotesn otedoesnot exist, "Th e specifie d note doe s not exis t."); | |||||
| 932 | ErrorM essages.Ad d(Duplicat edPrivileg e, "Privil ege {0} is duplicate d."); | |||||
| 933 | ErrorM essages.Ad d(MemberHa sAlreadyBe enContacte d, "This m arketing l ist member was not c ontacted, because th e member h as previou sly receiv ed this co mmunicatio n."); | |||||
| 934 | ErrorM essages.Ad d(TeamInWr ongBusines s, "The te am belongs to a diff erent busi ness unit than the r ole."); | |||||
| 935 | ErrorM essages.Ad d(unManage didsrolesd eletenonpa rentrole, "Cannot de lete a rol e that is inherited from a par ent busine ss."); | |||||
| 936 | ErrorM essages.Ad d(InvalidP rivilegeDe pth, "Inva lid privil ege depth. "); | |||||
| 937 | ErrorM essages.Ad d(unManage didsrolesi nvalidrole name, "The role name is invali d."); | |||||
| 938 | ErrorM essages.Ad d(UserInWr ongBusines s, "The us er belongs to a diff erent busi ness unit than the r ole."); | |||||
| 939 | ErrorM essages.Ad d(unManage didsrolesm issprivid, "The priv ilege ID w as unexpec tedly miss ing."); | |||||
| 940 | ErrorM essages.Ad d(unManage didsrolesm issrolenam e, "The ro le name wa s unexpect edly missi ng."); | |||||
| 941 | ErrorM essages.Ad d(unManage didsrolesm issbusines sid, "The role's bus iness unit ID was un expectedly missing." ); | |||||
| 942 | ErrorM essages.Ad d(unManage didsrolesm issroleid, "The role ID was un expectedly missing." ); | |||||
| 943 | ErrorM essages.Ad d(unManage didsrolesi nvalidtemp lateid, "I nvalid rol e template ID."); | |||||
| 944 | ErrorM essages.Ad d(RoleAlre adyExists, "A role w ith the sp ecified na me already exists.") ; | |||||
| 945 | ErrorM essages.Ad d(unManage didsrolesr oledoesnot exist, "Th e specifie d role doe s not exis t."); | |||||
| 946 | ErrorM essages.Ad d(unManage didsrolesi nvalidrole id, "Inval id role ID ."); | |||||
| 947 | ErrorM essages.Ad d(unManage didsrolesi nvalidrole data, "The role data is invali d."); | |||||
| 948 | ErrorM essages.Ad d(QueryBui lderNoEnti tyKey, "Th e specifie d entityke y was not found."); | |||||
| 949 | ErrorM essages.Ad d(QueryBui lderInvali dAttribute Value, "Th e attribut e value pr ovided is invalid.") ; | |||||
| 950 | ErrorM essages.Ad d(QueryBui lderSerial izationInv alidIsQuic kFindFilte r, "The on ly valid v alues for isquickfin dfields at tribute ar e 'true', 'false', ' 1', and '0 '."); | |||||
| 951 | ErrorM essages.Ad d(QueryBui lderAttrib uteCannotB eGroupByAn dAggregate , "An attr ibute can either be an aggrega te or a Gr oup By but not both" ); | |||||
| 952 | ErrorM essages.Ad d(SqlArith meticOverf lowError, "A SQL ari thmetic ov erflow err or occurre d"); | |||||
| 953 | ErrorM essages.Ad d(QueryBui lderInvali dDateGroup ing, "An i nvalid val ue was spe cified for dategroup ing."); | |||||
| 954 | ErrorM essages.Ad d(QueryBui lderAliasR equiredFor AggregateO rderBy, "A n alias is required for an ord er clause for an agg regate Que ry."); | |||||
| 955 | ErrorM essages.Ad d(QueryBui lderAttrib uteRequire dForNonAgg regateOrde rBy, "An a ttribute i s required for an or der clause for a non -aggregate Query."); | |||||
| 956 | ErrorM essages.Ad d(QueryBui lderAliasN otAllowedF orNonAggre gateOrderB y, "An ali as cannot be specifi ed for an order clau se for a n on-aggrega te Query. Use an att ribute."); | |||||
| 957 | ErrorM essages.Ad d(QueryBui lderAttrib uteNotAllo wedForAggr egateOrder By, "An at tribute ca nnot be sp ecified fo r an order clause fo r an aggre gate Query . Use an a lias."); | |||||
| 958 | ErrorM essages.Ad d(QueryBui lderDuplic ateAlias, "FetchXML should hav e unique a liases."); | |||||
| 959 | ErrorM essages.Ad d(QueryBui lderInvali dAggregate Attribute, "Aggregat e {0} is n ot support ed for att ribute of type {1}." ); | |||||
| 960 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idGroupBy, "The only valid val ues for gr oupby attr ibute are 'true', 'f alse', '1' , and '0'. "); | |||||
| 961 | ErrorM essages.Ad d(QueryBui lderNoAttr sDistinctC onflict, " The no-att rs tag can not be use d in conju ction with Distinct set to tru e."); | |||||
| 962 | ErrorM essages.Ad d(QueryBui lderInvali dPagingCoo kie, "Inva lid page n umber in p aging cook ie."); | |||||
| 963 | ErrorM essages.Ad d(QueryBui lderPaging OrderBy, " Order by c olumns do not match those in p aging cook ie."); | |||||
| 964 | ErrorM essages.Ad d(QueryBui lderEntiti esDontMatc h, "The en tity name specified in fetchxm l does not match the entity na me specifi ed in the Entity or Query Expr ession."); | |||||
| 965 | ErrorM essages.Ad d(QueryBui lderLinkNo deForOrder NotFound, "Convertin g from Que ry to Enti tyExpressi on failed. Link Node for order was not f ound."); | |||||
| 966 | ErrorM essages.Ad d(QueryBui lderDeseri alizeNoDoc ElemXml, " Document E lement can 't be null ."); | |||||
| 967 | ErrorM essages.Ad d(QueryBui lderDeseri alizeEmpty Xml, "Xml String can 't be null ."); | |||||
| 968 | ErrorM essages.Ad d(QueryBui lderElemen tNotFound, "A requir ed element was not s pecified." ); | |||||
| 969 | ErrorM essages.Ad d(QueryBui lderInvali dFilterTyp e, "Unsupp orted filt er type. V alid value s are 'and ', or 'or' ."); | |||||
| 970 | ErrorM essages.Ad d(QueryBui lderInvali dJoinOpera tor, "Unsu pported jo in operato r."); | |||||
| 971 | ErrorM essages.Ad d(QueryBui lderInvali dCondition Operator, "Unsupport ed conditi on operato r."); | |||||
| 972 | ErrorM essages.Ad d(QueryBui lderInvali dOrderType , "A valid order typ e must be set in the order bef ore callin g this met hod."); | |||||
| 973 | ErrorM essages.Ad d(QueryBui lderAttrib uteNotFoun d, "A requ ired attri bute was n ot specifi ed."); | |||||
| 974 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idUtcOffse t, "The ut c-offset a ttribute i s not supp orted for deserializ ation."); | |||||
| 975 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idNode, "T he element node enco untered is invalid." ); | |||||
| 976 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idGetMinAc tiveRowVer sion, "The only vali d values f or GetMinA ctiveRowVe rsion attr ibute are 'true', 'f alse', '1' , and '0'. "); | |||||
| 977 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idAggregat e, "An err or occurre d while pr ocessing A ggregates in Query") ; | |||||
| 978 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idDescendi ng, "The o nly valid values for descendin g attribut e are 'tru e', 'false ', '1', an d '0'."); | |||||
| 979 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idNoLock, "The only valid valu es for no- lock attri bute are ' true', 'fa lse', '1', and '0'." ); | |||||
| 980 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idLinkType , "The onl y valid va lues for l ink-type a ttribute a re 'natura l', 'inner ', and 'ou ter'."); | |||||
| 981 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idMapping, "The only valid val ues for ma pping are 'logical' or 'intern al' which is depreca ted."); | |||||
| 982 | ErrorM essages.Ad d(QueryBui lderDeseri alizeInval idDistinct , "The onl y valid va lues for d istinct at tribute ar e 'true', 'false', ' 1', and '0 '."); | |||||
| 983 | ErrorM essages.Ad d(QueryBui lderSerial zeLinkTopC riteria, " Fetch does not suppo rt where c lause with condition s from lin kentity.") ; | |||||
| 984 | ErrorM essages.Ad d(QueryBui lderColumn SetVersion Missing, " The specif ied column set versio n is inval id."); | |||||
| 985 | ErrorM essages.Ad d(QueryBui lderInvali dColumnSet Version, " The specif ied column set versio n is inval id."); | |||||
| 986 | ErrorM essages.Ad d(QueryBui lderAttrib utePairMis match, "At tributeFro m and Attr ibuteTo mu st be eith er both sp ecified or both omit ted."); | |||||
| 987 | ErrorM essages.Ad d(QueryBui lderByAttr ibuteNonEm pty, "Quer yByAttribu te must sp ecify a no n-empty at tribute ar ray."); | |||||
| 988 | ErrorM essages.Ad d(QueryBui lderByAttr ibuteMisma tch, "Quer yByAttribu te must sp ecify a no n-empty va lue array with the s ame number of elemen ts as in t he attribu tes array. "); | |||||
| 989 | ErrorM essages.Ad d(QueryBui lderMultip leIntersec tEntities, "More tha n one inte rsect enti ty exists between th e two enti ties speci fied."); | |||||
| 990 | ErrorM essages.Ad d(QueryBui lderReport View_Does_ Not_Exist, "A report view does not exist for the s pecified e ntity."); | |||||
| 991 | ErrorM essages.Ad d(QueryBui lderValue_ GreaterTha nZero, "A value grea ter than z ero must b e specifie d."); | |||||
| 992 | ErrorM essages.Ad d(QueryBui lderNoAlia s, "No ali as for the given ent ity in the condition was found ."); | |||||
| 993 | ErrorM essages.Ad d(QueryBui lderAlias_ Does_Not_E xist, "The specified alias for the given entity in the condi tion does not exist. "); | |||||
| 994 | ErrorM essages.Ad d(QueryBui lderInvali d_Alias, " Invalid al ias for ag gregate op eration.") ; | |||||
| 995 | ErrorM essages.Ad d(QueryBui lderInvali d_Value, " Invalid va lue specif ied for ty pe."); | |||||
| 996 | ErrorM essages.Ad d(QueryBui lderAttrib ute_With_A ggregate, "Attribute s can not be returne d when agg regate ope ration is specified. "); | |||||
| 997 | ErrorM essages.Ad d(QueryBui lderBad_Co ndition, " Incorrect filter con dition or conditions ."); | |||||
| 998 | ErrorM essages.Ad d(QueryBui lderNoAttr ibute, "Th e specifie d attribut e does not exist on this entit y."); | |||||
| 999 | ErrorM essages.Ad d(QueryBui lderNoEnti ty, "The s pecified e ntity was not found. "); | |||||
| 1000 | ErrorM essages.Ad d(QueryBui lderUnexpe cted, "An unexpected error occ urred."); | |||||
| 1001 | ErrorM essages.Ad d(QueryBui lderInvali dUpdate, " An attempt was made to update a non-upda teable fie ld."); | |||||
| 1002 | ErrorM essages.Ad d(QueryBui lderInvali dLogicalOp erator, "U nsupported logical o perator: { 0}. Accep ted values are ('and ', 'or')." ); | |||||
| 1003 | ErrorM essages.Ad d(unManage didsmetada tanorelati onship, "T he relatio nship does not exist "); | |||||
| 1004 | ErrorM essages.Ad d(Metadata NoMapping, "The mapp ing betwee n specifie d entities does not exist"); | |||||
| 1005 | ErrorM essages.Ad d(Metadata NotSeriali zable, "Th e given me tadata ent ity is not serializa ble"); | |||||
| 1006 | ErrorM essages.Ad d(unManage didsmetada tanoentity , "The spe cified ent ity does n ot exist") ; | |||||
| 1007 | ErrorM essages.Ad d(unManage didscommun icationsno senderaddr ess, "The sender doe s not have an email address on the party record"); | |||||
| 1008 | ErrorM essages.Ad d(unManage didscommun icationste mplateinva lidtemplat e, "The te mplate bod y is inval id"); | |||||
| 1009 | ErrorM essages.Ad d(unManage didscommun icationsno participat ionmask, " Participat ion type i s missing from an ac tivity"); | |||||
| 1010 | ErrorM essages.Ad d(unManage didscommun icationsno recipients , "At leas t one syst em user or queue in the organi zation mus t be a rec ipient"); | |||||
| 1011 | ErrorM essages.Ad d(EmailRec ipientNotS pecified, "The e-mai l must hav e at least one recip ient befor e it can b e sent"); | |||||
| 1012 | ErrorM essages.Ad d(unManage didscommun icationsno sender, "N o email ad dress was specified, and the c alling use r does not have an e mail addre ss set"); | |||||
| 1013 | ErrorM essages.Ad d(unManage didscommun icationsba dsender, " More than one sender specified "); | |||||
| 1014 | ErrorM essages.Ad d(unManage didscommun icationsno partyaddre ss, "Objec t address not found on party o r party is marked as non-email able"); | |||||
| 1015 | ErrorM essages.Ad d(unManage didsjourna lingmissin gincidenti d, "Incide nt Id miss ed."); | |||||
| 1016 | ErrorM essages.Ad d(unManage didsjourna lingmissin gcontactid , "Contact Id missed ."); | |||||
| 1017 | ErrorM essages.Ad d(unManage didsjourna lingmissin gopportuni tyid, "Opp ortunity I d missed." ); | |||||
| 1018 | ErrorM essages.Ad d(unManage didsjourna lingmissin gaccountid , "Account Id missed ."); | |||||
| 1019 | ErrorM essages.Ad d(unManage didsjourna lingmissin gleadid, " Lead Id mi ssed."); | |||||
| 1020 | ErrorM essages.Ad d(unManage didsjourna lingmissin geventtype , "Event t ype missed ."); | |||||
| 1021 | ErrorM essages.Ad d(unManage didsjourna linginvali deventtype , "Invalid event typ e."); | |||||
| 1022 | ErrorM essages.Ad d(unManage didsjourna lingmissin geventdire ction, "Ev ent direct ion code m issed."); | |||||
| 1023 | ErrorM essages.Ad d(unManage didsjourna lingunsupp ortedobjec ttype, "Un supported type of ob jects pass ed in oper ation."); | |||||
| 1024 | ErrorM essages.Ad d(SdkEntit yDoesNotSu pportMessa ge, "The m ethod bein g invoked does not s upport pro vided enti ty type.") ; | |||||
| 1025 | ErrorM essages.Ad d(Opportun ityAlready InOpenStat e, "The op portunity is already in the op en state." ); | |||||
| 1026 | ErrorM essages.Ad d(LeadAlre adyInClose dState, "T he lead is already c losed."); | |||||
| 1027 | ErrorM essages.Ad d(LeadAlre adyInOpenS tate, "The lead is a lready in the open s tate."); | |||||
| 1028 | ErrorM essages.Ad d(Customer IsInactive , "An inac tive custo mer cannot be set as the paren t of an ob ject."); | |||||
| 1029 | ErrorM essages.Ad d(Opportun ityCannotB eClosed, " The opport unity cann ot be clos ed."); | |||||
| 1030 | ErrorM essages.Ad d(Opportun ityIsAlrea dyClosed, "The oppor tunity is already cl osed."); | |||||
| 1031 | ErrorM essages.Ad d(unManage didscustom eraddresst ypeinvalid , "Invalid customer address ty pe."); | |||||
| 1032 | ErrorM essages.Ad d(unManage didsleadno tassignedt ocaller, " The lead i s not bein g assigned to the ca ller for a cceptance. "); | |||||
| 1033 | ErrorM essages.Ad d(unManage didscontac thaschildo pportuniti es, "The C ontact has child opp ortunities ."); | |||||
| 1034 | ErrorM essages.Ad d(unManage didsaccoun thaschildo pportuniti es, "The A ccount has child opp ortunities ."); | |||||
| 1035 | ErrorM essages.Ad d(unManage didsleadon eaccount, "A lead ca n be assoc iated with only one account.") ; | |||||
| 1036 | ErrorM essages.Ad d(unManage didsopport unityorpha n, "Removi ng this as sociation will make the opport unity an o rphan."); | |||||
| 1037 | ErrorM essages.Ad d(unManage didsopport unityoneac count, "An opportuni ty can be associated with only one accou nt."); | |||||
| 1038 | ErrorM essages.Ad d(unManage didsleadus ercannotre ject, "The user does not have the privil ege to rej ect a lead , so he ca nnot be as signed the lead for acceptance ."); | |||||
| 1039 | ErrorM essages.Ad d(unManage didsleadno tassigned, "The lead has not b een assign ed."); | |||||
| 1040 | ErrorM essages.Ad d(unManage didsleadno parent, "T he lead do es not hav e a parent ."); | |||||
| 1041 | ErrorM essages.Ad d(ContactL oopBeingCr eated, "Cr eating thi s parental associati on would c reate a lo op in Cont acts hiera rchy."); | |||||
| 1042 | ErrorM essages.Ad d(ContactL oopExists, "Loop exi sts in the contacts hierarchy. "); | |||||
| 1043 | ErrorM essages.Ad d(PresentP arentAccou ntAndParen tContact, "You can e ither spec ify a cont acts paren t contact or its acc ount, but not both." ); | |||||
| 1044 | ErrorM essages.Ad d(AccountL oopBeingCr eated, "Cr eating thi s parental associati on would c reate a lo op in Acco unts hiera rchy."); | |||||
| 1045 | ErrorM essages.Ad d(AccountL oopExists, "Loop exi sts in the accounts hierarchy. "); | |||||
| 1046 | ErrorM essages.Ad d(unManage didsopport unitymissi ngparent, "The paren t of the o pportunity is missin g."); | |||||
| 1047 | ErrorM essages.Ad d(unManage didsopport unityinval idparent, "The paren t of an op portunity must be an account o r contact. "); | |||||
| 1048 | ErrorM essages.Ad d(ContactD oesNotExis t, "Contac t does not exist."); | |||||
| 1049 | ErrorM essages.Ad d(AccountD oesNotExis t, "Accoun t does not exist."); | |||||
| 1050 | ErrorM essages.Ad d(unManage didsleaddo esnotexist , "Lead do es not exi st."); | |||||
| 1051 | ErrorM essages.Ad d(unManage didsopport unitydoesn otexist, " Opportunit y does not exist."); | |||||
| 1052 | ErrorM essages.Ad d(ReportDo esNotExist , "Report does not e xist. Repo rtId:{0}") ; | |||||
| 1053 | ErrorM essages.Ad d(ReportLo opBeingCre ated, "Cre ating this parental associatio n would cr eate a loo p in Repor ts hierarc hy."); | |||||
| 1054 | ErrorM essages.Ad d(ReportLo opExists, "Loop exis ts in the reports hi erarchy.") ; | |||||
| 1055 | ErrorM essages.Ad d(ParentRe portLinksT oSameNameC hild, "Par ent report already l inks to an other repo rt with th e same nam e."); | |||||
| 1056 | ErrorM essages.Ad d(Duplicat eReportVis ibility, " A ReportVi sibility w ith the sa me ReportI d and Visi bilityCode already e xists. Dup licates ar e not allo wed."); | |||||
| 1057 | ErrorM essages.Ad d(ReportRe nderError, "An error occurred during rep ort render ing."); | |||||
| 1058 | ErrorM essages.Ad d(SubRepor tDoesNotEx ist, "Subr eport does not exist . ReportId :{0}"); | |||||
| 1059 | ErrorM essages.Ad d(SrsDataC onnectorNo tInstalled , "MSCRM D ata Connec tor Not In stalled"); | |||||
| 1060 | ErrorM essages.Ad d(InvalidC ustomRepor tingWizard Xml, "Inva lid wizard xml"); | |||||
| 1061 | ErrorM essages.Ad d(UpdateNo nCustomRep ortFromTem plate, "Ca nnot updat e a report from a te mplate if the report was not c reated fro m a templa te"); | |||||
| 1062 | ErrorM essages.Ad d(Snapshot ReportNotR eady, "The selected report is not ready for viewin g. The rep ort is sti ll being c reated or a report s napshot is not avail able. Repo rtId:{0}") ; | |||||
| 1063 | ErrorM essages.Ad d(Existing ExternalRe port, "The report co uld not be published for exter nal use be cause a re port of th e same nam e already exists. De lete that report in SQL Server Reporting Services or rename this repor t, and try again."); | |||||
| 1064 | ErrorM essages.Ad d(ParentRe portNotSup ported, "P arent repo rt is not supported for the ty pe of repo rt specifi ed. Only S QL Reporti ng Service s reports can have p arent repo rts."); | |||||
| 1065 | ErrorM essages.Ad d(ParentRe portDoesNo tReference Child, "Sp ecified pa rent repor t does not reference the curre nt one. On ly SQL Rep orting Ser vices repo rts can ha ve parent reports.") ; | |||||
| 1066 | ErrorM essages.Ad d(Multiple ParentRepo rtsFound, "More than one repor t link fou nd. Each r eport can have only one parent ."); | |||||
| 1067 | ErrorM essages.Ad d(Reportin gServicesR eportExpec ted, "The report is not a Repo rting Serv ices repor t."); | |||||
| 1068 | ErrorM essages.Ad d(InvalidT ransformat ionParamet er, "A par ameter for the trans formation is either missing or invalid." ); | |||||
| 1069 | ErrorM essages.Ad d(Reflexiv eEntityPar entOrChild DoesNotExi st, "Eithe r the pare nt or chil d entity d oes not ex ist"); | |||||
| 1070 | ErrorM essages.Ad d(EntityLo opBeingCre ated, "Cre ating this parental associatio n would cr eate a loo p in this entity hie rarchy."); | |||||
| 1071 | ErrorM essages.Ad d(EntityLo opExists, "Loop exis ts in this entity hi erarchy.") ; | |||||
| 1072 | ErrorM essages.Ad d(Unsuppor tedProcess Code, "The process c ode is not supported on this e ntity."); | |||||
| 1073 | ErrorM essages.Ad d(NoOutput Transforma tionParame terMapping Found, "Th ere is no output tra nsformatio n paramete r mapping defined. A transform ation mapp ing must h ave atleas t one outp ut transfo rmation pa rameter ma pping."); | |||||
| 1074 | ErrorM essages.Ad d(Required ColumnsNot FoundInImp ortFile, " One or mor e source c olumns use d in the t ransformat ion do not exist in the source file."); | |||||
| 1075 | ErrorM essages.Ad d(InvalidT ransformat ionParamet erMapping, "The tran sformation parameter mapping d efined is invalid. C heck that the target attribute name exis ts."); | |||||
| 1076 | ErrorM essages.Ad d(Unmapped Transforma tionOutput DataFound, "One or m ore output s returned by the tr ansformati on is not mapped to target fie lds."); | |||||
| 1077 | ErrorM essages.Ad d(InvalidT ransformat ionParamet erDataType , "The dat a type of one or mor e of the t ransformat ion parame ters is un supported. "); | |||||
| 1078 | ErrorM essages.Ad d(ArrayMap pingFoundF orSingleto nParameter , "An arra y transfor mation par ameter map ping is de fined for a single p arameter." ); | |||||
| 1079 | ErrorM essages.Ad d(Singleto nMappingFo undForArra yParameter , "A singl e transfor mation par ameter map ping is de fined for an array p arameter." ); | |||||
| 1080 | ErrorM essages.Ad d(Incomple teTransfor mationPara meterMappi ngsFound, "One or mo re mandato ry transfo rmation pa rameters d o not have mappings defined fo r them."); | |||||
| 1081 | ErrorM essages.Ad d(InvalidT ransformat ionParamet erMappings , "One or more trans formation parameter mappings a re invalid or do not match the transform ation para meter desc ription.") ; | |||||
| 1082 | ErrorM essages.Ad d(GenericT ransformat ionInvocat ionError, "The trans formation returned i nvalid dat a."); | |||||
| 1083 | ErrorM essages.Ad d(InvalidT ransformat ionType, " The specif ied transf ormation t ype is not supported ."); | |||||
| 1084 | ErrorM essages.Ad d(UnableTo LoadTransf ormationTy pe, "Unabl e to load the transf ormation t ype."); | |||||
| 1085 | ErrorM essages.Ad d(UnableTo LoadTransf ormationAs sembly, "U nable to l oad the tr ansformati on assembl y."); | |||||
| 1086 | ErrorM essages.Ad d(InvalidC olumnMappi ng, "Colum nMapping i s Invalid. Check tha t the targ et attribu te exists. "); | |||||
| 1087 | ErrorM essages.Ad d(CannotMo difyOldDat aFromImpor t, "The co rrespondin g record i n Microsof t Dynamics 365 has m ore recent data, so this recor d was igno red."); | |||||
| 1088 | ErrorM essages.Ad d(ImportFi leTooLarge ToUpload, "The impor t file is too large to upload. "); | |||||
| 1089 | ErrorM essages.Ad d(InvalidI mportFileC ontent, "T he content of the im port file is not val id. You mu st select a text fil e."); | |||||
| 1090 | ErrorM essages.Ad d(EmptyRec ord, "The record is empty"); | |||||
| 1091 | ErrorM essages.Ad d(LongPars eRow, "The row is to o long to import"); | |||||
| 1092 | ErrorM essages.Ad d(ParseMus tBeCalledB eforeTrans form, "Can not call t ransform b efore pars e."); | |||||
| 1093 | ErrorM essages.Ad d(HeaderVa lueDoesNot MatchAttri buteDispla yLabel, "T he column heading do es not mat ch the att ribute dis play label ."); | |||||
| 1094 | ErrorM essages.Ad d(InvalidT argetEntit y, "The sp ecified ta rget recor d type doe s not exis t."); | |||||
| 1095 | ErrorM essages.Ad d(NoHeader ColumnFoun d, "A colu mn heading is missin g."); | |||||
| 1096 | ErrorM essages.Ad d(ParsingM etadataNot Found, "Da ta require d to parse the file, such as t he data de limiter, f ield delim iter, or c olumn head ings, was not found. "); | |||||
| 1097 | ErrorM essages.Ad d(EmptyHea derRow, "T he first r ow of the file is em pty."); | |||||
| 1098 | ErrorM essages.Ad d(EmptyCon tent, "The file is e mpty."); | |||||
| 1099 | ErrorM essages.Ad d(InvalidI sFirstRowH eaderForUs eSystemMap , "The fir st row of the file d oes not co ntain colu mn heading s."); | |||||
| 1100 | ErrorM essages.Ad d(InvalidG uid, "The globally u nique iden tifier (GU ID) in thi s row is i nvalid"); | |||||
| 1101 | ErrorM essages.Ad d(GuidNotP resent, "T he require d globally unique id entifier ( GUID) in t his row is not prese nt"); | |||||
| 1102 | ErrorM essages.Ad d(OwnerVal ueNotMappe d, "The ow ner value is not map ped"); | |||||
| 1103 | ErrorM essages.Ad d(Picklist ValueNotMa pped, "The record co uld not be processed as the Op tion set v alue could not be ma pped."); | |||||
| 1104 | ErrorM essages.Ad d(ErrorInD elete, "Th e Microsof t Dynamics 365 recor d could no t be delet ed"); | |||||
| 1105 | ErrorM essages.Ad d(ErrorInc reate, "Th e Microsof t Dynamics 365 recor d could no t be creat ed"); | |||||
| 1106 | ErrorM essages.Ad d(ErrorInU pdate, "Th e Microsof t Dynamics 365 recor d could no t be updat ed"); | |||||
| 1107 | ErrorM essages.Ad d(ErrorInS etState, " The status or status reason of the Micro soft Dynam ics 365 re cord could not be se t"); | |||||
| 1108 | ErrorM essages.Ad d(InvalidD ataFormat, "The sour ce data is not in th e required format"); | |||||
| 1109 | ErrorM essages.Ad d(InvalidF ormatForDa taDelimite r, "Mismat ched data delimiter: only one delimiter was found. "); | |||||
| 1110 | ErrorM essages.Ad d(CRMUserD oesNotExis t, "No Mic rosoft Dyn amics 365 user exist s with the specified domain na me and use r ID"); | |||||
| 1111 | ErrorM essages.Ad d(LookupNo tFound, "T he lookup reference could not be resolve d"); | |||||
| 1112 | ErrorM essages.Ad d(Duplicat eLookupFou nd, "A dup licate loo kup refere nce was fo und"); | |||||
| 1113 | ErrorM essages.Ad d(InvalidI mportFileD ata, "The data is no t in the r equired fo rmat"); | |||||
| 1114 | ErrorM essages.Ad d(InvalidX mlSSConten t, "The da ta file ca n’t be imp orted beca use it con tains inva lid entity data or i t’s in the wrong for mat. Make sure that the file c ontains co rrect data and that it’s in th e XML Spre adsheet 20 03 format, and then try upload ing again. "); | |||||
| 1115 | ErrorM essages.Ad d(InvalidI mportFileP arseData, "Field and data deli miters for this file are not s pecified." ); | |||||
| 1116 | ErrorM essages.Ad d(InvalidV alueForFil eType, "Th e file typ e is inval id."); | |||||
| 1117 | ErrorM essages.Ad d(EmptyImp ortFileRow , "Empty r ow."); | |||||
| 1118 | ErrorM essages.Ad d(ErrorInP arseRow, " The row co uld not be parsed. T his is typ ically cau sed by a r ow that is too long. "); | |||||
| 1119 | ErrorM essages.Ad d(DataColu mnsNumberM ismatch, " The number of fields differs f rom the nu mber of co lumn headi ngs."); | |||||
| 1120 | ErrorM essages.Ad d(InvalidH eaderColum n, "The co lumn headi ng contain s an inval id combina tion of da ta delimit ers."); | |||||
| 1121 | ErrorM essages.Ad d(OwnerMap pingExists WithSource SystemUser Name, "The data map already co ntains thi s owner ma pping."); | |||||
| 1122 | ErrorM essages.Ad d(PickList MappingExi stsWithSou rceValue, "The data map alread y contains this list value map ping."); | |||||
| 1123 | ErrorM essages.Ad d(InvalidV alueForDat aDelimiter , "The dat a delimite r is inval id."); | |||||
| 1124 | ErrorM essages.Ad d(InvalidV alueForFie ldDelimite r, "The fi eld delimi ter is inv alid."); | |||||
| 1125 | ErrorM essages.Ad d(PickList MappingExi stsForTarg etValue, " This list value is m apped more than once . Remove a ny duplica te mapping s, and the n import t his data m ap again." ); | |||||
| 1126 | ErrorM essages.Ad d(MappingE xistsForTa rgetAttrib ute, "This attribute is mapped more than once. Rem ove any du plicate ma ppings, an d then imp ort this d ata map ag ain."); | |||||
| 1127 | ErrorM essages.Ad d(SourceEn tityMapped ToMultiple Targets, " This sourc e entity i s mapped t o more tha n one Micr osoft Dyna mics 365 e ntity. Rem ove any du plicate ma ppings, an d then imp ort this d ata map ag ain."); | |||||
| 1128 | ErrorM essages.Ad d(Attribut eNotOfType Picklist, "This attr ibute is n ot mapped to a drop- down list, Boolean, or state/s tatus attr ibute. How ever, you have inclu ded a List ValueMap e lement for it. Fix this incon sistency, and then i mport this data map again."); | |||||
| 1129 | ErrorM essages.Ad d(Attribut eNotOfType Reference, "This att ribute is not mapped as a refe rence attr ibute. How ever, you have inclu ded a Refe renceMap f or it. Fi x this inc onsistency , and then import th is data ma p again.") ; | |||||
| 1130 | ErrorM essages.Ad d(TargetEn tityNotFou nd, "The f ile specif ies an ent ity that d oes not ex ist in Mic rosoft Dyn amics 365. "); | |||||
| 1131 | ErrorM essages.Ad d(TargetAt tributeNot Found, "Th e file spe cifies an attribute that does not exist in Microso ft Dynamic s 365."); | |||||
| 1132 | ErrorM essages.Ad d(Picklist ValueNotFo und, "The file speci fies a lis t value th at does no t exist in Microsoft Dynamics 365."); | |||||
| 1133 | ErrorM essages.Ad d(TargetAt tributeInv alidForMap , "This at tribute is not valid for mappi ng."); | |||||
| 1134 | ErrorM essages.Ad d(TargetEn tityInvali dForMap, " The file s pecifies a n entity t hat is not valid for data migr ation."); | |||||
| 1135 | ErrorM essages.Ad d(InvalidF ileBadChar acters, "T he file co uld not be uploaded because it contains invalid ch aracter(s) "); | |||||
| 1136 | ErrorM essages.Ad d(ErrorsIn ImportFile s, "Invali d File(s) for Import "); | |||||
| 1137 | ErrorM essages.Ad d(InvalidO perationWh enListIsNo tActive, " List is no t active. Cannot per form this operation. "); | |||||
| 1138 | ErrorM essages.Ad d(InvalidO perationWh enPartyIsN otActive, "The party is not ac tive. Cann ot perform this oper ation."); | |||||
| 1139 | ErrorM essages.Ad d(AsyncOpe rationSusp endedOrLoc ked, ">A b ackground job associ ated with this impor t is eithe r suspende d or locke d. In orde r to delet e this imp ort, in th e Workplac e, click I mports, op en the imp ort, click System Jo bs, and re sume any s uspended j obs."); | |||||
| 1140 | ErrorM essages.Ad d(Duplicat eHeaderCol umn, "A du plicate co lumn headi ng exists. "); | |||||
| 1141 | ErrorM essages.Ad d(EmptyHea derColumn, "The colu mn heading cannot be empty."); | |||||
| 1142 | ErrorM essages.Ad d(InvalidC olumnNumbe r, "The co lumn numbe r specifie d in the d ata map do es not exi st."); | |||||
| 1143 | ErrorM essages.Ad d(Transfor mMustBeCal ledBeforeI mport, "Ca nnot call import bef ore transf orm."); | |||||
| 1144 | ErrorM essages.Ad d(Operatio nCanBeCall edOnlyOnce , "The spe cified act ion can be done only one time. "); | |||||
| 1145 | ErrorM essages.Ad d(Duplicat eRecordsFo und, "A re cord was n ot created or update d because a duplicat e of the c urrent rec ord alread y exists." ); | |||||
| 1146 | ErrorM essages.Ad d(Campaign ActivityCl osed, "Thi s Campaign Activity is closed or cancele d. Campaig n activiti es cannot be distrib uted after they have been clos ed or canc eled."); | |||||
| 1147 | ErrorM essages.Ad d(Unexpect edErrorInM ailMerge, "There was an unexpe cted error during ma il merge." ); | |||||
| 1148 | ErrorM essages.Ad d(UserCanc elledMailM erge, "The mail merg e operatio n was canc elled by t he user.") ; | |||||
| 1149 | ErrorM essages.Ad d(Filtered DuetoMissi ngEmailAdd ress, "Thi s customer is filter ed due to missing em ail addres s."); | |||||
| 1150 | ErrorM essages.Ad d(CannotDe leteAsBack groundOper ationInPro gress, "Th is record is current ly being u sed by Mic rosoft Dyn amics 365 and cannot be delete d. Try aga in later. If the pr oblem pers ists, cont act your s ystem admi nistrator. "); | |||||
| 1151 | ErrorM essages.Ad d(Filtered DuetoInact iveState, "This cust omer is fi ltered due to inacti ve state." ); | |||||
| 1152 | ErrorM essages.Ad d(MissingB OWFRules, "Bulk Oper ation rela ted workfl ow rules a re missing ."); | |||||
| 1153 | ErrorM essages.Ad d(AsyncOpe rationPost poned, "Th is operati on has bee n postpone d because it failed for more t han {0} ti mes in {1} minutes") ; | |||||
| 1154 | ErrorM essages.Ad d(CannotSp ecifyOwner ForActivit yPropagati on, "Canno t specify owner on a ctivity fo r distribu tion"); | |||||
| 1155 | ErrorM essages.Ad d(Campaign ActivityAl readyPropa gated, "Th is campaig n activity has been distribute d already. Campaign activities cannot be distribut ed more th an one tim e."); | |||||
| 1156 | ErrorM essages.Ad d(Filtered DuetoAntiS pam, "This customer is filtere d due to A ntiSpam se ttings."); | |||||
| 1157 | ErrorM essages.Ad d(Template TypeNotSup portedForU nsubscribe Acknowledg ement, "Th is templat e type is not suppor ted for un subscribe acknowledg ement."); | |||||
| 1158 | ErrorM essages.Ad d(ErrorInI mportConfi g, "Cannot process w ith Bulk I mport as I mport Conf iguration has some e rrors."); | |||||
| 1159 | ErrorM essages.Ad d(ImportCo nfigNotSpe cified, "C annot proc ess with B ulk Import as Import Configura tion not s pecified." ); | |||||
| 1160 | ErrorM essages.Ad d(InvalidA ctivityTyp e, "An inv alid objec t type was specified for distr ibuting ac tivities." ); | |||||
| 1161 | ErrorM essages.Ad d(Unsuppor tedParamet er, "A par ameter spe cified is not suppor ted by the Bulk Oper ation"); | |||||
| 1162 | ErrorM essages.Ad d(MissingP arameter, "A require d paramete r is missi ng for the Bulk Oper ation"); | |||||
| 1163 | ErrorM essages.Ad d(CannotSp ecifyCommu nicationAt tributeOnA ctivityFor Propagatio n, "Cannot specify c ommunicati on attribu te on acti vity for d istributio n"); | |||||
| 1164 | ErrorM essages.Ad d(CannotSp ecifyRecip ientForAct ivityPropa gation, "C annot spec ify a reci pient for activity d istributio n."); | |||||
| 1165 | ErrorM essages.Ad d(CannotSp ecifyAtten deeForAppo intmentPro pagation, "Cannot sp ecify an a ttendee fo r appointm ent distri bution."); | |||||
| 1166 | ErrorM essages.Ad d(CannotSp ecifySende rForActivi tyPropagat ion, "Cann ot specify a sender for appoin tment dist ribution") ; | |||||
| 1167 | ErrorM essages.Ad d(CannotSp ecifyOrgan izerForApp ointmentPr opagation, "Cannot s pecify an organizer for appoin tment dist ribution") ; | |||||
| 1168 | ErrorM essages.Ad d(InvalidR egardingOb jectTypeCo de, "The r egarding O bject Type Code is n ot valid f or the Bul k Operatio n."); | |||||
| 1169 | ErrorM essages.Ad d(Unspecif iedActivit yXmlForCam paignActiv ityPropaga te, "Must specify an Activity Xml for Ca mpaignActi vity Execu te/Distrib ute"); | |||||
| 1170 | ErrorM essages.Ad d(MoneySiz eExceeded, "Supplied value exc eeded the MIN/MAX va lue of Mon ey Type fi eld."); | |||||
| 1171 | ErrorM essages.Ad d(ExtraPar tyInformat ion, "Extr a party in formation should not be provid ed for thi s operatio n."); | |||||
| 1172 | ErrorM essages.Ad d(NotSuppo rted, "Thi s action i s not supp orted."); | |||||
| 1173 | ErrorM essages.Ad d(InvalidO perationFo rClosedOrC ancelledCa mpaignActi vity, "Can not add i tems to cl osed (canc elled) cam paignactiv ity."); | |||||
| 1174 | ErrorM essages.Ad d(InvalidE mailTempla te, "Must specify a valid Temp late Id"); | |||||
| 1175 | ErrorM essages.Ad d(CannotCr eateRespon seForTempl ate, "Camp aignRespon se can not be create d for Temp late Campa ign."); | |||||
| 1176 | ErrorM essages.Ad d(CannotPr opagateCam apaignActi vityForTem plate, "Ca nnot execu te (distri bute) a Ca mpaignActi vity for a template Campaign." ); | |||||
| 1177 | ErrorM essages.Ad d(InvalidC hannelForC ampaignAct ivityPropa gate, "Can not distri bute activ ities for campaign a ctivities of the spe cified cha nnel type. "); | |||||
| 1178 | ErrorM essages.Ad d(InvalidA ctivityTyp eForCampai gnActivity Propagate, "Must spe cify a val id Communi cationActi vity"); | |||||
| 1179 | ErrorM essages.Ad d(ObjectNo tRelatedTo Campaign, "Specified Object no t related to the par ent Campai gn"); | |||||
| 1180 | ErrorM essages.Ad d(CannotRe lateObject TypeToCamp aignActivi ty, "Speci fied Objec t Type not supported "); | |||||
| 1181 | ErrorM essages.Ad d(CannotUp dateCampai gnForCampa ignRespons e, "Parent campaign is not upd atable."); | |||||
| 1182 | ErrorM essages.Ad d(CannotUp dateCampai gnForCampa ignActivit y, "Parent campaign is not upd atable."); | |||||
| 1183 | ErrorM essages.Ad d(Campaign NotSpecifi edForCampa ignRespons e, "Regard ingObjectI d is a req uired fiel d."); | |||||
| 1184 | ErrorM essages.Ad d(Campaign NotSpecifi edForCampa ignActivit y, "Regard ingObjectI d is a req uired fiel d."); | |||||
| 1185 | ErrorM essages.Ad d(CannotRe lateObject TypeToCamp aign, "Spe cified Obj ect Type n ot support ed"); | |||||
| 1186 | ErrorM essages.Ad d(CannotCo pyIncompat ibleListTy pe, "Canno t copy lis ts of diff erent type s."); | |||||
| 1187 | ErrorM essages.Ad d(InvalidA ctivityTyp eForList, "Cannot cr eate activ ities of t he specifi ed list ty pe."); | |||||
| 1188 | ErrorM essages.Ad d(CannotAs sociateIna ctiveItemT oCampaign, "Cannot a ssociate a n inactive item to a Campaign. "); | |||||
| 1189 | ErrorM essages.Ad d(InvalidF etchXml, " Malformed FetchXml." ); | |||||
| 1190 | ErrorM essages.Ad d(InvalidO perationWh enListLock ed, "List is Locked. Cannot pe rform this action.") ; | |||||
| 1191 | ErrorM essages.Ad d(Unsuppor tedListMem berType, " Unsupporte d list mem ber type." ); | |||||
| 1192 | ErrorM essages.Ad d(InvalidP rimaryKey, "Invalid primary ke y."); | |||||
| 1193 | ErrorM essages.Ad d(IsvAbort ed, "ISV c ode aborte d the oper ation."); | |||||
| 1194 | ErrorM essages.Ad d(CannotAs signOutloo kFilters, "Cannot as sign outlo ok filters "); | |||||
| 1195 | ErrorM essages.Ad d(CannotCr eateOutloo kFilters, "Cannot cr eate outlo ok filters "); | |||||
| 1196 | ErrorM essages.Ad d(CannotGr antAccessT oOutlookFi lters, "Ca nnot grant access to outlook f ilters"); | |||||
| 1197 | ErrorM essages.Ad d(CannotMo difyAccess ToOutlookF ilters, "C annot modi fy access for outloo k filters" ); | |||||
| 1198 | ErrorM essages.Ad d(CannotRe vokeAccess ToOutlookF ilters, "C annot revo ke access for outloo k filters" ); | |||||
| 1199 | ErrorM essages.Ad d(CannotGr antAccessT oOfflineFi lters, "Ca nnot grant access to offline f ilters"); | |||||
| 1200 | ErrorM essages.Ad d(CannotMo difyAccess ToOfflineF ilters, "C annot modi fy access for offlin e filters" ); | |||||
| 1201 | ErrorM essages.Ad d(CannotRe vokeAccess ToOfflineF ilters, "C annot revo ke access for offlin e filters" ); | |||||
| 1202 | ErrorM essages.Ad d(Duplicat eOutlookAp pointment, "The Appo intment be ing promot ed from Ou tlook is a lready tra cked in Dy namics 365 "); | |||||
| 1203 | ErrorM essages.Ad d(Appointm entSchedul eNotSet, " Scheduled End and Sc heduled St art must b e set for Appointmen ts in orde r to sync with Outlo ok."); | |||||
| 1204 | ErrorM essages.Ad d(Privileg eCreateIsD isabledFor Organizati on, "Privi lege Creat e is disab led for or ganization ."); | |||||
| 1205 | ErrorM essages.Ad d(Unauthor izedAccess , "Attempt ed to perf orm an una uthorized operation. "); | |||||
| 1206 | ErrorM essages.Ad d(InvalidC haractersI nField, "T he field ' {0}' conta ins one or more inva lid charac ters."); | |||||
| 1207 | ErrorM essages.Ad d(CannotCh angeStateO fNonpublic View, "Onl y public v iews can b e deactiva ted and ac tivated.") ; | |||||
| 1208 | ErrorM essages.Ad d(CannotDe activateDe faultView, "Default views cann ot be deac tivated.") ; | |||||
| 1209 | ErrorM essages.Ad d(CannotSe tInactiveV iewAsDefau lt, "Inact ive views cannot be set as def ault view. "); | |||||
| 1210 | ErrorM essages.Ad d(CannotEx ceedFilter Limit, "Ca nnot excee d synchron ization fi lter limit ."); | |||||
| 1211 | ErrorM essages.Ad d(CannotHa veMultiple DefaultFil terTemplat es, "Canno t have mul tiple defa ult synchr onization templates for a sing le entity. "); | |||||
| 1212 | ErrorM essages.Ad d(CrmConst raintParsi ngError, " Crm constr aint parsi ng error o ccurred.") ; | |||||
| 1213 | ErrorM essages.Ad d(CrmConst raintEvalu ationError , "Crm con straint ev aluation e rror occur red."); | |||||
| 1214 | ErrorM essages.Ad d(CrmExpre ssionEvalu ationError , "Crm exp ression ev aluation e rror occur red."); | |||||
| 1215 | ErrorM essages.Ad d(CrmExpre ssionParam etersParsi ngError, " Crm expres sion param eters pars ing error occurred." ); | |||||
| 1216 | ErrorM essages.Ad d(CrmExpre ssionBodyP arsingErro r, "Crm ex pression b ody parsin g error oc curred."); | |||||
| 1217 | ErrorM essages.Ad d(CrmExpre ssionParsi ngError, " Crm expres sion parsi ng error o ccurred.") ; | |||||
| 1218 | ErrorM essages.Ad d(CrmMalfo rmedExpres sionError, "Crm malf ormed expr ession err or occurre d."); | |||||
| 1219 | ErrorM essages.Ad d(CalloutE xception, "Callout E xception o ccurred.") ; | |||||
| 1220 | ErrorM essages.Ad d(DateTime FormatFail ed, "Faile d to produ ce a forma tted datet ime value. "); | |||||
| 1221 | ErrorM essages.Ad d(NumberFo rmatFailed , "Failed to produce a formatt ed numeric value."); | |||||
| 1222 | ErrorM essages.Ad d(InvalidR estore, "R estoreCall er must be called af ter Switch ToSystemUs er."); | |||||
| 1223 | ErrorM essages.Ad d(InvalidC aller, "Ca nnot switc h Executio nContext t o system u ser withou t setting Caller fir st."); | |||||
| 1224 | ErrorM essages.Ad d(CrmSecur ityError, "A failure occurred in CrmSecu rity."); | |||||
| 1225 | ErrorM essages.Ad d(Transact ionAborted , "Transac tion Abort ed."); | |||||
| 1226 | ErrorM essages.Ad d(CannotBi ndToSessio n, "Cannot bind to a nother ses sion, sess ion alread y bound.") ; | |||||
| 1227 | ErrorM essages.Ad d(SessionT okenUnavai lable, "Se ssion toke n is not a vailable u nless ther e is a tra nsaction i n place.") ; | |||||
| 1228 | ErrorM essages.Ad d(Transact ionNotComm ited, "Tra nsaction n ot committ ed."); | |||||
| 1229 | ErrorM essages.Ad d(Transact ionNotStar ted, "Tran saction no t started. "); | |||||
| 1230 | ErrorM essages.Ad d(Multiple ChildPickl ist, "Crm Internal E xception: Picklists with more than one c hildAttrib ute are no t supporte d."); | |||||
| 1231 | ErrorM essages.Ad d(InvalidS ingletonRe sults, "Cr m Internal Exception : Singleto n Retrieve Query sho uld not re turn more than 1 rec ord."); | |||||
| 1232 | ErrorM essages.Ad d(FailedTo LoadAssemb ly, "Faile d to load assembly") ; | |||||
| 1233 | ErrorM essages.Ad d(CrmQuery Expression NotInitial ized, "The QueryExpr ession has not been initialize d. Please use the co nstructor that takes in the en tity name to create a correctl y initiali zed instan ce"); | |||||
| 1234 | ErrorM essages.Ad d(InvalidR egistryKey , "Invalid registry key specif ied."); | |||||
| 1235 | ErrorM essages.Ad d(InvalidP riv, "Inva lid privil ege type." ); | |||||
| 1236 | ErrorM essages.Ad d(Metadata NotFound, "Metadata not found. "); | |||||
| 1237 | ErrorM essages.Ad d(InvalidE ntityClass Exception, "Invalid entity cla ss."); | |||||
| 1238 | ErrorM essages.Ad d(InvalidX mlEntityNa meExceptio n, "Invali d Xml enti ty name.") ; | |||||
| 1239 | ErrorM essages.Ad d(InvalidX mlCollecti onNameExce ption, "In valid Xml collection name."); | |||||
| 1240 | ErrorM essages.Ad d(InvalidR ecurrenceR ule, "Erro r in Recur rencePatte rnFactory. "); | |||||
| 1241 | ErrorM essages.Ad d(CrmImper sonationEr ror, "Erro r occurred in the Cr m AutoReim personator ."); | |||||
| 1242 | ErrorM essages.Ad d(ServiceI nstantiati onFailed, "Instantia tion of an Entity fa iled."); | |||||
| 1243 | ErrorM essages.Ad d(EntityIn stantiatio nFailed, " Instantiat ion of an Entity ins tance Serv ice failed ."); | |||||
| 1244 | ErrorM essages.Ad d(FormTran sitionErro r, "The im port has f ailed beca use the sy stem canno t transiti on the ent ity form { 0} from un managed to managed. Add at lea st one ful l (root) c omponent t o the mana ged soluti on, and th en try to import it again."); | |||||
| 1245 | ErrorM essages.Ad d(UserTime ConvertExc eption, "F ailed to c onvert use r time zon e informat ion."); | |||||
| 1246 | ErrorM essages.Ad d(UserTime ZoneExcept ion, "Fail ed to retr ieve user time zone informatio n."); | |||||
| 1247 | ErrorM essages.Ad d(InvalidC onnectionS tring, "Th e connecti on string not found or invalid ."); | |||||
| 1248 | ErrorM essages.Ad d(OpenCrmD BConnectio n, "Db Con nection is Open, whe n it shoul d be Close d."); | |||||
| 1249 | ErrorM essages.Ad d(Unpopula tedPrimary Key, "Prim ary Key mu st be popu lated for calls to p latform on rich clie nt in offl ine mode." ); | |||||
| 1250 | ErrorM essages.Ad d(InvalidV ersion, "U nhandled V ersion mis match foun d."); | |||||
| 1251 | ErrorM essages.Ad d(InvalidO peration, "Invalid O peration p erformed." ); | |||||
| 1252 | ErrorM essages.Ad d(InvalidM etadata, " Invalid Me tadata."); | |||||
| 1253 | ErrorM essages.Ad d(InvalidD ateTime, " The date-t ime format is invali d, or valu e is outsi de the sup ported ran ge."); | |||||
| 1254 | ErrorM essages.Ad d(unManage didscannot defaultpri vateview, "Private v iews canno t be defau lt."); | |||||
| 1255 | ErrorM essages.Ad d(Duplicat eRecord, " Operation failed due to a SQL integrity violation. "); | |||||
| 1256 | ErrorM essages.Ad d(unManage didsnorela tionship, "No relati onship exi sts betwee n the obje cts specif ied."); | |||||
| 1257 | ErrorM essages.Ad d(MissingQ ueryType, "The query type is m issing."); | |||||
| 1258 | ErrorM essages.Ad d(InvalidR ollupType, "The roll up type is invalid." ); | |||||
| 1259 | ErrorM essages.Ad d(InvalidS tate, "The object is not in a valid stat e to perfo rm this op eration.") ; | |||||
| 1260 | ErrorM essages.Ad d(unManage didsviewis notsharabl e, "The vi ew is not sharable." ); | |||||
| 1261 | ErrorM essages.Ad d(Principa lPrivilege Denied, "T arget user or team d oes not ho ld require d privileg es."); | |||||
| 1262 | ErrorM essages.Ad d(CannotUp dateObject BecauseItI sInactive, "The obje ct cannot be updated because i t is inact ive."); | |||||
| 1263 | ErrorM essages.Ad d(CannotDe leteCanned View, "Sys tem-define d views ca nnot be de leted."); | |||||
| 1264 | ErrorM essages.Ad d(CannotUp dateBecaus eItIsReadO nly, "The object can not be upd ated becau se it is r ead-only." ); | |||||
| 1265 | ErrorM essages.Ad d(CaseAlre adyResolve d, "This c ase has al ready been resolved. Close and reopen th e case rec ord to see the updat es."); | |||||
| 1266 | ErrorM essages.Ad d(InvalidC ustomer, " The custom er is inva lid."); | |||||
| 1267 | ErrorM essages.Ad d(unManage didsdataou tofrange, "Data out of range") ; | |||||
| 1268 | ErrorM essages.Ad d(unManage didsownern otenabled, "The spec ified owne r has been disabled. "); | |||||
| 1269 | ErrorM essages.Ad d(Business Management ObjectAlre adyExists, "An objec t with the specified name alre ady exists ."); | |||||
| 1270 | ErrorM essages.Ad d(InvalidO wnerID, "T he owner I D is inval id or miss ing."); | |||||
| 1271 | ErrorM essages.Ad d(CannotDe leteAsItIs ReadOnly, "The objec t cannot b e deleted because it is read-o nly."); | |||||
| 1272 | ErrorM essages.Ad d(CannotDe leteDueToA ssociation , "The obj ect you tr ied to del ete is ass ociated wi th another object an d cannot b e deleted. "); | |||||
| 1273 | ErrorM essages.Ad d(unManage didsanonym ousenabled , "The log ged-in use r was not found in t he Active Directory. "); | |||||
| 1274 | ErrorM essages.Ad d(unManage didsuserno tenabled, "The speci fied user is either disabled o r is not a member of any busin ess unit." ); | |||||
| 1275 | ErrorM essages.Ad d(Business NotEnabled , "The spe cified bus iness unit is disabl ed."); | |||||
| 1276 | ErrorM essages.Ad d(CannotAs signToDisa bledBusine ss, "The s pecified b usiness un it cannot be assigne d to becau se it is d isabled.") ; | |||||
| 1277 | ErrorM essages.Ad d(IsvUnExp ected, "An unexpecte d error oc curred fro m ISV code ."); | |||||
| 1278 | ErrorM essages.Ad d(OnlyOwne rCanRevoke , "Only th e owner of an object can revok e the owne r's access to that o bject."); | |||||
| 1279 | ErrorM essages.Ad d(unManage didsoutofm emory, "Ou t of memor y."); | |||||
| 1280 | ErrorM essages.Ad d(unManage didscannot assigntobu siness, "C annot assi gn an obje ct to a me rchant."); | |||||
| 1281 | ErrorM essages.Ad d(Privileg eDenied, " The user d oes not ho ld the nec essary pri vileges.") ; | |||||
| 1282 | ErrorM essages.Ad d(InvalidO bjectTypes , "Invalid object ty pe."); | |||||
| 1283 | ErrorM essages.Ad d(unManage didscannot grantorrev okeaccesst obusiness, "Cannot g rant or re voke acces s rights t o a mercha nt."); | |||||
| 1284 | ErrorM essages.Ad d(unManage didsinvali duseridorb usinessido rusersbusi nessinvali d, "One of the follo wing occur red: inval id user id , invalid business i d or the u ser does n ot belong to the bus iness."); | |||||
| 1285 | ErrorM essages.Ad d(unManage didspresen tuseridand teamid, "B oth the us er id and team id ar e present. Only one should be present.") ; | |||||
| 1286 | ErrorM essages.Ad d(MissingU serId, "Th e user id or the tea m id is mi ssing."); | |||||
| 1287 | ErrorM essages.Ad d(MissingB usinessId, "The busi ness id is missing o r invalid. "); | |||||
| 1288 | ErrorM essages.Ad d(NotImple mented, "T he request ed functio nality is not yet im plemented. "); | |||||
| 1289 | ErrorM essages.Ad d(InvalidP ointer, "T he object is dispose d."); | |||||
| 1290 | ErrorM essages.Ad d(ObjectDo esNotExist , "The spe cified obj ect was no t found.") ; | |||||
| 1291 | ErrorM essages.Ad d(UnExpect ed, "An un expected e rror occur red."); | |||||
| 1292 | ErrorM essages.Ad d(MissingO wner, "Ite m does not have an o wner."); | |||||
| 1293 | ErrorM essages.Ad d(CannotSh areWithOwn er, "An it em cannot be shared with the o wning user ."); | |||||
| 1294 | ErrorM essages.Ad d(unManage didsinvali dvisibilit ymodificat ionaccess, "User doe s not have access to modify th e visibili ty of this item."); | |||||
| 1295 | ErrorM essages.Ad d(unManage didsinvali downinguse r, "Item d oes not ha ve an owni ng user.") ; | |||||
| 1296 | ErrorM essages.Ad d(unManage didsinvali dassociati on, "Inval id associa tion."); | |||||
| 1297 | ErrorM essages.Ad d(InvalidA ssigneeId, "Invalid assignee i d."); | |||||
| 1298 | ErrorM essages.Ad d(unManage didsfailur einittoken , "Failure in obtain ing user t oken."); | |||||
| 1299 | ErrorM essages.Ad d(unManage didsinvali dvisibilit y, "Invali d visibili ty."); | |||||
| 1300 | ErrorM essages.Ad d(InvalidA ccessRight s, "Invali d access r ights."); | |||||
| 1301 | ErrorM essages.Ad d(InvalidS haree, "In valid shar e id."); | |||||
| 1302 | ErrorM essages.Ad d(unManage didsinvali ditemid, " Invalid it em id."); | |||||
| 1303 | ErrorM essages.Ad d(unManage didsinvali dorgid, "I nvalid org anization id."); | |||||
| 1304 | ErrorM essages.Ad d(unManage didsinvali dbusinessi d, "Invali d business id."); | |||||
| 1305 | ErrorM essages.Ad d(unManage didsinvali dteamid, " Invalid te am id."); | |||||
| 1306 | ErrorM essages.Ad d(unManage didsinvali duserid, " The user i d is inval id or miss ing."); | |||||
| 1307 | ErrorM essages.Ad d(InvalidP arentId, " The parent id is inv alid or mi ssing."); | |||||
| 1308 | ErrorM essages.Ad d(InvalidP arent, "Th e parent o bject is i nvalid or missing.") ; | |||||
| 1309 | ErrorM essages.Ad d(InvalidU serAuth, " User does not have t he privile ge to act on behalf another us er."); | |||||
| 1310 | ErrorM essages.Ad d(InvalidA rgument, " Invalid ar gument."); | |||||
| 1311 | ErrorM essages.Ad d(EmptyXml , "Empty X ML."); | |||||
| 1312 | ErrorM essages.Ad d(InvalidX ml, "Inval id XML."); | |||||
| 1313 | ErrorM essages.Ad d(Required FieldMissi ng, "Requi red field missing.") ; | |||||
| 1314 | ErrorM essages.Ad d(SearchTe xtLenExcee ded, "Sear ch Text Le ngth Excee ded."); | |||||
| 1315 | ErrorM essages.Ad d(CannotAs signOfflin eFilters, "Cannot as sign offli ne filters "); | |||||
| 1316 | ErrorM essages.Ad d(ArticleI sPublished , "The art icle canno t be updat ed or dele ted becaus e it is in published state"); | |||||
| 1317 | ErrorM essages.Ad d(InvalidA rticleTemp lateState, "The arti cle templa te state i s undefine d"); | |||||
| 1318 | ErrorM essages.Ad d(InvalidA rticleStat eTransitio n, "This a rticle sta te transit ion is inv alid becau se of the current st ate of the article") ; | |||||
| 1319 | ErrorM essages.Ad d(InvalidA rticleStat e, "The ar ticle stat e is undef ined"); | |||||
| 1320 | ErrorM essages.Ad d(NullKBAr ticleTempl ateId, "Th e kbarticl etemplatei d cannot b e NULL"); | |||||
| 1321 | ErrorM essages.Ad d(NullArti cleTemplat eStructure Xml, "The article te mplate str ucturexml cannot be NULL"); | |||||
| 1322 | ErrorM essages.Ad d(NullArti cleTemplat eFormatXml , "The art icle templ ate format xml cannot be NULL") ; | |||||
| 1323 | ErrorM essages.Ad d(NullArti cleXml, "T he article xml canno t be NULL" ); | |||||
| 1324 | ErrorM essages.Ad d(InvalidC ontractDet ailId, "Th e Contract detail id is invali d"); | |||||
| 1325 | ErrorM essages.Ad d(InvalidT otalPrice, "The tota l price is invalid") ; | |||||
| 1326 | ErrorM essages.Ad d(InvalidT otalDiscou nt, "The t otal disco unt is inv alid"); | |||||
| 1327 | ErrorM essages.Ad d(InvalidN etPrice, " The net pr ice is inv alid"); | |||||
| 1328 | ErrorM essages.Ad d(InvalidA llotmentsR emaining, "The allot ments rema ining is i nvalid"); | |||||
| 1329 | ErrorM essages.Ad d(InvalidA llotmentsU sed, "The allotments used is i nvalid"); | |||||
| 1330 | ErrorM essages.Ad d(InvalidA llotmentsT otal, "The total all otments is invalid") ; | |||||
| 1331 | ErrorM essages.Ad d(InvalidA llotmentsC alc, "Allo tments: re maining + used != to tal"); | |||||
| 1332 | ErrorM essages.Ad d(CannotRo uteToSameQ ueue, "The queue ite m cannot b e routed t o the same queue"); | |||||
| 1333 | ErrorM essages.Ad d(CannotAd dSingleQue ueEnabledE ntityToQue ue, "The e ntity reco rd cannot be added t o the queu e as it al ready exis ts in othe r queue.") ; | |||||
| 1334 | ErrorM essages.Ad d(CannotUp dateDeacti vatedQueue Item, "Thi s item is deactivate d. To work with this item, rea ctivate it and then try again. "); | |||||
| 1335 | ErrorM essages.Ad d(CannotCr eateQueueI temInactiv eObject, " Deactivate d object c annot be a dded to qu eue."); | |||||
| 1336 | ErrorM essages.Ad d(Insuffic ientPrivil egeToQueue Owner, "Th e owner of this queu e does not have suff icient pri vileges to work with the queue ."); | |||||
| 1337 | ErrorM essages.Ad d(NoPrivil egeToWorke r, "You ca nnot add i tems to an inactive queue. Sel ect anothe r queue an d try agai n."); | |||||
| 1338 | ErrorM essages.Ad d(CannotAd dQueueItem sToInactiv eQueue, "T he selecte d user doe s not have sufficien t permissi ons to wor k on items in this q ueue."); | |||||
| 1339 | ErrorM essages.Ad d(EmailAlr eadyExists InDestinat ionQueue, "You canno t add this e-mail to the selec ted queue. A queue i tem for th is e-mail already ex ists in th e queue. Y ou can del ete the it em from th e queue, a nd then tr y again.") ; | |||||
| 1340 | ErrorM essages.Ad d(CouldNot FindQueueI temInQueue , "Could n ot find an y queue it em associa ted with t he Target in the spe cified Sou rceQueueId . Either t he SourceQ ueueId or Target is invalid or the queue item does not exist ."); | |||||
| 1341 | ErrorM essages.Ad d(Multiple QueueItems Found, "Th is item oc curs in mo re than on e queue an d cannot b e routed f rom this l ist. Locat e the item in a queu e and try to route t he item ag ain."); | |||||
| 1342 | ErrorM essages.Ad d(ActiveQu eueItemAlr eadyExists , "An acti ve queue i tem alread y exists f or the giv en object. Cannot cr eate more than one a ctive queu e item for this obje ct."); | |||||
| 1343 | ErrorM essages.Ad d(CannotRo uteInactiv eQueueItem , "You can 't route a queue ite m that has been deac tivated.") ; | |||||
| 1344 | ErrorM essages.Ad d(QueueIdN otPresent, "You must enter the target qu eue. Provi de a valid value in the Queue field and try again. "); | |||||
| 1345 | ErrorM essages.Ad d(QueueIte mNotPresen t, "You mu st enter t he name of the recor d that you would lik e to put i n the queu e. Provide a valid v alue in th e Queue It em field a nd try aga in."); | |||||
| 1346 | ErrorM essages.Ad d(CannotUp datePrivat eOrWIPQueu e, "The pr ivate or W IP Bin que ue is not allowed to be update d or delet ed"); | |||||
| 1347 | ErrorM essages.Ad d(CannotFi ndUserQueu e, "Cannot find user queue"); | |||||
| 1348 | ErrorM essages.Ad d(CannotFi ndObjectIn Queue, "Th e object w as not fou nd in the given queu e"); | |||||
| 1349 | ErrorM essages.Ad d(CannotRo uteToQueue , "Cannot route to W ork in pro gress queu e"); | |||||
| 1350 | ErrorM essages.Ad d(RouteTyp eUnsupport ed, "The r oute type is unsuppo rted"); | |||||
| 1351 | ErrorM essages.Ad d(UserIdOr QueueNotSe t, "Primar y User Id or Destina tion Queue Type code not set") ; | |||||
| 1352 | ErrorM essages.Ad d(RoutingN otAllowed, "This obj ect type c an not be routed."); | |||||
| 1353 | ErrorM essages.Ad d(CannotUp dateMetric OnChildGoa l, "You ca nnot updat e metric o n a child goal."); | |||||
| 1354 | ErrorM essages.Ad d(CannotUp dateGoalPe riodInfoCh ildGoal, " You cannot update go al period related at tributes o n a child goal."); | |||||
| 1355 | ErrorM essages.Ad d(CannotUp dateMetric OnGoalWith Children, "You canno t update m etric on a goal whic h has asso ciated chi ld goals." ); | |||||
| 1356 | ErrorM essages.Ad d(FiscalPe riodGoalMi ssingInfo, "For a go al of fisc al period type, the fiscal per iod attrib ute must b e set."); | |||||
| 1357 | ErrorM essages.Ad d(CustomPe riodGoalHa vingExtraI nfo, "For a goal of custom per iod type, fiscal yea r and fisc al period attributes must be l eft blank. "); | |||||
| 1358 | ErrorM essages.Ad d(ParentCh ildMetricI dDiffers, "The metri cid of chi ld goal sh ould be sa me as the parent goa l."); | |||||
| 1359 | ErrorM essages.Ad d(ParentCh ildPeriodA ttributesD iffer, "Th e period s ettings of child goa l should b e same as the parent goal."); | |||||
| 1360 | ErrorM essages.Ad d(CustomPe riodGoalMi ssingInfo, "For a go al of cust om period type, goal startdate and goalen ddate attr ibutes mus t have dat a."); | |||||
| 1361 | ErrorM essages.Ad d(GoalMiss ingPeriodT ypeInfo, " Goal Perio d Type nee ds to be s pecified w hen creati ng a goal. This fiel d cannot b e null."); | |||||
| 1362 | ErrorM essages.Ad d(Particip atingQuery EntityMism atch, "The entitytyp e of parti cipating q uery shoul d be the s ame as the entity sp ecified in fetchxml. "); | |||||
| 1363 | ErrorM essages.Ad d(CannotUp dateGoalPe riodInfoCl osedGoal, "You canno t change t he time pe riod of th is goal be cause ther e are one or more cl osed subor dinate goa ls."); | |||||
| 1364 | ErrorM essages.Ad d(CannotUp dateRollup Fields, "Y ou cannot write on r ollup fiel ds if isov erride is not set to true in y our create /update re quest."); | |||||
| 1365 | ErrorM essages.Ad d(CannotDe leteMetric WithGoals, "This goa l metric i s being us ed by one or more go als and ca nnot be de leted."); | |||||
| 1366 | ErrorM essages.Ad d(CannotUp dateRollup AttributeW ithClosedG oals, "The changes m ade to the roll-up f ield defin ition cann ot be save d because the relate d goal met ric is bei ng used by one or mo re closed goals."); | |||||
| 1367 | ErrorM essages.Ad d(MetricNa meAlreadyE xists, "A goal metri c with the same name already e xists. Spe cify a dif ferent nam e, and try again."); | |||||
| 1368 | ErrorM essages.Ad d(CannotUp dateMetric WithGoals, "The chan ges made t o this rec ord cannot be saved because th is goal me tric is be ing used b y one or m ore goals. "); | |||||
| 1369 | ErrorM essages.Ad d(CannotCr eateUpdate SourceAttr ibute, "So urce Attri bute Not V alid For C reate/Upda te if Metr ic Type is Count."); | |||||
| 1370 | ErrorM essages.Ad d(InvalidD ateAttribu te, "Date Attribute specified is not an attribute of Source Entity."); | |||||
| 1371 | ErrorM essages.Ad d(InvalidS ourceEntit yAttribute , "Attribu te {0} is not an att ribute of Entity {1} ."); | |||||
| 1372 | ErrorM essages.Ad d(GoalAttr ibuteAlrea dyMapped, "The Metri c Detail f or Specifi ed Goal At tribute al ready exis ts."); | |||||
| 1373 | ErrorM essages.Ad d(InvalidS ourceAttri buteType, "Source At tribute Ty pe does no t match th e Amount D ata Type s pecified." ); | |||||
| 1374 | ErrorM essages.Ad d(MaxLimit ForRollupA ttribute, "Only thre e metric d etails per metric ca n be creat ed."); | |||||
| 1375 | ErrorM essages.Ad d(InvalidG oalAttribu te, "Goal Attribute does not m atch the s pecified m etric type ."); | |||||
| 1376 | ErrorM essages.Ad d(CannotUp dateParent AndDepende nts, "Cann ot update metric or period att ributes wh en parent is being u pdated."); | |||||
| 1377 | ErrorM essages.Ad d(UserDoes NotHaveSen dAsAllowed , "User do es not hav e send-as privilege" ); | |||||
| 1378 | ErrorM essages.Ad d(CannotUp dateQuoteC urrency, " The curren cy cannot be changed because t his quote has Produc ts associa ted with i t. If you want to ch ange the c urrency pl ease delet e all of t he Product s and then change th e currency or create a new quo te with th e appropri ate curren cy."); | |||||
| 1379 | ErrorM essages.Ad d(UserDoes NotHaveSen dAsForQueu e, "You do not have sufficient privilege s to send e-mail as the select ed queue. Contact yo ur system administra tor for as sistance." ); | |||||
| 1380 | ErrorM essages.Ad d(InvalidS ourceState Value, "Th e source s tate speci fied for t he entity is invalid ."); | |||||
| 1381 | ErrorM essages.Ad d(InvalidS ourceStatu sValue, "T he source status spe cified for the entit y is inval id."); | |||||
| 1382 | ErrorM essages.Ad d(InvalidE ntityForDa teAttribut e, "Entity For Date Attribute can be eit her source entity or its paren t."); | |||||
| 1383 | ErrorM essages.Ad d(InvalidE ntityForRo llup, "The entity {0 } is not a valid ent ity for ro llup."); | |||||
| 1384 | ErrorM essages.Ad d(InvalidF iscalPerio d, "The fi scal perio d {0} does not fall in the per mitted ran ge of fisc al periods as per or ganization 's fiscal settings." ); | |||||
| 1385 | ErrorM essages.Ad d(unManage dchildenti tyisnotchi ld, "The c hild entit y supplied is not a child."); | |||||
| 1386 | ErrorM essages.Ad d(unManage dmissingpa rententity , "The par ent entity could not be locate d."); | |||||
| 1387 | ErrorM essages.Ad d(unManage dunableget executionc ontext, "F ailed to r etrieve ex ecution co ntext (TLS )."); | |||||
| 1388 | ErrorM essages.Ad d(unManage dpendingtr xexists, " A pending transactio n already exists."); | |||||
| 1389 | ErrorM essages.Ad d(unManage dinvalidtr xcountforc ommit, "Th e transact ion count was expect ed to be 1 in order to commit. "); | |||||
| 1390 | ErrorM essages.Ad d(unManage dinvalidtr xcountforr ollback, " The transa ction coun t was expe cted to be 1 in orde r to rollb ack."); | |||||
| 1391 | ErrorM essages.Ad d(unManage dunableswi tchusercon text, "Can not set to a differe nt user co ntext."); | |||||
| 1392 | ErrorM essages.Ad d(unManage dmissingda taaccess, "The data access cou ld not be retrieved from the E xecutionCo ntext."); | |||||
| 1393 | ErrorM essages.Ad d(unManage dinvalidch aracterdat aforaggreg ate, "Char acter data is not va lid when c learing an aggregate ."); | |||||
| 1394 | ErrorM essages.Ad d(unManage dtrxintero phandlerse t, "The Tr xInteropHa ndler has already be en set."); | |||||
| 1395 | ErrorM essages.Ad d(unManage dinvalidbi naryfield, "The plat form canno t handle b inary fiel ds."); | |||||
| 1396 | ErrorM essages.Ad d(unManage dinvaludid ispatchfie ld, "The p latform ca nnot handl e idispatc h fields." ); | |||||
| 1397 | ErrorM essages.Ad d(unManage dinvaliddb datefield, "The plat form canno t handle d bdate fiel ds."); | |||||
| 1398 | ErrorM essages.Ad d(unManage dinvalddbt imefield, "The platf orm cannot handle db time field s."); | |||||
| 1399 | ErrorM essages.Ad d(unManage dinvalidfi eldtype, " The platfo rm cannot handle the specified field typ e."); | |||||
| 1400 | ErrorM essages.Ad d(unManage dinvalidst reamfield, "The plat form canno t handle s tream fiel ds."); | |||||
| 1401 | ErrorM essages.Ad d(unManage dinvalidpa rametertyp eforparame terizedque ry, "A par ameterized query is not suppor ted for th e supplied parameter type."); | |||||
| 1402 | ErrorM essages.Ad d(unManage dinvaliddy namicparam eteraccess or, "SetPa ram failed processin g the Dyna micParamet erAccessor parameter ."); | |||||
| 1403 | ErrorM essages.Ad d(unManage dunableget sessiontok ennotrx, " Unable to retrieve t he session token as there are no pending transacti ons."); | |||||
| 1404 | ErrorM essages.Ad d(unManage dunableget sessiontok en, "Unabl e to retri eve the se ssion toke n."); | |||||
| 1405 | ErrorM essages.Ad d(unManage dinvalidse curityprin cipal, "Th e security principal is invali d or missi ng."); | |||||
| 1406 | ErrorM essages.Ad d(unManage dmissingpr eviousowne rtype, "Un able to de termine th e previous owner's t ype."); | |||||
| 1407 | ErrorM essages.Ad d(unManage dinvalidpr ivilegeid, "The priv ilege id i s invalid or missing ."); | |||||
| 1408 | ErrorM essages.Ad d(unManage dinvalidpr ivilegeuse rgroup, "T he privile ge user gr oup id is invalid or missing." ); | |||||
| 1409 | ErrorM essages.Ad d(unManage dunexpecte dpropertyt ype, "Unex pected typ e for the property." ); | |||||
| 1410 | ErrorM essages.Ad d(unManage dmissingad dressentit y, "The ad dress enti ty could n ot be foun d."); | |||||
| 1411 | ErrorM essages.Ad d(unManage derroraddi ngfilterto queryplan, "An error occurred adding a f ilter to t he query p lan."); | |||||
| 1412 | ErrorM essages.Ad d(unManage dmissingre ferencesfr omrelation ship, "Una ble to acc ess a rela tionship i n an entit y's Refere ncesFrom c ollection. "); | |||||
| 1413 | ErrorM essages.Ad d(unManage dmissingre ferencinga ttribute, "The relat ionship's Referencin gAttribute is missin g or inval id."); | |||||
| 1414 | ErrorM essages.Ad d(unManage dinvalidop erator, "T he operato r provided is not va lid."); | |||||
| 1415 | ErrorM essages.Ad d(unManage dunabletoa ccessquery planfilter , "Unable to access a filter i n the quer y plan."); | |||||
| 1416 | ErrorM essages.Ad d(unManage dmissingat tributefor tag, "An e xpected at tribute wa s not foun d for the tag specif ied."); | |||||
| 1417 | ErrorM essages.Ad d(unManage derrorproc essingfilt ernodes, " An unexpec ted error occurred p rocessing the filter nodes."); | |||||
| 1418 | ErrorM essages.Ad d(unManage dunabletol ocatecondi tionfilter , "Unexpec ted error locating t he filter for the co ndition.") ; | |||||
| 1419 | ErrorM essages.Ad d(unManage dinvalidpa gevalue, " The page v alue is in valid or m issing."); | |||||
| 1420 | ErrorM essages.Ad d(unManage dinvalidco untvalue, "The count value is invalid or missing." ); | |||||
| 1421 | ErrorM essages.Ad d(unManage dinvalidve rsionvalue , "The ver sion value is invali d or missi ng."); | |||||
| 1422 | ErrorM essages.Ad d(unManage dinvalidva luettagout sidecondit iontag, "A invalid v alue tag w as found o utside of it's condi tion tag." ); | |||||
| 1423 | ErrorM essages.Ad d(unManage dinvalidor ganization id, "The o rganizatio nid is mis sing or in valid."); | |||||
| 1424 | ErrorM essages.Ad d(unManage dinvalidow ninguser, "The ownin guser is m ising or i nvalid."); | |||||
| 1425 | ErrorM essages.Ad d(unManage dinvalidow ningbusine ssunitorbu sinessunit id, "The o wningbusin essunit or businessu nitid is m issing or invalid.") ; | |||||
| 1426 | ErrorM essages.Ad d(unManage dinvalidpr ivilegeede pth, "Inva lid privil ege depth for user." ); | |||||
| 1427 | ErrorM essages.Ad d(unManage dinvalidli nkobjects, "Invalid link entit y, link to attribute , or link from attri bute."); | |||||
| 1428 | ErrorM essages.Ad d(unManage dpartylist attributen otsupporte d, "Attrib utes of ty pe partyli st are not supported ."); | |||||
| 1429 | ErrorM essages.Ad d(unManage dinvalidar gumentsfor condition, "An inval id number of argumen ts was sup plied to a condition ."); | |||||
| 1430 | ErrorM essages.Ad d(unManage dunknownag gregateope ration, "A n unknown aggregate operation was suppli ed."); | |||||
| 1431 | ErrorM essages.Ad d(unManage dmissingpa rentattrib uteonentit y, "The pa rent attri bute was n ot found o n the expe cted entit y."); | |||||
| 1432 | ErrorM essages.Ad d(unManage dinvalidpr ocesschild ofconditio n, "Proces sChildOfCo ndition wa s called w ith non-ch ild-of con dition."); | |||||
| 1433 | ErrorM essages.Ad d(unManage dunexpecte drimarykey , "Primary key attri bute was n ot as expe cted."); | |||||
| 1434 | ErrorM essages.Ad d(unManage dmissingli nkentity, "Unexpecte d error lo cating lin k entity." ); | |||||
| 1435 | ErrorM essages.Ad d(unManage dinvalidpr ocessliter nalconditi on, "Proce ssLiteralC ondition i s only val id for use with Roll up queries ."); | |||||
| 1436 | ErrorM essages.Ad d(unManage demptyproc essliteral condition, "No data specified for Proces sLiteralCo ndition.") ; | |||||
| 1437 | ErrorM essages.Ad d(unManage dunusablev ariantdata , "Variant supplied contains d ata in an unusable f ormat."); | |||||
| 1438 | ErrorM essages.Ad d(unManage dfieldnotv alidatedby platform, "A field w as not val idated by the platfo rm."); | |||||
| 1439 | ErrorM essages.Ad d(unManage dmissingfi lterattrib ute, "Miss ing filter attribute ."); | |||||
| 1440 | ErrorM essages.Ad d(unManage dinvalideq ualityoper and, "Only QB_LITERA L is suppo rted for e quality op erand."); | |||||
| 1441 | ErrorM essages.Ad d(unManage dfilterind exoutofran ge, "The f ilter inde x is out o f range.") ; | |||||
| 1442 | ErrorM essages.Ad d(unManage dentityisn otintersec t, "The en tity is no t an inter sect entit y."); | |||||
| 1443 | ErrorM essages.Ad d(unManage dcihldofco nditionfor offilefilt ers, "Chil d-of condi tion is on ly allowed on offlin e filters. "); | |||||
| 1444 | ErrorM essages.Ad d(unManage dinvalidow ningbusine ssunit, "T he owningb usinessuni t is missi ng or inva lid."); | |||||
| 1445 | ErrorM essages.Ad d(unManage dinvalidbu sinessunit id, "The b usinessuni tid is mis sing or in valid."); | |||||
| 1446 | ErrorM essages.Ad d(unManage dmorethano nesortattr ibute, "Mo re than on e sort att ributes we re defined ."); | |||||
| 1447 | ErrorM essages.Ad d(unManage dunabletoa ccessquery plan, "Una ble to acc ess the qu ery plan." ); | |||||
| 1448 | ErrorM essages.Ad d(unManage dparentatt ributenotf ound, "The parent at tribute wa s not foun d for the child attr ibute."); | |||||
| 1449 | ErrorM essages.Ad d(unManage dinvalidtl smananger, "Failed t o retrieve TLS Manag er."); | |||||
| 1450 | ErrorM essages.Ad d(unManage dinvalides capedxml, "Escaped x ml size no t as expec ted."); | |||||
| 1451 | ErrorM essages.Ad d(unManage dunabletor etrievepri vileges, " Failed to retrieve p rivileges. "); | |||||
| 1452 | ErrorM essages.Ad d(unManage dproxycrea tionfailed , "Cannot create an instance o f managed proxy."); | |||||
| 1453 | ErrorM essages.Ad d(unManage dinvalidpr incipal, " The princi pal id is missing or invalid." ); | |||||
| 1454 | ErrorM essages.Ad d(Restrict InheritedR ole, "Inhe rited role s cannot b e modified ."); | |||||
| 1455 | ErrorM essages.Ad d(unManage didsfetchb etweentext , "between , not-betw een, in, a nd not-in operators are not al lowed on a ttributes of type te xt or ntex t."); | |||||
| 1456 | ErrorM essages.Ad d(unManage didscantdi sable, "Th e user can not be dis abled beca use they h ave workfl ow rules r unning und er their c ontext."); | |||||
| 1457 | ErrorM essages.Ad d(CascadeI nvalidLink TypeTransi tion, "Inv alid link type for s ystem enti ty cascadi ng actions ."); | |||||
| 1458 | ErrorM essages.Ad d(InvalidO rgOwnedCas cadeLinkTy pe, "Casca de User-Ow ned is not a valid c ascade lin k type for org-owned entity re lationship s."); | |||||
| 1459 | ErrorM essages.Ad d(CallerCa nnotChange OwnDomainN ame, "The caller can not change their own domain na me"); | |||||
| 1460 | ErrorM essages.Ad d(AsyncOpe rationInva lidStateCh ange, "The target st ate could not be set because t he state t ransition is not val id."); | |||||
| 1461 | ErrorM essages.Ad d(AsyncOpe rationInva lidStateCh angeUnexpe cted, "The target st ate could not be set because t he state w as changed by anothe r process. "); | |||||
| 1462 | ErrorM essages.Ad d(AsyncOpe rationMiss ingId, "Th e AsyncOpe rationId i s required to do the update.") ; | |||||
| 1463 | ErrorM essages.Ad d(AsyncOpe rationInva lidStateCh angeToComp lete, "The target st ate could not be set to comple te because the state transitio n is not v alid."); | |||||
| 1464 | ErrorM essages.Ad d(AsyncOpe rationInva lidStateCh angeToRead y, "The ta rget state could not be set to ready bec ause the s tate trans ition is n ot valid." ); | |||||
| 1465 | ErrorM essages.Ad d(AsyncOpe rationInva lidStateCh angeToSusp ended, "Th e target s tate could not be se t to suspe nded becau se the sta te transit ion is not valid."); | |||||
| 1466 | ErrorM essages.Ad d(AsyncOpe rationCann otUpdateNo nrecurring , "Cannot update rec urrence pa ttern for a job that is not re curring.") ; | |||||
| 1467 | ErrorM essages.Ad d(AsyncOpe rationCann otUpdateRe curring, " Cannot upd ate recurr ence patte rn for a j ob type th at is not supported. "); | |||||
| 1468 | ErrorM essages.Ad d(AsyncOpe rationCann otDeleteUn lessComple ted, "Cann ot delete async oper ation unle ss it is i n Complete d state.") ; | |||||
| 1469 | ErrorM essages.Ad d(SdkInval idMessageP ropertyNam e, "Messag e property name '{0} ' is not v alid on me ssage {1}. "); | |||||
| 1470 | ErrorM essages.Ad d(PluginAs semblyMust HavePublic KeyToken, "Public as sembly mus t have pub lic key to ken."); | |||||
| 1471 | ErrorM essages.Ad d(SdkMessa geInvalidI mageTypeRe gistration , "Message {0} does not suppor t this ima ge type.") ; | |||||
| 1472 | ErrorM essages.Ad d(SdkMessa geDoesNotS upportPost ImageRegis tration, " PreEvent s tep regist ration doe s not supp ort Post I mage."); | |||||
| 1473 | ErrorM essages.Ad d(CannotDe serializeR equest, "T he SDK req uest could not be de serialized ."); | |||||
| 1474 | ErrorM essages.Ad d(InvalidP luginRegis trationCon figuration , "The plu g-in assem bly regist ration con figuration is invali d."); | |||||
| 1475 | ErrorM essages.Ad d(SandboxC lientPlugi nTimeout, "The plug- in executi on failed because th e operatio n has time d-out at t he Sandbox Client.") ; | |||||
| 1476 | ErrorM essages.Ad d(SandboxH ostPluginT imeout, "T he plug-in execution failed be cause the operation has timed- out at the Sandbox H ost."); | |||||
| 1477 | ErrorM essages.Ad d(SandboxW orkerPlugi nTimeout, "The plug- in executi on failed because th e operatio n has time d-out at t he Sandbox Worker.") ; | |||||
| 1478 | ErrorM essages.Ad d(SandboxS dkListener StartFaile d, "The pl ug-in exec ution fail ed because the Sandb ox Client encountere d an error during in itializati on."); | |||||
| 1479 | ErrorM essages.Ad d(ServiceB usPostFail ed, "The s ervice bus post fail ed."); | |||||
| 1480 | ErrorM essages.Ad d(ServiceB usIssuerNo tFound, "C annot find service i ntegration issuer in formation. "); | |||||
| 1481 | ErrorM essages.Ad d(ServiceB usIssuerCe rtificateE rror, "Ser vice integ ration iss uer certif icate erro r."); | |||||
| 1482 | ErrorM essages.Ad d(ServiceB usExtended TokenFaile d, "Failed to retrie ve the add itional to ken for se rvice bus post."); | |||||
| 1483 | ErrorM essages.Ad d(ServiceB usPostPost poned, "Se rvice bus post is be ing postpo ned."); | |||||
| 1484 | ErrorM essages.Ad d(ServiceB usPostDisa bled, "Ser vice bus p ost is dis abled for the organi zation."); | |||||
| 1485 | ErrorM essages.Ad d(SdkMessa geNotSuppo rtedOnServ er, "The m essage req uested is not suppor ted on the server.") ; | |||||
| 1486 | ErrorM essages.Ad d(SdkMessa geNotSuppo rtedOnClie nt, "The m essage req uested is not suppor ted on the client.") ; | |||||
| 1487 | ErrorM essages.Ad d(SdkCorre lationToke nDepthTooH igh, "This workflow job was ca nceled bec ause the w orkflow th at started it includ ed an infi nite loop. Correct t he workflo w logic an d try agai n. For inf ormation a bout workf low logic, see Help. "); | |||||
| 1488 | ErrorM essages.Ad d(OnlyStep InPredefin edStagesCa nBeModifie d, "Invali d plug-in registrati on stage. Steps can only be mo dified in stages Bef oreMainOpe rationOuts ideTransac tion, Befo reMainOper ationInsid eTransacti on, AfterM ainOperati onInsideTr ansaction and AfterM ainOperati onOutsideT ransaction ."); | |||||
| 1489 | ErrorM essages.Ad d(OnlyStep InServerOn lyCanHaveS ecureConfi guration, "Only SdkM essageProc essingStep with Serv erOnly sup ported dep loyment ca n have sec ure config uration.") ; | |||||
| 1490 | ErrorM essages.Ad d(OnlyStep OutsideTra nsactionCa nCreateCrm Service, " Only SdkMe ssageProce ssingStep in parent pipeline a nd in stag es outside transacti on can cre ate CrmSer vice to pr event dead lock."); | |||||
| 1491 | ErrorM essages.Ad d(SdkCusto mProcessin gStepIsNot Allowed, " Custom Sdk MessagePro cessingSte p is not a llowed on the specif ied messag e and enti ty."); | |||||
| 1492 | ErrorM essages.Ad d(SdkEntit yOfflineQu euePlaybac kIsNotAllo wed, "Enti ty '{0}' i s not allo wed in off line queue playback. "); | |||||
| 1493 | ErrorM essages.Ad d(SdkMessa geDoesNotS upportImag eRegistrat ion, "Mess age '{0}' does not s upport ima ge registr ation."); | |||||
| 1494 | ErrorM essages.Ad d(RequestL engthTooLa rge, "Requ est messag e length i s too larg e."); | |||||
| 1495 | ErrorM essages.Ad d(SandboxW orkerNotAv ailable, " The plug-i n executio n failed b ecause no Sandbox Wo rker proce sses are c urrently a vailable. Please try again."); | |||||
| 1496 | ErrorM essages.Ad d(SandboxH ostNotAvai lable, "Th e plug-in execution failed bec ause no Sa ndbox Host s are curr ently avai lable. Ple ase check that you h ave a Sand box server configure d and that it is run ning."); | |||||
| 1497 | ErrorM essages.Ad d(PluginAs semblyCont entSizeExc eeded, "\" The assemb ly content size '{0} bytes' ha s exceeded the maxim um value a llowed for isolated plug-ins ' {1} bytes' .\""); | |||||
| 1498 | ErrorM essages.Ad d(UnableTo LoadPlugin Type, "Una ble to loa d plug-in type."); | |||||
| 1499 | ErrorM essages.Ad d(UnableTo LoadPlugin Assembly, "Unable to load plug -in assemb ly."); | |||||
| 1500 | ErrorM essages.Ad d(InvalidP luginAssem blyContent , "Plug-in assembly does not c ontain the required types or a ssembly co ntent cann ot be upda ted."); | |||||
| 1501 | ErrorM essages.Ad d(InvalidP luginTypeI mplementat ion, "Plug -in type m ust implem ent exactl y one of t he followi ng classes or interf aces: Micr osoft.Crm. Sdk.IPlugi n, Microso ft.Xrm.Sdk .IPlugin, System.Act ivities.Ac tivity and System.Wo rkflow.Com ponentMode l.Activity ."); | |||||
| 1502 | ErrorM essages.Ad d(InvalidP luginAssem blyVersion , "Plug-in assembly fullnames must be un ique (igno ring the v ersion bui ld and rev ision numb er)."); | |||||
| 1503 | ErrorM essages.Ad d(PluginTy peMustBeUn ique, "Mul tiple plug -in types from the s ame assemb ly and wit h the same typename are not al lowed."); | |||||
| 1504 | ErrorM essages.Ad d(InvalidA ssemblySou rceType, " The given plugin ass embly sour ce type is not suppo rted for i solated pl ugin assem blies."); | |||||
| 1505 | ErrorM essages.Ad d(InvalidA ssemblyPro cessorArch itecture, "The given plugin as sembly was built wit h an unsup ported tar get platfo rm and can not be loa ded."); | |||||
| 1506 | ErrorM essages.Ad d(CyclicRe ferencesNo tSupported , "The inp ut contain s a cyclic reference , which is not suppo rted."); | |||||
| 1507 | ErrorM essages.Ad d(InvalidQ uery, "The query spe cified for this oper ation is i nvalid"); | |||||
| 1508 | ErrorM essages.Ad d(SandboxW orkerPlugi nExecuteTi meout, "Di dn’t recei ve a respo nse from t he {0} plu g-in withi n the 2:20 -minute li mit."); | |||||
| 1509 | ErrorM essages.Ad d(ServiceB usEndpoint NotConfigu red, "Conf iguration of require d credenti als must b e complete d before m essages ca n be sent. "); | |||||
| 1510 | ErrorM essages.Ad d(InvalidE mailAddres sFormat, " Invalid e- mail addre ss. For mo re informa tion, cont act your s ystem admi nistrator. "); | |||||
| 1511 | ErrorM essages.Ad d(Contract InvalidDis count, "Di scount can not be gre ater than total pric e."); | |||||
| 1512 | ErrorM essages.Ad d(InvalidL anguageCod e, "The sp ecified la nguage cod e is not v alid for t his organi zation."); | |||||
| 1513 | ErrorM essages.Ad d(ConfigNu llPrimaryK ey, "Prima ry Key can not be nul lable."); | |||||
| 1514 | ErrorM essages.Ad d(ConfigMi ssingDescr iption, "D escription must be s pecified." ); | |||||
| 1515 | ErrorM essages.Ad d(Attribut eDoesNotSu pportLocal izedLabels , "The spe cified att ribute doe s not supp ort locali zed labels ."); | |||||
| 1516 | ErrorM essages.Ad d(NoLangua geProvisio ned, "Ther e is no la nguage pro visioned f or this or ganization ."); | |||||
| 1517 | ErrorM essages.Ad d(CannotIm portNullSt ringsForBa seLanguage , "The bas e language translati on string present in worksheet {0}, row {1}, colum n {2} is n ull."); | |||||
| 1518 | ErrorM essages.Ad d(CannotUp dateNonCus tomizableS tring, "Th e translat ion string present i n workshee t {0}, row {1}, colu mn {2} is not custom izable."); | |||||
| 1519 | ErrorM essages.Ad d(InvalidO rganizatio nId, "The Organizati on ID pres ent in the translati ons file d oes not ma tch the cu rrent Orga nization I D."); | |||||
| 1520 | ErrorM essages.Ad d(InvalidT ranslation sFile, "Th e translat ions file is invalid or does n ot confirm to the re quired sch ema."); | |||||
| 1521 | ErrorM essages.Ad d(Metadata RecordNotD eletable, "The metad ata record being del eted canno t be delet ed by the end user") ; | |||||
| 1522 | ErrorM essages.Ad d(InvalidI mportJobTe mplateFile , "The Imp ortJobTemp late.xml f ile is inv alid."); | |||||
| 1523 | ErrorM essages.Ad d(InvalidI mportJobId , "The req uested imp ortjob doe s not exis t."); | |||||
| 1524 | ErrorM essages.Ad d(MissingC rmAuthenti cationToke n, "CrmAut henticatio nToken is missing.") ; | |||||
| 1525 | ErrorM essages.Ad d(Integrat edAuthenti cationIsNo tAllowed, "Integrate d authenti cation is not allowe d."); | |||||
| 1526 | ErrorM essages.Ad d(RequestI sNotAuthen ticated, " Request is not authe nticated." ); | |||||
| 1527 | ErrorM essages.Ad d(AsyncOpe rationType IsNotRecog nized, "Th e operatio n type of the async operation was not re cognized." ); | |||||
| 1528 | ErrorM essages.Ad d(FailedTo Deserializ eAsyncOper ationData, "Failed t o deserial ize async operation data."); | |||||
| 1529 | ErrorM essages.Ad d(UserSett ingsOverMa xPagingLim it, "Pagin g limit ov er maximum configure d value.") ; | |||||
| 1530 | ErrorM essages.Ad d(AsyncNet workError, "An error occurred while acce ssing the network.") ; | |||||
| 1531 | ErrorM essages.Ad d(AsyncCom munication Error, "A communicat ion error occurred w hile proce ssing the async oper ation."); | |||||
| 1532 | ErrorM essages.Ad d(MissingC rmAuthenti cationToke nOrganizat ionName, " Organizati on Name mu st be spec ified in C rmAuthenti cationToke n."); | |||||
| 1533 | ErrorM essages.Ad d(SdkNotEn oughPrivil egeToSetCa llerOrigin Token, "Ca ller does not have e nough priv ilege to s et CallerO riginToken to the sp ecified va lue."); | |||||
| 1534 | ErrorM essages.Ad d(OverRetr ievalUpper LimitWitho utPagingCo okie, "Ove r upper li mit of rec ords that can be req uested wit hout a pag ing cookie . A paging cookie is required when retri eving a hi gh page nu mber."); | |||||
| 1535 | ErrorM essages.Ad d(InvalidA llotmentsO verage, "A llotment o verage is invalid.") ; | |||||
| 1536 | ErrorM essages.Ad d(TooManyC onditionsI nQuery, "N umber of c onditions in query e xceeded ma ximum limi t."); | |||||
| 1537 | ErrorM essages.Ad d(TooManyL inkEntitie sInQuery, "Number of link enti ties in qu ery exceed ed maximum limit."); | |||||
| 1538 | ErrorM essages.Ad d(TooManyC onditionPa rametersIn Query, "Nu mber of pa rameters i n a condit ion exceed ed maximum limit."); | |||||
| 1539 | ErrorM essages.Ad d(InvalidO neToManyRe lationship ForRelated EntitiesQu ery, "An i nvalid One ToManyRela tionship h as been sp ecified fo r RelatedE ntitiesQue ry. Refere nced Entit y {0} shou ld be the same as pr imary enti ty {1}"); | |||||
| 1540 | ErrorM essages.Ad d(Picklist ValueNotUn ique, "The picklist value alre ady exists . Picklis t values m ust be uni que."); | |||||
| 1541 | ErrorM essages.Ad d(UnableTo LogOnUserF romUserNam eAndPasswo rd, "The s pecified u ser name a nd passwor d can not logon."); | |||||
| 1542 | ErrorM essages.Ad d(Picklist ValueOutOf Range, "Th e picklist value is out of the range."); | |||||
| 1543 | ErrorM essages.Ad d(WrongNum berOfBoole anOptions, "Boolean attributes must have exactly t wo option values."); | |||||
| 1544 | ErrorM essages.Ad d(BooleanO ptionOutOf Range, "Bo olean attr ibute opti ons must h ave a valu e of eithe r 0 or 1." ); | |||||
| 1545 | ErrorM essages.Ad d(CannotAd dNewBoolea nValue, "Y ou cannot add an opt ion to a B oolean att ribute."); | |||||
| 1546 | ErrorM essages.Ad d(CannotAd dNewStateV alue, "You cannot ad d state op tions to a State att ribute."); | |||||
| 1547 | ErrorM essages.Ad d(NoMoreCu stomOption ValuesExis t, "All av ailable cu stom optio n values h ave been u sed."); | |||||
| 1548 | ErrorM essages.Ad d(InsertOp tionValueI nvalidType , "You can add optio n values o nly to pic klist and status att ributes.") ; | |||||
| 1549 | ErrorM essages.Ad d(NewStatu sRequiresA ssociatedS tate, "The new statu s option m ust have a n associat ed state v alue."); | |||||
| 1550 | ErrorM essages.Ad d(NewStatu sHasInvali dState, "T he state v alue that was provid ed for thi s new stat us option does not e xist."); | |||||
| 1551 | ErrorM essages.Ad d(CannotDe leteEnumOp tionsFromA ttributeTy pe, "You c an delete options on ly from pi cklist and status at tributes." ); | |||||
| 1552 | ErrorM essages.Ad d(OptionRe orderArray IncorrectL ength, "Th e array of option va lues that were provi ded for re ordering d oes not ma tch the nu mber of op tions for the attrib ute."); | |||||
| 1553 | ErrorM essages.Ad d(ValueMis singInOpti onOrderArr ay, "The o ptions arr ay is miss ing a valu e."); | |||||
| 1554 | ErrorM essages.Ad d(NavPaneO rderValueN otAllowed, "The prov ided nav p ane order value is n ot allowed "); | |||||
| 1555 | ErrorM essages.Ad d(EntityRe lationship RoleCustom LabelsMiss ing, "Cust om labels must be pr ovided if an entity relationsh ip role ha s a displa y option o f UseCusto mLabels"); | |||||
| 1556 | ErrorM essages.Ad d(NavPaneN otCustomiz able, "The nav pane properties for this relationsh ip are not customiza ble"); | |||||
| 1557 | ErrorM essages.Ad d(EntityRe lationship SchemaName Required, "Entity re lationship s require a name"); | |||||
| 1558 | ErrorM essages.Ad d(EntityRe lationship SchemaName NotUnique, "A relati onship wit h the spec ified name already e xists. Ple ase specif y a unique name."); | |||||
| 1559 | ErrorM essages.Ad d(CustomRe flexiveRel ationshipN otAllowedF orEntity, "This enti ty is not valid for a custom r eflexive r elationshi p"); | |||||
| 1560 | ErrorM essages.Ad d(EntityCa nnotBeChil dInCustomR elationshi p, "This e ntity is e ither not valid as a child in a custom p arental re lationship or is alr eady a chi ld in a pa rental rel ationship" ); | |||||
| 1561 | ErrorM essages.Ad d(Referenc edEntityHa sLogicalPr imaryNameF ield, "Thi s entity h as a prima ry field t hat is log ical and t herefore c annot be t he referen ced entity in a one- to-many re lationship "); | |||||
| 1562 | ErrorM essages.Ad d(IntegerV alueOutOfR ange, "A v alidation error occu rred. An i nteger pro vided is o utside of the allowe d values f or this at tribute.") ; | |||||
| 1563 | ErrorM essages.Ad d(DecimalV alueOutOfR ange, "A v alidation error occu rred. A de cimal valu e provided is outsid e of the a llowed val ues for th is attribu te."); | |||||
| 1564 | ErrorM essages.Ad d(StringLe ngthTooLon g, "A vali dation err or occurre d. A strin g value pr ovided is too long." ); | |||||
| 1565 | ErrorM essages.Ad d(EntityCa nnotPartic ipateInEnt ityAssocia tion, "Thi s entity c annot part icipate in an entity associati on"); | |||||
| 1566 | ErrorM essages.Ad d(DataMigr ationManag erUnknownP roblem, "T he Data Mi gration Ma nager enco untered an unknown p roblem and cannot co ntinue. To try again , restart the Data M igration M anager."); | |||||
| 1567 | ErrorM essages.Ad d(ImportOp erationChi ldFailure, "One or m ore of the Import Ch ild Jobs F ailed"); | |||||
| 1568 | ErrorM essages.Ad d(Attribut eDeprecate d, "\"Attr ibute '{0} ' on entit y '{1}' is deprecate d.\""); | |||||
| 1569 | ErrorM essages.Ad d(DataMigr ationManag erMandator yUpdatesNo tInstalled , "First-t ime config uration of the Data Migration Manager ha s been can celed. You will not be able to use the D ata Migrat ion Manage r until co nfiguratio n is compl eted."); | |||||
| 1570 | ErrorM essages.Ad d(Referenc edEntityMu stHaveLook upView, "R eferenced entities o f a relati onship mus t have a l ookup view "); | |||||
| 1571 | ErrorM essages.Ad d(Referenc ingEntityM ustHaveAss ociationVi ew, "Refer encing ent ities of a relations hip must h ave an ass ociation v iew"); | |||||
| 1572 | ErrorM essages.Ad d(CouldNot ObtainLock OnResource , "Databas e resource lock coul d not be o btained"); | |||||
| 1573 | ErrorM essages.Ad d(SourceAt tributeHea derTooBig, "Column h eaders mus t be 160 o r fewer ch aracters. Fix the co lumn heade rs, and th en run Dat a Migratio n Manager again."); | |||||
| 1574 | ErrorM essages.Ad d(CannotDe leteDefaul tStatusOpt ion, "Defa ult Status options c annot be d eleted."); | |||||
| 1575 | ErrorM essages.Ad d(CannotFi ndDomainAc count, "In valid doma in account "); | |||||
| 1576 | ErrorM essages.Ad d(CannotUp dateAppDef aultValueF orStateAtt ribute, "T he default value for a status (statecode ) attribut e cannot b e updated. "); | |||||
| 1577 | ErrorM essages.Ad d(CannotUp dateAppDef aultValueF orStatusAt tribute, " The defaul t value fo r a status reason (s tatuscode) attribute is not us ed. The de fault stat us reason is set in the associ ated statu s (stateco de) attrib ute option ."); | |||||
| 1578 | ErrorM essages.Ad d(InvalidO ptionSetSc hemaName, "An Option Set with t he specifi ed name al ready exis ts. Please specify a unique na me."); | |||||
| 1579 | ErrorM essages.Ad d(Referenc ingEntityC annotBeSol utionAware , "Referen cing entit ies in a r elationshi p cannot b e a compon ent in a s olution.") ; | |||||
| 1580 | ErrorM essages.Ad d(ErrorInF ieldWidthI ncrease, " An error o ccurred wh ile increa sing the f ield width ."); | |||||
| 1581 | ErrorM essages.Ad d(ExpiredV ersionStam p, "Versio n stamp as sociated w ith the cl ient has e xpired. Pl ease perfo rm a full sync."); | |||||
| 1582 | ErrorM essages.Ad d(AsyncOpe rationCann otCancel, "This syst em job can not be can celed."); | |||||
| 1583 | ErrorM essages.Ad d(AsyncOpe rationCann otPause, " This syste m job cann ot be paus ed."); | |||||
| 1584 | ErrorM essages.Ad d(CannotDe leteOrCanc elSystemJo bs, "You c an't cance l or delet e this sys tem job be cause it's required by the sys tem. You c an only pa use, resum e, or post pone this job."); | |||||
| 1585 | ErrorM essages.Ad d(Workflow CompileFai lure, "An error has occurred d uring comp ilation of the workf low."); | |||||
| 1586 | ErrorM essages.Ad d(UpdatePu blishedWor kflowDefin ition, "Ca nnot updat e a publis hed workfl ow definit ion."); | |||||
| 1587 | ErrorM essages.Ad d(UpdateWo rkflowActi vation, "C annot upda te a workf low activa tion."); | |||||
| 1588 | ErrorM essages.Ad d(DeleteWo rkflowActi vation, "C annot dele te a workf low activa tion."); | |||||
| 1589 | ErrorM essages.Ad d(DeleteWo rkflowActi vationWork flowDepend ency, "Can not delete a workflo w dependen cy associa ted with a workflow activation ."); | |||||
| 1590 | ErrorM essages.Ad d(DeletePu blishedWor kflowDefin itionWorkf lowDepende ncy, "Cann ot delete a workflow dependenc y for a pu blished wo rkflow def inition.") ; | |||||
| 1591 | ErrorM essages.Ad d(UpdateWo rkflowActi vationWork flowDepend ency, "Can not update a workflo w dependen cy associa ted with a workflow activation ."); | |||||
| 1592 | ErrorM essages.Ad d(UpdatePu blishedWor kflowDefin itionWorkf lowDepende ncy, "Cann ot update a workflow dependenc y for a pu blished wo rkflow def inition.") ; | |||||
| 1593 | ErrorM essages.Ad d(CreateWo rkflowActi vationWork flowDepend ency, "Can not create a workflo w dependen cy associa ted with a workflow activation ."); | |||||
| 1594 | ErrorM essages.Ad d(CreatePu blishedWor kflowDefin itionWorkf lowDepende ncy, "Cann ot create a workflow dependenc y for a pu blished wo rkflow def inition.") ; | |||||
| 1595 | ErrorM essages.Ad d(Workflow PublishedB yNonOwner, "The work flow canno t be publi shed or un published by someone who is no t its owne r."); | |||||
| 1596 | ErrorM essages.Ad d(Publishe dWorkflowO wnershipCh ange, "A p ublished w orkflow ca n only be assigned t o the call er."); | |||||
| 1597 | ErrorM essages.Ad d(OnlyWork flowDefini tionOrTemp lateCanBeP ublished, "Only work flow defin ition or d raft workf low templa te can be published. "); | |||||
| 1598 | ErrorM essages.Ad d(OnlyWork flowDefini tionOrTemp lateCanBeU npublished , "Only wo rkflow def inition or workflow template c an be unpu blished.") ; | |||||
| 1599 | ErrorM essages.Ad d(DeleteWo rkflowActi veDefiniti on, "Canno t delete a n active w orkflow de finition." ); | |||||
| 1600 | ErrorM essages.Ad d(Workflow ConditionI ncorrectUn aryOperato rFormation , "Incorre ct formati on of unar y operator ."); | |||||
| 1601 | ErrorM essages.Ad d(Workflow ConditionI ncorrectBi naryOperat orFormatio n, "Incorr ect format ion of bin ary operat or."); | |||||
| 1602 | ErrorM essages.Ad d(Workflow ConditionO peratorNot Supported, "Conditio n operator not suppo rted for s pecified t ype."); | |||||
| 1603 | ErrorM essages.Ad d(Workflow ConditionT ypeNotSupp ort, "Inva lid type s pecified o n conditio n."); | |||||
| 1604 | ErrorM essages.Ad d(Workflow Validation Failure, " Validation failed on the speci fied workf low."); | |||||
| 1605 | ErrorM essages.Ad d(Publishe dWorkflowL imitForSku Reached, " This workf low cannot be publis hed becaus e your org anization has reache d its limi t for the number of workflows that can b e publishe d at the s ame time. (There is no limit o n the numb er of draf t workflow s.) You ca n publish this workf low by unp ublishing a differen t workflow , or by up grading yo ur license to a lice nse that s upports mo re workflo ws."); | |||||
| 1606 | ErrorM essages.Ad d(NoPrivil egeToPubli shWorkflow , "User do es not hav e sufficie nt privile ges to pub lish workf lows."); | |||||
| 1607 | ErrorM essages.Ad d(Workflow SystemPaus ed, "Workf low should be paused by system ."); | |||||
| 1608 | ErrorM essages.Ad d(Workflow PublishNoA ctivationP arameters, "Automati c workflow cannot be published if no act ivation pa rameters h ave been s pecified." ); | |||||
| 1609 | ErrorM essages.Ad d(CreateWo rkflowDepe ndencyForP ublishedTe mplate, "C annot crea te a workf low depend ency for a published workflow template." ); | |||||
| 1610 | ErrorM essages.Ad d(DeleteAc tiveWorkfl owTemplate Dependency , "Cannot delete wor kflow depe ndency fro m a publis hed workfl ow templat e ."); | |||||
| 1611 | ErrorM essages.Ad d(UpdatePu blishedWor kflowTempl ate, "Cann ot update a publishe d workflow template. "); | |||||
| 1612 | ErrorM essages.Ad d(DeleteWo rkflowActi veTemplate , "Cannot delete an active wor kflow temp late."); | |||||
| 1613 | ErrorM essages.Ad d(CustomAc tivityInva lid, "Inva lid custom activity. "); | |||||
| 1614 | ErrorM essages.Ad d(PrimaryE ntityInval id, "Inval id primary entity.") ; | |||||
| 1615 | ErrorM essages.Ad d(CannotDe serializeW orkflowIns tance, "Wo rkflow ins tance cann ot be dese rialized. A possible reason fo r this fai lure is a workflow r eferencing a custom activity t hat has be en unregis tered."); | |||||
| 1616 | ErrorM essages.Ad d(CannotDe serializeX amlWorkflo w, "Xaml r epresentin g workflow cannot be deseriali zed into a DynamicAc tivity."); | |||||
| 1617 | ErrorM essages.Ad d(CannotDe leteCustom EntityUsed InWorkflow , "Cannot delete ent ity becaus e it is us ed in a wo rkflow."); | |||||
| 1618 | ErrorM essages.Ad d(BulkMail OperationF ailed, "Th e bulk e-m ail job co mpleted wi th {0} fai lures. The failures might be c aused by m issing e-m ail addres ses or bec ause you d o not have permissio n to send e-mail. To find reco rds with m issing e-m ail addres ses, use A dvanced Fi nd. If you need incr eased e-ma il permiss ions, cont act your s ystem admi nistrator. "); | |||||
| 1619 | ErrorM essages.Ad d(Workflow Expression OperatorNo tSupported , "Express ion operat or not sup ported for specified type."); | |||||
| 1620 | ErrorM essages.Ad d(ChildWor kflowNotFo und, "This workflow cannot run because o ne or more child wor kflows it uses have not been p ublished o r have bee n deleted. Please ch eck the ch ild workfl ows and tr y running this workf low again. "); | |||||
| 1621 | ErrorM essages.Ad d(CannotDe leteAttrib uteUsedInW orkflow, " This attri bute canno t be delet ed because it is use d in one o r more wor kflows. Ca ncel any s ystem jobs for workf lows that use this a ttribute, then delet e or modif y any work flows that use the a ttribute, and then t ry to dele te the att ribute aga in."); | |||||
| 1622 | ErrorM essages.Ad d(CannotLo cateRecord ForWorkflo wActivity, "A record required by this wo rkflow job could not be found. "); | |||||
| 1623 | ErrorM essages.Ad d(PublishW orkflowWhi leActingOn BehalfOfAn otherUserE rror, "Pub lishing Wo rkflows wh ile acting on behalf of anothe r user is not allowe d."); | |||||
| 1624 | ErrorM essages.Ad d(CannotDi sableInter netMarketi ngUser, "Y ou cannot disable th e Internet Marketing Partner u ser. This user does not consum e a user l icense and is not ch arged to y our organi zation."); | |||||
| 1625 | ErrorM essages.Ad d(CannotSe tWindowsLi veIdForInt ernetMarke tingUser, "You canno t change t he Windows Live ID f or the Int ernet Mark eting Part ner user. This user does not c onsume a u ser licens e and is n ot charged to your o rganizatio n."); | |||||
| 1626 | ErrorM essages.Ad d(CannotCh angeAccess ModeForInt ernetMarke tingUser, "Internet Marketing User is a system use r. You can not change its acces s mode."); | |||||
| 1627 | ErrorM essages.Ad d(CannotCh angeInvita tionStatus ForInterne tMarketing User, "Int ernet Mark eting User is a syst em user. Y ou cannot change its invitatio n status." ); | |||||
| 1628 | ErrorM essages.Ad d(UIDataGe nerationFa iled, "The re was an error gene rating the UIData fr om XAML.") ; | |||||
| 1629 | ErrorM essages.Ad d(Workflow References InvalidAct ivity, "Th e workflow definitio n contains a step th at referen ces and in valid cust om activit y. Remove the invali d referenc es and try again."); | |||||
| 1630 | ErrorM essages.Ad d(PublishW orkflowWhi leImperson atingError , "Publish ing Workfl ows while impersonat ing anothe r user is not allowe d."); | |||||
| 1631 | ErrorM essages.Ad d(Exchange Autodiscov erError, " Autodiscov er could n ot find th e Exchange Web Servi ces URL fo r the spec ified mail box. Verif y that the mailbox a ddress and the crede ntials pro vided are correct an d that Aut odiscover is enabled and has b een config ured corre ctly."); | |||||
| 1632 | ErrorM essages.Ad d(NonCrmUI WorkflowsN otSupporte d, "This w orkflow ca nnot be cr eated, upd ated or pu blished be cause it w as created outside t he Microso ft Dynamic s 365 Web applicatio n. Your or ganization does not allow this type of w orkflow.") ; | |||||
| 1633 | ErrorM essages.Ad d(NotEnoug hPrivilege sForXamlWo rkflows, " Not enough privilege s to compl ete the op eration. O nly the de ployment a dministrat or can cre ate or upd ate workfl ows that a re created outside t he Microso ft Dynamic s 365 Web applicatio n."); | |||||
| 1634 | ErrorM essages.Ad d(Workflow Automatica llyDeactiv ated, "The original workflow d efinition has been d eactivated and repla ced."); | |||||
| 1635 | ErrorM essages.Ad d(StepAuto maticallyD isabled, " The origin al sdkmess ageprocess ingstep ha s been dis abled and replaced." ); | |||||
| 1636 | ErrorM essages.Ad d(NonCrmUI Interactiv eWorkflowN otSupporte d, "This i nteractive workflow cannot be created, u pdated or published because it was creat ed outside the Micro soft Dynam ics 365 We b applicat ion."); | |||||
| 1637 | ErrorM essages.Ad d(Workflow ActivityNo tSupported , "This wo rkflow can not be cre ated, upda ted or pub lished bec ause it's referring unsupporte d workflow step."); | |||||
| 1638 | ErrorM essages.Ad d(ExecuteN otOnDemand Workflow, "Workflow must be ma rked as on -demand or child wor kflow."); | |||||
| 1639 | ErrorM essages.Ad d(ExecuteU npublished Workflow, "Workflow must be in Published state."); | |||||
| 1640 | ErrorM essages.Ad d(ChildWor kflowParam eterMismat ch, "This workflow c annot run because ar guments pr ovided by parent wor kflow does not match with the specified parameters in linked child wor kflow. Che ck the chi ld workflo w referenc e in paren t workflow and try r unning thi s workflow again."); | |||||
| 1641 | ErrorM essages.Ad d(InvalidP rocessStat eData, "Pr ocessState is not va lid for gi ven Proces sSession i nstance.") ; | |||||
| 1642 | ErrorM essages.Ad d(OutOfSco peSlug, "T he data re quired to display th e next dia log page c annot be f ound. To r esolve thi s issue, c ontact the dialog ow ner or the system ad ministrato r."); | |||||
| 1643 | ErrorM essages.Ad d(CustomWo rkflowActi vitiesNotS upported, "Custom Wo rkflow Act ivities ar e not enab led."); | |||||
| 1644 | ErrorM essages.Ad d(CustomOp erationNot Activated, "Process action ass ociated wi th this pr ocess is n ot activat ed."); | |||||
| 1645 | ErrorM essages.Ad d(CrmSqlGo vernorData baseReques tDenied, " The server is busy a nd the req uest was n ot complet ed. Try ag ain later. "); | |||||
| 1646 | ErrorM essages.Ad d(InvalidA uthTicket, "The tick et specifi ed for aut henticatio n didn't p ass valida tion"); | |||||
| 1647 | ErrorM essages.Ad d(ExpiredA uthTicket, "The tick et specifi ed for aut henticatio n is expir ed"); | |||||
| 1648 | ErrorM essages.Ad d(BadAuthT icket, "Th e ticket s pecified f or authent ication is invalid") ; | |||||
| 1649 | ErrorM essages.Ad d(Insuffic ientAuthTi cket, "The ticket sp ecified fo r authenti cation did n't meet p olicy"); | |||||
| 1650 | ErrorM essages.Ad d(Organiza tionDisabl ed, "The D ynamics 36 5 organiza tion you a re attempt ing to acc ess is cur rently dis abled. Pl ease conta ct your sy stem admin istrator") ; | |||||
| 1651 | ErrorM essages.Ad d(Tampered AuthTicket , "The tic ket specif ied for au thenticati on has bee n tampered with or i nvalidated ."); | |||||
| 1652 | ErrorM essages.Ad d(ExpiredK ey, "The k ey specifi ed to comp ute a hash value is expired, o nly active keys are valid. Ex pired Key : {0}."); | |||||
| 1653 | ErrorM essages.Ad d(ScaleGro upDisabled , "The spe cified sca legroup is disabled. Access to organizat ions in th is scalegr oup are no t allowed. "); | |||||
| 1654 | ErrorM essages.Ad d(SupportL ogOnExpire d, "Suppor t login is expired") ; | |||||
| 1655 | ErrorM essages.Ad d(InvalidP artnerSolu tionCustom izationPro vider, "In valid part ner soluti on customi zation pro vider type "); | |||||
| 1656 | ErrorM essages.Ad d(Multiple PartnerSec urityRoleW ithSameInf ormation, "More than one secur ity role f ound for p artner use r"); | |||||
| 1657 | ErrorM essages.Ad d(Multiple PartnerUse rWithSameI nformation , "More th an one par tner user found with same info rmation"); | |||||
| 1658 | ErrorM essages.Ad d(Multiple RootBusine ssUnit, "M ore than o ne root bu siness uni t found"); | |||||
| 1659 | ErrorM essages.Ad d(CannotDe letePartne rWithPartn erSolution s, "Can no t delete p artner as one or mor e solution s are asso ciated wit h it"); | |||||
| 1660 | ErrorM essages.Ad d(CannotDe letePartne rSolutionW ithOrganiz ations, "C an not del ete partne r solution as one or more orga nizations are associ ated with it"); | |||||
| 1661 | ErrorM essages.Ad d(CannotPr ovisionPar tnerSoluti on, "Can n ot provisi on partner solution as it is e ither alre ady provis ioned or g oing throu gh provisi oning."); | |||||
| 1662 | ErrorM essages.Ad d(CannotAc tOnBehalfO fAnotherUs er, "User does not h ave the pr ivilege to act on be half anoth er user.") ; | |||||
| 1663 | ErrorM essages.Ad d(SystemUs erDisabled , "The sys tem user w as disable d therefor e the tick et expired ."); | |||||
| 1664 | ErrorM essages.Ad d(UserDoes NotHaveAdm inOnlyMode Permission s, "User d oes not ha ve require d privileg es (or rol e membersh ip) to acc ess the or g when it is in Admi n Only mod e."); | |||||
| 1665 | ErrorM essages.Ad d(PluginDo esNotImple mentCorrec tInterface , "The plu g-in speci fied does not implem ent the re quired int erface Mic rosoft.Xrm .Sdk.IPlug in or Micr osoft.Crm. Sdk.IPlugi n."); | |||||
| 1666 | ErrorM essages.Ad d(CannotCr eatePlugin Instance, "Can not c reate inst ance of a plug-in. V erify that plug-in t ype is not defined a s abstract and it ha s a public construct or support ed by Dyna mics 365 S DK."); | |||||
| 1667 | ErrorM essages.Ad d(CrmLiveG enericErro r, "An err or has occ urred whil e processi ng your re quest."); | |||||
| 1668 | ErrorM essages.Ad d(CrmLiveO rganizatio nProvision ingFailed, "An error has occur red when p rovisionin g the orga nization." ); | |||||
| 1669 | ErrorM essages.Ad d(CrmLiveM issingActi veDirector yGroup, "T he specifi ed Active Directory Group does not exist ."); | |||||
| 1670 | ErrorM essages.Ad d(CrmLiveI nternalPro visioningE rror, "An unexpected error hap pened in t he provisi oning syst em."); | |||||
| 1671 | ErrorM essages.Ad d(CrmLiveQ ueueItemDo esNotExist , "The spe cified que ue item do es not exi st in the queue. It may have b een delete d or its I D may not have been specified correctly" ); | |||||
| 1672 | ErrorM essages.Ad d(CrmLiveI nvalidSetu pParameter , "The par ameter to Dynamics 3 65 Online Setup is i ncorrect o r not spec ified."); | |||||
| 1673 | ErrorM essages.Ad d(CrmLiveM ultipleWit nessServer sInScaleGr oup, "The ScaleGroup has multi ple witnes s servers specified. There sho uld be onl y 1 witnes s server i n a scale group."); | |||||
| 1674 | ErrorM essages.Ad d(CrmLiveM issingServ erRolesInS caleGroup, "The scal egroup is missing so me require d server r oles. 1 Wi tness Serv er and 2 S ql Servers are requi red for Pr ovisioning ."); | |||||
| 1675 | ErrorM essages.Ad d(CrmLiveS erverCanno tHaveWitne ssAndDataS erverRoles , "A serve r cannot h ave both W itness and Data Serv er Roles." ); | |||||
| 1676 | ErrorM essages.Ad d(IsNotLiv eToSendInv itation, " This funct ionality i s not supp orted, its only avai lable for Online sol ution."); | |||||
| 1677 | ErrorM essages.Ad d(MissingO rganizatio nFriendlyN ame, "Cann ot install Dynamics 365 withou t an organ ization fr iendly nam e."); | |||||
| 1678 | ErrorM essages.Ad d(MissingO rganizatio nUniqueNam e, "Cannot install D ynamics 36 5 without an organiz ation uniq ue name.") ; | |||||
| 1679 | ErrorM essages.Ad d(Offering CategoryAn dTokenNull , "Offer c ategory an d Billing Token are both missi ng, but at least one is requir ed."); | |||||
| 1680 | ErrorM essages.Ad d(Offering IdNotSuppo rted, "Thi s version does not s upport sea rch for of fering id. "); | |||||
| 1681 | ErrorM essages.Ad d(Organiza tionTakenB yYou, "The organizat ion {0} is already p urchased b y you."); | |||||
| 1682 | ErrorM essages.Ad d(Organiza tionTakenB ySomeoneEl se, "The o rganizatio n {0} is a lready pur chased by another cu stomer."); | |||||
| 1683 | ErrorM essages.Ad d(InvalidT emplate, " The Invita tion Email template is not val id"); | |||||
| 1684 | ErrorM essages.Ad d(InvalidU serQuota, "You have reached th e maximum number of user quota "); | |||||
| 1685 | ErrorM essages.Ad d(InvalidR ole, "You have not a ssigned ro les to thi s user"); | |||||
| 1686 | ErrorM essages.Ad d(ErrorGen eratingInv itation, " Some Inter nal error occurred i n generati ng invitat ion token, Please tr y again la ter"); | |||||
| 1687 | ErrorM essages.Ad d(CrmLiveO rganizatio nUpgradeFa iled, "Upg rade Of Cr m Organiza tion Faile d."); | |||||
| 1688 | ErrorM essages.Ad d(UnableTo SendEmail, "Some Int ernal erro r occurred in sendin g invitati on, Please try again later"); | |||||
| 1689 | ErrorM essages.Ad d(InvalidE mail, "Ema il generat ed from th e template is not va lid"); | |||||
| 1690 | ErrorM essages.Ad d(VersionM ismatch, " Unsupporte d version - This is {0} versio n {1}, but version { 2} was req uested."); | |||||
| 1691 | ErrorM essages.Ad d(MissingP arameterTo Method, "M issing par ameter {0} to method {1}"); | |||||
| 1692 | ErrorM essages.Ad d(InvalidV alueForCou ntryCode, "Account C ountry/Reg ion code m ust not be {0}"); | |||||
| 1693 | ErrorM essages.Ad d(InvalidV alueForCur rency, "Ac count curr ency code must not b e {0}"); | |||||
| 1694 | ErrorM essages.Ad d(InvalidV alueForLoc ale, "Acco unt locale code must not be {0 }"); | |||||
| 1695 | ErrorM essages.Ad d(CrmLiveS upportOrga nizationEx istsInScal eGroup, "O nly one su pport orga nization i s allowed in a scale group."); | |||||
| 1696 | ErrorM essages.Ad d(CrmLiveM onitoringO rganizatio nExistsInS caleGroup, "Only one monitorin g organiza tion is al lowed in a scalegrou p."); | |||||
| 1697 | ErrorM essages.Ad d(InvalidU serLicense Count, "Ca nnot purch ase {0} us er license s for the Offering { 1}."); | |||||
| 1698 | ErrorM essages.Ad d(MissingC olumn, "Th e property bag is mi ssing an e ntry for { 0}."); | |||||
| 1699 | ErrorM essages.Ad d(InvalidR esourceTyp e, "The re quested ac tion is no t valid fo r resource type {0}. "); | |||||
| 1700 | ErrorM essages.Ad d(InvalidM inimumReso urceLimit, "The reso urce type {0} cannot have a mi nimum limi t of {1}." ); | |||||
| 1701 | ErrorM essages.Ad d(InvalidM aximumReso urceLimit, "The reso urce type {0} cannot have a ma ximum limi t of {1}." ); | |||||
| 1702 | ErrorM essages.Ad d(Conflict ingProvisi onTypes, " The servic e componen t {0} has conflictin g provisio n types.") ; | |||||
| 1703 | ErrorM essages.Ad d(InvalidA mountProvi ded, "The service co mponent {0 } cannot h ave a prov ide {1} of resource type {2}." ); | |||||
| 1704 | ErrorM essages.Ad d(CrmLiveO rganizatio nDeleteFai led, "An e rror has o ccurred wh en deletin g the orga nization." ); | |||||
| 1705 | ErrorM essages.Ad d(OnlyDisa bledOrgani zationCanB eDeleted, "Can not d elete enab led organi zation. Or ganization must be d isabled be fore it ca n be delet ed."); | |||||
| 1706 | ErrorM essages.Ad d(CrmLiveO rganizatio nDetailsNo tFound, "U nable to f ind organi zation det ails."); | |||||
| 1707 | ErrorM essages.Ad d(CrmLiveO rganizatio nFriendlyN ameTooShor t, "The or ganization name prov ided is to o short.") ; | |||||
| 1708 | ErrorM essages.Ad d(CrmLiveO rganizatio nFriendlyN ameTooLong , "The org anization name provi ded is too long."); | |||||
| 1709 | ErrorM essages.Ad d(CrmLiveO rganizatio nUniqueNam eTooShort, "The uniq ue name pr ovided is too short. "); | |||||
| 1710 | ErrorM essages.Ad d(CrmLiveO rganizatio nUniqueNam eTooLong, "The uniqu e name pro vided is t oo long.") ; | |||||
| 1711 | ErrorM essages.Ad d(CrmLiveO rganizatio nUniqueNam eInvalid, "The uniqu e name pro vided is n ot valid." ); | |||||
| 1712 | ErrorM essages.Ad d(CrmLiveO rganizatio nUniqueNam eReserved, "The uniq ue name is already r eserved.") ; | |||||
| 1713 | ErrorM essages.Ad d(ValuePar singError, "Error pa rsing para meter {0} of type {1 } with val ue {2}"); | |||||
| 1714 | ErrorM essages.Ad d(InvalidG ranularity Value, "Th e Granular ity column value is incorrect. Each rule part must be a name -value pai r separate d by an eq ual sign ( =). For ex ample: FRE Q=Minutes; INTERVAL=1 5"); | |||||
| 1715 | ErrorM essages.Ad d(CrmLiveI nvalidQueu eItemSched ule, "The QueueItem has an inv alid sched ule of sta rt time {0 } and end time {1}." ); | |||||
| 1716 | ErrorM essages.Ad d(CrmLiveQ ueueItemTi meInPast, "A QueueIt em cannot be schedul ed to star t or end i n the past ."); | |||||
| 1717 | ErrorM essages.Ad d(CrmLiveU nknownSku, "This Sku specified is not va lid."); | |||||
| 1718 | ErrorM essages.Ad d(ExceedCu stomEntity Quota, "Th e custom e ntity limi t has been reached." ); | |||||
| 1719 | ErrorM essages.Ad d(ImportWi llExceedCu stomEntity Quota, "Th is import process is trying to import {0 } new cust om entitie s. This wo uld exceed the custo m entity l imits for this organ ization.") ; | |||||
| 1720 | ErrorM essages.Ad d(Organiza tionMigrat ionUnderwa y, "Organi zation mig ration is already un derway."); | |||||
| 1721 | ErrorM essages.Ad d(CrmLiveI nvoicingAc countIdMis sing, "Inv oicing Acc ount Numbe r (SAP Id) cannot be empty for an invoic ing sku.") ; | |||||
| 1722 | ErrorM essages.Ad d(CrmLiveD uplicateWi ndowsLiveI d, "A user with this username already ex ists."); | |||||
| 1723 | ErrorM essages.Ad d(CrmLiveD nsDomainNo tFound, "D omain was not found in the DNS table."); | |||||
| 1724 | ErrorM essages.Ad d(CrmLiveD nsDomainAl readyExist s, "Domain already e xists in t he DNS tab le."); | |||||
| 1725 | ErrorM essages.Ad d(InvalidI nteractive UserQuota, "You have reached t he maximum number of interacti ve/full us ers."); | |||||
| 1726 | ErrorM essages.Ad d(InvalidN onInteract iveUserQuo ta, "You h ave reache d the maxi mum number of non-in teractive users/"); | |||||
| 1727 | ErrorM essages.Ad d(CrmLiveC annotFindE xternalMes sageProvid er, "Exter nal Messag e Provider could not be locate d for queu e item typ e of: {0}. "); | |||||
| 1728 | ErrorM essages.Ad d(CrmLiveI nvalidExte rnalMessag eData, "Ex ternal Mes sage Data has some i nvalid dat a. Data: {0} Extern al Message : {1}"); | |||||
| 1729 | ErrorM essages.Ad d(CrmLiveO rganizatio nEnableFai led, "Enab ling Organ ization Fa iled."); | |||||
| 1730 | ErrorM essages.Ad d(CrmLiveO rganizatio nDisableFa iled, "Dis abling Org anization Failed."); | |||||
| 1731 | ErrorM essages.Ad d(CrmLiveA ddOnUnexpe ctedError, "There wa s an error contactin g the bill ing system . Your re quest cann ot be proc essed at t his time. No change s have bee n made to your accou nt. Close this wiza rd, and tr y again la ter. If t he problem persists, please co ntact our sales orga nization a t 1-877-Dy namics 365 -CHOICE (2 76-2464)." ); | |||||
| 1732 | ErrorM essages.Ad d(CrmLiveA ddOnAddLic enseLimitR eached, "Y our subscr iption has the maxim um number of user li censes ava ilable. F or additio nal licens es, please contact o ur sales o rganizatio n at 1-877 -Dynamics 365-CHOICE (276-2464 )."); | |||||
| 1733 | ErrorM essages.Ad d(CrmLiveA ddOnAddSto rageLimitR eached, "Y our subscr iption has the maxim um amount of storage available . For add itional st orage, ple ase contac t our sale s organiza tion at 1- 877-Dynami cs 365-CHO ICE (276-2 464)."); | |||||
| 1734 | ErrorM essages.Ad d(CrmLiveA ddOnRemove StorageLim itReached, "Your org anization has the mi nimum amou nt of stor age allowe d. You ca n remove o nly storag e that has been adde d to your organizati on, and i s not bein g used."); | |||||
| 1735 | ErrorM essages.Ad d(CrmLiveA ddOnOrgInN oUpdateMod e, "Your c hanges can not be pro cessed at this time. Your orga nization i s currentl y being up dated. No changes h ave been m ade to you r account. Close th is wizard, and try a gain later . If the problem pe rsists, pl ease conta ct our sal es organiz ation at 1 -877-Dynam ics 365-CH OICE (276- 2464)."); | |||||
| 1736 | ErrorM essages.Ad d(CrmLiveU nknownCate gory, "Thi s Category specified is not va lid."); | |||||
| 1737 | ErrorM essages.Ad d(CrmLiveI nvalidInvo icingAccou ntNumber, "This Invo icing Acco unt Number is not va lid becaus e it conta ins an inv alid chara cter."); | |||||
| 1738 | ErrorM essages.Ad d(CrmLiveA ddOnDataCh anged, "Du e to recen t changes you have m ade to you r account, these cha nges canno t be made at this ti me. Clos e this wiz ard, and t ry again l ater. If the proble m persists , please c ontact our sales org anization at 1-877-D ynamics 36 5-CHOICE ( 276-2464). "); | |||||
| 1739 | ErrorM essages.Ad d(CrmLiveI nvalidEmai l, "Invali d email ad dress ente red."); | |||||
| 1740 | ErrorM essages.Ad d(CrmLiveI nvalidPhon e, "Invali d phone nu mber enter ed."); | |||||
| 1741 | ErrorM essages.Ad d(CrmLiveI nvalidZipC ode, "Inva lid zip co de entered ."); | |||||
| 1742 | ErrorM essages.Ad d(InvalidA mountFreeR esourceLim it, "The r esource ty pe {0} can not have a n amount f ree value of {1}."); | |||||
| 1743 | ErrorM essages.Ad d(InvalidT oken, "The token is invalid.") ; | |||||
| 1744 | ErrorM essages.Ad d(CrmLiveR egisterCus tomCodeDis abled, "Re gistration of custom code feat ure for th is organiz ation is d isabled.") ; | |||||
| 1745 | ErrorM essages.Ad d(CrmLiveE xecuteCust omCodeDisa bled, "Exe cution of custom cod e feature for this o rganizatio n is disab led."); | |||||
| 1746 | ErrorM essages.Ad d(CrmLiveI nvalidTaxI d, "Invali d TaxId en tered."); | |||||
| 1747 | ErrorM essages.Ad d(Datacent erNotAvail able, "Thi s datacent er endpoin t is not c urrently a vailable f or this or ganization ."); | |||||
| 1748 | ErrorM essages.Ad d(ErrorCon nectingToD iscoverySe rvice, "Er ror when t rying to c onnect to customer's discovery service." ); | |||||
| 1749 | ErrorM essages.Ad d(OrgDoesN otExistInD iscoverySe rvice, "Or ganization not found in custom er's disco very servi ce"); | |||||
| 1750 | ErrorM essages.Ad d(ErrorCon nectingToO rganizatio nService, "Error whe n trying t o connect to custome r's organi zation ser vice."); | |||||
| 1751 | ErrorM essages.Ad d(UserIsNo tSystemAdm inInOrgani zation, "C urrent use r is not a system ad min in cus tomer's or ganization "); | |||||
| 1752 | ErrorM essages.Ad d(MobileSe rviceError , "Error c ommunicati ng with mo bile servi ce"); | |||||
| 1753 | ErrorM essages.Ad d(LivePlat formGenera lEmailErro r, "An Ema il Error O ccurred"); | |||||
| 1754 | ErrorM essages.Ad d(LivePlat formEmailI nvalidTo, "The \"To\ " paramete r is blank or null") ; | |||||
| 1755 | ErrorM essages.Ad d(LivePlat formEmailI nvalidFrom , "The \"F rom\" para meter is b lank or nu ll"); | |||||
| 1756 | ErrorM essages.Ad d(LivePlat formEmailI nvalidSubj ect, "The \"Subject\ " paramete r is blank or null") ; | |||||
| 1757 | ErrorM essages.Ad d(LivePlat formEmailI nvalidBody , "The \"B ody\" para meter is b lank or nu ll"); | |||||
| 1758 | ErrorM essages.Ad d(BillingP artnerCert ificate, " Could not determine the right Partner ce rtificate to use wit h Billing. Issuer: {0} Subje ct: {1} D istinguish ed matches : [{2}] N ame matche s: [{3}] All valid certificat es: [{4}]. "); | |||||
| 1759 | ErrorM essages.Ad d(BillingN oSettingEr ror, "No B illing app lication c onfigurati on setting [{0}] was found."); | |||||
| 1760 | ErrorM essages.Ad d(BillingT estConnect ionError, "Billing i s not avai lable: Cal l to IsSer viceAvaila ble return ed 'False' ."); | |||||
| 1761 | ErrorM essages.Ad d(BillingT estConnect ionExcepti on, "Billi ng TestCon nection ex ception.") ; | |||||
| 1762 | ErrorM essages.Ad d(BillingU serPuidNul lError, "U ser Puid i s required , but is n ull."); | |||||
| 1763 | ErrorM essages.Ad d(BillingU nmappedErr orCode, "B illing err or code [{ 0}] was th rown with exception {1}"); | |||||
| 1764 | ErrorM essages.Ad d(BillingU nknownErro rCode, "Bi lling erro r code [{0 }] was thr own with e xception { 1}"); | |||||
| 1765 | ErrorM essages.Ad d(BillingU nknownExce ption, "Bi lling erro r was thro wn with ex ception {0 }"); | |||||
| 1766 | ErrorM essages.Ad d(BillingR etrieveKey Error, "Co uld not re trieve Bil ling sessi on key: \" {0}\""); | |||||
| 1767 | ErrorM essages.Ad d(BDK_E_AD DRESS_VALI DATION_FAI LURE, "{0} "); | |||||
| 1768 | ErrorM essages.Ad d(BDK_E_AG REEMENT_AL READY_SIGN ED, "{0} "); | |||||
| 1769 | ErrorM essages.Ad d(BDK_E_AU THORIZATIO N_FAILED, "{0} "); | |||||
| 1770 | ErrorM essages.Ad d(BDK_E_AV S_FAILED, "{0} "); | |||||
| 1771 | ErrorM essages.Ad d(BDK_E_BA D_CITYNAME _LENGTH, " {0} "); | |||||
| 1772 | ErrorM essages.Ad d(BDK_E_BA D_STATECOD E_LENGTH, "{0} "); | |||||
| 1773 | ErrorM essages.Ad d(BDK_E_BA D_ZIPCODE_ LENGTH, "{ 0} "); | |||||
| 1774 | ErrorM essages.Ad d(BDK_E_BA DXML, "{0} "); | |||||
| 1775 | ErrorM essages.Ad d(BDK_E_BA NNED_PAYME NT_INSTRUM ENT, "{0} "); | |||||
| 1776 | ErrorM essages.Ad d(BDK_E_BA NNEDPERSON , "{0} ") ; | |||||
| 1777 | ErrorM essages.Ad d(BDK_E_CA NNOT_EXCEE D_MAX_OWNE RSHIP, "{0 } "); | |||||
| 1778 | ErrorM essages.Ad d(BDK_E_CO UNTRY_CURR ENCY_PI_MI SMATCH, "{ 0} "); | |||||
| 1779 | ErrorM essages.Ad d(BDK_E_CR EDIT_CARD_ EXPIRED, " {0} "); | |||||
| 1780 | ErrorM essages.Ad d(BDK_E_DA TE_EXPIRED , "{0} ") ; | |||||
| 1781 | ErrorM essages.Ad d(BDK_E_ER ROR_COUNTR YCODE_MISM ATCH, "{0} "); | |||||
| 1782 | ErrorM essages.Ad d(BDK_E_ER ROR_COUNTR YCODE_REQU IRED, "{0} "); | |||||
| 1783 | ErrorM essages.Ad d(BDK_E_EX TRA_REFERR AL_DATA, " {0} "); | |||||
| 1784 | ErrorM essages.Ad d(BDK_E_GU ID_EXISTS, "{0} "); | |||||
| 1785 | ErrorM essages.Ad d(BDK_E_IN VALID_ADDR ESS_ID, "{ 0} "); | |||||
| 1786 | ErrorM essages.Ad d(BDK_E_IN VALID_BILL ABLE_ACCOU NT_ID, "{0 } The spe cified Bil ling accou nt is inva lid. Or, although t he objectI D is of th e correct type, the account it identifie s does not exist in the system ."); | |||||
| 1787 | ErrorM essages.Ad d(BDK_E_IN VALID_BUF_ SIZE, "{0} "); | |||||
| 1788 | ErrorM essages.Ad d(BDK_E_IN VALID_CATE GORY_NAME, "{0} "); | |||||
| 1789 | ErrorM essages.Ad d(BDK_E_IN VALID_COUN TRY_CODE, "{0} "); | |||||
| 1790 | ErrorM essages.Ad d(BDK_E_IN VALID_CURR ENCY, "{0} "); | |||||
| 1791 | ErrorM essages.Ad d(BDK_E_IN VALID_CUST OMER_TYPE, "{0} "); | |||||
| 1792 | ErrorM essages.Ad d(BDK_E_IN VALID_DATE , "{0} ") ; | |||||
| 1793 | ErrorM essages.Ad d(BDK_E_IN VALID_EMAI L_ADDRESS, "{0} "); | |||||
| 1794 | ErrorM essages.Ad d(BDK_E_IN VALID_FILT ER, "{0} "); | |||||
| 1795 | ErrorM essages.Ad d(BDK_E_IN VALID_GUID , "{0} ") ; | |||||
| 1796 | ErrorM essages.Ad d(BDK_E_IN VALID_INPU T_TO_TAXWA RE_OR_VERA ZIP, "{0} "); | |||||
| 1797 | ErrorM essages.Ad d(BDK_E_IN VALID_LOCA LE, "{0} "); | |||||
| 1798 | ErrorM essages.Ad d(BDK_E_IN VALID_OBJE CT_ID, "{0 } The Bil ling syste m cannot f ind the ob ject (e.g. account o r subscrip tion or of fering).") ; | |||||
| 1799 | ErrorM essages.Ad d(BDK_E_IN VALID_OFFE RING_GUID, "{0} "); | |||||
| 1800 | ErrorM essages.Ad d(BDK_E_IN VALID_PAYM ENT_INSTRU MENT_STATU S, "{0} " ); | |||||
| 1801 | ErrorM essages.Ad d(BDK_E_IN VALID_PAYM ENT_METHOD _ID, "{0} "); | |||||
| 1802 | ErrorM essages.Ad d(BDK_E_IN VALID_PHON E_TYPE, "{ 0} "); | |||||
| 1803 | ErrorM essages.Ad d(BDK_E_IN VALID_POLI CY_ID, "{0 } "); | |||||
| 1804 | ErrorM essages.Ad d(BDK_E_IN VALID_REFE RRALDATA_X ML, "{0} "); | |||||
| 1805 | ErrorM essages.Ad d(BDK_E_IN VALID_STAT E_FOR_COUN TRY, "{0} "); | |||||
| 1806 | ErrorM essages.Ad d(BDK_E_IN VALID_SUBS CRIPTION_I D, "{0} T he subscri ption id s pecified i s invalid. Or, alth ough the o bjectID is of correc t type and also poin ts to a va lid accoun t in SCS, the subscr iption it identifies does not exist in S CS."); | |||||
| 1807 | ErrorM essages.Ad d(BDK_E_IN VALID_TAX_ EXEMPT_TYP E, "{0} " ); | |||||
| 1808 | ErrorM essages.Ad d(BDK_E_ME G_CONFLICT , "{0} ") ; | |||||
| 1809 | ErrorM essages.Ad d(BDK_E_MU LTIPLE_CIT IES_FOUND, "{0} "); | |||||
| 1810 | ErrorM essages.Ad d(BDK_E_MU LTIPLE_COU NTIES_FOUN D, "{0} " ); | |||||
| 1811 | ErrorM essages.Ad d(BDK_E_NO N_ACTIVE_A CCOUNT, "{ 0} "); | |||||
| 1812 | ErrorM essages.Ad d(BDK_E_NO PERMISSION , "{0} Th e calling partner do es not hav e access t o this met hod or whe n the requ ester does not have permission to search against t he supplie d search P UID."); | |||||
| 1813 | ErrorM essages.Ad d(BDK_E_OB JECT_ROLE_ LIMIT_EXCE EDED, "{0} "); | |||||
| 1814 | ErrorM essages.Ad d(BDK_E_OF FERING_ACC OUNT_CURRE NCY_MISMAT CH, "{0} "); | |||||
| 1815 | ErrorM essages.Ad d(BDK_E_OF FERING_COU NTRY_ACCOU NT_MISMATC H, "{0} " ); | |||||
| 1816 | ErrorM essages.Ad d(BDK_E_OF FERING_NOT _PURCHASEA BLE, "{0} "); | |||||
| 1817 | ErrorM essages.Ad d(BDK_E_OF FERING_PAY MENT_INSTR UMENT_MISM ATCH, "{0} "); | |||||
| 1818 | ErrorM essages.Ad d(BDK_E_OF FERING_REQ UIRES_PI, "{0} "); | |||||
| 1819 | ErrorM essages.Ad d(BDK_E_PA RTNERNOTIN BILLING, " {0} "); | |||||
| 1820 | ErrorM essages.Ad d(BDK_E_PA YMENT_PROV IDER_CONNE CTION_FAIL ED, "{0} "); | |||||
| 1821 | ErrorM essages.Ad d(BDK_E_PR IMARY_PHON E_REQUIRED , "{0} ") ; | |||||
| 1822 | ErrorM essages.Ad d(BDK_E_PO LICY_DEAL_ COUNTRY_MI SMATCH, "{ 0} "); | |||||
| 1823 | ErrorM essages.Ad d(BDK_E_PU ID_ROLE_LI MIT_EXCEED ED, "{0} "); | |||||
| 1824 | ErrorM essages.Ad d(BDK_E_RA TING_FAILU RE, "{0} "); | |||||
| 1825 | ErrorM essages.Ad d(BDK_E_RE QUIRED_FIE LD_MISSING , "{0} ") ; | |||||
| 1826 | ErrorM essages.Ad d(BDK_E_ST ATE_CITY_I NVALID, "{ 0} "); | |||||
| 1827 | ErrorM essages.Ad d(BDK_E_ST ATE_INVALI D, "{0} " ); | |||||
| 1828 | ErrorM essages.Ad d(BDK_E_ST ATE_ZIP_CI TY_INVALID , "{0} ") ; | |||||
| 1829 | ErrorM essages.Ad d(BDK_E_ST ATE_ZIP_CI TY_INVALID 2, "{0} " ); | |||||
| 1830 | ErrorM essages.Ad d(BDK_E_ST ATE_ZIP_CI TY_INVALID 3, "{0} " ); | |||||
| 1831 | ErrorM essages.Ad d(BDK_E_ST ATE_ZIP_CI TY_INVALID 4, "{0} " ); | |||||
| 1832 | ErrorM essages.Ad d(BDK_E_ST ATE_ZIP_CO VERS_MULTI PLE_CITIES , "{0} ") ; | |||||
| 1833 | ErrorM essages.Ad d(BDK_E_ST ATE_ZIP_IN VALID, "{0 } "); | |||||
| 1834 | ErrorM essages.Ad d(BDK_E_TA XID_EXPDAT E, "{0} " ); | |||||
| 1835 | ErrorM essages.Ad d(BDK_E_TO KEN_BLACKL ISTED, "{0 } "); | |||||
| 1836 | ErrorM essages.Ad d(BDK_E_TO KEN_EXPIRE D, "{0} " ); | |||||
| 1837 | ErrorM essages.Ad d(BDK_E_TO KEN_NOT_VA LID_FOR_OF FERING, "{ 0} "); | |||||
| 1838 | ErrorM essages.Ad d(BDK_E_TO KEN_RANGE_ BLACKLISTE D, "{0} " ); | |||||
| 1839 | ErrorM essages.Ad d(BDK_E_TR ANS_BALANC E_TO_PI_IN VALID, "{0 } "); | |||||
| 1840 | ErrorM essages.Ad d(BDK_E_UN KNOWN_SERV ER_FAILURE , "{0} Un known serv er failure ."); | |||||
| 1841 | ErrorM essages.Ad d(BDK_E_UN SUPPORTED_ CHAR_EXIST , "{0} ") ; | |||||
| 1842 | ErrorM essages.Ad d(BDK_E_VA TID_DOESNO THAVEEXPDA TE, "{0} "); | |||||
| 1843 | ErrorM essages.Ad d(BDK_E_ZI P_CITY_MIS SING, "{0} "); | |||||
| 1844 | ErrorM essages.Ad d(BDK_E_ZI P_INVALID, "{0} Bil ling zip c ode error. "); | |||||
| 1845 | ErrorM essages.Ad d(BDK_E_ZI P_INVALID_ FOR_ENTERE D_STATE, " {0} Billi ng zip cod e error.") ; | |||||
| 1846 | ErrorM essages.Ad d(BDK_E_US AGE_COUNT_ FOR_TOKEN_ EXCEEDED, "{0} Bill ing token is already spent."); | |||||
| 1847 | ErrorM essages.Ad d(MissingP arameterTo StoredProc edure, "Mi ssing para meter to s tored proc edure: {0 }"); | |||||
| 1848 | ErrorM essages.Ad d(SqlError InStoredPr ocedure, " SQL error {0} occurr ed in stor ed procedu re {1}"); | |||||
| 1849 | ErrorM essages.Ad d(StoredPr ocedureCon text, "Dyn amics 365 error {0} in {1}:{2} "); | |||||
| 1850 | ErrorM essages.Ad d(Inviting Organizati onNotFound , "{0} -- Inviting o rganizatio n not foun d -- {1}") ; | |||||
| 1851 | ErrorM essages.Ad d(Inviting UserNotInO rganizatio n, "{0} -- Inviting user is no t in the i nviting or ganization -- {1}"); | |||||
| 1852 | ErrorM essages.Ad d(InvitedU serAlready Exists, "{ 0} -- Invi ted user i s already in an orga nization - - {1}"); | |||||
| 1853 | ErrorM essages.Ad d(InvitedU serIsOrgan ization, " {0} -- The user {1} has authen tication { 2} and is already re lated to o rganizatio n {3} with relation id {4}"); | |||||
| 1854 | ErrorM essages.Ad d(Invitati onNotFound , "{0} -- Invitation not found or status is not Op en -- Toke n={1} Puid ={2} Id={3 } Status={ 4}"); | |||||
| 1855 | ErrorM essages.Ad d(InvitedU serAlready Added, "{0 } -- The c rm user {1 } is alrea dy added, but to org anization {2} instea d of the i nviting or ganization {3}"); | |||||
| 1856 | ErrorM essages.Ad d(Invitati onWrongUse rOrgRelati on, "{0} - - The pre- created us erorg rela tion {1} i s wrong. Authentica tion {2} i s already used by an other user "); | |||||
| 1857 | ErrorM essages.Ad d(Invitati onIsExpire d, "{0} -- Invitatio n is expir ed -- Toke n={1} Puid ={2} Id={3 } Status={ 4}"); | |||||
| 1858 | ErrorM essages.Ad d(Invitati onIsAccept ed, "{0} - - Invitati on has alr eady been accepted - - Token={1 } Puid={2} Id={3} St atus={4}") ; | |||||
| 1859 | ErrorM essages.Ad d(Invitati onIsReject ed, "{0} - - Invitati on has alr eady been rejected b y the new user-- Tok en={1} Pui d={2} Id={ 3} Status= {4}"); | |||||
| 1860 | ErrorM essages.Ad d(Invitati onIsRevoke d, "{0} -- Invitatio n has been revoked b y the orga nization - - Token={1 } Puid={2} Id={3} St atus={4}") ; | |||||
| 1861 | ErrorM essages.Ad d(InvitedU serMultipl eTimes, "T he Dynamic s 365 user {0} has b een invite d multiple times."); | |||||
| 1862 | ErrorM essages.Ad d(Invitati onStatusEr ror, "\"Th e invitati on has sta tus {0}.\" "); | |||||
| 1863 | ErrorM essages.Ad d(InvalidI nvitationT oken, "The invitatio n token {0 } is not c orrectly f ormatted." ); | |||||
| 1864 | ErrorM essages.Ad d(InvalidI nvitationL iveId, "A user with this e-mai l address was not fo und. Sign in to Wind ows Live I D with the same e-ma il address where you received the invita tion. If you do not have a Wi ndows Live ID, pleas e create o ne using t hat e-mail address." ); | |||||
| 1865 | ErrorM essages.Ad d(Invitati onSendToSe lf, "The i nvitation cannot be sent to yo urself."); | |||||
| 1866 | ErrorM essages.Ad d(Invitati onCannotBe Reset, "Th e invitati on for the user cann ot be rese t."); | |||||
| 1867 | ErrorM essages.Ad d(UserData NotFound, "The user data could not be fo und."); | |||||
| 1868 | ErrorM essages.Ad d(CannotIn viteDisabl edUser, "A n invitati on cannot be sent to a disable d user"); | |||||
| 1869 | ErrorM essages.Ad d(Invitati onBillingA dminUnknow n, "You ar e not a bi lling admi nistrator for this o rganizatio n and ther efore, you cannot se nd invitat ions. You can eithe r contact your billi ng adminis trator and ask him o r her to s end the in vitation, or the bil ling admin istrator c an visit h ttps://bil ling.micro soft.com a nd make yo u a delega te billing administr ator. You can then s end invita tions."); | |||||
| 1870 | ErrorM essages.Ad d(CannotRe setSysAdmi nInvite, " An invitat ion cannot be reset for a user if they a re the onl y user tha t has the System Adm inistrator Role."); | |||||
| 1871 | ErrorM essages.Ad d(CannotSe ndInviteTo DuplicateW indowsLive Id, "An in vitation c annot be s ent becaus e there ar e multiple users wit h this WLI D."); | |||||
| 1872 | ErrorM essages.Ad d(UserInvi teDisabled , "Invitat ion cannot be sent b ecause use r invitati ons are di sabled."); | |||||
| 1873 | ErrorM essages.Ad d(Invitati onOrganiza tionNotEna bled, "The organizat ion for th e invitati on is not enabled.") ; | |||||
| 1874 | ErrorM essages.Ad d(ClientAu thSignedOu t, "The us er signed out."); | |||||
| 1875 | ErrorM essages.Ad d(ClientAu thSyncIssu e, "Synchr onization between pr ocesses fa iled."); | |||||
| 1876 | ErrorM essages.Ad d(ClientAu thCanceled , "Authent ication wa s canceled by the us er."); | |||||
| 1877 | ErrorM essages.Ad d(ClientAu thNoConnec tivityOffl ine, "Ther e is no co nnectivity when runn ing in off line mode. "); | |||||
| 1878 | ErrorM essages.Ad d(ClientAu thNoConnec tivity, "T here is no connectiv ity."); | |||||
| 1879 | ErrorM essages.Ad d(ClientAu thOfflineI nvalidCall erId, "Off line SDK c alls must be made in the offli ne user co ntext."); | |||||
| 1880 | ErrorM essages.Ad d(Authenti cateToServ erBeforeRe questingPr oxy, "Auth enticate t o serverTy pe: {0} be fore reque sting a pr oxy."); | |||||
| 1881 | ErrorM essages.Ad d(ConfigDB ObjectDoes NotExist, "'{0}' wit h Value = ({1}) does not exist in MSCRM_ CONFIG dat abase"); | |||||
| 1882 | ErrorM essages.Ad d(ConfigDB DuplicateR ecord, "Du plicate '{ 0}' with V alue = ({1 }) exists in MSCRM_C ONFIG data base"); | |||||
| 1883 | ErrorM essages.Ad d(ConfigDB CannotDele teObjectDu eState, "C annot dele te '{0}' w ith Value = ({1}) in this Stat e = ({2}) from MSCRM _CONFIG da tabase"); | |||||
| 1884 | ErrorM essages.Ad d(ConfigDB CascadeDel eteNotAllo wDelete, " Cannot del ete '{0}' with Value = ({1}) d ue to chil d '{2}' re ferences f rom MSCRM_ CONFIG dat abase"); | |||||
| 1885 | ErrorM essages.Ad d(MoveBoth ToPrimary, "Move ope ration wou ld put bot h instance s on the s ame server : Databas e = {0} O ld Primary = {1} Ol d Secondar y = {2} N ew Seconda ry = {3}") ; | |||||
| 1886 | ErrorM essages.Ad d(MoveBoth ToSecondar y, "Move o peration w ould put b oth instan ces on the same serv er: Datab ase = {0} Old Prima ry = {1} Old Second ary = {2} New Secon dary = {3} "); | |||||
| 1887 | ErrorM essages.Ad d(MoveOrga nizationFa iledNotDis abled, "Mo ve operati on failed because or ganization {0} is no t disabled "); | |||||
| 1888 | ErrorM essages.Ad d(ConfigDB CannotUpda teObjectDu eState, "C annot upda te '{0}' w ith Value = ({1}) in this Stat e = ({2}) from MSCRM _CONFIG da tabase"); | |||||
| 1889 | ErrorM essages.Ad d(LiveAdmi nUnknownOb ject, "Unk nown admin istration target {0} "); | |||||
| 1890 | ErrorM essages.Ad d(LiveAdmi nUnknownCo mmand, "Un known admi nistration command { 0}"); | |||||
| 1891 | ErrorM essages.Ad d(Operatio nOrganizat ionNotFull yDisabled, "The {1} operation failed bec ause organ ization {0 } is not f ully disab led yet. Use FORCE to overrid e"); | |||||
| 1892 | ErrorM essages.Ad d(ConfigDB CannotDele teDefaultO rganizatio n, "The de fault {0} organizati on cannot be deleted from the MSCRM_CONF IG databas e."); | |||||
| 1893 | ErrorM essages.Ad d(LicenseN otEnoughTo Activate, "There are not enoug h licenses available for the n umber of u sers being activated ."); | |||||
| 1894 | ErrorM essages.Ad d(UserNotA ssignedRol es, "The u ser has no t been ass igned any roles."); | |||||
| 1895 | ErrorM essages.Ad d(TeamNotA ssignedRol es, "The t eam has no t been ass igned any roles."); | |||||
| 1896 | ErrorM essages.Ad d(InvalidL icenseKey, "Invalid license ke y ({0}).") ; | |||||
| 1897 | ErrorM essages.Ad d(NoLicens eInConfigD B, "No lic ense exist s in MSCRM _CONFIG da tabase."); | |||||
| 1898 | ErrorM essages.Ad d(InvalidL icensePid, "Invalid license. I nvalid PID (Product Id) ({0}). "); | |||||
| 1899 | ErrorM essages.Ad d(InvalidL icensePidG enCannotLo ad, "Inval id license . PidGen.d ll cannot be loaded from this path {0}") ; | |||||
| 1900 | ErrorM essages.Ad d(InvalidL icensePidG enOtherErr or, "Inval id license . Cannot g enerate PI D (Product Id) from License ke y. PidGen error code ({0})."); | |||||
| 1901 | ErrorM essages.Ad d(InvalidL icenseCann otReadMpcF ile, "Inva lid licens e. MPC cod e cannot b e read fro m MPC.txt file with this path {0}."); | |||||
| 1902 | ErrorM essages.Ad d(InvalidL icenseMpcC ode, "Inva lid licens e. Invalid MPC code ({0})."); | |||||
| 1903 | ErrorM essages.Ad d(LicenseU pgradePath NotAllowed , "Cannot upgrade to specified license t ype."); | |||||
| 1904 | ErrorM essages.Ad d(OrgsInac cessible, "The clien t access l icense (CA L) results were not returned b ecause one or more o rganizatio ns in the deployment cannot be accessed. "); | |||||
| 1905 | ErrorM essages.Ad d(UserNotA ssignedLic ense, "The user has not been a ssigned an y License" ); | |||||
| 1906 | ErrorM essages.Ad d(UserCann otEnableWi thoutLicen se, "Canno t enable a n unlicens ed user"); | |||||
| 1907 | ErrorM essages.Ad d(LicenseC onfigFileI nvalid, "T he provide d configur ation file {0} has i nvalid for matting.") ; | |||||
| 1908 | ErrorM essages.Ad d(LicenseT rialExpire d, "The tr ial instal lation of Microsoft Dynamics 3 65 has exp ired."); | |||||
| 1909 | ErrorM essages.Ad d(LicenseR egistratio nExpired, "The regis tration pe riod for M icrosoft D ynamics 36 5 has expi red."); | |||||
| 1910 | ErrorM essages.Ad d(LicenseT ampered, " The licens ing for th is install ation of M icrosoft D ynamics 36 5 has been tampered with. The system is unusable. Please con tact Micro soft Produ ct Support Services. "); | |||||
| 1911 | ErrorM essages.Ad d(NonInter activeUser CannotAcce ssUI, "Non -interacti ve users c annot acce ss the web user inte rface. Con tact your organizati on system administra tor."); | |||||
| 1912 | ErrorM essages.Ad d(InvalidO rganizatio nUniqueNam e, "Invali d organiza tion uniqu e name ({0 }). Reason : ({1})"); | |||||
| 1913 | ErrorM essages.Ad d(InvalidO rganizatio nFriendlyN ame, "Inva lid organi zation fri endly name ({0}). Re ason: ({1} )"); | |||||
| 1914 | ErrorM essages.Ad d(Organiza tionNotCon figured, " Organizati on is not configured yet"); | |||||
| 1915 | ErrorM essages.Ad d(InvalidD eviceToCon figureOrga nization, "Mobile de vice canno t be used to configu red organi zation"); | |||||
| 1916 | ErrorM essages.Ad d(InvalidB rowserToCo nfigureOrg anization, "Browser not compat ible to co nfigure or ganization "); | |||||
| 1917 | ErrorM essages.Ad d(Deployme ntServiceN otAllowSet ToThisStat e, "Deploy ment Servi ce for {0} allows th e state En abled or D isabled. C annot set state to { 1}."); | |||||
| 1918 | ErrorM essages.Ad d(Deployme ntServiceN otAllowOpe ration, "D eployment Service fo r {0} does not allow {1} opera tion."); | |||||
| 1919 | ErrorM essages.Ad d(Deployme ntServiceC annotChang eStateForD eploymentS ervice, "Y ou cannot change the state of this serve r because it contain s the Depl oyment Ser vice serve r role."); | |||||
| 1920 | ErrorM essages.Ad d(Deployme ntServiceR equestVali dationFail ure, "The Deployment Service c annot proc ess the re quest beca use one or more vali dation che cks failed ."); | |||||
| 1921 | ErrorM essages.Ad d(Deployme ntServiceO perationId entifierNo tFound, "T he Deploym ent Servic e could no t find a d eferred op eration ha ving the s pecified i dentifier. "); | |||||
| 1922 | ErrorM essages.Ad d(Deployme ntServiceC annotDelet eOperation InProgress , "The Dep loyment Se rvice cann ot delete the specif ied operat ion becaus e it is cu rrently in progress. "); | |||||
| 1923 | ErrorM essages.Ad d(Configur eClaimsBef oreIfd, "Y ou must co nfigure cl aims-based authentic ation befo re you can configure an Intern et-facing deployment ."); | |||||
| 1924 | ErrorM essages.Ad d(EndUserN otificatio nTypeNotVa lidForEmai l, "Cannot send Emai l for EndU serNotific ation Type : {0}."); | |||||
| 1925 | ErrorM essages.Ad d(ClientUp dateAvaila ble, "Ther e's an upd ate availa ble for Dy namics 365 for Outlo ok."); | |||||
| 1926 | ErrorM essages.Ad d(InvalidR ecurrenceR uleForBulk DeleteAndD uplicateDe tection, " Bulk Delet e and Dupl icate Dete ction recu rrence mus t be speci fied as da ily."); | |||||
| 1927 | ErrorM essages.Ad d(InvalidR ecurrenceI nterval, " To set rec urrence, y ou must sp ecify an i nterval th at is betw een 1 and 365."); | |||||
| 1928 | ErrorM essages.Ad d(InvalidR ecurrenceI ntervalFor RollupJobs , "To set recurrence , you must specify a n interval that shou ld be grea ter than 1 hour."); | |||||
| 1929 | ErrorM essages.Ad d(QueriesF orDifferen tEntities, "The Inne r and Oute r Queries must be fo r the same entity.") ; | |||||
| 1930 | ErrorM essages.Ad d(Aggregat eInnerQuer y, "The In ner Query must not b e an aggre gate query ."); | |||||
| 1931 | ErrorM essages.Ad d(InvalidD ataDescrip tion, "The data desc ription fo r the visu alization is invalid ."); | |||||
| 1932 | ErrorM essages.Ad d(NonPrima ryEntityDa taDescript ionFound, "The data descriptio n for the visualizat ion is inv alid .The data descr iption for the visua lization c an only ha ve attribu tes either from the primary en tity of th e view or the linked entities. "); | |||||
| 1933 | ErrorM essages.Ad d(InvalidP resentatio nDescripti on, "The p resentatio n descript ion is inv alid."); | |||||
| 1934 | ErrorM essages.Ad d(SeriesMe asureColle ctionMisma tch, "Numb er of seri es for cha rt area an d number o f measure collection s for cate gory shoul d be same. "); | |||||
| 1935 | ErrorM essages.Ad d(YValuesP erPointMea sureMismat ch, "Numbe r of YValu esPerPoint for serie s and numb er of meas ures for m easure col lection fo r category should be same."); | |||||
| 1936 | ErrorM essages.Ad d(ChartAre aCategoryM ismatch, " Number of chart area s and numb er of cate gories sho uld be sam e."); | |||||
| 1937 | ErrorM essages.Ad d(Multiple Subcategor iesFound, "The data XML for th e visualiz ation cann ot contain more than two Group By clause s."); | |||||
| 1938 | ErrorM essages.Ad d(Multiple MeasuresFo und, "More than one measure is not suppo rted for c harts with subcatego ry i.e. co mparison c harts"); | |||||
| 1939 | ErrorM essages.Ad d(Multiple ChartAreas Found, "Mu ltiple Cha rt Areas a re not sup ported."); | |||||
| 1940 | ErrorM essages.Ad d(InvalidC ategory, " Category i s invalid. All the m easures in the categ ory either do not ha ve same pr imary grou p by or ar e a mix of aggregate and non-a ggregate d ata."); | |||||
| 1941 | ErrorM essages.Ad d(InvalidM easureColl ection, "M easure col lection is invalid. Not all th e measures in the me asure coll ection hav e the same group bys ."); | |||||
| 1942 | ErrorM essages.Ad d(Duplicat eAliasFoun d, "Data D escription is invali d. Duplica te alias f ound."); | |||||
| 1943 | ErrorM essages.Ad d(EntityNo tEnabledFo rCharts, " Charts are not enabl ed on the specified primary en tity type code: {0}. "); | |||||
| 1944 | ErrorM essages.Ad d(InvalidP ageRespons e, "Invali d Page Res ponse gene rated."); | |||||
| 1945 | ErrorM essages.Ad d(Visualiz ationRende ringError, "An error occurred while the chart was rendering" ); | |||||
| 1946 | ErrorM essages.Ad d(InvalidG roupByAlia s, "Data D escription is invali d. Same gr oup by ali as cannot be used fo r differen t attribut es."); | |||||
| 1947 | ErrorM essages.Ad d(MeasureD ataTypeInv alid, "The Data Desc ription fo r the visu alization is invalid . The attr ibute type for one o f the non aggregate measures i s invalid. Correct t he Data De scription. "); | |||||
| 1948 | ErrorM essages.Ad d(NoDataFo rVisualiza tion, "The re is no d ata to cre ate this v isualizati on."); | |||||
| 1949 | ErrorM essages.Ad d(Visualiz ationModul eNotFound, "No visua lization m odule foun d with the given nam e."); | |||||
| 1950 | ErrorM essages.Ad d(ImportVi sualizatio nDeletedEr ror, "A sa ved query visualizat ion with i d {0} is m arked for deletion i n the syst em. Please publish t he customi zed entity first and then impo rt again." ); | |||||
| 1951 | ErrorM essages.Ad d(ImportVi sualizatio nExistingE rror, "A s aved query visualiza tion with id {0} alr eady exist s in the s ystem, and cannot be resused b y a new cu stom entit y."); | |||||
| 1952 | ErrorM essages.Ad d(Visualiz ationOtcNo tFoundErro r, "Object type code is not sp ecified fo r the visu alization. "); | |||||
| 1953 | ErrorM essages.Ad d(InvalidD undasPrese ntationDes cription, "The prese ntation de scription is not val id for dun das chart. "); | |||||
| 1954 | ErrorM essages.Ad d(InvalidW ebResource ForVisuali zation, "T he web res ource type {0} is no t supporte d for visu alizations ."); | |||||
| 1955 | ErrorM essages.Ad d(ChartTyp eNotSuppor tedForComp arisonChar t, "This c hart type is not sup ported for compariso n charts." ); | |||||
| 1956 | ErrorM essages.Ad d(InvalidF etchCollec tion, "The fetch col lection fo r the visu alization is invalid ."); | |||||
| 1957 | ErrorM essages.Ad d(Category DataTypeIn valid, "Th e Data Des cription f or the vis ualization is invali d. The att ribute typ e for the group by o f one of t he categor ies is inv alid. Corr ect the Da ta Descrip tion."); | |||||
| 1958 | ErrorM essages.Ad d(Duplicat eGroupByFo und, "Data Descripti on is inva lid. Same attribute cannot be used as a group by m ore than o nce."); | |||||
| 1959 | ErrorM essages.Ad d(Multiple MeasureCol lectionsFo und, "More than one measure co llection i s not supp orted for charts wit h subcateg ory i.e. c omparison charts"); | |||||
| 1960 | ErrorM essages.Ad d(InvalidG roupByColu mn, "Group by not al lowed on t he attribu te."); | |||||
| 1961 | ErrorM essages.Ad d(InvalidF ilterCrite riaForVisu alization, "The visu alization cannot be rendered f or the giv en filter criteria." ); | |||||
| 1962 | ErrorM essages.Ad d(CountSpe cifiedWith outOrder, "The Data Descriptio n for the visualizat ion is inv alid as it does not specify an order nod e for the count attr ibute."); | |||||
| 1963 | ErrorM essages.Ad d(NoPrevie wForCustom WebResourc e, "This c hart uses a custom W eb resourc e. You can not previe w this cha rt."); | |||||
| 1964 | ErrorM essages.Ad d(ChartTyp eNotSuppor tedForMult ipleSeries Chart, "Se ries of ch art type { 0} is not supported for multi- series cha rts."); | |||||
| 1965 | ErrorM essages.Ad d(Insuffic ientColumn sInSubQuer y, "One or more colu mns requir ed by the outer quer y are not available from the s ub-query." ); | |||||
| 1966 | ErrorM essages.Ad d(Aggregat eQueryReco rdLimitExc eeded, "Th e maximum record lim it is exce eded. Redu ce the num ber of rec ords."); | |||||
| 1967 | ErrorM essages.Ad d(RollupAg gregateQue ryRecordLi mitExceede d, "Calcul ations can 't be perf ormed onli ne because the calcu lation lim it of {0} related re cords has been reach ed."); | |||||
| 1968 | ErrorM essages.Ad d(Currency FieldMissi ng, "Recor d currency is requir ed to calc ulate roll up field o f type cur rency. Pro vide a cur rency and try again. "); | |||||
| 1969 | ErrorM essages.Ad d(QuickFin dQueryReco rdLimitExc eeded, "Qu ickFindQue ryRecordLi mit exceed ed. Cannot perform t his operat ion."); | |||||
| 1970 | ErrorM essages.Ad d(RollupFi eldNoWrite Access, "U ser does n ot have wr ite permis sion on {0 } record { 1} with ID :{2} to ca lculate ro llup field ."); | |||||
| 1971 | ErrorM essages.Ad d(CannotAd dOrActonBe halfAnothe rUserPrivi lege, "Act on Behalf of Anothe r User pri vilege can not be add ed or remo ved."); | |||||
| 1972 | ErrorM essages.Ad d(HipNoSet tingError, "No Hip a pplication configura tion setti ng [{0}] w as found." ); | |||||
| 1973 | ErrorM essages.Ad d(HipInval idCertific ate, "Inva lid Certif icate for using HIP. "); | |||||
| 1974 | ErrorM essages.Ad d(NoSettin gError, "N o configdb configura tion setti ng [{0}] w as found." ); | |||||
| 1975 | ErrorM essages.Ad d(AppLockT imeout, "T imeout exp ired befor e applock could be a cquired.") ; | |||||
| 1976 | ErrorM essages.Ad d(InvalidR ecurrenceP attern, "I nvalid rec urrence pa ttern."); | |||||
| 1977 | ErrorM essages.Ad d(CreateRe currenceRu leFailed, "Cannot cr eate the r ecurrence rule."); | |||||
| 1978 | ErrorM essages.Ad d(PartialE xpansionSe ttingLoadE rror, "Fai led to ret rieve part ial expans ion settin gs from th e configur ation data base."); | |||||
| 1979 | ErrorM essages.Ad d(InvalidC rmDateTime , "Invalid CrmDateTi me."); | |||||
| 1980 | ErrorM essages.Ad d(InvalidA ppointment Instance, "Invalid a ppointment entity in stance."); | |||||
| 1981 | ErrorM essages.Ad d(InvalidS eriesId, " SeriesId i s null or invalid.") ; | |||||
| 1982 | ErrorM essages.Ad d(Appointm entDeleted , "The app ointment e ntity inst ance is al ready dele ted."); | |||||
| 1983 | ErrorM essages.Ad d(InvalidI nstanceTyp eCode, "In valid inst ance type code."); | |||||
| 1984 | ErrorM essages.Ad d(Overlapp ingInstanc es, "Two i nstances o f the seri es cannot overlap.") ; | |||||
| 1985 | ErrorM essages.Ad d(InvalidS eriesIdOri ginalStart , "Invalid seriesid or origina l start da te."); | |||||
| 1986 | ErrorM essages.Ad d(Validate NotSupport ed, "Valid ate method is not su pported fo r recurrin g appointm ent master ."); | |||||
| 1987 | ErrorM essages.Ad d(Recurrin gSeriesCom pleted, "T he series has invali d Expansio nStateCode ."); | |||||
| 1988 | ErrorM essages.Ad d(Expansio nRequestIs OutsideExp ansionWind ow, "The s eries is a lready exp anded for CutOffWind ow."); | |||||
| 1989 | ErrorM essages.Ad d(InvalidI nstanceEnt ityName, " Invalid in stance ent ity name." ); | |||||
| 1990 | ErrorM essages.Ad d(BookFirs tInstanceF ailed, "Fa iled to bo ok first i nstance.") ; | |||||
| 1991 | ErrorM essages.Ad d(InvalidS eriesStatu s, "Invali d series s tatus."); | |||||
| 1992 | ErrorM essages.Ad d(Recurren ceRuleUpda teFailure, "Cannot u pdate a ru le that is attached to an exis ting rule master. Up date the r ule by usi ng the par ent entity ."); | |||||
| 1993 | ErrorM essages.Ad d(Recurren ceRuleDele teFailure, "Cannot d elete a ru le that is attached to an exis ting rule master. De lete the r ule by usi ng the par ent entity ."); | |||||
| 1994 | ErrorM essages.Ad d(EntityNo tRule, "Th e collecti on name is not a rec urrence ru le."); | |||||
| 1995 | ErrorM essages.Ad d(Recurrin gSeriesMas terIsLocke d, "The re curring se ries maste r record i s locked b y some oth er process ."); | |||||
| 1996 | ErrorM essages.Ad d(UpdateRe currenceRu leFailed, "Failed to update th e recurren ce rule. A correspon ding recur rence rule cannot be found."); | |||||
| 1997 | ErrorM essages.Ad d(Instance OutsideEff ectiveRang e, "Cannot perform t he operati on. An ins tance is o utside of series eff ective exp ansion ran ge."); | |||||
| 1998 | ErrorM essages.Ad d(Recurren ceCalendar TypeNotSup ported, "T he calenda r type is not suppor ted."); | |||||
| 1999 | ErrorM essages.Ad d(Recurren ceHasNoOcc urrence, " The recurr ence patte rn has no occurrence s."); | |||||
| 2000 | ErrorM essages.Ad d(Recurren ceStartDat eTooSmall, "The recu rrence pat tern start date is i nvalid."); | |||||
| 2001 | ErrorM essages.Ad d(Recurren ceEndDateT ooBig, "Th e recurren ce pattern end date is invalid ."); | |||||
| 2002 | ErrorM essages.Ad d(Occurren ceCrossing Boundary, "Two occur rences can not overla p."); | |||||
| 2003 | ErrorM essages.Ad d(Occurren ceTimeSpan TooBig, "C annot perf orm the op eration. A n instance is outsid e of serie s effectiv e expansio n range.") ; | |||||
| 2004 | ErrorM essages.Ad d(Occurren ceSkipsOve rForward, "Cannot re schedule a n occurren ce of the recurring appointmen t if it sk ips over a later occ urrence of the same appointmen t."); | |||||
| 2005 | ErrorM essages.Ad d(Occurren ceSkipsOve rBackward, "Cannot r eschedule an occurre nce of the recurring appointme nt if it s kips over an earlier occurrenc e of the s ame appoin tment."); | |||||
| 2006 | ErrorM essages.Ad d(InvalidD aysInFebru ary, "Febr uary 29 ca n occur on ly when pa ttern star t date is in a leap year."); | |||||
| 2007 | ErrorM essages.Ad d(InvalidO ccurrenceN umber, "Th e effectiv e end date of the se ries canno t be earli er than to day. Selec t a valid occurrence number.") ; | |||||
| 2008 | ErrorM essages.Ad d(InvalidN umberOfPar titions, " You cannot delete au dit data i n the part itions tha t are curr ently in u se, or del ete the pa rtitions t hat are cr eated for storing fu ture audit data."); | |||||
| 2009 | ErrorM essages.Ad d(InvalidE lementFoun d, "A dash board Form XML canno t contain element: { 0}."); | |||||
| 2010 | ErrorM essages.Ad d(MaximumC ontrolsLim itExceeded , "The das hboard For m XML cont ains more than the m aximum all owed numbe r of contr ol element s: {0}."); | |||||
| 2011 | ErrorM essages.Ad d(UserView sOrVisuali zationsFou nd, "A sys tem dashbo ard cannot contain u ser views and visual izations." ); | |||||
| 2012 | ErrorM essages.Ad d(InvalidA ttributeFo und, "A da shboard Fo rm XML can not contai n attribut e: {0}."); | |||||
| 2013 | ErrorM essages.Ad d(Multiple FormElemen tsFound, " A dashboar d Form XML can conta in only on e form ele ment."); | |||||
| 2014 | ErrorM essages.Ad d(NullDash boardName, "The name of a dash board cann ot be null ."); | |||||
| 2015 | ErrorM essages.Ad d(InvalidF ormType, " The type o f the form must be s et to {0} in the For m XML."); | |||||
| 2016 | ErrorM essages.Ad d(InvalidC ontrolClas s, "The da shboard Fo rm XML can not contai n controls elements with class id: {0}." ); | |||||
| 2017 | ErrorM essages.Ad d(ImportDa shboardDel etedError, "A dashbo ard with t he same id is marked as delete d in the s ystem. Ple ase first publish th e system f orm entity and impor t again.") ; | |||||
| 2018 | ErrorM essages.Ad d(Personal ReportFoun d, "A syst em dashboa rd cannot contain pe rsonal rep orts."); | |||||
| 2019 | ErrorM essages.Ad d(ObjectAl readyExist s, "An obj ect with i d {0} alre ady exists . Please c hange the id and try again."); | |||||
| 2020 | ErrorM essages.Ad d(EntityTy peSpecifie dForDashbo ard, "An e ntity type cannot be specified for a das hboard."); | |||||
| 2021 | ErrorM essages.Ad d(Unrestri ctedIFrame InUserDash board, "A user dashb oard Form XML cannot have Secu rity = fal se."); | |||||
| 2022 | ErrorM essages.Ad d(Multiple LabelsInUs erDashboar d, "A user dashboard can have at most on e label fo r a form e lement."); | |||||
| 2023 | ErrorM essages.Ad d(Unsuppor tedDashboa rdInEditor , "The das hboard cou ld not be opened."); | |||||
| 2024 | ErrorM essages.Ad d(InvalidU rlProtocol , "The spe cified URL is invali d."); | |||||
| 2025 | ErrorM essages.Ad d(CannotRe moveCompon entFromDef aultSoluti on, "A Sol ution Comp onent cann ot be remo ved from t he Default Solution. "); | |||||
| 2026 | ErrorM essages.Ad d(InvalidS olutionUni queName, " Invalid ch aracter sp ecified fo r solution unique na me. Only c haracters within the ranges [A -Z], [a-z] , [0-9] or _ are all owed. The first char acter may only be in the range s [A-Z], [ a-z] or _. "); | |||||
| 2027 | ErrorM essages.Ad d(CannotUn deleteLabe l, "Attemp ting to un delete a l abel that is not mar ked as del ete."); | |||||
| 2028 | ErrorM essages.Ad d(ErrorRea ctivatingC omponentIn stance, "A fter undel eting a la bel, there is no und erlying la bel to rea ctivate.") ; | |||||
| 2029 | ErrorM essages.Ad d(CannotDe leteRestri ctedSoluti on, "Attem pting to d elete a re stricted s olution.") ; | |||||
| 2030 | ErrorM essages.Ad d(CannotDe leteRestri ctedPublis her, "Atte mpting to delete a r estricted publisher. "); | |||||
| 2031 | ErrorM essages.Ad d(ImportRe strictedSo lutionErro r, "Soluti on ID prov ided is re stricted a nd cannot be importe d."); | |||||
| 2032 | ErrorM essages.Ad d(CannotSe tSolutionS ystemAttri butes, "Sy stem attri butes ({0} ) cannot b e set outs ide of ins tallation or upgrade ."); | |||||
| 2033 | ErrorM essages.Ad d(CannotUp dateDefaul tSolution, "Default solution a ttribute{0 } {1} can only be se t on insta llation or upgrade. The value {0} cannot be modifi ed."); | |||||
| 2034 | ErrorM essages.Ad d(CannotUp dateRestri ctedSoluti on, "Restr icted solu tion ({0}) cannot be updated." ); | |||||
| 2035 | ErrorM essages.Ad d(CannotAd dWorkflowA ctivationT oSolution , "Cannot add Workfl ow Activat ion to sol ution "); | |||||
| 2036 | ErrorM essages.Ad d(CannotQu eryBaseTab leWithAggr egates, "I nvalid que ry on base table. A ggregates cannot be included i n base tab le query." ); | |||||
| 2037 | ErrorM essages.Ad d(InvalidS tateTransi tion, "The {0} (Id={ 1}) entity or compon ent has at tempted to transitio n from an invalid st ate: {2}." ); | |||||
| 2038 | ErrorM essages.Ad d(CannotUp dateUnpubl ishedDelet eInstance, "The comp onent that you are t rying to u pdate has been delet ed."); | |||||
| 2039 | ErrorM essages.Ad d(Unsuppor tedCompone ntOperatio n, "{0} is not recog nized as a supported operation ."); | |||||
| 2040 | ErrorM essages.Ad d(InvalidC reateOnPro tectedComp onent, "Yo u cannot c reate {0} {1}. Creat ion cannot be perfor med when { 0} is mana ged."); | |||||
| 2041 | ErrorM essages.Ad d(InvalidU pdateOnPro tectedComp onent, "Yo u cannot u pdate {0} {1}. Updat es cannot be perform ed when {0 } is manag ed."); | |||||
| 2042 | ErrorM essages.Ad d(InvalidD eleteOnPro tectedComp onent, "Yo u cannot d elete {0} {1}. Delet ion cannot be perfor med when { 0} is mana ged."); | |||||
| 2043 | ErrorM essages.Ad d(InvalidP ublishOnPr otectedCom ponent, "Y ou cannot publish {0 } {1}. Pub lish canno t be perfo rmed when {0} is man aged."); | |||||
| 2044 | ErrorM essages.Ad d(CannotAd dNonCustom izableComp onent, "Th e componen t {0} {1} cannot be added to t he solutio n because it is not customizab le"); | |||||
| 2045 | ErrorM essages.Ad d(CannotOv erwriteAct iveCompone nt, "A man aged solut ion cannot overwrite the {0} c omponent w ith Id={1} which has an unmana ged base i nstance. The most l ikely scen ario for t his error is that an unmanaged solution has instal led a new unmanaged {0} compon ent on the target sy stem, and now a mana ged soluti on from th e same pub lisher is trying to install th at same {0 } componen t as manag ed. This will cause an invali d layering of soluti ons on the target sy stem and i s not allo wed."); | |||||
| 2046 | ErrorM essages.Ad d(CannotUp dateRestri ctedPublis her, "Rest ricted pub lisher ({0 }) cannot be updated ."); | |||||
| 2047 | ErrorM essages.Ad d(CannotAd dSolutionC omponentWi thoutRoots , "This i tem is not a valid s olution co mponent. F or more in formation about solu tion compo nents, see the Micro soft Dynam ics 365 SD K document ation."); | |||||
| 2048 | ErrorM essages.Ad d(Componen tDefinitio nDoesNotEx ists, "No component definition exists fo r the comp onent type {0}."); | |||||
| 2049 | ErrorM essages.Ad d(Dependen cyAlreadyE xists, "A {0} depend ency alrea dy exists between {1 }({2}) and {3}({4}). Cannot a lso create {5} depen dency."); | |||||
| 2050 | ErrorM essages.Ad d(Dependen cyTableNot Empty, "Th e dependen cy table m ust be emp ty for ini tializatio n to compl ete succes sfully."); | |||||
| 2051 | ErrorM essages.Ad d(InvalidP ublisherUn iqueName, "Publisher uniquenam e is requi red."); | |||||
| 2052 | ErrorM essages.Ad d(CannotUn installWit hDependenc ies, "Solu tion depen dencies ex ist, canno t uninstal l."); | |||||
| 2053 | ErrorM essages.Ad d(InvalidS olutionVer sion, "An invalid so lution ver sion was s pecified." ); | |||||
| 2054 | ErrorM essages.Ad d(CannotDe leteInUseC omponent, "The {0}({ 1}) compon ent cannot be delete d because it is refe renced by {2} other components . For a li st of refe renced com ponents, u se the Ret rieveDepen denciesFor DeleteRequ est."); | |||||
| 2055 | ErrorM essages.Ad d(CannotUn installRef erencedPro tectedSolu tion, "Thi s solution cannot be uninstall ed because the '{0}' with id ' {1}' is r equired by the '{2}' solution. Uninstall the {2} s olution an d try agai n."); | |||||
| 2056 | ErrorM essages.Ad d(CannotRe moveCompon entFromSol ution, "Ca nnot find solution c omponent { 0} {1} in solution { 2}."); | |||||
| 2057 | ErrorM essages.Ad d(Restrict edSolution Name, "The solution unique nam e '{0}' is restricte d and can only be us ed by inte rnal solut ions."); | |||||
| 2058 | ErrorM essages.Ad d(Solution UniqueName Violation, "The solu tion uniqu e name '{0 }' is alre ady being used and c annot be u sed again. "); | |||||
| 2059 | ErrorM essages.Ad d(CannotUp dateManage dSolution, "Cannot u pdate solu tion '{0}' because i t is a man aged solut ion."); | |||||
| 2060 | ErrorM essages.Ad d(Dependen cyTracking Closed, "I nvalid att empt to pr ocess a de pendency a fter the c urrent tra nsaction c ontext has been clos ed."); | |||||
| 2061 | ErrorM essages.Ad d(GenericM anagedProp ertyFailur e, "The ev aluation o f the curr ent compon ent(name={ 0}, id={1} ) in the c urrent ope ration ({2 }) failed during man aged prope rty evalua tion of co ndition: { 3}"); | |||||
| 2062 | ErrorM essages.Ad d(Combined ManagedPro pertyFailu re, "The e valuation of the cur rent compo nent(name= {0}, id={1 }) in the current op eration ({ 2}) failed during at least one managed p roperty ev aluations: {3}"); | |||||
| 2063 | ErrorM essages.Ad d(ReportIm portCatego ryOptionNo tFound, "A category option for the repor ts was not found."); | |||||
| 2064 | ErrorM essages.Ad d(Required ChildRepor tHasOtherP arent, "A category o ption for the report s was not found."); | |||||
| 2065 | ErrorM essages.Ad d(InvalidM anagedProp ertyExcept ion, "Mana ged proper ty {0} doe s not cont ain enough informati on to be c reated. P lease prov ide (assem bly, class ), or (ent ity, attri bute) or s et the man aged prope rty to cus tom."); | |||||
| 2066 | ErrorM essages.Ad d(OnlyOwne rCanSetMan agedProper ties, "Can not import component {0}: {1} because ma naged prop erty {2} w ith value {3} is dif ferent tha n the curr ent value {4} and th e publishe r of the s olution th at is bein g imported does not match the publisher of the sol ution that installed this comp onent."); | |||||
| 2067 | ErrorM essages.Ad d(CannotDe leteMetada ta, "The ' {2}' opera tion on th e current component( name='{0}' , id='{1}' ) failed d uring mana ged proper ty evaluat ion of con dition: '{ 3}'"); | |||||
| 2068 | ErrorM essages.Ad d(CannotUp dateReadOn lyPublishe r, "Attemp ting to up date a rea donly publ isher."); | |||||
| 2069 | ErrorM essages.Ad d(CannotSe lectReadOn lyPublishe r, "Attemp ting to s elect a re adonly pub lisher for solution. "); | |||||
| 2070 | ErrorM essages.Ad d(CannotRe moveCompon entFromSys temSolutio n, "A Solu tion Compo nent canno t be remov ed from th e System S olution.") ; | |||||
| 2071 | ErrorM essages.Ad d(InvalidD ependency, "The {2} component {1} (Id={0 }) does no t exist. Failure tr ying to as sociate it with {3} (Id={4}) a s a depend ency. Miss ing depend ency looku p type = { 5}."); | |||||
| 2072 | ErrorM essages.Ad d(InvalidD ependencyF etchXml, " The FetchX ml ({2}) i s invalid. Failure while calc ulating de pendencies for {1} ( Id={0}).") ; | |||||
| 2073 | ErrorM essages.Ad d(CannotMo difyReport OutsideSol utionIfMan aged, "Man aged solut ion cannot update re ports whic h are not present in solution package.") ; | |||||
| 2074 | ErrorM essages.Ad d(Duplicat eDetection RulesWereU npublished , "The dup licate det ection rul es for thi s entity h ave been u npublished due to po ssible mod ifications to the en tity."); | |||||
| 2075 | ErrorM essages.Ad d(InvalidD ependencyC omponent, "The requi red compon ent {1} (I d={0}) tha t was defi ned for th e {2} coul d not be f ound in th e system." ); | |||||
| 2076 | ErrorM essages.Ad d(InvalidD ependencyE ntity, "Th e required component {1} (Name ={0}) that was defin ed for the {2} could not be fo und in the system.") ; | |||||
| 2077 | ErrorM essages.Ad d(SharePoi ntUnableTo AddUserToG roup, "Mic rosoft Dyn amics 365 cannot add this user {0} to th e group {1 } in Share Point. Ver ify that t he informa tion for t his user a nd group a re correct and that the group exists in SharePoint , and then try again ."); | |||||
| 2078 | ErrorM essages.Ad d(SharePoi ntUnableTo RemoveUser FromGroup, "Unable t o remove u ser {0} fr om group { 1} in Shar ePoint."); | |||||
| 2079 | ErrorM essages.Ad d(SharePoi ntSiteNotP resentInSh arePoint, "Site {0} does not e xists in S harePoint. "); | |||||
| 2080 | ErrorM essages.Ad d(SharePoi ntUnableTo RetrieveGr oup, "Unab le to retr ieve the g roup {0} f rom ShareP oint."); | |||||
| 2081 | ErrorM essages.Ad d(SharePoi ntUnableTo AclSiteWit hPrivilege , "Unable to ACL sit e {0} with privilege {1} in Sh arePoint." ); | |||||
| 2082 | ErrorM essages.Ad d(SharePoi ntUnableTo AclSite, " Unable to ACL site { 0} in Shar ePoint."); | |||||
| 2083 | ErrorM essages.Ad d(SharePoi ntUnableTo CreateSite Group, "Un able to cr eate site group {0} in SharePo int."); | |||||
| 2084 | ErrorM essages.Ad d(SharePoi ntSiteCrea tionFailur e, "Failed to create the site {0} in Sha rePoint.") ; | |||||
| 2085 | ErrorM essages.Ad d(SharePoi ntTeamProv isionJobAl readyExist s, "A syst em job to provision the select ed team is pending. Any change s made to the team r ecord befo re this sy stem job s tarts will be applie d to this system job ."); | |||||
| 2086 | ErrorM essages.Ad d(SharePoi ntRoleProv isionJobAl readyExist s, "A syst em job to provision the select ed securit y role is pending. A ny changes made to t he securit y role rec ord before this syst em job sta rts will b e applied to this sy stem job." ); | |||||
| 2087 | ErrorM essages.Ad d(SharePoi ntSiteWide Provisioni ngJobFaile d, "ShareP oint provi sioning jo b has fail ed."); | |||||
| 2088 | ErrorM essages.Ad d(DataType MismatchFo rLinkedAtt ribute, "D ata type m ismatch fo und for li nked attri bute."); | |||||
| 2089 | ErrorM essages.Ad d(InvalidE ntityForLi nkedAttrib ute, "Not a valid en tity for l inked attr ibute."); | |||||
| 2090 | ErrorM essages.Ad d(AlreadyL inkedToAno therAttrib ute, "Give n linked a ttribute i s alreadly linked to other att ribute."); | |||||
| 2091 | ErrorM essages.Ad d(Document Management Disabled, "Document Management has been disabled f or this or ganization ."); | |||||
| 2092 | ErrorM essages.Ad d(DefaultS iteCollect ionUrlChan ged, "Defa ult site c ollection url has be en changed this orga nization a fter this operation was create d."); | |||||
| 2093 | ErrorM essages.Ad d(RibbonIm portHiding BasicHomeT ab, "The d efinition of the rib bon being imported w ill remove the Micro soft Dynam ics 365 ho me tab. In clude a ho me tab def inition, o r a ribbon will not be display ed in area s of the a pplication that disp lay the ho me tab."); | |||||
| 2094 | ErrorM essages.Ad d(RibbonIm portInvali dPrivilege Name, "The RibbonDif fXml in th is solutio n contains a referen ce to an i nvalid pri vilege: {0 }. Update the Ribbon DiffXml to reference a valid p rivilege a nd try imp orting aga in."); | |||||
| 2095 | ErrorM essages.Ad d(RibbonIm portEntity NotSupport ed, "The s olution ca nnot be im ported bec ause the { 0} entity contains a Ribbon de finition, which is n ot support ed for tha t entity. Remove the RibbonDif fXml node from the e ntity defi nition and try to im port again ."); | |||||
| 2096 | ErrorM essages.Ad d(RibbonIm portDepend encyMissin gEntity, " The ribbon item '{0} ' is depen dent on en tity {1}." ); | |||||
| 2097 | ErrorM essages.Ad d(RibbonIm portDepend encyMissin gRibbonEle ment, "The ribbon it em '{0}' i s dependen t on <{1} Id=\"{2}\" />."); | |||||
| 2098 | ErrorM essages.Ad d(RibbonIm portDepend encyMissin gWebResour ce, "The r ibbon item '{0}' is dependent on Web res ource id=' {1}'."); | |||||
| 2099 | ErrorM essages.Ad d(RibbonIm portDepend encyMissin gRibbonCon trol, "The ribbon it em '{0}' i s dependen t on ribbo n control id='{1}'." ); | |||||
| 2100 | ErrorM essages.Ad d(RibbonIm portModify ingTopLeve lNode, "Ri bbon custo mizations cannot be made to th e followin g top-leve l ribbon n odes: <Rib bon>, <Con textualGro ups>, and <Tabs>."); | |||||
| 2101 | ErrorM essages.Ad d(RibbonIm portLocati onAndIdDoN otMatch, " CustomActi on Id '{0} ' cannot o verride '{ 1}' becaus e '{2}' do es not mat ch the Cus tomAction Location v alue."); | |||||
| 2102 | ErrorM essages.Ad d(RibbonIm portHiding Jewel, "Ri bbon custo mizations cannot hid e the <Jew el> node. Any ribbon customiza tion that hides this node is i gnored dur ing import and will not be exp orted."); | |||||
| 2103 | ErrorM essages.Ad d(RibbonIm portDuplic ateElement Id, "The r ibbon elem ent with t he Id:{0} cannot be imported b ecause an existing r ibbon elem ent with t he same Id already e xists."); | |||||
| 2104 | ErrorM essages.Ad d(WebResou rceInvalid Type, "Inv alid web r esource ty pe specifi ed."); | |||||
| 2105 | ErrorM essages.Ad d(WebResou rceEmptySi lverlightV ersion, "S ilverlight version c annot be e mpty for s ilverlight web resou rces."); | |||||
| 2106 | ErrorM essages.Ad d(WebResou rceInvalid Silverligh tVersion, "Silverlig ht version can only be of the format xx. xx[.xx.xx] ."); | |||||
| 2107 | ErrorM essages.Ad d(WebResou rceContent SizeExceed ed, "Webre source con tent size is too big ."); | |||||
| 2108 | ErrorM essages.Ad d(WebResou rceDuplica teName, "A webresour ce with th e same nam e already exists. Us e a differ ent name." ); | |||||
| 2109 | ErrorM essages.Ad d(WebResou rceEmptyNa me, "Webre source nam e cannot b e null or empty."); | |||||
| 2110 | ErrorM essages.Ad d(WebResou rceNameInv alidCharac ters, "Web resource names may only inclu de letters , numbers, periods, and noncon secutive f orward sla sh charact ers."); | |||||
| 2111 | ErrorM essages.Ad d(WebResou rceNameInv alidPrefix , "Webreso urce name does not c ontain a v alid prefi x."); | |||||
| 2112 | ErrorM essages.Ad d(WebResou rceNameInv alidFileEx tension, " A Web reso urce canno t have the following file exte nsions: .a spx, .ascx , .asmx or .ashx."); | |||||
| 2113 | ErrorM essages.Ad d(WebResou rceImportM issingFile , "The fil e for this Web resou rce does n ot exist i n the solu tion file. "); | |||||
| 2114 | ErrorM essages.Ad d(WebResou rceImportE rror, "An error occu rred while importing a Web res ource. Try importing this solu tion again . For furt her assist ance, cont act Micros oft Dynami cs 365 tec hnical sup port."); | |||||
| 2115 | ErrorM essages.Ad d(InvalidA ctivityOwn ershipType Mask, "A c ustom enti ty defined as an act ivity must be user o r team own ed."); | |||||
| 2116 | ErrorM essages.Ad d(Activity CannotHave RelatedAct ivities, " A custom e ntity defi ned as an activity m ust not ha ve a relat ionship wi th Activit ies."); | |||||
| 2117 | ErrorM essages.Ad d(CustomAc tivityMust HaveOfflin eAvailabil ity, "A cu stom entit y defined as an acti vity must have Offli ne Availab ility."); | |||||
| 2118 | ErrorM essages.Ad d(Activity MustHaveRe latedNotes , "A custo m entity d efined as an activit y must hav e a relati onship to Notes by d efault."); | |||||
| 2119 | ErrorM essages.Ad d(CustomAc tivityCann otBeMailMe rgeEnabled , "A custo m entity d efined as an activit y already cannot hav e MailMerg e enabled. "); | |||||
| 2120 | ErrorM essages.Ad d(InvalidC ustomActiv ityType, " A custom e ntity defi ned as an activity m ust be of communicat on activit y type."); | |||||
| 2121 | ErrorM essages.Ad d(Activity MetadataUp date, "The metadata specified for activi ty is inva lid."); | |||||
| 2122 | ErrorM essages.Ad d(InvalidP rimaryFiel dForActivi ty, "A cus tom entity defined a s an activ ity cannot have prim ary attrib ute other than subje ct."); | |||||
| 2123 | ErrorM essages.Ad d(CannotDe leteNonLea fNode, "On ly a leaf statement can be del eted. This statement is parent ing some o ther state ment."); | |||||
| 2124 | ErrorM essages.Ad d(Duplicat eUIStateme ntRootsFou nd, "There can be on ly one roo t statemen t for a gi ven uiscri pt."); | |||||
| 2125 | ErrorM essages.Ad d(ErrorUpd ateStateme ntTextIsRe ferenced, "You canno t update t his UI scr ipt statem ent text b ecause it is being r eferred to by one or more publ ished ui s cripts."); | |||||
| 2126 | ErrorM essages.Ad d(ErrorDel eteStateme ntTextIsRe ferenced, "You canno t delete t he UI scri pt stateme nt text be cause it i s being re ferred by one or mor e ui scrip t statemen ts."); | |||||
| 2127 | ErrorM essages.Ad d(ErrorScr iptSession CannotCrea teForDraft Script, "Y ou cannot create a U I script s ession for a UI scri pt which i s not publ ished."); | |||||
| 2128 | ErrorM essages.Ad d(ErrorScr iptSession CannotUpda teForDraft Script, "Y ou cannot update a U I script s ession for a UI scri pt which i s not publ ished."); | |||||
| 2129 | ErrorM essages.Ad d(ErrorScr iptLanguag eNotInstal led, "The language s pecified i s not supp orted in y our Dynami cs 365 ins tall. Plea se check w ith your s ystem admi nistrator on the lis t of \"ena bled\" lan guages."); | |||||
| 2130 | ErrorM essages.Ad d(ErrorScr iptInitial StatementN otInScript , "The ini tial state ment for t his script does not belong to this scrip t."); | |||||
| 2131 | ErrorM essages.Ad d(ErrorScr iptInitial StatementN otRoot, "T he initial statement should th e root sta tement and cannot ha ve a previ ous statem ent set.") ; | |||||
| 2132 | ErrorM essages.Ad d(ErrorScr iptCannotD eletePubli shedScript , "You can not delete a UI scri pt that is published . You must unpublish it first. "); | |||||
| 2133 | ErrorM essages.Ad d(ErrorScr iptPublish MissingIni tialStatem ent, "The selected U I script c annot be p ublished. Provide a value for \"First st atement nu mber\" and try to pu blish agai n."); | |||||
| 2134 | ErrorM essages.Ad d(ErrorScr iptPublish MalformedS cript, "Th e selected UI script cannot be published . The UI s cript cont ains one o r more pat hs which d o not end in an end- script or next-scrip t action n ode. Corre ct the pat hs and try to publis h again.") ; | |||||
| 2135 | ErrorM essages.Ad d(ErrorScr iptUnpubli shActiveSc ript, "Thi s script i s in use a nd has act ive sessio ns (status -reason=in complete). Please te rminate th e active s essions (i .e. status -reason=ca ncelled) a nd try to unpublish again."); | |||||
| 2136 | ErrorM essages.Ad d(ErrorScr iptSession CannotSetS tateForDra ftScript, "You canno t set the state of a UI script session f or a UI sc ript which is not pu blished.") ; | |||||
| 2137 | ErrorM essages.Ad d(ErrorScr iptStateme ntResponse TypeOnlyFo rPrompt, " You cannot associate the respo nse contro l type for a stateme nt which i s not a pr ompt."); | |||||
| 2138 | ErrorM essages.Ad d(ErrorSta tementOnly ForDraftSc ript, "You cannot cr eate a UI script sta tement for a UI scri pt which i s not draf t."); | |||||
| 2139 | ErrorM essages.Ad d(ErrorSta tementDele teOnlyForD raftScript , "You can not delete a UI scri pt stateme nt for a U I script w hich is no t draft.") ; | |||||
| 2140 | ErrorM essages.Ad d(ErrorInv alidUIScri ptImportFi le, "File type is no t supporte d. Select an xml fil e for impo rt."); | |||||
| 2141 | ErrorM essages.Ad d(ErrorScr iptFilePar se, "Error occurred while pars ing the XM L file."); | |||||
| 2142 | ErrorM essages.Ad d(ErrorScr iptCannotU pdatePubli shedScript , "You can not update a UI scri pt that is published . You must unpublish it first. "); | |||||
| 2143 | ErrorM essages.Ad d(ErrorInv alidFileNa meChars, " The Micros oft Excel file name cannot con tain the f ollowing c haracters: * \\ : > < | ? \" /. Rename the file u sing valid character s, and try again."); | |||||
| 2144 | ErrorM essages.Ad d(ErrorMim eTypeNullO rEmpty, "T he MimeTyp e property value of the Upload FromBase64 DataUIScri ptRequest method is null or em pty. Speci fy a valid property value, and try again ."); | |||||
| 2145 | ErrorM essages.Ad d(ErrorImp ortInvalid ForPublish edScript, "You canno t save dat a to a pub lished UI script. Un publish th e UI scrip t, and try again."); | |||||
| 2146 | ErrorM essages.Ad d(UIScript Identifier Duplicate, "A variab le or inpu t argument with the same name already ex ists. Choo se a diffe rent name, and try a gain."); | |||||
| 2147 | ErrorM essages.Ad d(UIScript Identifier Invalid, " The variab le or inpu t argument name is i nvalid. Th e name can only cont ain '_', n umerical, and alphab etical cha racters. C hoose a di fferent na me, and tr y again.") ; | |||||
| 2148 | ErrorM essages.Ad d(UIScript Identifier InvalidLen gth, "The variable o r input ar gument nam e is too l ong. Choos e a smalle r name, an d try agai n."); | |||||
| 2149 | ErrorM essages.Ad d(ErrorNoQ ueryData, "An error has occurr ed. Either the data does not e xist or yo u do not h ave suffic ient privi leges to v iew the da ta. Contac t your sys tem admini strator fo r help."); | |||||
| 2150 | ErrorM essages.Ad d(ErrorUIS criptPromp tMissing, "The dialo g that is being acti vated has no prompt/ response." ); | |||||
| 2151 | ErrorM essages.Ad d(SharePoi ntUrlHostV alidator, "The URL c annot be r esolved in to an IP." ); | |||||
| 2152 | ErrorM essages.Ad d(SharePoi ntCrmDomai nValidator , "The Sha rePoint an d Microsof t Dynamics 365 Serve rs are on different domains. P lease ensu re a trust relations hip betwee n the two domains.") ; | |||||
| 2153 | ErrorM essages.Ad d(SharePoi ntServerDi scoveryVal idator, "T he URL is incorrect or the sit e is not r unning."); | |||||
| 2154 | ErrorM essages.Ad d(SharePoi ntServerVe rsionValid ator, "The SharePoin t Site Col lection mu st be runn ing a supp orted vers ion of Mic rosoft Off ice ShareP oint Serve r or Micro soft Windo ws SharePo int Servic es. Please refer the implement ation guid e."); | |||||
| 2155 | ErrorM essages.Ad d(SharePoi ntSiteColl ectionIsAc cessibleVa lidator, " The URL is incorrect or the si te is not running.") ; | |||||
| 2156 | ErrorM essages.Ad d(SharePoi ntUrlIsRoo tWebValida tor, "The URL is not valid. Th e URL must be a vali d site col lection an d cannot i nclude a s ubsite. Th e URL must be in a v alid form, such as h ttp://Shar ePointServ er/sites/C rmSite."); | |||||
| 2157 | ErrorM essages.Ad d(SharePoi ntSitePerm issionsVal idator, "T he current user does not have the approp riate priv ileges. Yo u must be a SharePoi nt site ad ministrato r on the S harePoint site."); | |||||
| 2158 | ErrorM essages.Ad d(SharePoi ntServerLa nguageVali dator, "Mi crosoft Dy namics 365 and Micro soft Offic e SharePoi nt Server must have the same b ase langua ge."); | |||||
| 2159 | ErrorM essages.Ad d(SharePoi ntCrmGridI sInstalled Validator, "The Micr osoft Dyna mics 365 G rid compon ent must b e installe d on the S harePoint server. Th is compone nt is requ ired for S harePoint integratio n to work correctly. "); | |||||
| 2160 | ErrorM essages.Ad d(SharePoi ntErrorRet rieveAbsol uteUrl, "A n error oc curred whi le retriev ing the ab solute and site coll ection url for a Sha rePoint ob ject."); | |||||
| 2161 | ErrorM essages.Ad d(SharePoi ntInvalidE ntityForVa lidation, "Entity Do es not sup port Share Point Url Validation ."); | |||||
| 2162 | ErrorM essages.Ad d(Document Management IsDisabled , "Documen t Manageme nt is not enabled fo r this Org anization. "); | |||||
| 2163 | ErrorM essages.Ad d(Document Management NotEnabled NoPrimaryF ield, "Doc ument mana gement cou ld not be enabled be cause a pr imary fiel d is not d efined for this enti ty."); | |||||
| 2164 | ErrorM essages.Ad d(SharePoi ntErrorAbs oluteUrlCl ipped, "Th e URL exce eds the ma ximum numb er of 256 characters . Use shor ter names for sites and folder s, and try again."); | |||||
| 2165 | ErrorM essages.Ad d(SiteMapX sdValidati onError, " Sitemap xm l failed X SD validat ion with t he followi ng error: '{0}' at l ine {1} po sition {2} ."); | |||||
| 2166 | ErrorM essages.Ad d(CannotSe cureAttrib ute, "The field '{0} ' is not s ecurable") ; | |||||
| 2167 | ErrorM essages.Ad d(Attribut ePrivilege CreateIsMi ssing, "Th e user doe s not have create pe rmissions to a secur ed field. The reques ted operat ion could not be com pleted."); | |||||
| 2168 | ErrorM essages.Ad d(Attribut ePermissio nUpdateIsM issingDuri ngShare, " The user d oes not ha ve update permission s to a sec ured field . The requ ested oper ation coul d not be c ompleted." ); | |||||
| 2169 | ErrorM essages.Ad d(Attribut ePermissio nReadIsMis sing, "The user does not have read permi ssions to a secured field. The requested operation could not be comple ted."); | |||||
| 2170 | ErrorM essages.Ad d(CannotRe moveSysAdm inProfileF romSysAdmi nUser, "Th e Sys Admi n Profile cannot be removed fr om a user with a Sys Admin Rol e"); | |||||
| 2171 | ErrorM essages.Ad d(QueryCon tainedSecu redAttribu teWithoutA ccess, "Th e Query co ntained a secured at tribute to which the caller do es not hav e access") ; | |||||
| 2172 | ErrorM essages.Ad d(Attribut ePermissio nUpdateIsM issingDuri ngUpdate, "The user doesn't ha ve Attribu tePrivileg eUpdate an d not gran ted shared access fo r a secure d attribut e during u pdate oper ation"); | |||||
| 2173 | ErrorM essages.Ad d(Attribut eNotSecure d, "One or more fiel ds are not enabled f or field l evel secur ity. Field level sec urity is n ot enabled until you publish t he customi zations.") ; | |||||
| 2174 | ErrorM essages.Ad d(Attribut eSharingCr eateShould SetReadOrA ndUpdateAc cess, "You must set read and/o r update a ccess when you share a secured attribute . Attribut e ID: {0}" ); | |||||
| 2175 | ErrorM essages.Ad d(Attribut eSharingUp dateInvali d, "Both r eadAccess and update Access are false: ca ll Delete instead of Update.") ; | |||||
| 2176 | ErrorM essages.Ad d(Attribut eSharingCr eateDuplic ate, "Attr ibute has already be en shared. "); | |||||
| 2177 | ErrorM essages.Ad d(AdminPro fileCannot BeEditedOr Deleted, " The System Administr ator field security profile ca nnot be mo dified or deleted.") ; | |||||
| 2178 | ErrorM essages.Ad d(Attribut ePrivilege InvalidToU nsecure, " You must h ave suffic ient permi ssions for a secured field bef ore you ca n change i ts field l evel secur ity."); | |||||
| 2179 | ErrorM essages.Ad d(Attribut ePermissio nIsInvalid , "Permiss ion '{0}' for field '{1}' with id={2} is invalid." ); | |||||
| 2180 | ErrorM essages.Ad d(Applicat ionUserAll owCustomRo leOnly, "A pplication user must have a cu stom secur ity role. Role = {0} can not b e assigned to Applic ation User Id = {1} " ); | |||||
| 2181 | ErrorM essages.Ad d(AzureApp licationId NotFound, "We didn’t find that applicati on ID {0} in your Az ure Active Directory (Azure AD ). Make su re your ap plication is registe red in Azu re AD."); | |||||
| 2182 | ErrorM essages.Ad d(Duplicat eApplicati onUser, "Y ou are att empting to create an Applicati on ID = {0 } that alr eady exist s."); | |||||
| 2183 | ErrorM essages.Ad d(AzureApp licationId NotFoundIn OrgDB, "Az ure applic ationid no t found. W e didn’t f ind the ap plication ID {0} in your CRM d atabase. C orrect the applicati on ID and resubmit t he update. "); | |||||
| 2184 | ErrorM essages.Ad d(RequireV alidImport MapForUpda te, "The u pdate oper ation cann ot be comp leted beca use the im port map u sed for th e update i s invalid. "); | |||||
| 2185 | ErrorM essages.Ad d(InvalidF ormatForUp dateMode, "The file that you u ploaded is invalid a nd cannot be used fo r updating records." ); | |||||
| 2186 | ErrorM essages.Ad d(MaximumC ountForUpd ateModeExc eeded, "In an update operation , you can import onl y one file at a time ."); | |||||
| 2187 | ErrorM essages.Ad d(RecordRe solutionFa iled, "The record co uld not be updated b ecause the original record no longer exi sts in Mic rosoft Dyn amics 365. "); | |||||
| 2188 | ErrorM essages.Ad d(InvalidO perationFo rDynamicLi st, "This action is not availa ble for a dynamic ma rketing li st."); | |||||
| 2189 | ErrorM essages.Ad d(QueryNot ValidForSt aticList, "Query can not be spe cified for a static list."); | |||||
| 2190 | ErrorM essages.Ad d(LockStat usNotValid ForDynamic List, "Loc k Status c annot be s pecified f or a dynam ic list.") ; | |||||
| 2191 | ErrorM essages.Ad d(CannotCo pyStaticLi st, "This action is valid only for dynam ic list.") ; | |||||
| 2192 | ErrorM essages.Ad d(CannotDe leteSystem Form, "Sys tem forms cannot be deleted.") ; | |||||
| 2193 | ErrorM essages.Ad d(CannotUp dateSystem EntityIcon s, "System entity ic ons cannot be update d."); | |||||
| 2194 | ErrorM essages.Ad d(Fallback FormDeleti on, "You c annot dele te this fo rm because it is the only fall back form of type {0 } for the {1} entity . Each ent ity must h ave at lea st one fal lback form for each form type. "); | |||||
| 2195 | ErrorM essages.Ad d(SystemFo rmImportMi ssingRoles , "The unm anaged sol ution you are import ing has di splaycondi tion XML a ttributes that refer to securi ty roles t hat are mi ssing from the targe t system. Any displa ycondition attribute s that ref er to thes e security roles wil l be remov ed."); | |||||
| 2196 | ErrorM essages.Ad d(SystemFo rmCopyUnma tchedEntit y, "The en tity for t he Target and the So urceId mus t match.") ; | |||||
| 2197 | ErrorM essages.Ad d(SystemFo rmCopyUnma tchedFormT ype, "The form type of the Sou rceId is n ot valid f or the Tar get entity ."); | |||||
| 2198 | ErrorM essages.Ad d(SystemFo rmCreateWi thExisting Label, "Th e label '{ 0}', id: ' {1}' alrea dy exists. Supply un ique label id values. "); | |||||
| 2199 | ErrorM essages.Ad d(QuickFor mNotCustom izableThro ughSdk, "T he SDK doe s not supp ort creati ng a form of type \" Quick\". T his form t ype is res erved for internal u se only.") ; | |||||
| 2200 | ErrorM essages.Ad d(InvalidD eactivateF ormType, " You can’t deactivate {0} forms . Only Mai n forms ca n be inact ive."); | |||||
| 2201 | ErrorM essages.Ad d(Fallback FormDeacti vation, "T his operat ion can’t be complet ed. You mu st have at least one active Ma in form.") ; | |||||
| 2202 | ErrorM essages.Ad d(Deprecat edFormActi vation, "T his form h as been de precated i n the prev ious relea se and can not be use d anymore. Please mi grate your changes t o a differ ent form. Deprecated forms wil l be remov ed from th e system i n the futu re."); | |||||
| 2203 | ErrorM essages.Ad d(CannotUp dateEntity SetName, " EntitySetN ame cannot be update d for OOB entities") ; | |||||
| 2204 | ErrorM essages.Ad d(Fallback CardFormDe activation , "This op eration ca n’t be com pleted. Yo u must hav e at least one activ e Card for m."); | |||||
| 2205 | ErrorM essages.Ad d(Fallback QuickFormD eactivatio n, "This o peration c an’t be co mpleted. Y ou must ha ve at leas t one acti ve Quick f orm."); | |||||
| 2206 | ErrorM essages.Ad d(Fallback MainIntera ctionCentr icFormDeac tivation, "This oper ation can’ t be compl eted. You must have at least o ne active MainIntera ctionCentr ic form.") ; | |||||
| 2207 | ErrorM essages.Ad d(RuntimeR ibbonXmlVa lidation, "The most recent cus tomized ri bbon for a tab on th is page ca nnot be ge nerated. T he out-of- box versio n of the r ibbon is d isplayed i nstead."); | |||||
| 2208 | ErrorM essages.Ad d(Initiali zeErrorNoR eadOnSourc e, "The op eration co uld not be completed because y ou donot h ave read a ccess on s ome of the fields in {0} recor d."); | |||||
| 2209 | ErrorM essages.Ad d(NoRollup Attributes Defined, " For rollup to succee d atleast one rollup attribute needs to be associa ted with t he goal me tric"); | |||||
| 2210 | ErrorM essages.Ad d(GoalPerc entageAchi evedValueO utOfRange, "The perc entage ach ieved valu e has been set to 0 because th e calculat ed value i s not in t he allowed range."); | |||||
| 2211 | ErrorM essages.Ad d(InvalidR ollupQuery AttributeS et, "A Rol lup Query cannot be set for a Rollup Fie ld that is not defin ed in the Goal Metri c."); | |||||
| 2212 | ErrorM essages.Ad d(InvalidG oalManager , "The man ager of a goal can o nly be a u ser and no t a team." ); | |||||
| 2213 | ErrorM essages.Ad d(Inactive RollupQuer ySetOnGoal , "An inac tive rollu p query ca nnot be se t on a goa l."); | |||||
| 2214 | ErrorM essages.Ad d(Inactive MetricSetO nGoal, "An inactive metric can not be set on a goal ."); | |||||
| 2215 | ErrorM essages.Ad d(MetricEn tityOrFiel dDeleted, "The entit y or field that is r eferenced in the goa l metric i s not vali d"); | |||||
| 2216 | ErrorM essages.Ad d(Exceeded NumberOfRe cordsCanFo llow, "You have exce eded the n umber of r ecords you can follo w. Please unfollow s ome record s to start following again."); | |||||
| 2217 | ErrorM essages.Ad d(EntityIs NotEnabled ForFollowU ser, "This entity is not enabl ed to be f ollowed. " ); | |||||
| 2218 | ErrorM essages.Ad d(EntityIs NotEnabled ForFollow, "This ent ity is not enabled t o be follo wed. "); | |||||
| 2219 | ErrorM essages.Ad d(CannotFo llowInacti veEntity, "Can't fol low inacti ve record. "); | |||||
| 2220 | ErrorM essages.Ad d(MustCont ainAtLeast ACharInMen tion, "The display n ame must c ontain atl east one n on-whitesp ace charac ter."); | |||||
| 2221 | ErrorM essages.Ad d(Language Provisioni ngSrsDataC onnectorNo tInstalled , "The Mic rosoft Dyn amics 365 Reporting Extensions must be i nstalled b efore the language c an be prov isioned fo r this org anization. "); | |||||
| 2222 | ErrorM essages.Ad d(BidsInva lidConnect ionString, "Input co nnection s tring is i nvalid. Us age: Serve rUrl[;Orga nizationNa me][;HomeR ealmUrl]") ; | |||||
| 2223 | ErrorM essages.Ad d(BidsInva lidUrl, "I nput url { 0} is inva lid."); | |||||
| 2224 | ErrorM essages.Ad d(BidsServ erConnecti onFailed, "Failed to connect t o server { 0}."); | |||||
| 2225 | ErrorM essages.Ad d(BidsAuth entication Error, "An error occ ured while authentic ating with server {0 }."); | |||||
| 2226 | ErrorM essages.Ad d(BidsNoOr ganization sFound, "N o organiza tions foun d for the user."); | |||||
| 2227 | ErrorM essages.Ad d(BidsOrga nizationNo tFound, "O rganizatio n {0} cann ot be foun d for the user."); | |||||
| 2228 | ErrorM essages.Ad d(BidsAuth entication Failed, "A uthenticat ion failed when tryi ng to conn ect to ser ver {0}. T he usernam e or passw ord is inc orrect."); | |||||
| 2229 | ErrorM essages.Ad d(Transact ionNotSupp orted, "Th e operatio n that you are tryin g to perfo rm does no t support transactio ns."); | |||||
| 2230 | ErrorM essages.Ad d(IndexOut OfRange, " The index {0} is out of range for {1}. N umber of e lements pr esent are {2}."); | |||||
| 2231 | ErrorM essages.Ad d(InvalidA ttribute, "Attribute {0} canno t be found for entit y {1}."); | |||||
| 2232 | ErrorM essages.Ad d(MultiVal ueParamete rFound, "F etch xml p arameter { 0} cannot obtain mul tiple valu es. Change report pa rameter {0 } to singl e value pa rameter an d try agai n."); | |||||
| 2233 | ErrorM essages.Ad d(QueryPar ameterNotU nique, "Qu ery parame ter {0} mu st be defi ned only o nce within the data set."); | |||||
| 2234 | ErrorM essages.Ad d(InvalidE ntity, "En tity {0} c annot be f ound."); | |||||
| 2235 | ErrorM essages.Ad d(Unsuppor tedAttribu teType, "A ttribute t ype {0} is not suppo rted. Remo ve attribu te {1} fro m the quer y and try again."); | |||||
| 2236 | ErrorM essages.Ad d(FetchDat aSetQueryT imeout, "T he fetch d ata set qu ery timed out after {0} second s. Increas e the quer y timeout, and try a gain."); | |||||
| 2237 | ErrorM essages.Ad d(InvalidC ommand, "I nvalid com mand."); | |||||
| 2238 | ErrorM essages.Ad d(InvalidD ataXml, "I nvalid dat a xml."); | |||||
| 2239 | ErrorM essages.Ad d(InvalidL anguageFor ProcessCon figuration , "Process configura tion is no t availabl e since yo ur languag e does not match sys tem base l anguage.") ; | |||||
| 2240 | ErrorM essages.Ad d(InvalidC omplexCont rolId, "Th e complex control id is invali d."); | |||||
| 2241 | ErrorM essages.Ad d(InvalidP rocessCont rolEntity, "The proc ess contro l definiti on contain s an inval id entity or invalid entity or der."); | |||||
| 2242 | ErrorM essages.Ad d(InvalidP rocessCont rolAttribu te, "The p rocess con trol defin ition cont ains an in valid attr ibute."); | |||||
| 2243 | ErrorM essages.Ad d(BadReque st, "The r equest cou ld not be understood by the se rver."); | |||||
| 2244 | ErrorM essages.Ad d(AccessTo kenExpired , "The req uested res ource requ ires authe ntication. "); | |||||
| 2245 | ErrorM essages.Ad d(Forbidde n, "The se rver refus es to fulf ill the re quest."); | |||||
| 2246 | ErrorM essages.Ad d(Throttli ng, "Too m any reques ts."); | |||||
| 2247 | ErrorM essages.Ad d(NetworkI ssue, "Req uest faile d due to u nknown net work issue s or GateW ay issues or server issues."); | |||||
| 2248 | ErrorM essages.Ad d(CouldNot ReadAccess Token, "Th e system w as not abl e to read users Yamm er access token alth ough a non -empty cod e was pass ed."); | |||||
| 2249 | ErrorM essages.Ad d(NotVerif iedAdmin, "You need an enterpr ise accoun t with Yam mer in ord er to comp lete this setup. Ple ase sign i n with a Y ammer admi nistrator account or contact a Yammer ad ministrato r for help ."); | |||||
| 2250 | ErrorM essages.Ad d(YammerAu thTimedOut , "You hav e waited t oo long to complete the Yammer authoriza tion. Plea se try aga in."); | |||||
| 2251 | ErrorM essages.Ad d(NoYammer NetworksFo und, "You are not au thorized f or any Yam mer networ k. Please reauthoriz e the Yamm er setup w ith a Yamm er adminis trator acc ount or co ntact a Ya mmer admin istrator f or help.") ; | |||||
| 2252 | ErrorM essages.Ad d(OAuthTok enNotFound , "Yammer OAuth toke n is not f ound. You should con figure Yam mer before accessing any relat ed feature ."); | |||||
| 2253 | ErrorM essages.Ad d(CouldNot DecryptOAu thToken, " Yammer OAu th token c ould not b e decrypte d. Please try to rec onfigure Y ammer once again."); | |||||
| 2254 | ErrorM essages.Ad d(UserNeve rLoggedInt oYammer, " To follow other user s, you mus t be logge d in to Ya mmer. Log in to your Yammer ac count, and try again ."); | |||||
| 2255 | ErrorM essages.Ad d(StepNotS upportedFo rClientBus inessRule, "Step {0} is not su pported fo r client s ide busine ss rule.") ; | |||||
| 2256 | ErrorM essages.Ad d(EventNot SupportedF orBusiness Rule, "Eve nt {0} is not suppor ted for cl ient side business r ule."); | |||||
| 2257 | ErrorM essages.Ad d(CannotUp dateTrigge rForPublis hedRules, "A trigger cannot be added/del eted/updat ed for a p ublished r ule."); | |||||
| 2258 | ErrorM essages.Ad d(EventTyp eAndContro lNameAreMi smatched, "This comb ination of event typ e and cont rol name i s unexpect ed"); | |||||
| 2259 | ErrorM essages.Ad d(Expressi onNotSuppo rtedForEdi tor, "Rule contain a n expressi on that is not suppo rted by th e editor." ); | |||||
| 2260 | ErrorM essages.Ad d(EditorOn lySupportA ndOperator ForLogical Conditions , "The rul e expressi on contain s logical operator w hich is no t supporte d. The edi tor only s upport And operator for Logica l conditio ns."); | |||||
| 2261 | ErrorM essages.Ad d(Unexpect edRightOpe randCount, "The righ t operand array in t he express ion contai n unexpect ed no. of operand.") ; | |||||
| 2262 | ErrorM essages.Ad d(RuleNotS upportedFo rEditor, " The curren t rule def inition ca nnot be ed ited in th e Business rule edit or."); | |||||
| 2263 | ErrorM essages.Ad d(Business RuleEditor SupportsOn lyIfCondit ionBranch, "The busi ness rule editor onl y supports one if co ndition. P lease fix the rule." ); | |||||
| 2264 | ErrorM essages.Ad d(Unsuppor tedStepFor BusinessRu leEditor, "The rule contain a step which is not su pported by the edito r."); | |||||
| 2265 | ErrorM essages.Ad d(Unsuppor tedAttribu teForEdito r, "The ru le contain an attrib ute which is not sup ported."); | |||||
| 2266 | ErrorM essages.Ad d(Expectin gAtLeastOn eBusinessR uleStep, " There shou ld be a mi nimum of o ne Busines s rule ste p."); | |||||
| 2267 | ErrorM essages.Ad d(RuleCrea tionNotAll owedForCyc licReferen ces, "You can't crea te this ru le because it contai ns a cycli cal refere nce. Fix t he rule an d try agai n."); | |||||
| 2268 | ErrorM essages.Ad d(NoCondit ionRuleCre ationNotAl lowedForSe tValueShow Error, "Th e \"Show e rror messa ge\" and \ "Set value \" actions can't be used in a business r ule that d oesn't hav e a condit ion."); | |||||
| 2269 | ErrorM essages.Ad d(RuleActi vationNotA llowedWith DeletedSta ges, "You can't acti vate this rule becau se it cont ains a del eted stage or stage category. Fix the ru le and try again."); | |||||
| 2270 | ErrorM essages.Ad d(EntityLi mitExceede d, "MultiE ntitySearc h exceeded Entity Li mit define d for the Organizati on."); | |||||
| 2271 | ErrorM essages.Ad d(InvalidS earchEntit y, "Invali d Search E ntity - {0 }."); | |||||
| 2272 | ErrorM essages.Ad d(InvalidS earchEntit ies, "Sear ch - {0} d id not fin d any vali d Entities ."); | |||||
| 2273 | ErrorM essages.Ad d(NoQuickF indFound, "Entity - {0} did no t have a v alid Quick find query ."); | |||||
| 2274 | ErrorM essages.Ad d(InvalidS earchName, "Invalid Search Nam e - {0}.") ; | |||||
| 2275 | ErrorM essages.Ad d(EntityGr oupNameOrE ntityNames MustBeProv ided, "Mis sing param eter. You must provi de EntityG roupName o r EntityNa mes."); | |||||
| 2276 | ErrorM essages.Ad d(OnlyOneS earchParam eterMustBe Provided, "Extra par ameter. Yo u only nee d to provi de EntityG roupName o r EntityNa mes, not b oth."); | |||||
| 2277 | ErrorM essages.Ad d(External SearchAttr ibuteLimit Exceeded, "The maxim um number of indexed fields ha s been rea ched. Upda te the Rel evance Sea rch config uration to reduce th e total nu mber of in dexed fiel ds below { 0}."); | |||||
| 2278 | ErrorM essages.Ad d(CannotEn ableEntity ForRelevan ceSearch, "Entity {0 } can’t be enabled f or relevan ce search because of the confi guration o f its mana ged proper ties."); | |||||
| 2279 | ErrorM essages.Ad d(CannotDi sableRelev anceSearch ManagedPro perty, "Th e {0} enti ty is curr ently sync ing to an external s earch inde x. You mu st remove the entity from the external s earch inde x before y ou can set the \"Can Enable Sy nc to Exte rnal Searc h Index\" property t o False.") ; | |||||
| 2280 | ErrorM essages.Ad d(Duplicat eAttribute PhysicalNa me, "Attrt ibute {0} already ex ists for e ntity {1}. "); | |||||
| 2281 | ErrorM essages.Ad d(Attribut eIsNotFace table, "Ca nnot set u ser search facets fo r entity { 0} as attr ibute {1} is not fac etable. Ki ndly remov e it from the list t o proceed. "); | |||||
| 2282 | ErrorM essages.Ad d(Exceeded LimitForAl lowedFacet ableAttrib utes, "Can not set us er search facets for entity {0 } as the l imit for a llowed fac etable att ributes is 4. Kindly remove fe w attribut es to proc eed."); | |||||
| 2283 | ErrorM essages.Ad d(ManagedB pfDeletion Invalid, " The busin ess proces s flow is part of a managed so lution and cannot be individua lly delete d. Uninsta ll the par ent soluti on to remo ve the bus iness proc ess flow." ); | |||||
| 2284 | ErrorM essages.Ad d(BPFEntit yAlreadyEx ists, "BPF entity wi th this na me already exists.") ; | |||||
| 2285 | ErrorM essages.Ad d(MissingC ontrolStep , "Require d control step is mi ssing."); | |||||
| 2286 | ErrorM essages.Ad d(InvalidU niqueName, "Invalid unique nam e for acti on."); | |||||
| 2287 | ErrorM essages.Ad d(Argument TypeMismat ch, "Type mismatch f or argumen t {0}."); | |||||
| 2288 | ErrorM essages.Ad d(Argument DirectionM ismatch, " Direction mismatch f or argumen t {0}."); | |||||
| 2289 | ErrorM essages.Ad d(InvalidB usinessPro cess, "Inv alid Busin ess Proces s."); | |||||
| 2290 | ErrorM essages.Ad d(Unsuppor tedActionT ype, "Miss ing Contro l Step."); | |||||
| 2291 | ErrorM essages.Ad d(NotExist BusinessPr ocess, "Bu siness Pro cess does not exist. "); | |||||
| 2292 | ErrorM essages.Ad d(InvalidT askFlow, " Task Flow is invalid ."); | |||||
| 2293 | ErrorM essages.Ad d(NotExist ArgumentIn Action, "A rgument {0 } does not exist in Action."); | |||||
| 2294 | ErrorM essages.Ad d(Unsuppor tedArgumen tsMarkedRe quired, "U nsupported arguments should no t be marke d as requi red."); | |||||
| 2295 | ErrorM essages.Ad d(EntityRe ferenceArg umentsNotB ound, "Req uired argu ments of t ype Entity Reference must be bo und to som e entity." ); | |||||
| 2296 | ErrorM essages.Ad d(NoDefaul tValueForO ptionSetAr gument, "A rguments o f type Opt ionSet mus t have a d efault val ue set."); | |||||
| 2297 | ErrorM essages.Ad d(BpfInsta nceAlready Exists, "A business process fl ow already exists fo r the targ et record and could not be cre ated. Plea se contact your syst em adminis trator."); | |||||
| 2298 | ErrorM essages.Ad d(ProcessN ameContain sInvalidCh aracters, "The busin ess proces s name con tains inva lid charac ters."); | |||||
| 2299 | ErrorM essages.Ad d(ProcessE mptyBranch es, "This process co ntains emp ty branche s. Define or delete these bran ches and t ry again." ); | |||||
| 2300 | ErrorM essages.Ad d(Workflow IdIsNull, "Workflow Id cannot be NULL wh ile creati ng busines s process flow categ ory"); | |||||
| 2301 | ErrorM essages.Ad d(PrimaryE ntityIsNul l, "Primar y Entity c annot be N ULL while creating b usiness pr ocess flow category" ); | |||||
| 2302 | ErrorM essages.Ad d(TypeNotS etToDefini tion, "Typ e should b e set to D efinition while crea ting busin ess proces s flow cat egory"); | |||||
| 2303 | ErrorM essages.Ad d(ScopeNot SetToGloba l, "Scope should be set to Glo bal while creating b usiness pr ocess flow category" ); | |||||
| 2304 | ErrorM essages.Ad d(Category NotSetToBu sinessProc essFlow, " Category s hould be s et to Busi nessProces sFlow whil e creating business process fl ow categor y"); | |||||
| 2305 | ErrorM essages.Ad d(Business ProcessFlo wStepHasIn validParen t, "{0} pa rent is no t of type {1}"); | |||||
| 2306 | ErrorM essages.Ad d(NullOrEm ptyAttribu teInXaml, "Attribute - {0} of {1} cannot be null o r empty"); | |||||
| 2307 | ErrorM essages.Ad d(InvalidG uidInXaml, "Guid - { 0} in the Xaml is no t valid"); | |||||
| 2308 | ErrorM essages.Ad d(NoLabels Associated WithStep, "{0} does not have a ny labels associated with it") ; | |||||
| 2309 | ErrorM essages.Ad d(StepStep DoesNotHav eAnyContro lStepAsIts Children, "StepStep does not h ave any Co ntrolStep as its chi ldren"); | |||||
| 2310 | ErrorM essages.Ad d(InvalidX mlForParam eters, "Pa rameters n ode for Co ntrolStep have inval id XML in it"); | |||||
| 2311 | ErrorM essages.Ad d(ControlI dIsNotUniq ue, "Contr ol id {0} in the Xam l is not u nique"); | |||||
| 2312 | ErrorM essages.Ad d(InvalidA ttributeIn Xaml, "Att ribute - { 0} in the XAML is in valid"); | |||||
| 2313 | ErrorM essages.Ad d(Attribut eCannotBeU pdated, "A ttribute - {0} canno t be updat ed for a B usiness Pr ocess Flow "); | |||||
| 2314 | ErrorM essages.Ad d(StepCoun tInXamlExc eedsMaxAll owed, "The re are {0} {1} in th e Xaml. Ma x allowed is {2}."); | |||||
| 2315 | ErrorM essages.Ad d(Entities ExceedMaxA llowed, "Y ou can't c over more than five entities i n a proces s flow. Re move some entities a nd try aga in."); | |||||
| 2316 | ErrorM essages.Ad d(StepDoes NotHaveAny ChildInXam l, "{0} do es not hav e at least one {1} a s its chil d."); | |||||
| 2317 | ErrorM essages.Ad d(InvalidX aml, "XAML for workf low is NUL L or Empty "); | |||||
| 2318 | ErrorM essages.Ad d(ProcessN ameIsNullO rEmpty, "T he busines s process flow name is NULL or empty. ") ; | |||||
| 2319 | ErrorM essages.Ad d(LabelIdD oesNotMatc hStepId, " The label ID {0} doe sn’t match the step ID {1}."); | |||||
| 2320 | ErrorM essages.Ad d(Required ProcessSte pIsNull, " To move to the next stage, com plete the required s teps."); | |||||
| 2321 | ErrorM essages.Ad d(EntityEx ceedsMaxAc tiveBusine ssProcessF lows, "The {0} entit y exceeds the maximu m number o f active b usiness pr ocess flow s. The lim it is {1}. "); | |||||
| 2322 | ErrorM essages.Ad d(EntityIs NotBusines sProcessFl owEnabled, "The IsBu sinessProc essEnabled property of the {0} entity is false."); | |||||
| 2323 | ErrorM essages.Ad d(Calculat edFieldsFe atureNotEn abled, "Ca lculated F ield featu re is not available" ); | |||||
| 2324 | ErrorM essages.Ad d(Calculat edFieldsIn validEntit y, "The fo rmula cont ains an in valid refe rence: {0} ."); | |||||
| 2325 | ErrorM essages.Ad d(Calculat edFieldsIn validXaml, "The {0} field has an invalid XAML form ula defini tion."); | |||||
| 2326 | ErrorM essages.Ad d(Calculat edFieldsNo nCalculate dFieldAssi gnment, "O nly calcul ated field s can have a formula definitio n."); | |||||
| 2327 | ErrorM essages.Ad d(Calculat edFieldsTy peMismatch , "You can 't use {0} , which is of type { 1}, with t he current operator. "); | |||||
| 2328 | ErrorM essages.Ad d(Calculat edFieldsIn validFunct ion, "The {0} functi on doesn't exist."); | |||||
| 2329 | ErrorM essages.Ad d(Calculat edFieldsIn validAttri bute, "The {0} field doesn't e xist."); | |||||
| 2330 | ErrorM essages.Ad d(TooManyC alculatedF ieldsInQue ry, "Numbe r of calcu lated fiel ds in quer y exceeded maximum l imit of {0 }."); | |||||
| 2331 | ErrorM essages.Ad d(Calculat edFieldsPr imitiveOve rflow, "Ca nnot conve rt the val ue {0} int o type {1} ."); | |||||
| 2332 | ErrorM essages.Ad d(Calculat edFieldsAs signmentMi smatch, "Y ou can’t s et the val ue {0}, wh ich is of type {1}, to type {2 }."); | |||||
| 2333 | ErrorM essages.Ad d(Calculat edFieldsFu nctionMism atch, "You can't use {0}, whic h is of ty pe {1}, wi th the cur rent funct ion."); | |||||
| 2334 | ErrorM essages.Ad d(Calculat edFieldsDi videByZero , "You can not divide by {0}, w hich evalu ates to ze ro."); | |||||
| 2335 | ErrorM essages.Ad d(Calculat edFieldsIn validAttri butes, "Th e formula references the follo wing attri butes that don't exi st: {0}.") ; | |||||
| 2336 | ErrorM essages.Ad d(Calculat edFieldsIn validValue , "The for mula refer ences a va lue that d oesn't exi st."); | |||||
| 2337 | ErrorM essages.Ad d(Calculat edFieldsIn validValue s, "The fo rmula refe rences the following values th at don't e xist: {0}. "); | |||||
| 2338 | ErrorM essages.Ad d(Calculat edFieldsCy clicRefere nce, "Fiel d {0} cann ot be used in calcul ated field {1} becau se it woul d create a circular reference. "); | |||||
| 2339 | ErrorM essages.Ad d(Calculat edFieldsDe pthExceede d, "You ca n’t create or update the {0} f ield becau se the {1} field alr eady has a calculate d field ch ain of {2} deep."); | |||||
| 2340 | ErrorM essages.Ad d(Calculat edFieldsEn titiesExce eded, "Fie ld {0} can not be cre ated or up dated beca use field {1} contai ns an addi tional for mula that uses a par ent record ."); | |||||
| 2341 | ErrorM essages.Ad d(InvalidS ourceType, "SourceTy pe {0} isn 't valid f or the {1} data type ."); | |||||
| 2342 | ErrorM essages.Ad d(Calculat edFieldsIn validSourc eTypeMask, "The form ula can't be saved b ecause it contains r eferences to the fol lowing fie lds that h ave invali d definiti ons: {0}." ); | |||||
| 2343 | ErrorM essages.Ad d(Attribut eFormulaDe finitionIs Empty, "Th e formula is empty." ); | |||||
| 2344 | ErrorM essages.Ad d(InvalidW orkflowOrW orkflowDoe sNotExist, "Invalid workflow o r workflow does not exist."); | |||||
| 2345 | ErrorM essages.Ad d(Workflow DoesNotExi st, "Workf low does n ot exist." ); | |||||
| 2346 | ErrorM essages.Ad d(ActionSt epInvalidS tageid, "A ctionStep references invalid S tage Id.") ; | |||||
| 2347 | ErrorM essages.Ad d(ActionSt epInvalidP rocessid, "ActionSte p referenc es invalid Process I d."); | |||||
| 2348 | ErrorM essages.Ad d(ActionSt epInvalidP ipelineSta geid, "Act ionStep re ferences i nvalid Pip eline Stag e Id."); | |||||
| 2349 | ErrorM essages.Ad d(Calculat edFieldsDa teOnlyBeha viorTypeMi smatch, "Y ou can onl y use a Da te Only ty pe of fiel d."); | |||||
| 2350 | ErrorM essages.Ad d(Calculat edFieldsTi meInvBehav iorTypeMis match, "Yo u can only use a Tim e-Zone Ind ependent D ate Time t ype of fie ld."); | |||||
| 2351 | ErrorM essages.Ad d(Calculat edFieldsUs erLocBehav iorTypeMis match, "Yo u can only use a Use r Local Da te Time ty pe of fiel d."); | |||||
| 2352 | ErrorM essages.Ad d(RollupFi eldsTarget Relationsh ipNull, "T he related entity is empty. It must be p rovided wh en the sou rce entity hierarchy isn’t use d for the rollup."); | |||||
| 2353 | ErrorM essages.Ad d(RollupFi eldsTarget Relationsh ipNotPartO fOneToNRel ationship, "1:N rela tionship { 0} from th e source e ntity {1} to the rel ated entit y {2} does n’t exist. "); | |||||
| 2354 | ErrorM essages.Ad d(RollupFi eldsSource EntityNotH ierarchica l, "The so urce entit y {0} hier archy does n’t exist. "); | |||||
| 2355 | ErrorM essages.Ad d(RollupFi eldsAggreg ateNotDefi ned, "An a ggregate f unction an d an aggre gated fiel d must be provided f or the rol lup."); | |||||
| 2356 | ErrorM essages.Ad d(RollupFi eldsAggreg ateFieldNo tPartOfEnt ity, "Aggr egated fie ld {0} doe s not belo ng to enti ty {1}"); | |||||
| 2357 | ErrorM essages.Ad d(RollupFi eldsSource FilterCond itionInval id, "The s ource enti ty {0} fil ter condit ion {1} is n’t valid. "); | |||||
| 2358 | ErrorM essages.Ad d(RollupFi eldsTarget FilterCond itionInval id, "The r elated ent ity {0} fi lter condi tion {1} i sn’t valid ."); | |||||
| 2359 | ErrorM essages.Ad d(RollupFi eldsAggreg ateFunctio nTypeMisma tch, "The {0} data t ype isn’t allowed fo r the aggr egated fie ld when th e aggregat e function is {1}.") ; | |||||
| 2360 | ErrorM essages.Ad d(RollupFi eldsGeneri c, "The ro llup field definitio n isn't va lid."); | |||||
| 2361 | ErrorM essages.Ad d(RollupFi eldsAggreg ateOnRollu pFieldOrCo mplexCalcF ieldNotAll owed, "The aggregate d field mu st be eith er a simpl e field or a basic c alculated field."); | |||||
| 2362 | ErrorM essages.Ad d(RollupFi eldsAggreg ateFieldDa taTypeNotA llowedSimi larRollupF ieldDataTy pe, "The { 0} data ty pe isn’t a llowed for the aggre gated fiel d when the rollup fi eld is a { 1} data ty pe."); | |||||
| 2363 | ErrorM essages.Ad d(RollupFi eldsDataTy peNotValid , "The {0} data type isn’t val id for the rollup fi eld."); | |||||
| 2364 | ErrorM essages.Ad d(RollupFi eldsAggreg ateFieldNo tBelongToS ourceEntit y, "The ag gregated f ield {0} d oesn’t bel ong to the source en tity {1}." ); | |||||
| 2365 | ErrorM essages.Ad d(RollupFi eldsAggreg ateFieldNo tBelongToR elatedEnti ty, "The a ggregated field {0} doesn’t be long to th e related entity {1} ."); | |||||
| 2366 | ErrorM essages.Ad d(RollupFi eldDepende ntFieldCan notDeleted , "Rollup field {0} depends on this fiel d. It can only be de leted by d eleting th e correspo nding roll up field { 0}."); | |||||
| 2367 | ErrorM essages.Ad d(Exceeded RollupFiel dsPerOrgQu ota, "You can't add a rollup f ield. You’ ve reached the maxim um number of {0} all owed for y our organi zation."); | |||||
| 2368 | ErrorM essages.Ad d(Exceeded RollupFiel dsPerEntit yQuota, "Y ou can't a dd a rollu p field. Y ou’ve reac hed the ma ximum numb er of {0} allowed fo r this rec ord type." ); | |||||
| 2369 | ErrorM essages.Ad d(RollupFi eldAndAggr egateField DataTypeFo rmatMismat ch, "The { 0} data ty pe with fo rmat {1} i sn’t allow ed for the aggregate d field wh en the rol lup field is a {2} d ata type w ith format {3}."); | |||||
| 2370 | ErrorM essages.Ad d(RollupFi eldAggrega teFunction NotAllowed ForRollupF ieldDataTy pe, "The a ggregate f unction {0 } isn’t al lowed when the rollu p field is a {1} dat a type."); | |||||
| 2371 | ErrorM essages.Ad d(RollupFi eldAggrega teFunction NotAllowed , "The agg regate fun ction {0} isn’t allo wed."); | |||||
| 2372 | ErrorM essages.Ad d(Hierarch yCalculate LimitReach ed, "Calcu lations ca n't be per formed onl ine becaus e the mast er record hierarchy depth limi t of {0} h as been re ached."); | |||||
| 2373 | ErrorM essages.Ad d(RollupFi eldSourceF ilterField NotAllowed , "The sou rce entity filter mu st use eit her a simp le field o r a basic calculated field. It can't use a rollup field, or a calculat ed field t hat is usi ng a rollu p field.") ; | |||||
| 2374 | ErrorM essages.Ad d(RollupFi eldTargetF ilterField NotAllowed , "The tar get entity filter mu st use eit her a simp le field o r a basic calculated field. It can't use a rollup field, or a calculat ed field t hat is usi ng a rollu p field.") ; | |||||
| 2375 | ErrorM essages.Ad d(Calculat edFieldUse dInRollupF ieldCannot BeComplex, "One or m ore rollup fields de pend on th is calcula ted field. This calc ulated fie ld can't u se a rollu p field, a nother cal culated fi eld that i s using a rollup fie ld or a fi eld from r elated ent ity."); | |||||
| 2376 | ErrorM essages.Ad d(RollupFi eldsTarget SameAsSour ceEntity, "Self refe rential 1: N relation ships are not allowe d for the rollup fie ld."); | |||||
| 2377 | ErrorM essages.Ad d(RollupFi eldsTarget EntityNotV alid, "Rel ated entit y {0} is n ot allowed for rollu ps."); | |||||
| 2378 | ErrorM essages.Ad d(RollupFi eldDefinit ionNotVali d, "The ca lculation failed bec ause the r ollup fiel d definiti on is inva lid. Conta ct your sy stem admin istrator." ); | |||||
| 2379 | ErrorM essages.Ad d(Recalcul ateNotSupp ortedOnNon RollupFiel d, "Field {0} of typ e {1} does not suppo rt Recalcu late actio n. Recalcu late actio n can only be invoke d for roll up field." ); | |||||
| 2380 | ErrorM essages.Ad d(CannotMo difyRollup DependentF ield, "Rol lup field {0} create d this fie ld. It can ’t be modi fied direc tly."); | |||||
| 2381 | ErrorM essages.Ad d(RollupDe pendentFie ldNameAlre adyExists, "Required dependent field {0} for rollu p field ca nnot be cr eated as a nother fie ld with sa me name al ready exis ts. Please use an al ternative name to cr eate the r ollup fiel d."); | |||||
| 2382 | ErrorM essages.Ad d(RollupOr CalcNotAll owedInWork flowWaitCo ndition, " The field {0} is eit her a roll up field o r a rollup dependent field or a calculat ed field. Such field s are not allowed in workflow wait condi tion."); | |||||
| 2383 | ErrorM essages.Ad d(Calculat eNowOverfl owError, " The calcul ation fail ed due to an overflo w error.") ; | |||||
| 2384 | ErrorM essages.Ad d(Attribut eCannotBeU sedInAggre gate, "The {0} attri bute canno t be used with an ag gregation function i n a formul a."); | |||||
| 2385 | ErrorM essages.Ad d(RollupFo rmulaField Invalid, " The formul a field is n’t valid. "); | |||||
| 2386 | ErrorM essages.Ad d(RollupCa lculationL imitReache d, "Calcul ations can 't be perf ormed at t his time b ecause the calculati on limit h as been re ached. Ple ase wait a nd try aga in."); | |||||
| 2387 | ErrorM essages.Ad d(RollupTa rgetLinked EntityOnly SupportedF orActivity Entities, "Target re lated enti ty is only supported for rollu p over {0} type enti ties."); | |||||
| 2388 | ErrorM essages.Ad d(RollupTa rgetLinked EntityCanO nlyUsedFor ActivityPa rtyEntitie s, "Target related e ntity can only be us ed for {0} entity fo r rollup o ver {1} ty pe entitie s."); | |||||
| 2389 | ErrorM essages.Ad d(RollupIn validAttri buteForFil terConditi on, "The { 0} attribu te is not allowed fo r filter c ondition." ); | |||||
| 2390 | ErrorM essages.Ad d(RollupFi eldsV2Feat ureNotEnab led, "The feature is not suppo rted in th e current version of the produ ct"); | |||||
| 2391 | ErrorM essages.Ad d(RollupTa rgetLinked Relationsh ipNotValid , "Target Linked Rel ationship {0} is not valid."); | |||||
| 2392 | ErrorM essages.Ad d(Conditio nBranchDoe sHaveSetNe xtStageOnl yChildInXa ml, "Branc h conditio n can cont ain only S etNextStag e as a chi ld."); | |||||
| 2393 | ErrorM essages.Ad d(Conditio nStepCount InXamlExce edsMaxAllo wed, "{0} cannot hav e more tha n one {1}. "); | |||||
| 2394 | ErrorM essages.Ad d(Conditio nAttribute sNotAnSubs etOfStepAt tributes, "Attribute s of the c ondition a re not the subset of attribute s in the S tep, for t he Stage : {0}"); | |||||
| 2395 | ErrorM essages.Ad d(CannotDe leteUserMa ilbox, "Th e mailbox associated to a user or a queu e cannot b e deleted. "); | |||||
| 2396 | ErrorM essages.Ad d(EmailSer verProfile SslRequire dForOnline , "You can not set SS L as false for Micro soft Dynam ics 365 On line."); | |||||
| 2397 | ErrorM essages.Ad d(EmailSer verProfile InvalidCre dentialRet rievalForO nline, "Wi ndows inte grated or Anonymous authentica tion canno t be used as a conne ction type for Micro soft Dynam ics 365 On line."); | |||||
| 2398 | ErrorM essages.Ad d(EmailSer verProfile InvalidCre dentialRet rievalForE xchange, " No credent ials (Anon ymous) can not be use d a connec tion type for exchan ge e-mail server typ e."); | |||||
| 2399 | ErrorM essages.Ad d(EmailSer verProfile AutoDiscov erNotAllow ed, "Auto discover s erver URL can locati on can onl y be used for an exc hange e-ma il server type."); | |||||
| 2400 | ErrorM essages.Ad d(EmailSer verProfile LocationNo tRequired, "You cann ot specify the incom ing/outgoi ng e-mail server loc ation when Autodisco ver server location has been s et to true ."); | |||||
| 2401 | ErrorM essages.Ad d(ForwardM ailboxCann otAssociat eWithUser, "A forwar d mailbox cannot be created fo r a specif ic user or a queue. Please re move the r egarding f ield and t ry again." ); | |||||
| 2402 | ErrorM essages.Ad d(HybridSS SExchangeO nlineS2SCe rtExpired, "Certific ate used f or S2S aut henticatio n of Dynam ics 365 On premise wi th Exchang e Online h as expired "); | |||||
| 2403 | ErrorM essages.Ad d(HybridSS SExchangeO nlineS2SCe rtActsExpi red, "Cert ificate us ed for S2S authentic ation of D ynamics 36 5 Onpremis e with Exc hange Onli ne has exp ired"); | |||||
| 2404 | ErrorM essages.Ad d(MailboxC annotModif yEmailAddr ess, "E-ma il Address of a mail box cannot be update d when ass ociated wi th an user /queue."); | |||||
| 2405 | ErrorM essages.Ad d(MailboxC redentialN otSpecifie d, "Userna me is not specified" ); | |||||
| 2406 | ErrorM essages.Ad d(EmailSer verProfile InvalidSer verLocatio n, "The sp ecified se rver locat ion {0} is invalid. Correct th e server l ocation an d try agai n."); | |||||
| 2407 | ErrorM essages.Ad d(CannotAc ceptEmail, "The emai l that you are tryin g to deliv er cannot be accepte d by Micro soft Dynam ics 365. R eason Code : {0}."); | |||||
| 2408 | ErrorM essages.Ad d(QueueMai lboxUnexpe ctedDelive ryMethod, "Delivery method for mailbox a ssociated with a que ue cannot be outlook client.") ; | |||||
| 2409 | ErrorM essages.Ad d(ForwardM ailboxEmai lAddressRe quired, "A n e-mail a ddress is a required field in case of fo rward mail box."); | |||||
| 2410 | ErrorM essages.Ad d(ForwardM ailboxUnex pectedInco mingDelive ryMethod, "Forward m ailbox inc oming deli very metho d can only be none o r router." ); | |||||
| 2411 | ErrorM essages.Ad d(ForwardM ailboxUnex pectedOutg oingDelive ryMethod, "Forward m ailbox out going deli very metho d can only be none." ); | |||||
| 2412 | ErrorM essages.Ad d(InvalidC redentialT ypeForNonE xchangeInc omingConne ction, "Fo r a POP3 e mail serve r type, yo u can only connect u sing crede ntials tha t are spec ified by a user or q ueue."); | |||||
| 2413 | ErrorM essages.Ad d(Pop3Unex pectedExce ption, "Ex ception oc cur while polling ma ils using Pop3 proto col."); | |||||
| 2414 | ErrorM essages.Ad d(OpenMail boxExcepti on, "Excep tion occur s while op ening mail box for Ex chaange ma il server. "); | |||||
| 2415 | ErrorM essages.Ad d(InvalidM ailbox, "I nvalid mai lboxId pas sed in. Pl ease check the mailb oxid."); | |||||
| 2416 | ErrorM essages.Ad d(InvalidE mailServer Location, "The serve r location is either not prese nt or is n ot valid. Please cor rect the s erver loca tion."); | |||||
| 2417 | ErrorM essages.Ad d(Inactive Mailbox, " The mailbo x is in in active sta te. Send/R eceive mai ls are all owed only for active mailboxes ."); | |||||
| 2418 | ErrorM essages.Ad d(Unapprov edMailbox, "The mail box is not in approv ed state. Send/Recei ve mails a re allowed only for approved m ailboxes." ); | |||||
| 2419 | ErrorM essages.Ad d(InvalidE mailAddres sInMailbox , "The ema il address in the ma ilbox is n ot correct . Please e nter the c orrect ema il address to proces s mails.") ; | |||||
| 2420 | ErrorM essages.Ad d(EmailSer verProfile NotAssocia ted, "Emai l Server P rofile is not associ ated with the curren t mailbox. Please as sociate a valid prof ile to sen d/receive mails."); | |||||
| 2421 | ErrorM essages.Ad d(Incoming DeliveryIs ForwardMai lbox, "Can not poll m ails from the mailbo x. Its inc oming deli very metho d is Forwa rd mailbox ."); | |||||
| 2422 | ErrorM essages.Ad d(InvalidI ncomingDel iveryExpec tingEmailC onnector, "The incom ing delive ry method is not ema il connect or. To rec eive mails its incom ing delive ry method should be Email Conn ector."); | |||||
| 2423 | ErrorM essages.Ad d(Outgoing NotAllowed ForForward Mailbox, " Mailbox is a forward mailbox. A forward mailbox ca nnot send the mails. "); | |||||
| 2424 | ErrorM essages.Ad d(InvalidO utgoingDel iveryExpec tingEmailC onnector, "The outgo ing delive ry method is not ema il connect or. To sen d mails it s outgoing delivery method sho uld be Ema il Connect or."); | |||||
| 2425 | ErrorM essages.Ad d(Inaccess ibleSmtpSe rver, "Can not reach to the smt p server. Please che ck that th e smtp ser ver is acc essible.") ; | |||||
| 2426 | ErrorM essages.Ad d(Inactive EmailServe rProfile, "Email ser ver profil e is disab led. Canno t process email for disabled p rofile."); | |||||
| 2427 | ErrorM essages.Ad d(CannotUs eUserCrede ntials, "E mail conne ctor canno t use the credential s specifie d in the m ailbox ent ity. This might be b ecause use r has disa llowed it. Please us e other mo de of cred ential ret rieval or allow the use of cre dential by email con nector."); | |||||
| 2428 | ErrorM essages.Ad d(CannotAc tivateMail boxForDisa bledUserOr Queue, "Ma ilbox cann ot be acti vated beca use the us er or queu e associat ed with th e mailbox is in disa bled state . Mailbox can only b e activate d for Acti ve User/Qu eue."); | |||||
| 2429 | ErrorM essages.Ad d(ZeroEmai lReceived, "There we re no emai l availabl e in the m ailbox or could not be retriev ed."); | |||||
| 2430 | ErrorM essages.Ad d(NoTestEm ailAccessP rivilege, "There is not suffic ient privi lege to pe rform the test acces s."); | |||||
| 2431 | ErrorM essages.Ad d(MailboxC annotDelet eEmails, " The Delete Emails af ter Proces sing optio n cannot b e set to Y es for use r mailboxe s."); | |||||
| 2432 | ErrorM essages.Ad d(EmailSer verProfile SslRequire dForOnPrem ise, "Usag e of SSL w hile conta cting exte rnal email servers i s mandator y for this Dynamics 365 deploy ment."); | |||||
| 2433 | ErrorM essages.Ad d(EmailSer verProfile DelegateAc cessNotAll owed, "For an SMTP e mail serve r type, au to-granted delegate access can not be use d."); | |||||
| 2434 | ErrorM essages.Ad d(EmailSer verProfile Impersonat ionNotAllo wed, "For a Non Exch ange email server ty pe, impers onation ca nnot be us ed."); | |||||
| 2435 | ErrorM essages.Ad d(EmailMes sageSizeEx ceeded, "E mail Size Exceeds th e MaximumM essageSize Limit spec ified by t he deploym ent."); | |||||
| 2436 | ErrorM essages.Ad d(Outgoing SettingsUp dateNotAll owed, "Dif ferent out going conn ection set tings cann ot be spec ified beca use the \" Use Same S ettings fo r Outgoing Connectio ns\" flag is set to True."); | |||||
| 2437 | ErrorM essages.Ad d(Certific ateNotFoun d, "The gi ven certif icate cann ot be foun d."); | |||||
| 2438 | ErrorM essages.Ad d(InvalidC ertificate , "The giv en certifi cate is in valid."); | |||||
| 2439 | ErrorM essages.Ad d(EmailSer verProfile InvalidAut henticatio nProtocol, "The auth entication protocol is invalid for the s pecified s erver and connection type. For more info rmation, c ontact you r system a dministrat or."); | |||||
| 2440 | ErrorM essages.Ad d(EmailSer verProfile ADBasedAut henticatio nProtocolN otAllowed, "The auth entication protocol cannot be set to Neg otiate or NTLM for y our organi zation bec ause these require A ctive Dire ctory. Use a differe nt authent ication pr otocol or contact yo ur system administra tor to ena ble an Act ive Direct ory-based authentica tion proto col."); | |||||
| 2441 | ErrorM essages.Ad d(EmailSer verProfile BasicAuthe nticationP rotocolNot Allowed, " The specif ied authen tication p rotocol ca nnot be us ed because the proto col requir es sending credentia ls on a se cure chann el. Use a different authentica tion proto col or con tact your administra tor to ena ble Basic authentica tion proto col on a n on-secure channel.") ; | |||||
| 2442 | ErrorM essages.Ad d(Incoming ServerLoca tionAndSsl SetToNo, " The URL sp ecified fo r Incoming Server Lo cation use s HTTPS bu t the Use SSL for In coming Con nection op tion is se t to No. S et this op tion to Ye s, and the n try agai n."); | |||||
| 2443 | ErrorM essages.Ad d(Outgoing ServerLoca tionAndSsl SetToNo, " The URL sp ecified fo r Outgoing Server Lo cation use s HTTPS bu t the Use SSL for Ou tgoing Con nection op tion is se t to No. S et this op tion to Ye s, and the n try agai n."); | |||||
| 2444 | ErrorM essages.Ad d(Incoming ServerLoca tionAndSsl SetToYes, "The URL s pecified f or Incomin g Server L ocation us es HTTP bu t the Use SSL for In coming Con nection op tion is se t to Yes. Specify a server loc ation that uses HTTP S, and the n try agai n."); | |||||
| 2445 | ErrorM essages.Ad d(Outgoing ServerLoca tionAndSsl SetToYes, "The URL s pecified f or Outgoin g Server L ocation us es HTTP bu t the Use SSL for Ou tgoing Con nection op tion is se t to Yes. Specify a server loc ation that uses HTTP S, and the n try agai n."); | |||||
| 2446 | ErrorM essages.Ad d(Unsuppor tedEmailSe rver, "The email ser ver isn't supported. "); | |||||
| 2447 | ErrorM essages.Ad d(S2SAcces sTokenCann otBeAcquir ed, "Faile d to acqui re S2S acc ess token from autho rization s erver."); | |||||
| 2448 | ErrorM essages.Ad d(InvalidV alueProces sEmailAfte r, "The da te in the Process Em ail From f ield is ea rlier than what is a llowed for your orga nization. Enter a da te that is later tha n the one specified, and try a gain."); | |||||
| 2449 | ErrorM essages.Ad d(InvalidS 2SAuthenti cation, "Y ou can use server-to -server au thenticati on only fo r email se rver profi les create d for a Mi crosoft Dy namics 365 Online or ganization that was set up thr ough the M icrosoft o nline serv ices envir onment (Of fice 365). "); | |||||
| 2450 | ErrorM essages.Ad d(RouterIs Disabled, "Microsoft Dynamics 365 has be en configu red to use server-si de synchro nization t o process email. If you want t o use the Email Rout er to proc ess email, go to Sys tem Settin gs and cha nge the Pr ocess Emai l Using fi eld to Mic rosoft Dyn amics 365 2016 Email Router.") ; | |||||
| 2451 | ErrorM essages.Ad d(MailboxU nsupported EmailServe rType, "Se rver-side synchroniz ation for appointmen ts, contac ts, and ta sks isn't supported for POP3 o r SMTP ser ver types. Select a supported email type or change the synch ronization method fo r appointm ents, cont acts, and tasks to N one."); | |||||
| 2452 | ErrorM essages.Ad d(TestEmai lConfigura tionSchedu ledInProgr ess, "Test email con figuration scheduled is in pro gress. Ple ase save a fter compl etion of t est."); | |||||
| 2453 | ErrorM essages.Ad d(ServiceA ccountMail boxesCount IsZero, "N o service account ma ilbox is a ssociated for the em ail server profile." ); | |||||
| 2454 | ErrorM essages.Ad d(ServiceA ccountMail boxesCount IsGreaterT hanOne, "M ore no of service ac count mail boxes is a ssociated to emailse rver profi le"); | |||||
| 2455 | ErrorM essages.Ad d(TenantID IsEmpty, " Exchange O nline Tena nt ID fiel d cannot b e empty.") ; | |||||
| 2456 | ErrorM essages.Ad d(InvalidT enantIDVal ue, "Excha nge Online Tenant ID value is not valid. The Field value shou ld be a st ring in th e structur e of GUID. "); | |||||
| 2457 | ErrorM essages.Ad d(TenantID ValueChang ed, "The d etected te nantId for your exch ange is di fferent th an the onc e you save d."); | |||||
| 2458 | ErrorM essages.Ad d(SpecifyI ncomingSer verLocatio n, "Specif y the URL of the inc oming serv er locatio n"); | |||||
| 2459 | ErrorM essages.Ad d(SpecifyO utgoingSer verLocatio n, "Specif y the URL of the out going serv er locatio n"); | |||||
| 2460 | ErrorM essages.Ad d(UserName RequiredFo rImpersona tion, "Typ e in a use r name and save agai n"); | |||||
| 2461 | ErrorM essages.Ad d(Password RequiredFo rImpersona tion, "Typ e in a pas sword and save again "); | |||||
| 2462 | ErrorM essages.Ad d(ServerLo cationIsEm pty, "Serv er Locatio n Field ca nnot be Em pty"); | |||||
| 2463 | ErrorM essages.Ad d(SpecifyI ncomingUse rName, "Sp ecify user name for I ncoming Co nnection") ; | |||||
| 2464 | ErrorM essages.Ad d(SpecifyO utgoingUse rName, "Sp ecify user name for O utgoing Co nnection") ; | |||||
| 2465 | ErrorM essages.Ad d(SpecifyI ncomingPas sword, "Sp ecify pass word for I ncoming Co nnection") ; | |||||
| 2466 | ErrorM essages.Ad d(SpecifyO utgoingPas sword, "Sp ecify pass word for O utgoing Co nnection") ; | |||||
| 2467 | ErrorM essages.Ad d(ServerLo cationAndS SLSetToYes , "The URL specified for Serve r Location uses HTTP but Secur e Sockets Layer(SSL) is requir ed for Exc hange Onli ne."); | |||||
| 2468 | ErrorM essages.Ad d(SpecifyI nComingPor t, "Specif y Incommin g Port and save agai n"); | |||||
| 2469 | ErrorM essages.Ad d(SpecifyO utgoingPor t, "Specif y Outgoing Port and save again "); | |||||
| 2470 | ErrorM essages.Ad d(TraceMes sageConstr uctionErro r, "The tr ace record has an in valid trac e code or an insuffi cient numb er of trac e paramete rs."); | |||||
| 2471 | ErrorM essages.Ad d(TooManyB ytesInInpu tStream, " The stream being rea d from has too many bytes."); | |||||
| 2472 | ErrorM essages.Ad d(EmailRou terFileToo LargeToPro cess, "One or more o f the emai l router c onfigurati on files i s too larg e to get p rocessed." ); | |||||
| 2473 | ErrorM essages.Ad d(ErrorsIn EmailRoute rMigration Files, "In valid File (s) for Em ail Router Migration "); | |||||
| 2474 | ErrorM essages.Ad d(InvalidM igrationFi leContent, "The cont ent of the import fi le is not valid. You must sele ct a text file."); | |||||
| 2475 | ErrorM essages.Ad d(ErrorMig rationProc essExcessO nServer, " The server is busy h andling ot her migrat ion proces ses. Pleas e try afte r some tim e."); | |||||
| 2476 | ErrorM essages.Ad d(EntityNo tEnabledFo rThisDevic e, "Entity not enabl ed to be v iewed in t his device "); | |||||
| 2477 | ErrorM essages.Ad d(MobileCl ientLangua geNotSuppo rted, "The applicati on could n ot find a supported language o n the serv er. Contac t an admin istrator t o enable a supported language" ); | |||||
| 2478 | ErrorM essages.Ad d(MobileCl ientVersio nNotSuppor ted, "Mobi le Client version is not suppo rted"); | |||||
| 2479 | ErrorM essages.Ad d(RoleNotE nabledForT abletApp, "You haven 't been au thorized t o use this app.\\nCh eck with y our system administr ator to up date your settings." ); | |||||
| 2480 | ErrorM essages.Ad d(NoMinimu mRequiredP rivilegesF orTabletAp p, "You do not have sufficient permissio ns on the server to load the a pplication .\\nPlease contact y our admini strator to update yo ur permiss ions."); | |||||
| 2481 | ErrorM essages.Ad d(FilePick erErrorAtt achmentTyp eBlocked, "Try this action aga in. If the problem c ontinues, check the {0} for so lutions or contact y our organi zation's { #Brand_CRM } Administ rator. Fin ally, you can contac t {1}."); | |||||
| 2482 | ErrorM essages.Ad d(FilePick erErrorFil eSizeBreac hed, "Try this actio n again. I f the prob lem contin ues, check the {0} f or solutio ns or cont act your o rganizatio n's {#Bran d_CRM} Adm inistrator . Finally, you can c ontact {1} ."); | |||||
| 2483 | ErrorM essages.Ad d(FilePick erErrorFil eSizeCanno tBeZero, " Try this a ction agai n. If the problem co ntinues, c heck the { 0} for sol utions or contact yo ur organiz ation's {# Brand_CRM} Administr ator. Fina lly, you c an contact {1}."); | |||||
| 2484 | ErrorM essages.Ad d(FilePick erErrorUna bleToOpenF ile, "Try this actio n again. I f the prob lem contin ues, check the {0} f or solutio ns or cont act your o rganizatio n's {#Bran d_CRM} Adm inistrator . Finally, you can c ontact {1} ."); | |||||
| 2485 | ErrorM essages.Ad d(GetPhoto FromGaller yFailed, " Try this a ction agai n. If the problem co ntinues, c heck the { 0} for sol utions or contact yo ur organiz ation's {# Brand_CRM} Administr ator. Fina lly, you c an contact {1}."); | |||||
| 2486 | ErrorM essages.Ad d(SaveData FileErrorO utOfSpace, "Try this action ag ain. If th e problem continues, check the {0} for s olutions o r contact your organ ization's {#Brand_CR M} Adminis trator. Fi nally, you can conta ct {1}."); | |||||
| 2487 | ErrorM essages.Ad d(OpenDocu mentErrorC odeUnableT oFindAnAct ivity, "Tr y this act ion again. If the pr oblem cont inues, che ck the {0} for solut ions or co ntact your organizat ion's {#Br and_CRM} A dministrat or. Finall y, you can contact { 1}."); | |||||
| 2488 | ErrorM essages.Ad d(OpenDocu mentErrorC odeUnableT oFindTheDa taId, "Try this acti on again. If the pro blem conti nues, chec k the {0} for soluti ons or con tact your organizati on's {#Bra nd_CRM} Ad ministrato r. Finally , you can contact {1 }."); | |||||
| 2489 | ErrorM essages.Ad d(OpenDocu mentErrorC odeGeneric , "Try thi s action a gain. If t he problem continues , check th e {0} for solutions or contact your orga nization's {#Brand_C RM} Admini strator. F inally, yo u can cont act {1}.") ; | |||||
| 2490 | ErrorM essages.Ad d(FilePick erErrorApp licationIn SnapView, "Try this action aga in. If the problem c ontinues, check the {0} for so lutions or contact y our organi zation's { #Brand_CRM } Administ rator. Fin ally, you can contac t {1}."); | |||||
| 2491 | ErrorM essages.Ad d(MobileCl ientNotCon figuredFor CurrentUse r, "Try th is action again. If the proble m continue s, check t he {0} for solutions or contac t your org anization' s {#Brand_ CRM} Admin istrator. Finally, y ou can con tact {1}." ); | |||||
| 2492 | ErrorM essages.Ad d(DataSour ceInitiali zeFailedEr rorCode, " Try this a ction agai n. If the problem co ntinues, c heck the { 0} for sol utions or contact yo ur organiz ation's {# Brand_CRM} Administr ator. Fina lly, you c an contact {1}."); | |||||
| 2493 | ErrorM essages.Ad d(DataSour ceOfflineE rrorCode, "This oper ation fail ed because you're of fline. Rec onnect and try again ."); | |||||
| 2494 | ErrorM essages.Ad d(PingFail ureErrorCo de, "The s ystem coul dn't recon nect with your {#Bra nd_CRM} se rver."); | |||||
| 2495 | ErrorM essages.Ad d(Retrieve RecordOffl ineErrorCo de, "This record isn 't availab le while y ou're offl ine. Reco nnect and try again. "); | |||||
| 2496 | ErrorM essages.Ad d(CantSave RecordInOf fline, "Yo u can't sa ve this re cord while you're of fline."); | |||||
| 2497 | ErrorM essages.Ad d(NotMobil eEnabled, "You can't view this type of r ecord on y our tablet . Contact your syste m administ rator."); | |||||
| 2498 | ErrorM essages.Ad d(InvalidP reviewMode Operation, "You can’ t perform this opera tion in pr eview mode ."); | |||||
| 2499 | ErrorM essages.Ad d(PageNotF ound, "Pag e not foun d. The rec ord might not exist, or the li nk might b e incorrec t."); | |||||
| 2500 | ErrorM essages.Ad d(ViewNotA vailableFo rMobileOff line, "Cur rently vie w is not a vailable O ffline. Pl ease try s witching v iew or con tact admin istrator") ; | |||||
| 2501 | ErrorM essages.Ad d(NotMobil eWriteEnab led, "You can't crea te this ty pe of reco rd on your device. C ontact you r system a dministrat or."); | |||||
| 2502 | ErrorM essages.Ad d(DataStor eKeyNotFou ndErrorCod e, "Not in local sto re with ke y '{0}'"); | |||||
| 2503 | ErrorM essages.Ad d(RelatedE ntityAlrea dyExistsIn Profile, " The relate d entity a lready exi sts in thi s profile. "); | |||||
| 2504 | ErrorM essages.Ad d(RelatedE ntityDoesN otExistsIn Profile, " The relate d entity d oesn’t exi st in the profile it ems."); | |||||
| 2505 | ErrorM essages.Ad d(RelatedE ntityGener icError, " An unexpec ted error occurred w hile creat ing the pr ofile asso ciation. P lease try again."); | |||||
| 2506 | ErrorM essages.Ad d(Relatios hipAlready Exists, "S elected Re lationship for entit y already exists in profile. " ); | |||||
| 2507 | ErrorM essages.Ad d(InvalidD ataDownloa dFilterBus inessUnit, "For an e ntity owne d by the B usiness Ow ner, you c an only us e the foll owing data download filters: A ll records or Downlo ad related data only ."); | |||||
| 2508 | ErrorM essages.Ad d(InvalidD ataDownloa dFilterOrg anization, "For an e ntity owne d by the O rganizatio n, you can only use the follow ing data d ownload fi lters: All records o r Download related d ata only." ); | |||||
| 2509 | ErrorM essages.Ad d(CantUpda teOnlineRe cord, "You can’t upd ate this r ecord beca use it doe sn’t exist in the of fline mode ."); | |||||
| 2510 | ErrorM essages.Ad d(Applicat ionMetadat aUserValid ationUnkno wnError, " Sorry, som ething wen t wrong. P lease try again, or restart th e app."); | |||||
| 2511 | ErrorM essages.Ad d(Applicat ionMetadat aPrepareCu stomizatio nsUnknownE rror, "Sor ry, someth ing went w rong. Plea se try aga in, or res tart the a pp."); | |||||
| 2512 | ErrorM essages.Ad d(Applicat ionMetadat aRetrieveU serContext UnknownErr or, "Sorry , somethin g went wro ng. Please try again , or resta rt the app ."); | |||||
| 2513 | ErrorM essages.Ad d(Applicat ionMetadat aSyncUnkno wnError, " Sorry, som ething wen t wrong. P lease try again, or restart th e app."); | |||||
| 2514 | ErrorM essages.Ad d(Applicat ionMetadat aRetrieveU nknownErro r, "Sorry, something went wron g. Please try again, or restar t the app. "); | |||||
| 2515 | ErrorM essages.Ad d(Applicat ionMetadat aGetPrevie wMetadataU nknownErro r, "Sorry, something went wron g. Please try again, or restar t the app. "); | |||||
| 2516 | ErrorM essages.Ad d(Applicat ionMetadat aConverter Failed, "S orry, some thing went wrong. Pl ease try a gain, or r estart the app."); | |||||
| 2517 | ErrorM essages.Ad d(Applicat ionMetadat adaNullDat a, "Sorry, something went wron g. Please try again, or restar t the app. "); | |||||
| 2518 | ErrorM essages.Ad d(Applicat ionMetadat adaCreateF ailed, "So rry, somet hing went wrong. Ple ase try ag ain, or re start the app."); | |||||
| 2519 | ErrorM essages.Ad d(Applicat ionMetadat adaUpdateF ailed, "So rry, somet hing went wrong. Ple ase try ag ain, or re start the app."); | |||||
| 2520 | ErrorM essages.Ad d(Applicat ionMetadat aPrepareCu stomizatio nsRetrieve rError, "T here was a problem w ith the se rver confi guration c hanges. U sers can c ontinue us ing the ap plication, but may e xperience difficulti es, includ ing the in ability to save chan ges."); | |||||
| 2521 | ErrorM essages.Ad d(Applicat ionMetadat aPrepareCu stomizatio nsTimeout, "Sorry, b ut your cl ient custo mization c hanges cou ld not be processed. This may be due to a large n umber of e ntities en abled for your users , or the n umber of l anguages e nabled. U sers will not receiv e customiz ations unt il this is sue is res olved."); | |||||
| 2522 | ErrorM essages.Ad d(Applicat ionMetadat aPrepareCu stomizatio nsAppLock, "We encou ntered som e issues w hen we tri ed to prep are your c ustomizati ons for yo ur users. Users on s ome client s won't be able to d ownload yo ur customi zation upd ates until this issu e is resol ved."); | |||||
| 2523 | ErrorM essages.Ad d(EntityMe tadataSync Failed, "T here were problems w ith the se rver confi gurations. There wa s a proble m with the server co nfiguratio n changes. We are u nable to l oad the ap plication, please co ntact your Dynamics 365 admini strator.") ; | |||||
| 2524 | ErrorM essages.Ad d(EntityMe tadataSync FailedWith Continue, "There wer e difficul ties with the server configura tion chang es. You c an continu e to use t he app wit h the olde r configur ation, how ever, you may experi ence probl ems includ ing errors when savi ng. Pleas e contact your Dynam ics 365 ad ministrato r. "); | |||||
| 2525 | ErrorM essages.Ad d(Applicat ionMetadat aSyncFaile d, "There was a prob lem with t he server configurat ion change s. We are unable to load the applicatio n, please contact yo ur Dynamic s 365 admi nistrator. "); | |||||
| 2526 | ErrorM essages.Ad d(Applicat ionMetadat aFailedWit hContinue, "There wa s a proble m with the server co nfiguratio n changes. You can continue u sing the a pplication , but may experience difficult ies, inclu ding the i nability t o save cha nges. Plea se contact your Dyna mics 365 a dministrat or and giv e them the informati on availab le in ‘mor e informat ion’."); | |||||
| 2527 | ErrorM essages.Ad d(Applicat ionMetadat aSyncTimeo ut, "Sorry , but your server co nfiguratio n changes could not be downloa ded. This may be du e to a slo w connecti on, or due to a larg e number o f entities enabled f or mobile use. Plea se verify your conne ction and try again. If this issue cont inues plea se contact your Dyna mics 365 a dministrat or."); | |||||
| 2528 | ErrorM essages.Ad d(Applicat ionMetadat aSyncTimeo utWithCont inue, "Sor ry, but yo ur server configurat ion change s could no t be downl oaded. Th is may be due to a s low connec tion, or d ue to a la rge number of entiti es enabled for mobil e use. Pl ease verif y your con nection an d try agai n. You can continue to use the app with the older configurat ion, howev er you may experienc e problems including errors wh en saving. If this issue cont inues plea se contact your Dyna mics 365 a dministrat or."); | |||||
| 2529 | ErrorM essages.Ad d(Applicat ionMetadat aSyncAppLo ck, "Sorry , your ser ver is bus y so confi gurations can’t be d ownloaded right now. Your chan ges should be availa ble in a f ew minutes . Wait a few minute s, and sig n in again ."); | |||||
| 2530 | ErrorM essages.Ad d(Applicat ionMetadat aSyncAppLo ckWithCont inue, "Sor ry, your s erver is b usy so con figuration changes c an’t be do wnloaded r ight now. Your chang es should be availab le in a fe w minutes. In the m eantime, y ou can con tinue usin g the app, and you’l l be remin ded later to try dow nloading t he changes . Or, you can wait a few minut es, restar t the app, and accep t the prom pt to try again."); | |||||
| 2531 | ErrorM essages.Ad d(GenericM etadataSyn cFailed, " Sorry, som ething wen t wrong. P lease try again, or restart th e app."); | |||||
| 2532 | ErrorM essages.Ad d(GenericM etadataSyn cFailedWit hContinue, "Sorry, s omething w ent wrong downloadin g server c onfigurati on changes . You can continue to use the app with the older configurat ion, howev er you may experienc e problems including errors wh en saving. If this issue cont inues plea se contact your Dyna mics 365 a dministrat or and pro vide the i nformation available when you choose ‘mo re informa tion’."); | |||||
| 2533 | ErrorM essages.Ad d(CannotDe leteOnline Record, "Y ou can’t d elete this record be cause it d oesn’t exi st in the offline mo de."); | |||||
| 2534 | ErrorM essages.Ad d(Entitlem entInvalid StartEndDa te, "Start Date cann ot be more than the End Date") ; | |||||
| 2535 | ErrorM essages.Ad d(Entitlem entInvalid State, "Yo u cannot d elete an e ntitlement that is i n active o r waiting state"); | |||||
| 2536 | ErrorM essages.Ad d(InvalidC hannelOrig in, "An en titlement channel te rm with th e same cha nnel alrea dy exists. Specify a different channel a nd try aga in."); | |||||
| 2537 | ErrorM essages.Ad d(Entitlem entChannel InvalidSta te, "An en titlement channel te rm cannot be created , modified or delete d when the associate d entitlem ent is not in draft state."); | |||||
| 2538 | ErrorM essages.Ad d(Entitlem entInvalid Terms, "Sp ecify a hi gher value for total terms so the remain ing terms won't be a negative value."); | |||||
| 2539 | ErrorM essages.Ad d(InvalidE ntitlement ChannelTer ms, "Total terms for a specifi c case ori gin on an entitlemen t channel cannot be more than the total terms of t he corresp onding ent itlement." ); | |||||
| 2540 | ErrorM essages.Ad d(InvalidE ntitlement Activate, "You can't activate an expired , waiting or cancele d entitlem ent."); | |||||
| 2541 | ErrorM essages.Ad d(InvalidE ntitlement Cancel, "Y ou can't c ancel an e ntitlement that's in the Draft or Expire d state.") ; | |||||
| 2542 | ErrorM essages.Ad d(InvalidE ntitlement Deactivate , "You can deactivat e only ent itlements that are a ctive or w aiting"); | |||||
| 2543 | ErrorM essages.Ad d(InvalidE ntitlement Associatio nToCase, " You can't create a c ase for th is entitle ment becau se there a re no avai lable term s."); | |||||
| 2544 | ErrorM essages.Ad d(InvalidE ntitlement Renew, "Yo u can rene w only the entitleme nts that a re expired or cancel ed."); | |||||
| 2545 | ErrorM essages.Ad d(InvalidE ntitlement StateAssoc iateToCase , "You can only asso ciate a ca se with an active en titlement. "); | |||||
| 2546 | ErrorM essages.Ad d(Entitlem entChannel WithoutEnt itlementId , "Associa te the ent itlement c hannel wit h an entit lement or entitlemen t template ."); | |||||
| 2547 | ErrorM essages.Ad d(Entitlem entEditDra ft, "You c an only ed it a draft entitleme nt."); | |||||
| 2548 | ErrorM essages.Ad d(Entitlem entAlready InDraftSta te, "You c an't deact ivate an e ntitlement when it's in the dr aft state. "); | |||||
| 2549 | ErrorM essages.Ad d(Entitlem entAlready InactiveSt ate, "You can't acti vate an en titlement when it's in the act ive state. "); | |||||
| 2550 | ErrorM essages.Ad d(Entitlem entNotActi veInAssoci ationToCas e, "You ca n't create a case fo r this ent itlement b ecause the entitleme nt is not in active state."); | |||||
| 2551 | ErrorM essages.Ad d(ExpiredE ntitlement Activate, "You can't activate an expired entitleme nt."); | |||||
| 2552 | ErrorM essages.Ad d(InvalidE ntitlement Expire, "Y ou can't s et an enti tlement to the Expir ed state. Active ent itlements automatica lly expire when thei r end date passes.") ; | |||||
| 2553 | ErrorM essages.Ad d(InvalidD eleteProce ss, "This process ca n't be del eted becau se it is a system-ge nerated pr ocess."); | |||||
| 2554 | ErrorM essages.Ad d(Entitlem entTotalTe rms, "If t he allocat ion type i s the numb er of case s, the tot al terms c an't be a decimal va lue. Speci fy a whole number.") ; | |||||
| 2555 | ErrorM essages.Ad d(Entitlem entTemplat eTotalTerm s, "If the allocatio n type is the number of cases, the total terms can 't be a de cimal valu e. Specify a whole n umber."); | |||||
| 2556 | ErrorM essages.Ad d(SocialCa reDisabled Error, "Th ere's a pr oblem comm unicating with the D ynamics 36 5 Organiza tion. The organizati on might b e unavaila ble or the feature i s set so t hat it can 't receive social da ta. Try ag ain later. If the pr oblem pers ists, cont act your M icrosoft D ynamics 36 5 administ rator."); | |||||
| 2557 | ErrorM essages.Ad d(Entitlem entBlankTe rms, "Tota l terms ca n't be bla nk. Enter a value an d try agai n."); | |||||
| 2558 | ErrorM essages.Ad d(InvalidP roduct, "Y ou can't a dd a produ ct family. "); | |||||
| 2559 | ErrorM essages.Ad d(Entitlem entInvalid RemainingT erms, "The number of remaining terms can 't be grea ter than t he number of total t erms."); | |||||
| 2560 | ErrorM essages.Ad d(NoIncide ntMergeHav ingSamePar ent, "Chil d cases ha ving diffe rent paren t case ass ociated ca n not be m erged."); | |||||
| 2561 | ErrorM essages.Ad d(CancelAc tiveChildC aseFirst, "Cancel ac tive child case befo re canceli ng parent case."); | |||||
| 2562 | ErrorM essages.Ad d(CloseAct iveChildCa seFirst, " Close acti ve child c ase before closing p arent case ."); | |||||
| 2563 | ErrorM essages.Ad d(Multilev elParentCh ildRelatio nshipNotAl lowed, "As sociating child case s to the e xisting ch ild case i s not allo wed."); | |||||
| 2564 | ErrorM essages.Ad d(MaxChild CasesLimit Exceeded, "A Parent Case canno t have mor e than max imum child cases all owed. Cont act your a dministrat or for mor e details" ); | |||||
| 2565 | ErrorM essages.Ad d(ParentCa seNotAllow edAsAChild Case, "You can't add a parent case as a child case "); | |||||
| 2566 | ErrorM essages.Ad d(CannotCl oseCase, " This opera tion can't be comple ted. One o r more chi ld cases c an't be cl osed becau se of the status tra nsition ru les that a re defined for cases ."); | |||||
| 2567 | ErrorM essages.Ad d(CannotMe rgeCase, " The merge couldn't b e performe d. One or more of th e selected cases cou ldn't be c ancelled b ecause of the status transitio n rules th at are def ined for c ases."); | |||||
| 2568 | ErrorM essages.Ad d(CaseStat eChangeInv alid, "Bec ause of th e status t ransition rules, you can't res olve a cas e in the c urrent sta tus. Chang e the case status, a nd then tr y resolvin g it, or c ontact you r system a dministrat or."); | |||||
| 2569 | ErrorM essages.Ad d(CannotDe leteActive Rule, "You can not d elete an a ctive rout ing rule. Deactivate the rule to delete it."); | |||||
| 2570 | ErrorM essages.Ad d(CannotEd itActiveRu le, "You c an not edi t an activ e routing rule. Deac tivate the rule to d elete it." ); | |||||
| 2571 | ErrorM essages.Ad d(RuleAlre adyInactiv eState, "T his routin g rule is already in Active st ate."); | |||||
| 2572 | ErrorM essages.Ad d(RuleAlre adyInDraft State, "Yo u can not deactivate a draft r outing rul e."); | |||||
| 2573 | ErrorM essages.Ad d(RuleAlre adyExistsW ithSameQue ueAndChann el, "Recor d creation rule for the specif ied channe l and queu e already exists. Yo u can't cr eate anoth er one."); | |||||
| 2574 | ErrorM essages.Ad d(RoutingR uleActivat eDeactivat eByNonOwne r, "This R outing Rul e Set cann ot be acti vated or d eactivated by someon e who is n ot its own er."); | |||||
| 2575 | ErrorM essages.Ad d(ConvertR uleActivat eDeactivat eByNonOwne r, "This C onvert Rul e Set cann ot be acti vated or d eactivated by someon e who is n ot its own er."); | |||||
| 2576 | ErrorM essages.Ad d(ConvertR uleRespons eTemplateV alidity, " Please sel ect either a global or case te mplate."); | |||||
| 2577 | ErrorM essages.Ad d(ConvertR uleAlready Active, "S elected Co nvertRule is already in active state. Pl ease selec t another record and try again "); | |||||
| 2578 | ErrorM essages.Ad d(ConvertR uleAlready InDraftSta te , "Sele cted Conve rtRule is already in draft sta te. Please select an other reco rd and try again"); | |||||
| 2579 | ErrorM essages.Ad d(ConvertR ulePermiss ionToPerfo rmAction, "You don't have the required p ermissions on Conver tRules and processes to perfor m this act ion."); | |||||
| 2580 | ErrorM essages.Ad d(CannotDe leteQueueW ithQueueIt ems, "You can't dele te this qu eue becaus e it has i tems assig ned to it. Assign th ese items to another user, tea m, or queu e and try again."); | |||||
| 2581 | ErrorM essages.Ad d(CannotDe leteQueueW ithRouteRu les, "You can't dele te this qu eue becaus e one or m ore routin g rule set s use this queue. Re move the q ueue from the routin g rule set s and try again."); | |||||
| 2582 | ErrorM essages.Ad d(CannotRo utePrivate QueueItemN onmember, "This priv ate queue item can't be assign ed To the selected U ser."); | |||||
| 2583 | ErrorM essages.Ad d(CannotRo uteToNonQu eueMember, "This ite m cannot b e routed t o a non-qu eue member ."); | |||||
| 2584 | ErrorM essages.Ad d(StateTra nsitionAct iveToResol ve, "Becau se of the status tra nsition ru les, you c an't resol ve a case in the cur rent statu s.Change t he case st atus, and then try r esolving i t, or cont act your s ystem admi nistrator. "); | |||||
| 2585 | ErrorM essages.Ad d(StateTra nsitionAct iveToCance led, "Beca use of the status tr ansition r ules, you can't canc el the cas e in the c urrent sta tus.Change the case status, an d then try canceling it, or co ntact your system ad ministrato r."); | |||||
| 2586 | ErrorM essages.Ad d(StateTra nsitionRes olvedOrCan celedToAct ive, "Beca use of the status tr ansition r ules, you can't acti vate the c ase from t he current status.Co ntact your system ad ministrato r."); | |||||
| 2587 | ErrorM essages.Ad d(StateTra nsitionAct ivateNewSt atus, "You can't act ivate this record be cause of t he status transition rules.Con tact your system adm inistrator ."); | |||||
| 2588 | ErrorM essages.Ad d(StateTra nsitionDea ctivateNew Status, "Y ou can't d eactivate this recor d because of the sta tus transi tion rules .Contact y our system administr ator."); | |||||
| 2589 | ErrorM essages.Ad d(CannotDe leteRelate dSla, "The SLA recor d couldn't be delete d. Please try again or contact your syst em adminis trator"); | |||||
| 2590 | ErrorM essages.Ad d(CannotEd itActiveSl a, "You ca n't delete active SL A .Please deactivate the SLA t o delete o r Contact your syste m administ rator."); | |||||
| 2591 | ErrorM essages.Ad d(SlaAlrea dyInactive State, "Yo u can't ac tivate thi s record b ecause it' s already active."); | |||||
| 2592 | ErrorM essages.Ad d(SlaAlrea dyInDraftS tate , "Yo u can't de activate t his record because i t's in a d raft state ."); | |||||
| 2593 | ErrorM essages.Ad d(CannotCh angeState, "Error oc cured duri ng activat ing SLA..P lease chec k your pri vileges on Workflow and kindly try again or Contac t your sys tem admini strator.") ; | |||||
| 2594 | ErrorM essages.Ad d(ImportRo utingRuleE rror, "An error occu rred while importing Routing R ule Sets." ); | |||||
| 2595 | ErrorM essages.Ad d(ImportSl aError, "A n error oc curred whi le importi ng SLAs.") ; | |||||
| 2596 | ErrorM essages.Ad d(ImportCo nvertRuleE rror, "An error occu rred while importing Convert R ules."); | |||||
| 2597 | ErrorM essages.Ad d(CannotDe leteActive Sla, "You can't dele te an acti ve SLA. De activate t he SLA, an d then try deleting it."); | |||||
| 2598 | ErrorM essages.Ad d(ActiveSl aCannotEdi t, "You ca n't edit a n active S LA. Deacti vate the S LA, and th en try edi ting it.") ; | |||||
| 2599 | ErrorM essages.Ad d(MaxActiv eSLAError, "You can’ t activate this SLA because yo u’ve excee ded the ma xiumum num ber of ent ities that can have active SLA s for your organizat ion."); | |||||
| 2600 | ErrorM essages.Ad d(MaxActiv eSLAKPIErr or, "You c an’t activ ate this S LA because you’ve ex ceeded the maxiumum number of SLA KPIs t hat are al lowed per entity for your orga nization." ); | |||||
| 2601 | ErrorM essages.Ad d(BundleCa nnotContai nBundle, " You can't add a bund le to a bu ndle."); | |||||
| 2602 | ErrorM essages.Ad d(ProductO rBundleCan notBeAsPar ent, "Only Product F amilies ca n be paren ts to prod ucts."); | |||||
| 2603 | ErrorM essages.Ad d(CannotAs sociateRet iredProduc ts, "You c an't creat e a produc t relation ship with a retired product.") ; | |||||
| 2604 | ErrorM essages.Ad d(CannotUp dateDraftP roducts, " You can On ly update draft prod ucts."); | |||||
| 2605 | ErrorM essages.Ad d(CannotAd dProductTo Bundle, "Y ou cannot add produc ts to this bundle.Th e limit of {0} has b een reache d for this bundle.") ; | |||||
| 2606 | ErrorM essages.Ad d(ProductF romRetired ToActiveSt ate, "You can't set a retired property t o an activ e state.") ; | |||||
| 2607 | ErrorM essages.Ad d(ProductF romDraftTo RetiredSta te, "You c an't retir e a produc t that's i n the draf t state.") ; | |||||
| 2608 | ErrorM essages.Ad d(ProductF romRetired ToDraftSta te, "It is not possi ble to mov e product from Retir ed to Draf t State.") ; | |||||
| 2609 | ErrorM essages.Ad d(ProductF romRetired ToRetiredS tate, "Pro duct is al ready in R etired Sta te."); | |||||
| 2610 | ErrorM essages.Ad d(ProductF romDraftTo DraftState , "Product is alread y in Draft State."); | |||||
| 2611 | ErrorM essages.Ad d(ProductF romActiveT oActiveSta te, "Produ ct is alre ady in Act ive State. "); | |||||
| 2612 | ErrorM essages.Ad d(SaveReco rdBeforeAd dingBundle , "After y ou select a price li st, you mu st save th e record b efore you can add a bundle wit h optional products. "); | |||||
| 2613 | ErrorM essages.Ad d(RecordCa nOnlyBeRev isedFromAc tiveState, "You can only revis e an activ e product. "); | |||||
| 2614 | ErrorM essages.Ad d(CannotAd dDraftFami lyProductB undleToCas es, "You c an't add a product f amily, a d raft produ ct, or a d raft bundl e."); | |||||
| 2615 | ErrorM essages.Ad d(CannotCl oneBundleA sProductLi mitExceede d, "You ca n't create this new bundle bec ause it co ntains mor e than the allowed n umber of { 0} product s that a b undle can contain.") ; | |||||
| 2616 | ErrorM essages.Ad d(CannotCh angeSelect edBundleTo AnotherVal ue, "If a bundle is selected a s an exist ing produc t, you can 't change it to anot her value. "); | |||||
| 2617 | ErrorM essages.Ad d(CannotCh angeSelect edProductW ithBundle, "If a pro duct is se lected as an existin g product, you can't change it to a bund le."); | |||||
| 2618 | ErrorM essages.Ad d(InvalidR elationshi pTypeForUp Sell, "An upsell rel ationship is always unidirecti onal and c an't be ch anged."); | |||||
| 2619 | ErrorM essages.Ad d(InvalidR elationshi pTypeForAc cessory, " An accesso ry relatio nship is a lways unid irectional and can't be change d."); | |||||
| 2620 | ErrorM essages.Ad d(ProductN oSubstitut edProductN umber, "Th e substitu ted Produc t number c annot be a NULL."); | |||||
| 2621 | ErrorM essages.Ad d(Duplicat eProductRe lationship , "A produ ct relatio nship with the same product an d related product al ready exis ts."); | |||||
| 2622 | ErrorM essages.Ad d(BundleCa nnotContai nProductFa mily, "You can't add a product family to a bundle. "); | |||||
| 2623 | ErrorM essages.Ad d(RetiredP roductToBu ndle, "You can't add a retired product t o a bundle ."); | |||||
| 2624 | ErrorM essages.Ad d(DraftBun dleToProdu ct, "You c an only ad d products to a draf t bundle." ); | |||||
| 2625 | ErrorM essages.Ad d(ProductC anOnlyBeUp datedInDra ft, "Produ ct, produc t family a nd bundle can only b e updated in draft s tate."); | |||||
| 2626 | ErrorM essages.Ad d(Inconsis tentProduc tRelations hipState, "The other row for t he product relations hip is not available ."); | |||||
| 2627 | ErrorM essages.Ad d(CannotRe tireProduc tFromActiv eBundle, " This produ ct cannot be retired because i t is a par t of some active bun dles or pr icelists. Please rem ove it fro m all bund les or pri celists be fore retir ing."); | |||||
| 2628 | ErrorM essages.Ad d(CannotSe tProductAs Parent, "Y ou can onl y select a product f amily as t he parent. "); | |||||
| 2629 | ErrorM essages.Ad d(CannotAs sociatePro ductFamily , "You can 't create a relation ship with a product family."); | |||||
| 2630 | ErrorM essages.Ad d(CannotAd dPricelist ToProductF amily, "Yo u can't ad d a produc t family t o a pricel ist."); | |||||
| 2631 | ErrorM essages.Ad d(SdkMessa gesDepreca tedError, "This mess age is no longer ava ilable. Pl ease consu lt the SDK for alter native mes sages."); | |||||
| 2632 | ErrorM essages.Ad d(CanOnlyS etActiveOr DraftProdu ctFamilyAs Parent, "Y ou can onl y set prod uct famili es in a dr aft or act ive state as parent. "); | |||||
| 2633 | ErrorM essages.Ad d(CannotPu blishBundl eWithProdu ctStateDra ftOrRetire , "You can 't publish this bund le because its assoc iated prod ucts are i n a draft state, are retired, or are bei ng revised ."); | |||||
| 2634 | ErrorM essages.Ad d(CannotPu blishKitWi thProductS tateDraftO rRetire, " You can't publish th is kit bec ause its a ssociated products a re in a dr aft state, are retir ed, or are being rev ised."); | |||||
| 2635 | ErrorM essages.Ad d(CannotAd dProduct, "You can o nly add Ac tive produ cts."); | |||||
| 2636 | ErrorM essages.Ad d(CannotPu blishChild OfNonActiv eProductFa mily, "You can't pub lish this record bec ause it be longs to a product f amily that isn't pub lished."); | |||||
| 2637 | ErrorM essages.Ad d(ProductH asUnretire dChild, "Y ou can't r etire this product f amily beca use one or more of i ts child r ecords are n't retire d."); | |||||
| 2638 | ErrorM essages.Ad d(ProductF romActiveT oDraftStat e, "You ca n't set a published product to the draft state."); | |||||
| 2639 | ErrorM essages.Ad d(ProductF romDraftTo RevisedSta te, "You c an't revis e a draft or a retir ed product ."); | |||||
| 2640 | ErrorM essages.Ad d(CannotOv errideProp ertyFromDi fferentHie rarchy, "Y ou can't o verride a property t hat belong s to a dif ferent pro duct hiera rchy."); | |||||
| 2641 | ErrorM essages.Ad d(CannotRe tireProduc t, "You ca n't retire this prod uct becaus e it belon gs to acti ve bundles or price lists. Rem ove it fro m any bund les or pri ce lists b efore you retire it. "); | |||||
| 2642 | ErrorM essages.Ad d(InvalidS tateForPub lish, "The specified ProductFa mily, Prod uct or Bun dle can on ly be publ ished from Draft sta te or Acti veDraft st atus"); | |||||
| 2643 | ErrorM essages.Ad d(HiddenPr opertyVali dationFail ed, "You c an't creat e a proper ty instanc e for a hi dden prope rty."); | |||||
| 2644 | ErrorM essages.Ad d(ActivePr opertyVali dationFail ed, "You c an't creat e a proper ty instanc e for an i nactive pr operty."); | |||||
| 2645 | ErrorM essages.Ad d(ReadOnly CreateVali dationFail ed, "You c an't creat e and assi gn a value to a prop erty insta nce for a read-only property." ); | |||||
| 2646 | ErrorM essages.Ad d(ReadOnly UpdateVali dationFail ed, "You c an't updat e the prop erty insta nce for a read-only property." ); | |||||
| 2647 | ErrorM essages.Ad d(MinMaxVa lidationFa iled, "The value is out of ran ge."); | |||||
| 2648 | ErrorM essages.Ad d(OptionSe tValidatio nFailed, " The value is out of range."); | |||||
| 2649 | ErrorM essages.Ad d(Validati onFailedFo rDynamicPr operty, "A n error oc curred whi le saving the {0} pr operty."); | |||||
| 2650 | ErrorM essages.Ad d(ProductC loneFailed , "You can 't clone a child rec ord of a r etired pro duct famil y."); | |||||
| 2651 | ErrorM essages.Ad d(CannotAd dBundleToP ricelist, "You can't add the { 0} bundle to the pri celist bec ause the { 1} bundle product is n't in the pricelist ."); | |||||
| 2652 | ErrorM essages.Ad d(CannotRe moveProduc tFromPrice list, "You can't rem ove this p roduct fro m the pric elist beca use one or more bund les refer to it."); | |||||
| 2653 | ErrorM essages.Ad d(CannotAd dRetiredPr oductToPri celist, "R etired pro ducts can not be add ed to pric elists."); | |||||
| 2654 | ErrorM essages.Ad d(CannotDe leteProduc tFromActiv eBundle, " You can't remove pro ducts from a bundle that's eit her active or under revision." ); | |||||
| 2655 | ErrorM essages.Ad d(CannotPu blishNeste dBundle, " You can't publish a bundle tha t contains bundles. Remove any bundles f rom this o ne, and th en try to publish ag ain."); | |||||
| 2656 | ErrorM essages.Ad d(CannotCr eateKitOfT ypeFamilyO rBundle, " You can't create a k it of type bundle or product f amily."); | |||||
| 2657 | ErrorM essages.Ad d(CannotCh angeProduc tRelations hip, "You can't add or modify the produc t relation ship of a retired pr oduct."); | |||||
| 2658 | ErrorM essages.Ad d(BundleCa nnotContai nProductKi t, "You ca n't add a kit to a b undle."); | |||||
| 2659 | ErrorM essages.Ad d(CannotAd dParentToA Kit, "You can't spec ify a pare nt record for a kit. "); | |||||
| 2660 | ErrorM essages.Ad d(CannotCo nvertProdu ctAssociat edWithFami lyToKit, " You can't convert a product th at belongs to a prod uct family to a kit. "); | |||||
| 2661 | ErrorM essages.Ad d(OnlyProd uctCanBeCo nvertedToK it, "Only products c an be conv erted to k its."); | |||||
| 2662 | ErrorM essages.Ad d(CannotCo nvertProdu ctAssociat edWithBund leToKit, " You can't convert a product th at is a pa rt of a bu ndle to a kit."); | |||||
| 2663 | ErrorM essages.Ad d(Unsuppor tedCudOper ationForDy namicPrope rties, "Yo u can't cr eate a pro perty for a kit."); | |||||
| 2664 | ErrorM essages.Ad d(CannotCl oneProduct Kit, "You can't clon e a kit.") ; | |||||
| 2665 | ErrorM essages.Ad d(CannotAd dProductBu ndleToKit, "You can' t add a bu ndle to a kit."); | |||||
| 2666 | ErrorM essages.Ad d(CannotAd dProductFa milyToKit, "You can' t add a pr oduct fami ly to a ki t."); | |||||
| 2667 | ErrorM essages.Ad d(CannotAd dProductTo Kit, "You can't add a product that belon gs to a pr oduct fami ly to a ki t."); | |||||
| 2668 | ErrorM essages.Ad d(Unsuppor tedSdkMess ageForBund les, "This message i sn't suppo rted for p roducts of type bund le."); | |||||
| 2669 | ErrorM essages.Ad d(CannotAd dProductTo RetiredKit , "You can 't add a p roduct to a retired kit."); | |||||
| 2670 | ErrorM essages.Ad d(CannotAd dRetiredPr oductToKit , "You can 't add a r etired pro duct to a kit."); | |||||
| 2671 | ErrorM essages.Ad d(CannotCo nvertProdu ctFamilyTo Kit, "You can't conv ert a prod uct family to a kit. "); | |||||
| 2672 | ErrorM essages.Ad d(CannotCo nvertBundl eToKit, "Y ou can't c onvert a b undle to a kit."); | |||||
| 2673 | ErrorM essages.Ad d(CannotAd dBundleToI tself, "Yo u can't ad d a bundle to itself ."); | |||||
| 2674 | ErrorM essages.Ad d(CannotAd dKitToItse lf, "You c an't add a kit to it self."); | |||||
| 2675 | ErrorM essages.Ad d(CannotAd dRetiredPr oduct, "Yo u can’t cr eate a pro duct relat ionship wi th a retir ed product ."); | |||||
| 2676 | ErrorM essages.Ad d(CannotCl oneBundleW ithRetired Products, "You can't clone a b undle that contains retired pr oducts."); | |||||
| 2677 | ErrorM essages.Ad d(CannotSe tPublishRe tiredProdu ctsToDraft , "You can 't set a p ublished o r retired product re cord to th e draft st ate."); | |||||
| 2678 | ErrorM essages.Ad d(CannotOv erwritePro perty, "Yo u can't ov erwrite th is propert y as anoth er overwri tten versi on of this property already ex ists. Plea se delete the previo usly overw ritten ver sion, and then try a gain."); | |||||
| 2679 | ErrorM essages.Ad d(MissingR equiredAtt ributes, " The proper ty couldn’ t be creat ed or upda ted becaus e the rega rdingobjec tid, datat ype, or na me attribu te is miss ing."); | |||||
| 2680 | ErrorM essages.Ad d(DynamicP ropertyDef aultValueN eeded, "Yo u must spe cify a def ault value because t his proper ty is requ ired and i s read-onl y."); | |||||
| 2681 | ErrorM essages.Ad d(NonDraft BundleUpda te, "Produ ct Associa tion canno t be updat ed when bu ndle is in invalid s tate."); | |||||
| 2682 | ErrorM essages.Ad d(Associat eProductFa ilureDiffe rentUom, " The produc t can't be added to the bundle . You have to use a product un it that be longs to t he unit gr oup of the product." ); | |||||
| 2683 | ErrorM essages.Ad d(DynamicP ropertyInv alidStateF orUpdate, "You can't update a property t hat isn't in the dra ft state." ); | |||||
| 2684 | ErrorM essages.Ad d(DynamicP ropertyInv alidStateC hange, "Yo u can't se t an inact ive proper ty to an a ctive stat e."); | |||||
| 2685 | ErrorM essages.Ad d(DynamicP ropertyInv alidStateF orDelete, "You can't delete a property t hat is in the active state."); | |||||
| 2686 | ErrorM essages.Ad d(CannotDe leteDynami cPropertyI nUse, "Ret ired Prope rties bein g used in transactio ns can not be delete d."); | |||||
| 2687 | ErrorM essages.Ad d(DynamicP ropertyInv alidRegard ingForUpda te, "You c an’t creat e or chang e properti es for a p ublished o r retired product.") ; | |||||
| 2688 | ErrorM essages.Ad d(CannotOv errideOwne dDynamicPr operty, "Y ou can't o verride a property t hat isn't inherited from a pro duct famil y."); | |||||
| 2689 | ErrorM essages.Ad d(CannotDe leteNotOwn edDynamicP roperty, " You cannot delete a dynamic pr operty tha t is inher ited from a product family."); | |||||
| 2690 | ErrorM essages.Ad d(ProductF amilyCanCr eateDynami cProperty, "A proper ty can onl y be creat ed for a p roduct fam ily."); | |||||
| 2691 | ErrorM essages.Ad d(CannotDe leteOverri ddenProper ty, "You c an't delet e this pro perty beca use it's o verridden for one mo re or chil d records. Remove th e overridd en version s of the p roperty, r epublish t he product family hi erarchy, a nd then tr y deleting the prope rty."); | |||||
| 2692 | ErrorM essages.Ad d(SlaActiv ateDeactiv ateByNonOw ner, "This SLA canno t be activ ated or de activated by someone who is no t its owne r."); | |||||
| 2693 | ErrorM essages.Ad d(PartialH olidaySche duleCreati on, "Parti al holiday schedule can not be created." ); | |||||
| 2694 | ErrorM essages.Ad d(ErrorNoA ctiveRouti ngRuleExis ts, "Curre ntly there 's no acti ve rule to route thi s case."); | |||||
| 2695 | ErrorM essages.Ad d(SlaPermi ssionToPer formAction , "You don 't have th e required permissio ns on SLAs and proce sses to pe rform this action.") ; | |||||
| 2696 | ErrorM essages.Ad d(RoutingR ulePublish edByOwner, "Your rul e can't be activated until the current a ctive rule is deacti vated. The active ru le can onl y be deact ivated by the rule o wner."); | |||||
| 2697 | ErrorM essages.Ad d(RoutingR uleMissing RuleCriter ia, "You c an't activ ate this r ule until you resolv e any miss ing rule c riteria in formation in the rul e items.") ; | |||||
| 2698 | ErrorM essages.Ad d(RoutingR ulePublish edByNonOwn er, "The R outing Rul e Set cann ot be publ ished or u npublished by someon e who is n ot its own er."); | |||||
| 2699 | ErrorM essages.Ad d(ConvertR uleInvalid AutoRespon seSettings , "Select an email t emplate fo r an autor esponse or set the a utorespons e option t o No."); | |||||
| 2700 | ErrorM essages.Ad d(CannotDe leteActive CaseCreati onRule, "Y ou can't d elete an a ctive rule . Deactiva te the Rec ord Creati on and Upd ate Rule, and then t ry deletin g it."); | |||||
| 2701 | ErrorM essages.Ad d(CannotOv errideProp erty, "You can't ove rride this property as another overriden version o f this pro perty alre ady exists . Please d elete the previously overridde n version, and then try again. "); | |||||
| 2702 | ErrorM essages.Ad d(ParentHi erarchyExi stProperty , "A paren t should e xist for e ach node i n hierarch y except t he root no de."); | |||||
| 2703 | ErrorM essages.Ad d(CreatePr opertyErro r, "An err or occurre d while sa ving the { 0} propert y."); | |||||
| 2704 | ErrorM essages.Ad d(CreatePr opertyInst anceError, "An error occurred while savi ng the {0} property instance." ); | |||||
| 2705 | ErrorM essages.Ad d(CannotDe leteDynami cPropertyI nRetiredSt ate, "You can't dele te a prope rty of a r etired pro duct."); | |||||
| 2706 | ErrorM essages.Ad d(CannotDe leteActive RecordCrea tionRuleIt em, "You c an’t delet e an activ e record c reation ru le item. D eactivate the record creation rule, and then try d eleting it ."); | |||||
| 2707 | ErrorM essages.Ad d(ConvertR uleQueueId MissingFor EmailSourc e, "Queue value requ ired. Prov ide a valu e for the queue."); | |||||
| 2708 | ErrorM essages.Ad d(SPFileNo tCheckedOu tErrorCode , "File is not check ed out"); | |||||
| 2709 | ErrorM essages.Ad d(SPUnauth orizedAcce ssErrorCod e, "Curren t user hav e insuffic ient privi leges"); | |||||
| 2710 | ErrorM essages.Ad d(SPFileAl readyCheck edOutError Code, "Fil e is alrea dy checked out"); | |||||
| 2711 | ErrorM essages.Ad d(SPFileCh eckedOutIn validArgsE rrorCode, "Checkout arguments are not va lid"); | |||||
| 2712 | ErrorM essages.Ad d(SPShared LockOnFile ErrorCode, "Shared l ock on the file"); | |||||
| 2713 | ErrorM essages.Ad d(SPExclus iveLockOnF ileErrorCo de, "Exclu sive lock on the fil e"); | |||||
| 2714 | ErrorM essages.Ad d(SPFileNo tFoundErro rCode, "Fi le cannot be found") ; | |||||
| 2715 | ErrorM essages.Ad d(SPFileNo tLockedErr orCode, "T he file in the colle ction is n ot locked" ); | |||||
| 2716 | ErrorM essages.Ad d(SPDuplic ateValuesF oundErrorC ode, "The list item could not be updated because d uplicate v alues were found for one or mo re field(s ) in the l ist"); | |||||
| 2717 | ErrorM essages.Ad d(SPFileTo oLargeOrIn fectedErro rCode, "Vi rus checki ng indicat es the fil e is infec ted with a virus or the file i s too larg e"); | |||||
| 2718 | ErrorM essages.Ad d(SPBadLoc kInFileCol lectionErr orCode, "T he file in the colle ction has bad lock " ); | |||||
| 2719 | ErrorM essages.Ad d(SPInvali dLookupVal uesErrorCo de, "List item could not be up dated beca use invali d lookup v alues were found for one or mo re field(s ) in the l ist"); | |||||
| 2720 | ErrorM essages.Ad d(SPNullFi leUrlError Code, "URL of the fi le creatio n informat ion must n ot be null and URL o f the file creation informatio n must not be invali d"); | |||||
| 2721 | ErrorM essages.Ad d(SPFileCo ntentNullE rrorCode, "Content o f the file creation informatio n must not be null") ; | |||||
| 2722 | ErrorM essages.Ad d(SPFileSi zeMismatch ErrorCode, "There is a mismatc h between the size o f the docu ment strea m written and the si ze of the input docu ment strea m"); | |||||
| 2723 | ErrorM essages.Ad d(SPFileIs ReadOnlyEr rorCode, " Field is r ead-only") ; | |||||
| 2724 | ErrorM essages.Ad d(SPModifi edOnServer ErrorCode, "List ite m was modi fied on th e server s o changes cannot be committed" ); | |||||
| 2725 | ErrorM essages.Ad d(SPDataVa lidationFi ledOnField ErrorCode, "Data val idation ha s failed o n the fiel d"); | |||||
| 2726 | ErrorM essages.Ad d(SPDataVa lidationFi ledOnListE rrorCode, "Data vali dation has failed on the list" ); | |||||
| 2727 | ErrorM essages.Ad d(SPDataVa lidationFi ledOnField AndListErr orCode, "D ata valida tion has f ailed on t he field a nd the lis t"); | |||||
| 2728 | ErrorM essages.Ad d(SPThrott lingLimitE xceededErr orCode, "T hrottling limit is e xceeded by the opera tion"); | |||||
| 2729 | ErrorM essages.Ad d(SPOperat ionNotSupp ortedError Code, "Lis t does not support t his operat ion"); | |||||
| 2730 | ErrorM essages.Ad d(SPInstan ceOfRecurr ingEventEr rorCode, " List item is an inst ance of a recurring event whic h is not a recurrenc e exceptio n, the lis t item is a workflow task whos e parent w orkflow is in the re cycle bin, or the pa rent list is a docum ent librar y"); | |||||
| 2731 | ErrorM essages.Ad d(SPItemNo tExistErro rCode, "Li st item do es not exi st"); | |||||
| 2732 | ErrorM essages.Ad d(SPInvali dSavedQuer yErrorCode , "Error w hile doing this oper ation on S harePoint" ); | |||||
| 2733 | ErrorM essages.Ad d(SPGeneri cErrorCode , "Error w hile doing this oper ation on S harePoint" ); | |||||
| 2734 | ErrorM essages.Ad d(SPSiteNo tFoundErro rCode, "Si te Not Fou nd"); | |||||
| 2735 | ErrorM essages.Ad d(SPFolder NotFoundEr rorCode, " Folder Not Found"); | |||||
| 2736 | ErrorM essages.Ad d(SPNoActi veDocument LocationEr rorCode, " No Active Document L ocation"); | |||||
| 2737 | ErrorM essages.Ad d(SPIllega lFileTypeE rrorCode, "Illegal f ile type") ; | |||||
| 2738 | ErrorM essages.Ad d(SPInvali dFieldValu eErrorCode , "Invalid Field Val ue"); | |||||
| 2739 | ErrorM essages.Ad d(SPIllega lCharacter sInFileNam eErrorCode , "Illegal character s in filen ame"); | |||||
| 2740 | ErrorM essages.Ad d(SPCurren tDocumentL ocationDis abledError Code, "Cur rent docum ent locati on is disa bled by ad ministrato r"); | |||||
| 2741 | ErrorM essages.Ad d(SPCurren tFolderAlr eadyExistE rrorCode, "Record al ready pres ent in db" ); | |||||
| 2742 | ErrorM essages.Ad d(SPNullRe gardingObj ectErrorCo de, "Regar ding objec t id is nu ll"); | |||||
| 2743 | ErrorM essages.Ad d(SPOperat orNotSuppo rtedErrorC ode, "{0} does not s upport the selected operator") ; | |||||
| 2744 | ErrorM essages.Ad d(SPRequir edColCheck InErrorCod e, "Except ion occurr ed while d oing docum ent check- in as some columns a re made re quired at SharePoint "); | |||||
| 2745 | ErrorM essages.Ad d(SPFileIs CheckedOut ByOtherUse r, "File i s checked out to a u ser other than the c urrent use r"); | |||||
| 2746 | ErrorM essages.Ad d(SPFileNa meModified ErrorCode, "The fold er can't b e found. I f you chan ged the au tomaticall y generate d folder n ame for th is documen t location directly in SharePo int, you m ust change the folde r name in Dynamics 3 65 to matc h the rena med folder . To do th is, select Edit Loca tion and t ype the ma tching nam e in Folde r Name fie ld."); | |||||
| 2747 | ErrorM essages.Ad d(SPAccoun tNameFetch Failure, " Exception occured wh ile fetchi ng account name from Sharepoin t."); | |||||
| 2748 | ErrorM essages.Ad d(SPPerson alSiteNotF ound, "Per sonal Site not found for the u ser."); | |||||
| 2749 | ErrorM essages.Ad d(SPFolder RenameFail ure, "Exce ption occu rred while Editing S harepoint Document P roeprties. "); | |||||
| 2750 | ErrorM essages.Ad d(SPMultip leOdbSites Error, "Mo re than on e site wit h One Driv e enabled is not all owed."); | |||||
| 2751 | ErrorM essages.Ad d(SPOdbDis abledError , "Please enable ODB (One Drive for Busin ess) featu re to crea te ODB sit e."); | |||||
| 2752 | ErrorM essages.Ad d(SPOdbUpd ateDeleteE rror, "You cannot up date or de lete ODB(O ne Drive f or Busines s) site.") ; | |||||
| 2753 | ErrorM essages.Ad d(SPDocume ntMappingF ailure, "C an't map d ocuments t o their lo cation."); | |||||
| 2754 | ErrorM essages.Ad d(SPOdbDup licateLoca tionError, "More tha n one ODB (OneDrive for Busine ss) locati on is not allowed.") ; | |||||
| 2755 | ErrorM essages.Ad d(SPOdbUpd ateDeleteL ocationErr or, "You c annot upda te or dele te SharePo int Docume nt Locatio n of type ODB (OneDr ive for Bu siness).") ; | |||||
| 2756 | ErrorM essages.Ad d(SPSearch OneDriveNo tCreated, "OneDrive location i s not crea ted yet. P lease crea te the loc ation befo re searchi ng."); | |||||
| 2757 | ErrorM essages.Ad d(SPSitePr otocolErro r, "Protoc ol error i n accessin g SharePoi nt"); | |||||
| 2758 | ErrorM essages.Ad d(SPDefaul tSiteNotPr esent, "On eDrive act ivation ne eds a defa ult ShareP oint site. "); | |||||
| 2759 | ErrorM essages.Ad d(SPUpload Failure, " Upload fai led on Sha rePoint du e to unkno wn reasons . Probably the file is too lar ge"); | |||||
| 2760 | ErrorM essages.Ad d(SPAllFil esErrorSce nario, "On e or more sites in a ll files v iew of Sha rePointDoc ument fail ed."); | |||||
| 2761 | ErrorM essages.Ad d(Required BundleProd uctCannotB eDeleted, "You can't delete th is product record be cause it's a require d product in a bundl e."); | |||||
| 2762 | ErrorM essages.Ad d(Required BundleItem CannotBeUp dated, "Yo u can't de lete this bundle ite m because it's a req uired prod uct in the bundle.") ; | |||||
| 2763 | ErrorM essages.Ad d(DynamicP ropertyIns tanceMissi ngRequired Columns, " The proper ty instanc e can't be updated. Verify tha t the foll owing fiel ds are pre sent: dyna micpropert yid, dynam icproperty optionsetv alueid, an d regardin gobjectid. "); | |||||
| 2764 | ErrorM essages.Ad d(DynamicP ropertyIns tanceUpdat eValuesDif ferentRega rding, "Th e property instances couldn't be saved b ecause the y refer to different product l ine items. "); | |||||
| 2765 | ErrorM essages.Ad d(DynamicP ropertyOpt ionSetInva lidStateFo rUpdate, " You can't modify the property option set item for a property that is n ot in the draft stat e."); | |||||
| 2766 | ErrorM essages.Ad d(ProductM axProperty LimitExcee ded, "This product c an't be pu blished be cause it h as too man y properti es. A prod uct in you r organiza tion can't have more than {0} properties ."); | |||||
| 2767 | ErrorM essages.Ad d(BundleMa xPropertyL imitExceed ed, "This bundle can 't be publ ished beca use it has too many properties . A bundle in your o rganizatio n can't ha ve more th an {0} pro perties.") ; | |||||
| 2768 | ErrorM essages.Ad d(Hierarch icalOperat ionFailed, "This ope ration cou ldn't be c ompleted o n this hie rarchy. An error occ urred whil e performi ng this op eration fo r {0}. You can perfo rm the ope ration sep arately on this prod uct to fix the error , and then try the o peration a gain for t he complet e hierarch y."); | |||||
| 2769 | ErrorM essages.Ad d(Conflict ForOverrid denPropert iesEncount ered, "Thi s record c an't be pu blished. O ne of the properties that was changed fo r this rec ord confli cts with i ts inherit ed version . Remove t he conflic ting prope rty, and t hen try ag ain."); | |||||
| 2770 | ErrorM essages.Ad d(ProductF amilyRootP arentisLoc ked, "The product fa mily root parent rec ord is loc ked by som e other pr ocess."); | |||||
| 2771 | ErrorM essages.Ad d(CannotAs sociateRet iredBundle s, "You ca n't create a product relations hip with a retired b undle."); | |||||
| 2772 | ErrorM essages.Ad d(MissingQ uantity, " The Quanti ty is miss ing."); | |||||
| 2773 | ErrorM essages.Ad d(CannotCr eateProper tyOptionSe tItem, "Yo u can only create a property o ption set item recor d that ref ers to a p roperty th at has its data type set to Op tion Set." ); | |||||
| 2774 | ErrorM essages.Ad d(CannotDe leteInheri tedDynamic Property, "You can't delete a property t hat is inh erited fro m a produc t family." ); | |||||
| 2775 | ErrorM essages.Ad d(CannotDe leteProper tyOverridd enByBundle Item, "You can't del ete this p roperty be cause it's overridde n in one o r more rel ated bundl e products . Remove t he overrid den versio ns of the property f rom the re lated bund le product s, publish the bundl es that we re changed , and then try again ."); | |||||
| 2776 | ErrorM essages.Ad d(CannotDe leteProduc tStatusCod e, "You ca n't delete a system- generated status rea son."); | |||||
| 2777 | ErrorM essages.Ad d(CannotAc tivateReco rd, "You c an't activ ate a reti red produc t family o r bundle. Also, you can't acti vate a ret ired produ ct that is part of a product f amily."); | |||||
| 2778 | ErrorM essages.Ad d(CannotQu alifyLead, "You can' t qualify this lead because yo u don't ha ve permiss ion to cre ate accoun ts. Work w ith your s ystem admi nistrator to create the accoun t and then try again ."); | |||||
| 2779 | ErrorM essages.Ad d(ImportHi erarchyRul eDeletedEr ror, "A hi erarchy ru le with th e same id is marked as deleted in the sy stem,So fi rst publis h the cust omized ent ity and im port again ."); | |||||
| 2780 | ErrorM essages.Ad d(ImportHi erarchyRul eExistingE rror, "Can not reuse existing h ierarchy r ule."); | |||||
| 2781 | ErrorM essages.Ad d(ImportHi erarchyRul eOtcMismat chError, " There was an error p rocessing hierarchy rules of t he same ob ject type code.(unre solvable s ystem coll ision)"); | |||||
| 2782 | ErrorM essages.Ad d(HonorPau seWithoutS LAKPIError , "SLA can be set to honor pau se and res ume only i f Use SLA KPI is set to Yes.") ; | |||||
| 2783 | ErrorM essages.Ad d(CannotSe tCaseOnHol d, "You do not have the permis sions to s et this ca se to an o n hold sta tus type. Please con tact your system adm inistrator ."); | |||||
| 2784 | ErrorM essages.Ad d(ApplyAct iveSLAOnly , "You can only appl y active s ervice lev el agreeme nts (SLAs) to cases. "); | |||||
| 2785 | ErrorM essages.Ad d(NoPrivil egeToApply ManualSLA, "You don' t have app ropriate p ermissions to apply Servie Lev el Agreeme nt (SLA) t o this cas e record." ); | |||||
| 2786 | ErrorM essages.Ad d(SlaNotEn abledEntit y, "SLA is not enabl ed for thi s entity." ); | |||||
| 2787 | ErrorM essages.Ad d(CannotSe tEntityOnH old, "You don’t have permissio n to put t his record on hold. Contact yo ur system administra tor."); | |||||
| 2788 | ErrorM essages.Ad d(CannotCr eateSLAFor Entity, "Y ou can't c reate a se rvice leve l agreemen t (SLA) fo r this ent ity becaus e it’s not enabled f or creatin g SLAs"); | |||||
| 2789 | ErrorM essages.Ad d(SyncAttr ibuteMappi ngCannotBe Updated, " The sync a ttribute m apping can not be upd ated."); | |||||
| 2790 | ErrorM essages.Ad d(InvalidS yncDirecti onValueFor Update, "T he sync di rection is invalid a s per the allowed sy nc directi on for one or more a ttribute m appings.") ; | |||||
| 2791 | ErrorM essages.Ad d(InvalidL anguageFor Create, "R ows with l ocalizable attribute s can only be create d when the user inte rface (UI) language for the cu rrent user is set to the organ ization's base langu age."); | |||||
| 2792 | ErrorM essages.Ad d(InvalidL anguageFor Update, "L ocalizable attribute s can only be update d via the string pro perty when the user interface (UI) langu age for th e current user is se t to the o rganizatio n's base l anguage. U se SetLocL abels to u pdate the localized values for the follo wing attri butes: [{0 }]."); | |||||
| 2793 | ErrorM essages.Ad d(GenericI mportTrans lationsErr or, "Error s were enc ountered w hile proce ssing the translatio ns import file."); | |||||
| 2794 | ErrorM essages.Ad d(CannotSe tEntitleme ntTermsDec rementBeha vior, "You do not ha ve appropr iate privi leges to s pecify whe ther entit lement ter ms can be decremente d for this case reco rd."); | |||||
| 2795 | ErrorM essages.Ad d(CannotUp dateEntitl ement, "Yo u can only set Activ e entitlem ent record s as defau lt."); | |||||
| 2796 | ErrorM essages.Ad d(CannotCr eateCase, "You can't create th is case as the defau lt entitle ment for t he specifi ed custome r has no r emaining t erms."); | |||||
| 2797 | ErrorM essages.Ad d(KBInvali dCreateAss ociation, "This KB a rticle is already li nked to th e {0}."); | |||||
| 2798 | ErrorM essages.Ad d(InvalidN umberOfTab sInDialog, "A dialog Form XML cannot con tain more than one t ab."); | |||||
| 2799 | ErrorM essages.Ad d(InvalidN umberOfSec tionsInTab , "A dialo g Form XML cannot co ntain more than one section.") ; | |||||
| 2800 | ErrorM essages.Ad d(DialogNa meCannotBe Null, "\"D ialogName cannot be null for t ype Dialog "); | |||||
| 2801 | ErrorM essages.Ad d(InvalidF ormTypeCal ledThrough Sdk, "\"In valid Form type used in Create call"); | |||||
| 2802 | ErrorM essages.Ad d(InvalidF ormatForCo ntrol, "In valid Prec ision Para meter spec ified for control {0 }. It Dose nt Contain Expected Value"); | |||||
| 2803 | ErrorM essages.Ad d(InvalidO ptionSetId ForControl , "An inva lid Option SetId spec ified for control {0 }.OptionSe t Id is an non-empty Guid."); | |||||
| 2804 | ErrorM essages.Ad d(InvalidR elationshi pNameForCo ntrol, "Re lationship Name not specified for contro l {0}.Rela tionship N ame is an mandatory Field."); | |||||
| 2805 | ErrorM essages.Ad d(InvalidT argetEntit yTypeForCo ntrol, "Ta rget Entit y Type not specified for contr ol {0}.Tar get Entity is an man datory Fie ld."); | |||||
| 2806 | ErrorM essages.Ad d(InvalidM axLengthFo rControl , "Invalid MaxLength Parameter specified for contro l {0}.Maxl ength must be in bet ween {1} a nd {2} .") ; | |||||
| 2807 | ErrorM essages.Ad d(InvalidM inValueFor Control , "Invalid M inValue Pa rameter sp ecified fo r control {0}.Min Va lue must b e in betwe en {1} and {2} ."); | |||||
| 2808 | ErrorM essages.Ad d(InvalidM axValueFor Control , "Invalid M axValue Pa rameter sp ecified fo r control {0}.Max Va lue must b e in betwe en {1} and {2} ."); | |||||
| 2809 | ErrorM essages.Ad d(InvalidM inAndMaxVa lueForCont rol , "Inv alid MinVa lue and Ma xValue Par ameter spe cified for control { 0}.Min Val ue must be less than Max Value ."); | |||||
| 2810 | ErrorM essages.Ad d(InvalidP recisionFo rControl , "Invalid Precision Parameter specified for contro l {0}.Prec ision must be in bet ween {1} a nd {2} .") ; | |||||
| 2811 | ErrorM essages.Ad d(ReadInte ntIncompat ible, "Plu gin Execut ion Intent of curren t executio n context is not com patible wi th its par ent contex t"); | |||||
| 2812 | ErrorM essages.Ad d(Concurre ncyVersion Mismatch, "The versi on of the existing r ecord does n't match the RowVer sion prope rty provid ed."); | |||||
| 2813 | ErrorM essages.Ad d(Concurre ncyVersion NotProvide d, "The Ro wVersion p roperty mu st be prov ided when the value of Concurr encyBehavi or is IfVe rsionMatch es."); | |||||
| 2814 | ErrorM essages.Ad d(CrmHttpE rror, "A f ailure occ urred in W ep Api in Dynamics 3 65."); | |||||
| 2815 | ErrorM essages.Ad d(Incompat ibleStepsE ncountered , "You can 't enable the Enforc eReadOnlyP lugins set ting becau se plug-in s that cha nge data a re registe red on rea d-only SDK messages. {0}"); | |||||
| 2816 | ErrorM essages.Ad d(MailboxT rackingFol derMapping CannotBeUp dated, "Th e mailbox tracking f older mapp ing cannot be update d."); | |||||
| 2817 | ErrorM essages.Ad d(Optimist icConcurre ncyNotEnab led, "Opti mistic con currency i sn't enabl ed for ent ity type { 0}. The If VersionMat ches value of Concur rencyBehav ior can on ly be used if optimi stic concu rrency is enabled.") ; | |||||
| 2818 | ErrorM essages.Ad d(InvalidC ollectionN ame, "An e ntity with that coll ection nam e already exists. Sp ecify a un ique name. "); | |||||
| 2819 | ErrorM essages.Ad d(InvalidE ntityKeyOp eration, " Invalid En tityKey Op eration pe rformed : {0}"); | |||||
| 2820 | ErrorM essages.Ad d(EntityKe yNotDefine d, "The sp ecified ke y attribut es are not a defined key for t he {0} ent ity"); | |||||
| 2821 | ErrorM essages.Ad d(RecordNo tFoundByEn tityKey, " A record w ith the sp ecified ke y values d oes not ex ist in {0} entity"); | |||||
| 2822 | ErrorM essages.Ad d(Duplicat eRecordEnt ityKey, "E ntity Key {0} violat ed. A reco rd with th e same val ue for {1} already e xists. A d uplicate r ecord cann ot be crea ted. Selec t one or m ore unique values an d try agai n."); | |||||
| 2823 | ErrorM essages.Ad d(EntityKe yNameExist s, "An ent ity key wi th the nam e {0} alre ady exists on entity {1}."); | |||||
| 2824 | ErrorM essages.Ad d(EntityKe yWithSelec tedAttribu tesExists, "An entit y key with the selec ted attrib utes alrea dy exists on entity. "); | |||||
| 2825 | ErrorM essages.Ad d(IndexSiz eConstrain tViolated, "Index si ze exceede d the size limit of {0} bytes. The key i s too larg e. Try rem oving some columns o r making t he strings in string columns s horter."); | |||||
| 2826 | ErrorM essages.Ad d(CannotSe cureEntity KeyAttribu te, "The f ield {0} i s not secu rable as i t is part of entity keys ( {1} ). Please remove th e field fr om all ent ity keys t o make it securable. "); | |||||
| 2827 | ErrorM essages.Ad d(Reactiva teEntityKe yOnlyForFa iledJobs, "Reactivat e entity k ey is only supported for faile d job"); | |||||
| 2828 | ErrorM essages.Ad d(RefRoleN avPaneDisp layOptionR equired, " The NavPan eDisplayOp tion attri bute is re quired for the Refer encing Rol e of a one -to-many r elationshi p {0}."); | |||||
| 2829 | ErrorM essages.Ad d(InvalidR oleTypeFor OneToManyR elationshi p, "This r elationshi p role typ e isn't va lid for a one-to-man y relation ship {0}." ); | |||||
| 2830 | ErrorM essages.Ad d(InvalidR oleOccurre ncesForOne ToManyRela tionship, "There can 't be more than two entity rel ationship roles for a one-to-m any relati onship {0} ."); | |||||
| 2831 | ErrorM essages.Ad d(InvalidE ntitySetNa me, "An en tity with the specif ied entity set name {0} alread y exists. Specify a unique nam e."); | |||||
| 2832 | ErrorM essages.Ad d(Incorrec tEntitySet Name, "The entity se t name {0} must star t with a v alid custo mization p refix."); | |||||
| 2833 | ErrorM essages.Ad d(WopiDisc overyFaile d, "Reques t for retr ieving the WOPI disc overy XML failed."); | |||||
| 2834 | ErrorM essages.Ad d(WopiAppl icationUrl , "Error i n retrievi ng informa tion from WOPI appli cation url ."); | |||||
| 2835 | ErrorM essages.Ad d(WopiMaxF ileSizeExc eeded, "{0 } file exc eeded size limit of {1}."); | |||||
| 2836 | ErrorM essages.Ad d(ExportTo ExcelOnlin eFeatureNo tEnabled, "Export to Excel Onl ine featur e is not e nabled."); | |||||
| 2837 | ErrorM essages.Ad d(ExcelFil eNotFound, "The requ ested file was not f ound."); | |||||
| 2838 | ErrorM essages.Ad d(InvalidU serToViewE xcelOnline File, "You don't hav e permissi on to view this file . Only the user who exported t his data c an view th is file.") ; | |||||
| 2839 | ErrorM essages.Ad d(InvalidU serToImpor tExcelOnli neFile, "Y ou don't h ave permis sion to im port this file. Only the user who export ed this da ta can imp ort this f ile."); | |||||
| 2840 | ErrorM essages.Ad d(SharePoi ntCertific ateExpired , "Certifi cate used for Sharep oint valid ation has expired"); | |||||
| 2841 | ErrorM essages.Ad d(SharePoi ntRealmMis match, "Sh arepoint r ealm ID en tered does not match with the registered realm at Sharepoint side."); | |||||
| 2842 | ErrorM essages.Ad d(SharePoi ntAuthenti cationFail ure, "Micr osoft Dyna mics 365 c annot auth enticate t his user { 0} . Verif y that the informati on for thi s user is correct, a nd then tr y again.") ; | |||||
| 2843 | ErrorM essages.Ad d(SharePoi ntAuthoriz ationFailu re, "Micro soft Dynam ics 365 ca nnot autho rize this user {0} . Verify th at the inf ormation f or this us er is corr ect, and t hen try ag ain."); | |||||
| 2844 | ErrorM essages.Ad d(SharePoi ntConnecti onFailure, "Microsof t Dynamics 365 canno t connect this user {0} to Sha rePoint. V erify that the infor mation for this user is correc t and exis ts in Shar ePoint, an d then try again."); | |||||
| 2845 | ErrorM essages.Ad d(SharePoi ntVersionU nsupported , "Microso ft Dynamic s 365 cann ot connect to Sharep oint as th e Sharepoi nt Version is unsupp orted. Ins tall the c orrect ver sion, and then try a gain. "); | |||||
| 2846 | ErrorM essages.Ad d(CannotDe leteOneNot eTableOfCo ntent, "Yo u can’t de lete this file becau se it cont ains links to OneNot e notebook sections. To delete notebook contents, open the n otebook in OneNote a nd delete the conten ts from th ere. To de lete a not ebook, ope n SharePoi nt and del ete the no tebook fro m there.") ; | |||||
| 2847 | ErrorM essages.Ad d(InvalidH exColorVal ue, "Only hexadecima l values a re allowed ."); | |||||
| 2848 | ErrorM essages.Ad d(ThemeIdO rUpdateTim estampIsNu ll, "Theme Id or Upd ate Timest amp value is not pre sent in th eme data." ); | |||||
| 2849 | ErrorM essages.Ad d(LogoImag eNodeDoesN otExist, " Logo Image node in o rganizatio n cache th eme data d oesnot exi st."); | |||||
| 2850 | ErrorM essages.Ad d(InvalidL ogoImageId , "Invalid logo imag e web reso urce id.") ; | |||||
| 2851 | ErrorM essages.Ad d(InvalidT hemeId, "I nvalid the me id."); | |||||
| 2852 | ErrorM essages.Ad d(CannotCr eateSystem OrDefaultT heme, "You can’t cre ate system or defaul t themes. System or default th eme can on ly be crea ted out of box."); | |||||
| 2853 | ErrorM essages.Ad d(CannotUp dateSystem Theme, "Yo u can’t mo dify syste m themes." ); | |||||
| 2854 | ErrorM essages.Ad d(InvalidT hemeDelete Operation, "You can’ t delete s ystem or d efault the mes."); | |||||
| 2855 | ErrorM essages.Ad d(CannotUp dateDefaul tField, "Y ou can’t u pdate the isdefaultT heme attri bute."); | |||||
| 2856 | ErrorM essages.Ad d(InvalidL ogoImageWe bResourceT ype, "Inva lid WebRes ource Type for Logo Image."); | |||||
| 2857 | ErrorM essages.Ad d(CannotDe leteSystem Theme, "Yo u can't de lete syste m themes." ); | |||||
| 2858 | ErrorM essages.Ad d(InvalidB ehaviorSel ection, "T he behavio r of this Date and T ime field can only b e changed to “Date O nly\"."); | |||||
| 2859 | ErrorM essages.Ad d(InvalidB ehavior, " The Behavi or value o f this att ribute can 't be chan ged."); | |||||
| 2860 | ErrorM essages.Ad d(InvalidD ateTimeFor mat, "You can’t chan ge the for mat value of this at tribute to “Date and Time” whe n the beha vior is “D ate Only.” "); | |||||
| 2861 | ErrorM essages.Ad d(SkipVali dDateTimeB ehavior, " The behavi or value f or this fi eld was ig nored. A S ystem Cust omizer wil l need to configure the behavi or value f or this fi eld direct ly."); | |||||
| 2862 | ErrorM essages.Ad d(ValidDat eTimeBehav iorWarning , "The beh avior of t his field was change d. You sho uld review all the d ependencie s of this field, suc h as busin ess rules, workflows , and calc ulated or rollup fie lds, to en sure that issues won 't occur. Attribute: {0}"); | |||||
| 2863 | ErrorM essages.Ad d(ValidDat eTimeBehav iorExportA sWarning, "The {0} f ield will be a User Local Date and Time since the Date Only and Time Z one Indepe ndent beha viors won' t work in earlier ve rsions of Dynamics 3 65."); | |||||
| 2864 | ErrorM essages.Ad d(ExportTo XlsxFeatur eNotEnable d, "Export to excel file featu re is not enabled.") ; | |||||
| 2865 | ErrorM essages.Ad d(XlsxImpo rtInvalidE xcelDocume nt, "Inval id file to import.") ; | |||||
| 2866 | ErrorM essages.Ad d(XlsxImpo rtInvalidF ileData, " Invalid fo rmat in im port file. "); | |||||
| 2867 | ErrorM essages.Ad d(XlsxImpo rtHiddenCo lumnAbsent , "Require d columns missing.") ; | |||||
| 2868 | ErrorM essages.Ad d(XlsxImpo rtInvalidC olumnCount , "Column mismatch." ); | |||||
| 2869 | ErrorM essages.Ad d(XlsxImpo rtColumnHe adersInval id, "Inval id columns ."); | |||||
| 2870 | ErrorM essages.Ad d(XlsxExpo rtGenerati ngExcelFai led, "Fail ed to gene rate excel ."); | |||||
| 2871 | ErrorM essages.Ad d(XlsxImpo rtExcelFai led, "Fail ed to impo rt data.") ; | |||||
| 2872 | ErrorM essages.Ad d(Document TemplateFe atureNotEn abled, "Do cument tem plate feat ure is not enabled." ); | |||||
| 2873 | ErrorM essages.Ad d(WordTemp lateFeatur eNotEnable d, "Word d ocument te mplate fea ture is no t enabled. "); | |||||
| 2874 | ErrorM essages.Ad d(MobileEx celFeature NotEnabled , "Mobile export to excel feat ure is not enabled." ); | |||||
| 2875 | ErrorM essages.Ad d(InvalidD ocumentTem plate, "In valid docu ment templ ate."); | |||||
| 2876 | ErrorM essages.Ad d(InvalidF ileType, " Invalid Fi le Type.") ; | |||||
| 2877 | ErrorM essages.Ad d(DocxExpo rtGenerati ngWordFail ed, "An er ror occurr ed while g enerating the Word d ocument. P lease try again."); | |||||
| 2878 | ErrorM essages.Ad d(DocxVali dationFail ed, "We co uld not va lidate thi s Word doc ument."); | |||||
| 2879 | ErrorM essages.Ad d(LegacyXl sxFileNotS upported, "Legacy .x lsx files cannot be used for E xcel Templ ates."); | |||||
| 2880 | ErrorM essages.Ad d(InvalidW ordFileTyp e, "The fi le type is n't suppor ted."); | |||||
| 2881 | ErrorM essages.Ad d(InvalidW ordDocumen tTemplate, "The docu ment templ ate is not valid."); | |||||
| 2882 | ErrorM essages.Ad d(InvalidW ordTemplat eContent, "The templ ate conten t is not v alid."); | |||||
| 2883 | ErrorM essages.Ad d(DataTabl eNotAvaila ble, "The original d ata table has been d eleted or renamed.") ; | |||||
| 2884 | ErrorM essages.Ad d(InvalidE ntitySpeci fied, "The entity is not speci fied in th e template ."); | |||||
| 2885 | ErrorM essages.Ad d(InvalidT emplateCon tent, "The template content is invalid." ); | |||||
| 2886 | ErrorM essages.Ad d(InvalidV iewReferen ce, "The v iew is not specified or is inv alid."); | |||||
| 2887 | ErrorM essages.Ad d(FileType NotSupport ed, "The s pecified f ile type i s not supp orted as t emplate.") ; | |||||
| 2888 | ErrorM essages.Ad d(Datashee tNotAvaila ble, "The data sheet is not av ailable.") ; | |||||
| 2889 | ErrorM essages.Ad d(Hiddensh eetNotAvai lable, "Th e hidden s heet is no t availabl e."); | |||||
| 2890 | ErrorM essages.Ad d(Corrupte dHiddenshe etData, "T he hidden sheet data is corrup ted."); | |||||
| 2891 | ErrorM essages.Ad d(NoActive Location, "No active location found."); | |||||
| 2892 | ErrorM essages.Ad d(FolderDo esNotExist , "Folder doesn't ex ist."); | |||||
| 2893 | ErrorM essages.Ad d(OneNoteC reationFai led, "OneN ote creati on failed. "); | |||||
| 2894 | ErrorM essages.Ad d(OneNoteR enderFaile d, "OneNot e render f ailed."); | |||||
| 2895 | ErrorM essages.Ad d(AccessDe niedShareP ointRecord , "Access denied on SharePoint record in Dynamics 365."); | |||||
| 2896 | ErrorM essages.Ad d(CouldNot SetLocatio nTypeToOne Note, "Cou ldn't set location t ype of doc ument loca tion to On eNote."); | |||||
| 2897 | ErrorM essages.Ad d(OneNoteL ocationNot Created, " OneNote lo cation not created." ); | |||||
| 2898 | ErrorM essages.Ad d(OneNoteL ocationDea ctivated, "The locat ion mappin g for OneN ote is ina ctive. Con tact your administra tor to act ivate the OneNote lo cation rec ord for th is Dynamic s 365 reco rd."); | |||||
| 2899 | ErrorM essages.Ad d(Document Management DisabledOn Entity, "Y ou must en able docum ent manage ment for t his Entity in order to enable OneNote in tegration. "); | |||||
| 2900 | ErrorM essages.Ad d(QuickCre ateInvalid EntityName , "The ent ityLogical Name isn't valid. Th is value c an't be nu ll or empt y, and it must repre sent an en tity in th e organiza tion."); | |||||
| 2901 | ErrorM essages.Ad d(QuickCre ateDisable dOnEntity, "The {0} entity doe sn't have a quick cr eate form or the num ber of nes ted quick create for ms has exc eeded the maximum nu mber allow ed."); | |||||
| 2902 | ErrorM essages.Ad d(Operatio nCanceled, "Refresh was cancel ed by user ."); | |||||
| 2903 | ErrorM essages.Ad d(SavePend ing, "Save operation is alread y running in the bac kground.") ; | |||||
| 2904 | ErrorM essages.Ad d(Scheduli ngFailedFo rInvalidDa ta, "Book or Resched ule operat ion failed due to in valid data ."); | |||||
| 2905 | ErrorM essages.Ad d(Scheduli ngFailedFo rBookingVa lidation, "Book or R eschedule operation failed due to bookin g validati on."); | |||||
| 2906 | ErrorM essages.Ad d(InvalidS ourceTypeC ode, "Plea se select valid prop erty bag f or the sel ected sour ce type.") ; | |||||
| 2907 | ErrorM essages.Ad d(CannotDe leteChanne lProperty, "You can’ t delete a channel p roperty wh ich is bei ng referre d in a con vert rule. "); | |||||
| 2908 | ErrorM essages.Ad d(ChannelP ropertyGro upAlreadyE xistsWithS ameSourceT ype, "A re cord for t he specifi ed source type alrea dy exists. You can't create an other one. "); | |||||
| 2909 | ErrorM essages.Ad d(CannotCl earChannel PropertyGr oupFromCon vertRule, "The Chann el Propert y Group is used by o ne or more steps. De lete the p roperties from the c onditions and steps that use t he record before you save or a ctivate th e rule."); | |||||
| 2910 | ErrorM essages.Ad d(Duplicat eChannelPr opertyName , "A chann el propert y with the specified name alre ady exists . You can' t create a nother one ."); | |||||
| 2911 | ErrorM essages.Ad d(ChannelP ropertyNam eInvalid, "The chann el propert y name is invalid. T he name ca n only con tain '_', numerical, and alpha betical ch aracters. Choose a d ifferent n ame, and t ry again." ); | |||||
| 2912 | ErrorM essages.Ad d(ImportCh annelPrope rtyGroupEr ror, "An e rror occur red while importing Channel Pr operty Gro up."); | |||||
| 2913 | ErrorM essages.Ad d(CannotCh angeConver tRuleState , "Error o ccured dur ing activa ting Conve rt Rule.Pl ease check your priv ileges on Workflow a nd kindly try again or Contact your syst em adminis trator."); | |||||
| 2914 | ErrorM essages.Ad d(NoConver sionRule, "A Convers ionRule is required for the to ol to run. "); | |||||
| 2915 | ErrorM essages.Ad d(InvalidC onversionR ule, "The Conversion Rule speci fied {0} i s invalid. Please sp ecify a va lid Conver sionRule." ); | |||||
| 2916 | ErrorM essages.Ad d(InvalidT imeZoneCod e, "Time Z one Code { 0} specifi ed is not recognized . Please s pecify a v alid Time Zone Code value."); | |||||
| 2917 | ErrorM essages.Ad d(UserDoes NotHavePri vilegesToR unTheTool, "You must be a syst em adminis trator to execute th is request ."); | |||||
| 2918 | ErrorM essages.Ad d(NoTimeZo neCodeForC onversionR ule, "The TimeZoneCo de propert y is requi red when t he value o f the Conv ersionRule property is Specifi cTimeZone. "); | |||||
| 2919 | ErrorM essages.Ad d(NoEntity Specified, "At least one Entit y is expec ted by the tool to p rocess."); | |||||
| 2920 | ErrorM essages.Ad d(InvalidO therDataFi lterOption s, "You sh ould selec t at least one optio n from Dow nload My R ecords, My Team Reco rds or My Business U nit's Reco rds for Ot her Data F ilter"); | |||||
| 2921 | ErrorM essages.Ad d(RelatedE ntityDoesN otExistInP rofileItem , "The rel ated entit y {0} of t he mobile offline pr ofile item associati on {1} of the mobile offline p rofile ite m {2} does n’t exist in the pro file items of profil e {3}."); | |||||
| 2922 | ErrorM essages.Ad d(Download AllEntityR ecordsChan gedOrCreat edWithinTh eseDays, " Download a ll entity records ch anged or c reated wit hin this n umber of d ays."); | |||||
| 2923 | ErrorM essages.Ad d(MobileOf flineDaysS inceRecord LastModifi edZero, "N o records will be av ailable in the mobil e offline mode if th e value fo r number o f days is 0."); | |||||
| 2924 | ErrorM essages.Ad d(Increasi ngDaysWill ResetMobil eOfflineDa ta, "Incre asing the number of days will cause a re set of mob ile offlin e data and a resynch ronization with mobi le devices ."); | |||||
| 2925 | ErrorM essages.Ad d(Decreasi ngDaysWill DeleteOlde rData, "De creasing t he number of days wi ll delete mobile off line data older than the numbe r of days specified. "); | |||||
| 2926 | ErrorM essages.Ad d(InvalidD ataFilters ForUnowned Entities, "You can’t set the A ll Record or Other D ata filter s for unow ned entiti es."); | |||||
| 2927 | ErrorM essages.Ad d(InvalidD ataFilters ForBUOwned Entities, "You can’t set Recor ds Owned B y Me or Re cords Owne d By My Te am for bus iness unit -owned ent ities."); | |||||
| 2928 | ErrorM essages.Ad d(InvalidD ataFilters ForOrgOwne dEntities, "You can’ t set the Other Data filter fo r organiza tion-owned entities. "); | |||||
| 2929 | ErrorM essages.Ad d(InvalidC ustomDataD ownloadFil ters, "You can’t set custom do wnload fil ters becau se Record Distributi on Criteri a isn’t se t to Other Data Filt ers."); | |||||
| 2930 | ErrorM essages.Ad d(MOPIAsso ciationNam eCannotBeE mptyOrSpac e, "The Mo bile Offli ne Profile Item Asso ciation na me can’t b e a space or an empt y string." ); | |||||
| 2931 | ErrorM essages.Ad d(NoDefine dRelations hipsForMOP IAssociati on, "The P rofile Ite m Associat ion entity doesn’t h ave any de fined rela tionships. "); | |||||
| 2932 | ErrorM essages.Ad d(InvalidR elationshi pInMOPIAss ociation, "This rela tionship d oesn’t exi st with th e entity s elected in the paren t profile item."); | |||||
| 2933 | ErrorM essages.Ad d(CannotDe leteDefaul tProfile, "To delete this prof ile, you f irst need to set it so that it ’s no long er a defau lt mobile offline pr ofile."); | |||||
| 2934 | ErrorM essages.Ad d(CannotAs sociateInv alidEntity ToProfileI tem, "Inva lid object type code ."); | |||||
| 2935 | ErrorM essages.Ad d(CanAssoc iateOnlyMo bileOfflin eEnableEnt ityToProfi leItem, "T his entity needs to be enabled for mobil e offline. "); | |||||
| 2936 | ErrorM essages.Ad d(CanAssoc iateOnlyOn eEntityPer ProfileIte m, "You ca n only add one mobil e offline profile it em record per entity to a mobi le offline profile r ecord. "); | |||||
| 2937 | ErrorM essages.Ad d(ImportMo bileOfflin eProfileEr ror, "An e rror occur red while importing Mobile Off line Profi les."); | |||||
| 2938 | ErrorM essages.Ad d(SavedQue ryValidati onError, " You can’t publish pr ofile {0} because on e of its p rofile ite ms {1} has an entity {2} in th e saved qu ery {3}, w hich isn’t part of t his profil e."); | |||||
| 2939 | ErrorM essages.Ad d(ChangeTr ackingDisa bledForMob ileOffline Error, "Yo u can not disable ch ange track ing for th is entity since mobi le offline is alread y enabled. "); | |||||
| 2940 | ErrorM essages.Ad d(EnableMo bileOfflin eDisableCh angeTracki ngError, " You must e nable chan ge trackin g for this entity si nce mobile offline c lient is e nabled."); | |||||
| 2941 | ErrorM essages.Ad d(CannotDe leteUserPr ofile, "Yo u can’t de lete an ac tive mobil e offline profile. R emove all users from the profi le and try again."); | |||||
| 2942 | ErrorM essages.Ad d(CannotCh angeDaysSi nceRecordL astModifie d, "You ne ed to enab le this en tity for m obile offl ine before you can s et or chan ge the num ber of day s since th e record w as last mo dified."); | |||||
| 2943 | ErrorM essages.Ad d(CannotDi sableMobil eOfflineFl agForEntit y, "You ca nnot disab le Mobile Offline fl ag for thi s entity a s it is be ing used i n Mobile O ffline Pro files"); | |||||
| 2944 | ErrorM essages.Ad d(CannotAd dUserToMob ileOffline Profile, " You can’t add this u ser to thi s mobile o ffline pro file becau se the use r’s role i s either m issing or doesn’t ha ve the Dyn amics 365 for mobile privilege ."); | |||||
| 2945 | ErrorM essages.Ad d(MobileOf flineProfi leNameAlre adyExists, "A mobile offline p rofile wit h this nam e already exists. En ter a uniq ue name.") ; | |||||
| 2946 | ErrorM essages.Ad d(MobileOf flineProfi leItemName AlreadyExi sts, "A mo bile offli ne profile item with this name already e xists for this mobil e offline profile. E nter a uni que name." ); | |||||
| 2947 | ErrorM essages.Ad d(MobileOf flineProfi leNameCanN otBeNullOr Empty, "Th e mobile o ffline pro file name can’t be n ull or emp ty. Enter a name for this prof ile."); | |||||
| 2948 | ErrorM essages.Ad d(MobileOf flineProfi leItemName CanNotBeNu llOrEmpty, "The mobi le offline profile i tem name c an’t be nu ll or empt y. Enter a name for this profi le item.") ; | |||||
| 2949 | ErrorM essages.Ad d(CannotAd dIntersect EntityToMo bileOfflin eProfileIt em, "You c an’t add t he interse ct entity to the mob ile offlin e profile item becau se it’s ad ded automa tically wh en its par ent entiti es are add ed to the profile.") ; | |||||
| 2950 | ErrorM essages.Ad d(CannotAd dBusinessD ataLocaliz edLabelEnt ityToMobil eOfflinePr ofileItem, "You can’ t add the BusinessDa taLocalize dLabel ent ity to the mobile of fline prof ile item b ecause it’ s added au tomaticall y when the Product e ntity is a dded to th e profile. "); | |||||
| 2951 | ErrorM essages.Ad d(CannotAd dActivityP artyEntity ToMobileOf flineProfi leItem, "Y ou can’t a dd the Act ivityParty entity to the mobil e offline profile it em because it’s adde d automati cally when an activi ty entity is added t o the prof ile."); | |||||
| 2952 | ErrorM essages.Ad d(InvalidA ssociatedS avedQuery, "Selected saved que ry does no t belong t o associat ed entity of the mob ile offlin e profile item."); | |||||
| 2953 | ErrorM essages.Ad d(CannotDi sableMobil eOfflineFl agForImpor tEntity, " You cannot disable M obile Offl ine flag f or {0} ent ity as it is being u sed in Mob ile Offlin e Profiles "); | |||||
| 2954 | ErrorM essages.Ad d(CloneTit leTooLong, "A valida tion error occurred. The lengt h of the N ame attrib ute of the mobileoff lineprofil e entity e xceeded th e maximum allowed le ngth of 20 0."); | |||||
| 2955 | ErrorM essages.Ad d(InvalidM obileOffli neFiltersF etchXml, " XML Format mismatch. Check for the corre ctness of XML."); | |||||
| 2956 | ErrorM essages.Ad d(MaxCondi tionsMobil eOfflineFi lters, "Yo u can only define 3 Mobile off line Org filter for each enti ty."); | |||||
| 2957 | ErrorM essages.Ad d(Unsuppor tedAttribu teOrOperat orMobileOf flineFilte rs, "Attri bute or Op erator “{0 }” is not supported for Mobile Offline O rg Filter. "); | |||||
| 2958 | ErrorM essages.Ad d(Maxprofi leItemFilt erConditio nsAllowed, "You can only defin e 6 Mobile offline e ntity filt er conditi ons for ea ch entity. "); | |||||
| 2959 | ErrorM essages.Ad d(MobileOf flineRuleE nhancement FeatureNot Availaible , "This fe ature is n ot enabled for your organizati on. Please contact y our system administr ator for h elp."); | |||||
| 2960 | ErrorM essages.Ad d(EmptyEnt ityFilterX ml, "The F etchXML is missing." ); | |||||
| 2961 | ErrorM essages.Ad d(QueryFil terConditi onAttribut eNotPresen tInExpress ionEntity, "The quer y referenc es a field that does not exist in Dynami cs 365: \" {0}\""); | |||||
| 2962 | ErrorM essages.Ad d(LinkedEn titiesAreN otAllowed, "Linked E ntities Ar e Not Allo wed in the filter"); | |||||
| 2963 | ErrorM essages.Ad d(Unsuppor tedOperato rForAttrib uteInProfi leItemEnti tyFilters, "Operator {0} is no t supporte d with att ribute {1} in the fi lter query option.") ; | |||||
| 2964 | ErrorM essages.Ad d(InvalidO rEmptyRela tionshipId , "The Rel ationshipI d of Mobil e profile item assoc iation is invalid or empty."); | |||||
| 2965 | ErrorM essages.Ad d(Unsuppor tedAttribu teInInProf ileItemEnt ityFilters , "Attribu te {0} is not suppor ted in the filter qu ery option ."); | |||||
| 2966 | ErrorM essages.Ad d(OfficeGr oupsFeatur eNotEnable d, "Office Groups fe ature is n ot enabled ."); | |||||
| 2967 | ErrorM essages.Ad d(OfficeGr oupsExcept ionRetriev eSetting, "Office Gr oups Excep tion occur ed in Retr ieveOffice GroupsSett ing: {0}." ); | |||||
| 2968 | ErrorM essages.Ad d(OfficeGr oupsInvali dSettingTy pe, "Inval id setting type for Office Gro ups featur e: {0}."); | |||||
| 2969 | ErrorM essages.Ad d(OfficeGr oupsNotSup portedCall , "Office Groups fea ture attem pted an un supported call."); | |||||
| 2970 | ErrorM essages.Ad d(OfficeGr oupsNoAuth ServersFou nd, "Offic e Groups f eature cou ld not fin d any auth orization servers.") ; | |||||
| 2971 | ErrorM essages.Ad d(ProfileR uleMissing RuleCriter ia, "You c an't activ ate this r ule until you resolv e any miss ing rule c riteria in formation in the rul e items.") ; | |||||
| 2972 | ErrorM essages.Ad d(ProfileR uleWorkflo wAuthorGen ericError, "An error occurred while auth oring work flow. Plea se fix wor kflow defi nition and try again ."); | |||||
| 2973 | ErrorM essages.Ad d(ProfileR uleActivat eDeactivat eByNonOwne r, "This P rofile Rul e cannot b e activate d or deact ivated by someone wh o is not i ts owner." ); | |||||
| 2974 | ErrorM essages.Ad d(ProfileR ulePublish edByOwner, "Your rul e can't be activated until the current a ctive rule is deacti vated. The active ru le can onl y be deact ivated by the rule o wner."); | |||||
| 2975 | ErrorM essages.Ad d(CannotDe leteGuestP rofile, "Y ou can't d elete this guest cha nnel acces s profile. "); | |||||
| 2976 | ErrorM essages.Ad d(CannotDe activateGu estProfile , "You can 't set thi s guest ch annel acce ss profile as inacti ve."); | |||||
| 2977 | ErrorM essages.Ad d(CannotDe leteProfil eWithProfi leRules, " You can't delete thi s channel access pro file becau se it's be ing used b y one or m ore channe l access p rofile rul es. Remove this prof ile from t he channel access pr ofile rule s, and the n try agai n."); | |||||
| 2978 | ErrorM essages.Ad d(CannotDe leteProfil eWithExter nalPartyIt em, "You c an't delet e this cha nnel acces s profile because it 's associa ted to an external p arty item. Remove th e associat ion, and t hen try ag ain."); | |||||
| 2979 | ErrorM essages.Ad d(CannotDe leteChanne lAccessPro fileRule, "You can't delete an active ch annel acce ss profile rule. Dea ctivate th e rule and then dele te it."); | |||||
| 2980 | ErrorM essages.Ad d(Insuffic ientRetrie vePrivileg e, "Extern al Party d on't have sufficient privilege to retrie ve record. "); | |||||
| 2981 | ErrorM essages.Ad d(Insuffic ientCreate Privilege, "External Party don 't have su fficient p rivilege t o create n ew record with given parameter s."); | |||||
| 2982 | ErrorM essages.Ad d(Insuffic ientUpdate Privilege, "External Party don 't have su fficient p rivilege t o update r ecord."); | |||||
| 2983 | ErrorM essages.Ad d(OwnerAtt ributeMiss ing, "Owne r Attribut e is not p resent in the reques t."); | |||||
| 2984 | ErrorM essages.Ad d(InvalidO rganizatio nSettings, "Organiza tion Setti ngs are no t properly configure d for Exte rnal Party ."); | |||||
| 2985 | ErrorM essages.Ad d(InvalidR equestPara meters, "R equest par ameters ar e not vali d to serve r External Party req uest."); | |||||
| 2986 | ErrorM essages.Ad d(InvalidE xternalPar tyConfigur ation, "Mu ltiple Ext ernal Part y Items ar e present for reques t paramete rs."); | |||||
| 2987 | ErrorM essages.Ad d(InvalidE xternalPar tyParent, "External Party has invalid pa rent attri bute."); | |||||
| 2988 | ErrorM essages.Ad d(InvalidE xternalPar tyOperatio n, "Extern al Party i s not allo wed."); | |||||
| 2989 | ErrorM essages.Ad d(CannotCr eateExtern alPartyWit hSameCorre lationKey, "An exter nal party record alr eady exist s with the same corr elation ke y value.") ; | |||||
| 2990 | ErrorM essages.Ad d(FeatureN otEnabled, "This ope ration cou ldn't be c ompleted b ecause thi s feature isn’t enab led for yo ur organiz ation."); | |||||
| 2991 | ErrorM essages.Ad d(CannotUp dateExtern alPartyWit hSameCorre lationKey, "An exter nal party record alr eady exist s with the same corr elation ke y value.") ; | |||||
| 2992 | ErrorM essages.Ad d(ChannelA ccessProfi leRuleAlre adyInDraft State, "Yo u can't de activate a draft cha nnel acces s profile rule."); | |||||
| 2993 | ErrorM essages.Ad d(CannotAc tOnBehalfO fExternalP arty, "Use r does not have the privilege to act on behalf of External P arty."); | |||||
| 2994 | ErrorM essages.Ad d(CannotAs sociateExt ernalParty Item, "You can’t ass ociate mor e than one external party item with an e ntity reco rd that ha s been ena bled as an external party."); | |||||
| 2995 | ErrorM essages.Ad d(Duplicat ePrivilege InRolecont rol, "The Channel Ac cess Profi le privile ge array c ontains du plicate pr ivilege re ferences." ); | |||||
| 2996 | ErrorM essages.Ad d(ErrorsIn ProfileRul eWorkflowA ctivation, "You can' t activate this prof ile rule. You don't have the r equired pe rmissions on the rec ord types that are r eferenced by this pr ofile rule ."); | |||||
| 2997 | ErrorM essages.Ad d(CantSetI sGuestProf ile, "You can’t set or change the value of the IsG uestProfil e field be cause it’s for inter nal use on ly."); | |||||
| 2998 | ErrorM essages.Ad d(EntityIs NotEnabled ForExterna lParty, "Y ou can't c reate/upda te an exte rnal party item asso ciated to an entity that is no t enabled for extern al party." ); | |||||
| 2999 | ErrorM essages.Ad d(MailApp_ Unsupporte dDevice, " Your devic e is curre ntly unsup ported."); | |||||
| 3000 | ErrorM essages.Ad d(MailApp_ Unsupporte dBrowser, "Your brow ser is cur rently uns upported." ); | |||||
| 3001 | ErrorM essages.Ad d(MailApp_ MailboxNot Configured WithServer SideSync, "We’re una ble to loa d this app because y our email mailbox is n't config ured with Microsoft Dynamics 3 65 server- side synch ronization for incom ing email. Contact y our system administr ator to se t up serve r-side syn chronizati on for inc oming emai l."); | |||||
| 3002 | ErrorM essages.Ad d(MailApp_ ReadWriteA ccessRequi red, "You only have administra tive acces s to Micro soft Dynam ics 365. T o use this app, you must have read-write access.") ; | |||||
| 3003 | ErrorM essages.Ad d(MailApp_ FeatureCon trolBitDis abled, "Ac cess to th e app hasn ’t been en abled for this Dynam ics 365 or ganization . Contact your syste m administ rator to e nable acce ss to this app."); | |||||
| 3004 | ErrorM essages.Ad d(MailApp_ Permission ToUseCrmFo rOfficeApp sRequired, "You don’ t have per mission to access th is app. Co ntact your system ad ministrato r to add t he \"Use D ynamics 36 5 for Offi ce Apps\" privilege to your us er role.") ; | |||||
| 3005 | ErrorM essages.Ad d(MailApp_ TrackingIs NotSupport ed, "This version of Outlook d oesn't sup port track ing new em ails."); | |||||
| 3006 | ErrorM essages.Ad d(MailApp_ MobileBrow serIsNotSu pported, " The mobile browser v ersion of Outlook is currently unsupport ed. Please try again from the Outlook de sktop appl ication.") ; | |||||
| 3007 | ErrorM essages.Ad d(MailApp_ DifferentS ecurityZon eError, "T ry adding the follow ing URLs t o your Tru sted Sites :{0} {1} { 2}"); | |||||
| 3008 | ErrorM essages.Ad d(MailApp_ EmailAddre ssMismatch , "It look s like you 're trying to access the CRM A pp for Out look from an email a ddress tha t we don't recognize . Either s ign out an d sign in with the e mail addre ss you use for Dynam ics CRM or have your system ad ministrato r update y our email Mailbox se ttings to reflect th is email a ddress."); | |||||
| 3009 | ErrorM essages.Ad d(MailApp_ UserMailbo xInactive, "We can't open the app becaus e the user 's mailbox is inacti ve."); | |||||
| 3010 | ErrorM essages.Ad d(MailApp_ MailboxNot Configured WithServer SideSyncFo rACT, "We’ re unable to load th is app bec ause your email mail box isn't configured with Micr osoft Dyna mics 365 s erver-side synchroni zation for appointme nts. Conta ct your sy stem admin istrator t o set up s erver-side synchroni zation for appointme nts."); | |||||
| 3011 | ErrorM essages.Ad d(MailApp_ Appointmen tFeatureNo tEnabled, "Access to the app h asn’t been enabled f or Appoint ments for this Micro soft Dynam ics 365 or ganization . Contact your syste m administ rator to e nable acce ss for app ointments. "); | |||||
| 3012 | ErrorM essages.Ad d(Unsuppor tedImportC omponent, "Sorry, yo ur import failed bec ause the { 0} compone nt isn’t s upported f or import and export ."); | |||||
| 3013 | ErrorM essages.Ad d(InvalidL ocaleIdFor KnowledgeA rticle, "L anguage wi th Locale ID {0}, do es not exi st"); | |||||
| 3014 | ErrorM essages.Ad d(PublishA rticle_Tra nslationWi thMoreThan OneApprove dVersion, "There is more than one approv ed version of the {0 } language . You can only publi sh one ver sion of ea ch languag e."); | |||||
| 3015 | ErrorM essages.Ad d(Translat eArticle_O nlyPrimary ArticlesCa nBeTransla ted, "This article i s a transl ation of t he origina l article. It cannot be transl ated again . If you w ant anothe r translat ion, start with the original a rticle rat her than t his one.") ; | |||||
| 3016 | ErrorM essages.Ad d(Translat eArticle_T ranslation CanNotBeCr eatedForTh eSameLangu age, "A tr anslation for this l anguage al ready exis ts for thi s version of the art icle"); | |||||
| 3017 | ErrorM essages.Ad d(ColorStr ipAttribut esExceeded , "Color S trip secti on cannot have more than 1 att ribute"); | |||||
| 3018 | ErrorM essages.Ad d(Attribut esExceeded , "Attribu tes cannot be more t han 4"); | |||||
| 3019 | ErrorM essages.Ad d(ColorStr ipAttribut esInvalid, "Color St rip sectio n can only have attr ibutes of type Two O ptions, Op tion Set a nd Status Reason"); | |||||
| 3020 | ErrorM essages.Ad d(InvalidC lassIdInRe ferencePan elSection, "Referenc e panel se ction can have only reference panel sub- grid and r eference p anel quick view form controls. Found con trol with invalid cl assid {0}. "); | |||||
| 3021 | ErrorM essages.Ad d(InvalidN umberOfRef erencePane lSections, "MainInte ractionCen tric form can have o nly 1 refe rence pane l section. Found {0} ."); | |||||
| 3022 | ErrorM essages.Ad d(InvalidN umberOfCar dFormSecti ons, "Numb er of sect ions in a card form must be 4. Found {0} ."); | |||||
| 3023 | ErrorM essages.Ad d(EmptyCom mandOrEnti ty, "Comma nd or enti ty name ca nnot be em pty."); | |||||
| 3024 | ErrorM essages.Ad d(CommandN otSupporte d, "Comman d is not s upported i n offline mode."); | |||||
| 3025 | ErrorM essages.Ad d(Operatio nFailedTry Again, "Op eration co uld not be performed at the mo ment. Plea se try aga in."); | |||||
| 3026 | ErrorM essages.Ad d(NoUserPr ivilege, " You do not have suff icient per missions." ); | |||||
| 3027 | ErrorM essages.Ad d(XamlNotF ound, "Thi s feature is not ava ilable in offline mo de."); | |||||
| 3028 | ErrorM essages.Ad d(CustomCo ntrolsImpo rtError, " An error o ccurred wh ile import ing Custom Controls. Try impor ting this solution a gain."); | |||||
| 3029 | ErrorM essages.Ad d(Manifest XsdValidat ionError, "The impor t manifest file is i nvalid. XS D validati on failed with the f ollowing e rror: '{0} '.\""); | |||||
| 3030 | ErrorM essages.Ad d(CustomCo ntrolsDepe ndentPrope rtyConfigu ration, "P roperty \" {0}\" can only be co nfigured a fter prope rty \"{1}\ " has been assigned a value.") ; | |||||
| 3031 | ErrorM essages.Ad d(CustomCo ntrolsProp ertySetCon figuration , "Propert y \"{0}\" can only b e configur ed after C orrespondi ng DataSet \"{1}\" v iew has be en assigne d a value. "); | |||||
| 3032 | ErrorM essages.Ad d(ProductR ecommendat ionsFeatur eNotEnable d, "Produc t Recommen dations fe ature is n ot enabled ."); | |||||
| 3033 | ErrorM essages.Ad d(Recommen dationMode lActiveVer sionNotSet , "The mod el version used is e mpty. To a ctivate th e model, s pecify the model ver sion."); | |||||
| 3034 | ErrorM essages.Ad d(Recommen dationMode lActiveVer sionInvali dStatus, " The model version us ed must be successfu lly built before the model can be activa ted."); | |||||
| 3035 | ErrorM essages.Ad d(AzureRec ommendatio nModelNotE xist, "The Azure rec ommendatio n model do esn’t exis t."); | |||||
| 3036 | ErrorM essages.Ad d(AzureRec ommendatio nModelBuil dNotExist, "The Azur e recommen dation mod el build c orrespondi ng to the used model version d oesn’t exi st."); | |||||
| 3037 | ErrorM essages.Ad d(Recommen dationsUna vailable, "Azure Mac hine Learn ing produc t recommen dations ar e temporar ily unavai lable. Onl y catalog recommenda tions are available. "); | |||||
| 3038 | ErrorM essages.Ad d(Recommen dationMode lBuildConn ectionMust BeActive, "The Azure Machine L earning re commendati on service connectio n must be activated before bui lding a re commendati on model. Please act ivate the recommenda tion servi ce connect ion and tr y again.") ; | |||||
| 3039 | ErrorM essages.Ad d(Recommen dationMode lActivateC onnectionM ustBeActiv e, "The Az ure Machin e Learning recommend ation serv ice connec tion must be activat ed before the model can be act ivated. Pl ease activ ate the re commendati on service connectio n and try again."); | |||||
| 3040 | ErrorM essages.Ad d(Recommen dationMode lExpired, "The recom mendation model has expired. C hange the Valid Unti l date and try to ac tivate the model aga in."); | |||||
| 3041 | ErrorM essages.Ad d(Recommen dationMode lMappingDu plicateRec ord, "The recommenda tion model mapping v alues for entity, ma pping type and versi on must be unique.") ; | |||||
| 3042 | ErrorM essages.Ad d(Recommen dationMode lMappingRe adOnly, "Y ou can't m odify a Re commendati on entity if it has a correspo nding Bask et entity. "); | |||||
| 3043 | ErrorM essages.Ad d(CannotDe leteDueToB asketEntit yAssociati on, "You c an't delet e a Recomm endation e ntity if i t has a co rrespondin g Basket e ntity."); | |||||
| 3044 | ErrorM essages.Ad d(Recommen dationMode lVersionAc tive, "The Recommend ationModel Version i s selected as the ac tive versi on on a mo del and ca nnot be de leted."); | |||||
| 3045 | ErrorM essages.Ad d(Recommen dationMode lVersionBu ildInProgr ess, "A wo rkflow to build a mo del is alr eady in pr ogress. Yo u can't st art anothe r build wo rkflow unt il the cur rent workf low has fi nished."); | |||||
| 3046 | ErrorM essages.Ad d(Recommen dationMode lVersionDu plicateNam e, "A mode l version with the s ame name a lready exi sts. Speci fy a diffe rent name. "); | |||||
| 3047 | ErrorM essages.Ad d(AzureSer viceConnec tionInvali dUri, "Pro vide a val id service URL."); | |||||
| 3048 | ErrorM essages.Ad d(Recommen dationAzur eConnectio nFailed, " Failed to connect to the Azure Recommend ations ser vice. Chec k that the service U RL and the Azure acc ount key a re valid a nd the ser vice subsc ription is active.") ; | |||||
| 3049 | ErrorM essages.Ad d(TextAnal yticsAzure TestConnec tionFailed , "Failed to connect to the Az ure Text A nalytics s ervice. Ch eck that t he service URL and t he Azure a ccount key are valid and the s ervice sub scription is active. "); | |||||
| 3050 | ErrorM essages.Ad d(Recommen dationAzur eConnectio nCascadeAc tivateFail ed, "One o r more rec ommendatio n models c ouldn't be activated . Try acti vating the existing recommenda tion model s separate ly from th e Azure se rvice conn ection."); | |||||
| 3051 | ErrorM essages.Ad d(TextAnal yticsAzure Connection CascadeAct ivateFaile d, "One or more text analytics models co uldn't be activated. Try activ ating the existing t ext analyt ics models separatel y from the Azure ser vice conne ction."); | |||||
| 3052 | ErrorM essages.Ad d(AzureOpe rationResp onseTimedO ut, "An Az ure operat ion reques t did not return a r esponse wi thin state d timeout period. Re try the op eration or increase timeout pr ovided for the opera tion."); | |||||
| 3053 | ErrorM essages.Ad d(AzureSer viceConnec tionCascad eDeleteFai led, "One or more mo dels use t he connect ion. Delet e all mode ls using t his connec tion, and try deleti ng the con nection ag ain."); | |||||
| 3054 | ErrorM essages.Ad d(TextAnal yticsAzure Connection Failed, "U nable to c onnect to Text Analy tics API." ); | |||||
| 3055 | ErrorM essages.Ad d(TopicMod elSchedule BuildSetti ngsEmpty, "Activatio n requires setting t he build s chedule. S pecify the schedule build sett ings befor e activati on."); | |||||
| 3056 | ErrorM essages.Ad d(TextAnal yticsFeatu reNotEnabl ed, "The A zure Text Analytics feature is n’t activa ted. The s ystem admi nistrator must activ ate this f eature and set up th e required configura tion."); | |||||
| 3057 | ErrorM essages.Ad d(TopicMod elConfigur ationUsedE mpty, "Act ivation re quires spe cifying th e build co nfiguratio n. Specify the confi guration u sed for th e build be fore activ ation."); | |||||
| 3058 | ErrorM essages.Ad d(TopicMod elTestWith outConfigu ration, "S pecify the configura tion used for the bu ild."); | |||||
| 3059 | ErrorM essages.Ad d(TextAnal yticsAzure UnableToCo nnectWithB uild, "Dyn amics 365 failed to connect wi th the Azu re text an alytics se rvice. Ver ify that t he service URI and a ccount key are valid , and the Azure subs cription i s active." ); | |||||
| 3060 | ErrorM essages.Ad d(TopicMod elActivate WithInvali dConfigura tion, "The configura tion used for the bu ild is inv alid. Topi c determin ation fiel ds are req uired for the config uration us ed for top ic analysi s."); | |||||
| 3061 | ErrorM essages.Ad d(TextAnal yticsModel ActivateCo nnectionMu stBeActive , "The Azu re Machine Learning Text Analy tics servi ce connect ion must b e activate d before t he model c an be acti vated. Ple ase activa te the tex t analytic s service connection and try a gain."); | |||||
| 3062 | ErrorM essages.Ad d(TextAnal yticsMappi ngUsedForA ctiveConfi guration, "This text analytics entity ma pping is u sed for an active co nfiguratio n. It can’ t be modif ied or del eted while it is use d by an ac tive confi g."); | |||||
| 3063 | ErrorM essages.Ad d(TopicMod elConfigur ationAssoc iatedModel AlreadyAct ive, "Cann ot update or delete topic mode l configur ation beca use it is associated with an a ctive topi c model.") ; | |||||
| 3064 | ErrorM essages.Ad d(Knowledg eSearchAct iveModelsA lreadyExis t, "An act ive config uration al ready exis ts for sou rce entity {0}. Only one activ e configur ation is a llowed per source en tity."); | |||||
| 3065 | ErrorM essages.Ad d(TextAnal yticsAPIAc tiveConfig urationDoe sNotExist, "Active c onfigurati on does no t exist fo r entity." ); | |||||
| 3066 | ErrorM essages.Ad d(TextAnal yticsAPIAl lowedOnlyF orEnglishL anguage, " Text Analy tics featu re is avai lable for organizati ons with b ase langua ge as Engl ish."); | |||||
| 3067 | ErrorM essages.Ad d(TextAnal yticsAPIAz ureUnableT oConnectWi thBuild, " Dynamics 3 65 failed to connect with the Azure text analytics service. Verify tha t the serv ice URI an d account key are va lid, and t he Azure s ubscriptio n is activ e."); | |||||
| 3068 | ErrorM essages.Ad d(TextAnal yticsAzure SchedulerE rror, "Dyn amics 365 failed to connect wi th the Azu re text an alytics se rvice. Ple ase try ag ain and if the probl em persist s contact your syste m administ rator."); | |||||
| 3069 | ErrorM essages.Ad d(TextAnal yticsMaxLi mitForTopi cModelReac hed, "Maxi mum number of topic models all owed for y our organi zation has been reac hed."); | |||||
| 3070 | ErrorM essages.Ad d(TextAnal yticsAPIAc tiveSimila rityConfig urationDoe sNotExist, "No activ e similari ty rule ex ists. The system adm inistrator must set up a simil arity rule configura tion."); | |||||
| 3071 | ErrorM essages.Ad d(Advanced Similarity AzureSearc hUnexpecte dError, "A n unexpect ed error o ccurred ex ecuting th e search. Try again later."); | |||||
| 3072 | ErrorM essages.Ad d(TaskFlow NameIsNotU nique, "A task flow with the s pecified n ame alread y exists. Please sp ecify a un ique name. "); | |||||
| 3073 | ErrorM essages.Ad d(TaskFlow InvalidCha ractersInN ame, "The name field can only contain al phanumeric character s."); | |||||
| 3074 | ErrorM essages.Ad d(TaskFlow EmptyName, "The name field can not be emp ty. Please enter a n ame."); | |||||
| 3075 | ErrorM essages.Ad d(TaskFlow FormXmlNot Found, "Co uld not fi nd the sys tem form { 0} for Tas k flow {1} ."); | |||||
| 3076 | ErrorM essages.Ad d(TaskFlow PageMissin gFormXmlTa b, "Could not find t he pages { 0} for Tas k flow {1} ."); | |||||
| 3077 | ErrorM essages.Ad d(TaskFlow Unsupporte dEntities, "The foll owing enti ties are n ot enabled for Task flows: {0} ."); | |||||
| 3078 | ErrorM essages.Ad d(TaskFlow EntityRela tionshipIs NotValid, "Invalid r elationshi p type: {0 }."); | |||||
| 3079 | ErrorM essages.Ad d(TaskFlow EntityAttr ibuteIsNot Valid, "In valid attr ibute type : {0}.{1}. "); | |||||
| 3080 | ErrorM essages.Ad d(TaskFlow MaxNumberP ages, "The task flow has excee ded the ma ximum numb er of page s allowed ({0}). To continue, you need t o remove s ome pages. "); | |||||
| 3081 | ErrorM essages.Ad d(TaskFlow MaxNumberC ontrols, " The task f low has ex ceeded the maximum n umber of c ontrols al lowed ({0} ). To cont inue, you need to re move some controls." ); | |||||
| 3082 | ErrorM essages.Ad d(TaskFlow NotFound, "A Task Fl ow which i s trying t o launch i s not avai lable on t his device . You may not have p ermission to access it or it m ay not be available on your or ganization . Please c ontact you r system a dministrat or."); | |||||
| 3083 | ErrorM essages.Ad d(TaskFlow NotValid, "Task flow definitio n is inval id."); | |||||
| 3084 | ErrorM essages.Ad d(Feedback FeatureNot Enabled, " Feedback f eature is not enable d."); | |||||
| 3085 | ErrorM essages.Ad d(Feedback MinMaxRequ ired, "The minimum a nd maximum values ar e required ."); | |||||
| 3086 | ErrorM essages.Ad d(Feedback RatingValu e, "The ra ting must be a value from {0} through {1 }."); | |||||
| 3087 | ErrorM essages.Ad d(Feedback MinRatingV alue, "The submitted minimum r ating valu e {0} must be less t han the su bmitted ma ximum rati ng value { 1}."); | |||||
| 3088 | ErrorM essages.Ad d(DelveAct ionHubDisa bledError, "Delve ac tion hub f eature is not enable d."); | |||||
| 3089 | ErrorM essages.Ad d(ErrorGen eratingAct ionHub, "A n error ha s occurred . Please t ry again l ater."); | |||||
| 3090 | ErrorM essages.Ad d(DelveAct ionHubAttr ibuteMissi ngInRespon seExceptio n, "Attrib ute not pr esent in e xchange oD ata respon se."); | |||||
| 3091 | ErrorM essages.Ad d(DelveAct ionHubInva lidStateCo deExceptio n, "Invali d state co de passed in express ion."); | |||||
| 3092 | ErrorM essages.Ad d(DelveAct ionHubInva lidRespons eFormatExc eption, "I nvalid res ponse form at."); | |||||
| 3093 | ErrorM essages.Ad d(DelveAct ionHubResp onseRetiev alFailureE xception, "Error whi le fetchin g actions from Excha nge."); | |||||
| 3094 | ErrorM essages.Ad d(EvoStsAu thorizatio nServerRec ordCreatio nFailureEx ception, " Database o peration f ailed whil e creating authoriza tion recor d for Evo STS."); | |||||
| 3095 | ErrorM essages.Ad d(DelveAct ionHubAuth orizationF ailureExce ption, "Yo u don’t ha ve the pro per Office 365 licen se to view actions. Please con tact your system adm inistrator ."); | |||||
| 3096 | ErrorM essages.Ad d(DelveAct ionHubS2SS etupFailur eException , "Server to Server Authentica tion with Exchange f or Delve A ction Hub is not set up."); | |||||
| 3097 | ErrorM essages.Ad d(ActionCa rdDisabled Error, "Ac tion Card feature is not enabl ed."); | |||||
| 3098 | ErrorM essages.Ad d(Exchange CardAttrib uteMissing InResponse Exception, "Attribut e not pres ent in exc hange oDat a response ."); | |||||
| 3099 | ErrorM essages.Ad d(ActionCa rdInvalidS tateCodeEx ception, " Invalid st ate code p assed in e xpression. "); | |||||
| 3100 | ErrorM essages.Ad d(Exchange CardInvali dResponseF ormatExcep tion, "Inv alid respo nse format ."); | |||||
| 3101 | ErrorM essages.Ad d(Exchange CardS2SSet upFailureE xception, "Server to Server Au thenticati on with Ex change for Action Ca rd is not set up."); | |||||
| 3102 | ErrorM essages.Ad d(Document Management IsDisabled OnEntity, "You must enable doc ument mana gement for this Enti ty in orde r to enabl e Document Recommend ations."); | |||||
| 3103 | ErrorM essages.Ad d(Regardin gObjectVal uesRetriev alFailure, "Failed t o retrieve regarding object va lues."); | |||||
| 3104 | ErrorM essages.Ad d(RelatedR ecordsFail ure, "Fail ed to retr ieve relat ed records ."); | |||||
| 3105 | ErrorM essages.Ad d(SharePoi ntSiteNotC onfigured, "SharePoi ntSite is not config ured, it n eed to be configured ."); | |||||
| 3106 | ErrorM essages.Ad d(Recommen dedDocumen tsRetrieva lFailure, "Unable to retrieve document s uggestions from the document s ource."); | |||||
| 3107 | ErrorM essages.Ad d(Similari tyRuleDisa bled, "No similarity rule acti ve for thi s entity." ); | |||||
| 3108 | ErrorM essages.Ad d(SharePoi ntS2SIsDis abled, "Sh arePoint s erver-base d SharePoi nt integra tion not e nabled."); | |||||
| 3109 | ErrorM essages.Ad d(Similari tyRuleFCBO ff, "Simil arity rule s not enab led."); | |||||
| 3110 | ErrorM essages.Ad d(Document Recommenda tionsFCBOf f, "The do cument sug gestions f eature is not enable d."); | |||||
| 3111 | ErrorM essages.Ad d(MaxProdu ctsAllowed , "You can not create more than {0} produ cts."); | |||||
| 3112 | ErrorM essages.Ad d(NoFilesS elected, " No documen ts are sel ected to c opy. Pleas e select a document and try ag ain."); | |||||
| 3113 | ErrorM essages.Ad d(Destinat ionFolderN otExists, "Unable to copy the documents. The desti nation doc ument loca tion no lo nger exist s."); | |||||
| 3114 | ErrorM essages.Ad d(NoWriteP ermission, "You do n ot have Wr ite permis sions to c opy the do cuments.") ; | |||||
| 3115 | ErrorM essages.Ad d(Connecti onTimeOut, "Unable t o copy the documents because t he network connectio n timed ou t. Please try again later or contact yo ur system administra tor."); | |||||
| 3116 | ErrorM essages.Ad d(Selected FileNotFou nd, "Unabl e to copy the docume nts. The s ource file no longer exists.") ; | |||||
| 3117 | ErrorM essages.Ad d(FileSize Exceeded, "Unable to copy the documents. The selec ted file e xceeds the maximium size limit of 128 MB ."); | |||||
| 3118 | ErrorM essages.Ad d(CopyGene ricError, "An error has occurr ed while c opying fil es. Please try again later. If the probl em persist s, contact your syst em adminis trator."); | |||||
| 3119 | ErrorM essages.Ad d(Recommen dedDocumen tsRetrieva lFailureWh enSPSiteNo tConfigure d, "Unable to retrie ve documen t suggesti ons from t he documen t source." ); | |||||
| 3120 | ErrorM essages.Ad d(PluginSe cureStoreK eyVaultCli ent, "Unab le to init ialize Key VaultClien tProvider under Sand box Worker Process"); | |||||
| 3121 | ErrorM essages.Ad d(PluginSe cureStoreK eyVaultCli entGetSecr et, "Unabl e to GetSe cret from KeyVault") ; | |||||
| 3122 | ErrorM essages.Ad d(PluginSe cureStoreK eyVaultCli entSetSecr et, "Unabl e to SetSe cret to Ke yVault"); | |||||
| 3123 | ErrorM essages.Ad d(PluginSe cureStoreK eyVaultCli entDecrypt , "Unable to Decrypt using Key Vault"); | |||||
| 3124 | ErrorM essages.Ad d(PluginSe cureStoreK eyVaultCli entEncrypt , "Unable to Encrypt using Key Vault"); | |||||
| 3125 | ErrorM essages.Ad d(PluginSe cureStoreA dalAcquire Token, "Un able to Ac quireToken for resou rce"); | |||||
| 3126 | ErrorM essages.Ad d(PluginSe cureStoreT PSKeyVault Unconfigur ed, "KeyVa ultURI was not confi gured for an Assembl y in TPS") ; | |||||
| 3127 | ErrorM essages.Ad d(PluginSe cureStoreT PSAssembly NotRegiste red, "Asse mbly is no t register ed in TPS" ); | |||||
| 3128 | ErrorM essages.Ad d(PluginSe cureStoreS 2SMissing, "S2S Cred entials mi ssing"); | |||||
| 3129 | ErrorM essages.Ad d(PluginSe cureStoreT PSClient, "Unable to create TP S Client") ; | |||||
| 3130 | ErrorM essages.Ad d(PluginSe cureStoreL ocalConfig StoreGetDa ta, "Unabl e to get d ata from L ocalConfig Store"); | |||||
| 3131 | ErrorM essages.Ad d(PluginSe cureStoreL ocalConfig StoreSetDa ta, "Unabl e to set d ata to Loc alConfigSt ore"); | |||||
| 3132 | ErrorM essages.Ad d(PluginSe cureStoreK eyVaultSer viceProvid erGetData, "Missing AppId / Se crets in K eyVault"); | |||||
| 3133 | ErrorM essages.Ad d(PluginSe cureStoreK eyVaultSer viceCertFo rmat, "Cer tificate n ot stored as a Base6 4String in KeyVault" ); | |||||
| 3134 | ErrorM essages.Ad d(PluginSe cureStoreN oFullySign ed, "Assem bly not fu lly signed "); | |||||
| 3135 | ErrorM essages.Ad d(InvalidP rocessIdOp eration, " Invalid op eration. P rocess ID cannot be modified." ); | |||||
| 3136 | ErrorM essages.Ad d(InvalidC hangeProce ss, "Inval id change process st atus reque st. Curren t process status is {0}, which cannot tr ansition t o {1}."); | |||||
| 3137 | ErrorM essages.Ad d(InvalidS tageTransi tion, "Inv alid stage transitio n. Transit ion to sta ge {0} is not in the process a ctive path ."); | |||||
| 3138 | ErrorM essages.Ad d(InvalidC rossEntity Operation, "Invalid cross-enti ty stage t ransition. Target en tity must be specifi ed."); | |||||
| 3139 | ErrorM essages.Ad d(InvalidC rossEntity TargetOper ation, "In valid cros s-entity s tage trans ition. Spe cified tar get must m atch {0}." ); | |||||
| 3140 | ErrorM essages.Ad d(CrossEnt ityRelatio nshipInval idOperatio n, "Invali d cross-en tity stage transitio n. Specifi ed relatio nship cann ot be modi fied."); | |||||
| 3141 | ErrorM essages.Ad d(InvalidT raversedPa th, "Inval id travers ed path.") ; | |||||
| 3142 | ErrorM essages.Ad d(AutoData CaptureDis abledError , "Auto ca pture feat ure is not enabled." ); | |||||
| 3143 | ErrorM essages.Ad d(AutoData CaptureAut horization FailureExc eption, "Y ou don’t h ave the pr oper Offic e 365 lice nse to get untracked emails. P lease cont act your s ystem admi nistrator. "); | |||||
| 3144 | ErrorM essages.Ad d(AutoData CaptureRes ponseRetri evalFailur eException , "Error w hile fetch ing untrac ked emails from Exch ange."); | |||||
| 3145 | ErrorM essages.Ad d(Provisio ningNotCom pleted, "T o enable a uto captur e, you nee d to set u p Cortana Intelligen ce Custome r Insights in Relati onship Ins ights sett ings."); | |||||
| 3146 | ErrorM essages.Ad d(PowerBIC annotBeSys temDashboa rd, "A Pow er BI Dash board cann ot be a Sy stem Dashb oard."); | |||||
| 3147 | ErrorM essages.Ad d(PowerBID ashboardCo ntrolLimit ation, "A Power BI D ashboard c an only co ntain one control an d that con trol must be a Power BI contro l."); | |||||
| 3148 | ErrorM essages.Ad d(CannotUp dateEmailS tatisticFo rEmailNotS ent, "We c an’t updat e email st atistics b ecause the email has n’t been s ent."); | |||||
| 3149 | ErrorM essages.Ad d(CannotUp dateEmailS tatisticFo rEmailNotF ollowed, " We can’t u pdate emai l statisti cs because the email isn’t bei ng followe d."); | |||||
| 3150 | ErrorM essages.Ad d(EmailEng agementFea tureDisabl ed, "Pleas e enable E mail Engag ement feat ure for cu rrent org to follow or unfollo w email at tachment." ); | |||||
| 3151 | ErrorM essages.Ad d(OneDrive ForBusines sDisabled, "Followin g attachme nts requir es OneDriv e for Busi ness. Plea se contact your admi nistrator to enable OneDrive f or Busines s in the o rganizatio n."); | |||||
| 3152 | ErrorM essages.Ad d(InvalidA ctivityMim eAttachmen tId, "Inva lid activi tyMimeAtta chmentId." ); | |||||
| 3153 | ErrorM essages.Ad d(Attachme ntNotRelat edToEmail, "This att achment do es not bel ong to an email."); | |||||
| 3154 | ErrorM essages.Ad d(EmailDoe sNotExist, "Email do es not exi st for giv en attachm ent."); | |||||
| 3155 | ErrorM essages.Ad d(EmailNot Followed, "This atta chment can not be fol lowed as i ts corresp onding ema il is not followed." ); | |||||
| 3156 | ErrorM essages.Ad d(OneDrive ForBusines sLocationN otFound, " No One Dri ve for Bus iness acti ve locatio n found.") ; | |||||
| 3157 | ErrorM essages.Ad d(Document Management DisabledFo rEmail, "D ocument Ma nagement m ust be ena bled on th e Email en tity in or der to fol low attach ments. Ple ase contac t your adm inistrator to enable Document Management ."); | |||||
| 3158 | ErrorM essages.Ad d(EmailMon itoringNot Provisione d, "RI pro visioning service fa iled."); | |||||
| 3159 | ErrorM essages.Ad d(EmailMon itoringPro visionFail ed, "Email engagemen t feature provisioni ng failed" ); | |||||
| 3160 | ErrorM essages.Ad d(ErrorInF etchingEma ilEngageme ntProvisio ningStatus , "Error i n fetching email eng agement fe ature prov isioning s tatus."); | |||||
| 3161 | ErrorM essages.Ad d(EmailMon itoringDeP rovisionFa iled, "Ema il engagem ent featur e deprovis ioning fai led"); | |||||
| 3162 | ErrorM essages.Ad d(EmailEng agementFea tureDisabl edForAttac hmentTrack ing, "Plea se enable Email Enga gement fea ture for t his organi zation to follow ema il attachm ents."); | |||||
| 3163 | ErrorM essages.Ad d(SiteMapM issing, "Y ou don’t h ave permis sions for these reco rds or som ething may be wrong with the s ite map. C ontact you r system a dministrat or.If you are the ad ministrato r, you can go to the solutions page and import a d ifferent s olution.") ; | |||||
| 3164 | ErrorM essages.Ad d(CannotUp dateTempla teIdForEma ilInNonDra ftState, " We can’t u pdate the template b ecause the email has already b een sent o r is not i n a Draft state."); | |||||
| 3165 | ErrorM essages.Ad d(CannotUp dateEmailS tatisticWh enEEFeatur eNotEnable d, "We can ’t update email stat istics bec ause Email Engagemen t isn’t tu rned on fo r the orga nization." ); | |||||
| 3166 | ErrorM essages.Ad d(InvalidT emplateId, "That’s n ot a valid template. "); | |||||
| 3167 | ErrorM essages.Ad d(CannotUp dateDelayS endTimeFor EmailWhenE mailIsNotI nProperSta te, "We ca n’t update the delay send time because t he email i s not a dr aft or isn ’t schedul ed to be s ent."); | |||||
| 3168 | ErrorM essages.Ad d(CannotUp dateDelayS endTimeWhe nEEFeature NotEnabled , "We can’ t update t he delay s end time b ecause Ema il Engagem ent isn’t turned on for the or ganization ."); | |||||
| 3169 | ErrorM essages.Ad d(Designer AccessDeni ed, "You d o not have enough pr ivileges t o perform the reques ted operat ion. For m ore inform ation, con tact your administra tor."); | |||||
| 3170 | ErrorM essages.Ad d(Designer InvalidPar ameter, "T he {0} pro vided is i ncorrect o r missing. Please tr y again wi th the cor rect {1}." ); | |||||
| 3171 | ErrorM essages.Ad d(ErrorTem plate, "{0 }"); | |||||
| 3172 | ErrorM essages.Ad d(InvalidA ppModuleSi teMap, "Th e customiz ed site ma p for this app modul e could no t be used because it is config ured incor rectly. To resolve t his issue, navigate to the ful l experien ce to repa ir the cus tomized si te map and import it again."); | |||||
| 3173 | ErrorM essages.Ad d(InvalidM ultipleSit eMapRefere nceSingleA ppModule, "An app ca n’t have m ultiple si te maps.") ; | |||||
| 3174 | ErrorM essages.Ad d(InvalidA ppModuleCo mponentTyp e, "An app can’t ref erence the component type “{0} ”."); | |||||
| 3175 | ErrorM essages.Ad d(InvalidA ppModuleCo mponent, " The ID {0} doesn’t e xist or is n’t valid for the co mponent ty pe “{1}”." ); | |||||
| 3176 | ErrorM essages.Ad d(CannotPu blishAppMo dule, "We can’t publ ish the ap p because it has val idation er rors."); | |||||
| 3177 | ErrorM essages.Ad d(AppModul eComponent EntityMust HaveFormOr View, "The entity “{ 0}” must h ave at lea st one for m or view in the app ."); | |||||
| 3178 | ErrorM essages.Ad d(InvalidA ppModuleId , "The app ID is inv alid or yo u don’t ha ve access to the app ."); | |||||
| 3179 | ErrorM essages.Ad d(AppModul eFeatureNo tEnabled, "The featu re isn’t t urned on f or this or ganization ."); | |||||
| 3180 | ErrorM essages.Ad d(AppModul eNotContai nMOCAEnabl edEntity, "App Modul e with MOC A as a sup ported cli ent should have at l east one M OCA enable d entity") ; | |||||
| 3181 | ErrorM essages.Ad d(CannotUp dateAppMod uleUniqueN ame, "You can’t chan ge the uni que name . "); | |||||
| 3182 | ErrorM essages.Ad d(InvalidA ppModuleUr l, "The ap p URL is n ot unique or the for mat is inv alid."); | |||||
| 3183 | ErrorM essages.Ad d(NoAppMod uleCompone ntReferred , "No comp onent is r eferenced" ); | |||||
| 3184 | ErrorM essages.Ad d(NoSiteMa pReference InAppModul e, "App Mo dule does not contai n Site Map "); | |||||
| 3185 | ErrorM essages.Ad d(AppModul eNotReferE ntity, "Ap p Module d oes not re ference at least one entity"); | |||||
| 3186 | ErrorM essages.Ad d(InvalidA ppModuleUn iqueName, "The uniqu e name exc eeds the m aximum len gth of 40 characters or contai ns invalid character s. Only le tters and numbers ar e allowed. "); | |||||
| 3187 | ErrorM essages.Ad d(Duplicat eAppModule UniqueName , "The nam e you ente red is alr eady in us e."); | |||||
| 3188 | ErrorM essages.Ad d(Multiple SitemapsFo und, "Foun d {0} unpu blished si te maps bu t expected only 1"); | |||||
| 3189 | ErrorM essages.Ad d(Reffered SolutionIs Different, "Found un published row outsid e of activ e solution : SiteMapI d = {0}, S olutionId = {1}"); | |||||
| 3190 | ErrorM essages.Ad d(AppModul esImportEr ror, "An e rror occur red while importing App Module s"); | |||||
| 3191 | } | |||||
| 3192 | ||||||
| 3193 | publ ic static String Get ErrorMessa ge(int hRe sult) | |||||
| 3194 | { | |||||
| 3195 | String errorMess age = Erro rMessages[ hResult] a s String; | |||||
| 3196 | if(str ing.IsNull OrEmpty(er rorMessage )) | |||||
| 3197 | { | |||||
| 3198 | errorMes sage = "Se rver was u nable to p rocess req uest."; | |||||
| 3199 | } | |||||
| 3200 | return errorMess age; | |||||
| 3201 | } | |||||
| 3202 | ||||||
| 3203 | publ ic static ErrorType GetErrorTy pe(int err orCode) | |||||
| 3204 | { | |||||
| 3205 | if(Err orTypes[er rorCode] = = null) | |||||
| 3206 | { | |||||
| 3207 | return E rrorType.S ystemFailu re; | |||||
| 3208 | } | |||||
| 3209 | else | |||||
| 3210 | { | |||||
| 3211 | ErrorTyp e errorTyp e = (Error Type) Erro rTypes[err orCode]; | |||||
| 3212 | return e rrorType; | |||||
| 3213 | } | |||||
| 3214 | } | |||||
| 3215 | ||||||
| 3216 | publ ic const i nt LowerVe rsionUpgra de = unche cked((int) 0x80048541 ); // -214 7187391 | |||||
| 3217 | publ ic const i nt PatchMi ssingBase = unchecke d((int)0x8 0048540); // -214718 7392 | |||||
| 3218 | publ ic const i nt Subcomp onentDoesN otExist = unchecked( (int)0x800 48537); // -21471874 01 | |||||
| 3219 | publ ic const i nt Subcomp onentMissi ngARoot = unchecked( (int)0x800 48536); // -21471874 02 | |||||
| 3220 | publ ic const i nt CannotM odifyPatch edSolution = uncheck ed((int)0x 80048538); // -21471 87400 | |||||
| 3221 | publ ic const i nt CloneSo lutionExce ption = un checked((i nt)0x80048 539); // - 2147187399 | |||||
| 3222 | publ ic const i nt CloneSo lutionPatc hException = uncheck ed((int)0x 80061771); // -21470 84431 | |||||
| 3223 | publ ic const i nt QuickFi ndSavedQue ryAlreadyE xists = un checked((i nt)0x80048 53a); // - 2147187398 | |||||
| 3224 | publ ic const i nt Solutio nUpgradeNo tAvailable = uncheck ed((int)0x 8004853b); // -21471 87397 | |||||
| 3225 | publ ic const i nt Solutio nUpgradeWr ongSolutio nSelected = unchecke d((int)0x8 004853c); // -214718 7396 | |||||
| 3226 | publ ic const i nt CustomI mageAttrib uteOnlyAll owedOnCust omEntity = unchecked ((int)0x80 048531); / / -2147187 407 | |||||
| 3227 | publ ic const i nt SqlEncr yptionSymm etricKeyCa nnotOpenBe causeWrong Password = unchecked ((int)0x80 048530); / / -2147187 408 | |||||
| 3228 | publ ic const i nt SqlEncr yptionSymm etricKeyDo esNotExist OrNoPermis sion = unc hecked((in t)0x800485 2f); // -2 147187409 | |||||
| 3229 | publ ic const i nt SqlEncr yptionSymm etricKeyPa sswordDoes NotExistIn ConfigDB = unchecked ((int)0x80 04852e); / / -2147187 410 | |||||
| 3230 | publ ic const i nt SqlEncr yptionSymm etricKeySo urceDoesNo tExistInCo nfigDB = u nchecked(( int)0x8004 852d); // -214718741 1 | |||||
| 3231 | publ ic const i nt CannotE xecuteRequ estBecause HttpsIsReq uired = un checked((i nt)0x80048 52c); // - 2147187412 | |||||
| 3232 | publ ic const i nt SqlEncr yptionRest oreEncrypt ionKeyCann otDecryptE xistingDat a = unchec ked((int)0 x8004852b) ; // -2147 187413 | |||||
| 3233 | publ ic const i nt SqlEncr yptionSetE ncryptionK eyIsAlread yRunningCa nnotRunItI nParallel = unchecke d((int)0x8 004852a); // -214718 7414 | |||||
| 3234 | publ ic const i nt SqlEncr yptionChan geEncrypti onKeyExcee dedQuotaFo rTheInterv al = unche cked((int) 0x80048529 ); // -214 7187415 | |||||
| 3235 | publ ic const i nt SqlEncr yptionEncr yptionKeyV alidationE rror = unc hecked((in t)0x800485 28); // -2 147187416 | |||||
| 3236 | publ ic const i nt SqlEncr yptionIsIn activeCann otChangeEn cryptionKe y = unchec ked((int)0 x80048527) ; // -2147 187417 | |||||
| 3237 | publ ic const i nt SqlEncr yptionDele teEncrypti onKeyError = uncheck ed((int)0x 80048526); // -21471 87418 | |||||
| 3238 | publ ic const i nt SqlEncr yptionIsAc tiveCannot RestoreEnc ryptionKey = uncheck ed((int)0x 80048525); // -21471 87419 | |||||
| 3239 | publ ic const i nt SqlEncr yptionKeyC annotDecry ptExisting Data = unc hecked((in t)0x800485 24); // -2 147187420 | |||||
| 3240 | publ ic const i nt SqlEncr yptionEncr yptionDecr yptionTest Error = un checked((i nt)0x80048 523); // - 2147187421 | |||||
| 3241 | publ ic const i nt SqlEncr yptionDele teSymmetri cKeyError = unchecke d((int)0x8 0048522); // -214718 7422 | |||||
| 3242 | publ ic const i nt SqlEncr yptionCrea teSymmetri cKeyError = unchecke d((int)0x8 0048521); // -214718 7423 | |||||
| 3243 | publ ic const i nt SqlEncr yptionSymm etricKeyDo esNotExist = uncheck ed((int)0x 80048520); // -21471 87424 | |||||
| 3244 | publ ic const i nt SqlEncr yptionDele teCertific ateError = unchecked ((int)0x80 04851f); / / -2147187 425 | |||||
| 3245 | publ ic const i nt SqlEncr yptionCrea teCertific ateError = unchecked ((int)0x80 04851e); / / -2147187 426 | |||||
| 3246 | publ ic const i nt SqlEncr yptionCert ificateDoe sNotExist = unchecke d((int)0x8 004851d); // -214718 7427 | |||||
| 3247 | publ ic const i nt SqlEncr yptionDele teDatabase MasterKeyE rror = unc hecked((in t)0x800485 1c); // -2 147187428 | |||||
| 3248 | publ ic const i nt SqlEncr yptionCrea teDatabase MasterKeyE rror = unc hecked((in t)0x800485 1b); // -2 147187429 | |||||
| 3249 | publ ic const i nt SqlEncr yptionCann otOpenSymm etricKeyBe causeDatab aseMasterK eyDoesNotE xistOrIsNo tOpened = unchecked( (int)0x800 4851a); // -21471874 30 | |||||
| 3250 | publ ic const i nt SqlEncr yptionData baseMaster KeyDoesNot Exist = un checked((i nt)0x80048 519); // - 2147187431 | |||||
| 3251 | publ ic const i nt SqlEncr yption = u nchecked(( int)0x8004 8518); // -214718743 2 | |||||
| 3252 | publ ic const i nt ErrorsI nSlaWorkfl owActivati on = unche cked((int) 0x80048535 ); // -214 7187403 | |||||
| 3253 | publ ic const i nt Manifes tParsingFa ilure = un checked((i nt)0x80048 534); // - 2147187404 | |||||
| 3254 | publ ic const i nt Invalid ManifestFi lePath = u nchecked(( int)0x8004 8533); // -214718740 5 | |||||
| 3255 | publ ic const i nt OnPremi seRestoreO rganizatio nManifestF ailed = un checked((i nt)0x80048 532); // - 2147187406 | |||||
| 3256 | publ ic const i nt Invalid Auth = unc hecked((in t)0x800485 16); // -2 147187434 | |||||
| 3257 | publ ic const i nt CannotU pdateOrgDB OrgSetting WhenOfflin e = unchec ked((int)0 x80048515) ; // -2147 187435 | |||||
| 3258 | publ ic const i nt Invalid OrgDBOrgSe tting = un checked((i nt)0x80048 514); // - 2147187436 | |||||
| 3259 | publ ic const i nt Unknown InvalidTra nsformatio nParameter Generic = unchecked( (int)0x800 48513); // -21471874 37 | |||||
| 3260 | publ ic const i nt Invalid Transforma tionParame terOutside RangeGener ic = unche cked((int) 0x80048512 ); // -214 7187438 | |||||
| 3261 | publ ic const i nt Invalid Transforma tionParame terEmptyCo llection = unchecked ((int)0x80 048511); / / -2147187 439 | |||||
| 3262 | publ ic const i nt Invalid Transforma tionParame terOutside Range = un checked((i nt)0x80048 510); // - 2147187440 | |||||
| 3263 | publ ic const i nt Invalid Transforma tionParame terZeroToR ange = unc hecked((in t)0x800485 09); // -2 147187447 | |||||
| 3264 | publ ic const i nt Invalid Transforma tionParame terString = unchecke d((int)0x8 0048508); // -214718 7448 | |||||
| 3265 | publ ic const i nt Invalid Transforma tionParame tersGeneri c = unchec ked((int)0 x80048507) ; // -2147 187449 | |||||
| 3266 | publ ic const i nt Insuffi cientTrans formationP arameters = unchecke d((int)0x8 0048506); // -214718 7450 | |||||
| 3267 | publ ic const i nt Maximum NumberHand lersExceed ed = unche cked((int) 0x80048505 ); // -214 7187451 | |||||
| 3268 | publ ic const i nt ErrorIn UnzipAlter nate = unc hecked((in t)0x800485 03); // -2 147187453 | |||||
| 3269 | publ ic const i nt Incorre ctSingleFi leMultiple EntityMap = unchecke d((int)0x8 0048502); // -214718 7454 | |||||
| 3270 | publ ic const i nt Activit yEntityCan notBeActiv ityParty = unchecked ((int)0x80 048501); / / -2147187 455 | |||||
| 3271 | publ ic const i nt TargetA ttributeIn validForIg nore = unc hecked((in t)0x800485 00); // -2 147187456 | |||||
| 3272 | publ ic const i nt MaxUnzi pFolderSiz eExceeded = unchecke d((int)0x8 0048499); // -214718 7559 | |||||
| 3273 | publ ic const i nt Invalid MultipleMa pping = un checked((i nt)0x80048 498); // - 2147187560 | |||||
| 3274 | publ ic const i nt ErrorIn StoringImp ortFile = unchecked( (int)0x800 48497); // -21471875 61 | |||||
| 3275 | publ ic const i nt UnzipTi meout = un checked((i nt)0x80048 496); // - 2147187562 | |||||
| 3276 | publ ic const i nt Unsuppo rtedZipFil eForImport = uncheck ed((int)0x 80048495); // -21471 87563 | |||||
| 3277 | publ ic const i nt UnzipPr ocessCount LimitReach ed = unche cked((int) 0x80048494 ); // -214 7187564 | |||||
| 3278 | publ ic const i nt Attachm entNotFoun d = unchec ked((int)0 x80048493) ; // -2147 187565 | |||||
| 3279 | publ ic const i nt TooMany PicklistVa lues = unc hecked((in t)0x800484 92); // -2 147187566 | |||||
| 3280 | publ ic const i nt VeryLar geFileInZi pImport = unchecked( (int)0x800 48491); // -21471875 67 | |||||
| 3281 | publ ic const i nt Invalid Attachment sFolder = unchecked( (int)0x800 48490); // -21471875 68 | |||||
| 3282 | publ ic const i nt ZipInsi deZip = un checked((i nt)0x80048 489); // - 2147187575 | |||||
| 3283 | publ ic const i nt Invalid ZipFileFor mat = unch ecked((int )0x8004848 8); // -21 47187576 | |||||
| 3284 | publ ic const i nt EmptyFi leForImpor t = unchec ked((int)0 x80048487) ; // -2147 187577 | |||||
| 3285 | publ ic const i nt EmptyFi lesInZip = unchecked ((int)0x80 048486); / / -2147187 578 | |||||
| 3286 | publ ic const i nt ZipFile HasMixOfCs vAndXmlFil es = unche cked((int) 0x80048485 ); // -214 7187579 | |||||
| 3287 | publ ic const i nt Duplica teFileName sInZip = u nchecked(( int)0x8004 8484); // -214718758 0 | |||||
| 3288 | publ ic const i nt ErrorIn Unzip = un checked((i nt)0x80048 483); // - 2147187581 | |||||
| 3289 | publ ic const i nt Invalid ZipFileFor Import = u nchecked(( int)0x8004 8482); // -214718758 2 | |||||
| 3290 | publ ic const i nt Invalid LookupMapN ode = unch ecked((int )0x8004848 1); // -21 47187583 | |||||
| 3291 | publ ic const i nt ImportM ailMergeTe mplateEnti tyMissingE rror = unc hecked((in t)0x800484 80); // -2 147187584 | |||||
| 3292 | publ ic const i nt CannotU pdateOppor tunityCurr ency = unc hecked((in t)0x800484 79); // -2 147187591 | |||||
| 3293 | publ ic const i nt ParentR ecordAlrea dyExists = unchecked ((int)0x80 048478); / / -2147187 592 | |||||
| 3294 | publ ic const i nt Missing WebToLeadR edirect = unchecked( (int)0x800 48477); // -21471875 93 | |||||
| 3295 | publ ic const i nt Invalid WebToLeadR edirect = unchecked( (int)0x800 48476); // -21471875 94 | |||||
| 3296 | publ ic const i nt Templat eNotAllowe dForIntern etMarketin g = unchec ked((int)0 x80048475) ; // -2147 187595 | |||||
| 3297 | publ ic const i nt CopyNot AllowedFor InternetMa rketing = unchecked( (int)0x800 48474); // -21471875 96 | |||||
| 3298 | publ ic const i nt Missing OrInvalidR edirectId = unchecke d((int)0x8 0048473); // -214718 7597 | |||||
| 3299 | publ ic const i nt ImportN otComplete = uncheck ed((int)0x 80048472); // -21471 87598 | |||||
| 3300 | publ ic const i nt UIDataM issingInWo rkflow = u nchecked(( int)0x8004 8471); // -214718759 9 | |||||
| 3301 | publ ic const i nt RefEnti tyRelation shipRoleRe quired = u nchecked(( int)0x8004 8470); // -214718760 0 | |||||
| 3302 | publ ic const i nt ImportT emplateLan guageIgnor ed = unche cked((int) 0x8004847a ); // -214 7187590 | |||||
| 3303 | publ ic const i nt ImportT emplatePer sonalIgnor ed = unche cked((int) 0x8004847b ); // -214 7187589 | |||||
| 3304 | publ ic const i nt ImportC omponentDe letedIgnor ed = unche cked((int) 0x8004847c ); // -214 7187588 | |||||
| 3305 | publ ic const i nt Custome rRelations hipCannotB eDeleted = unchecked ((int)0x80 04847d); / / -2147187 587 | |||||
| 3306 | publ ic const i nt Relatio nshipRoleN odeNumberI nvalid = u nchecked(( int)0x8004 8469); // -214718760 7 | |||||
| 3307 | publ ic const i nt Associa tionRoleOr dinalInval id = unche cked((int) 0x80048468 ); // -214 7187608 | |||||
| 3308 | publ ic const i nt Relatio nshipRoleM ismatch = unchecked( (int)0x800 48467); // -21471876 09 | |||||
| 3309 | publ ic const i nt ImportM apInUse = unchecked( (int)0x800 48465); // -21471876 11 | |||||
| 3310 | publ ic const i nt Previou sOperation NotComplet e = unchec ked((int)0 x80048464) ; // -2147 187612 | |||||
| 3311 | publ ic const i nt Transfo rmationRes umeNotSupp orted = un checked((i nt)0x80048 463); // - 2147187613 | |||||
| 3312 | publ ic const i nt CannotD isableDupl icateDetec tion = unc hecked((in t)0x800484 62); // -2 147187614 | |||||
| 3313 | publ ic const i nt TargetE ntityNotMa pped = unc hecked((in t)0x800484 60); // -2 147187616 | |||||
| 3314 | publ ic const i nt BulkDel eteChildFa ilure = un checked((i nt)0x80048 459); // - 2147187623 | |||||
| 3315 | publ ic const i nt CannotR emoveNonLi stMember = unchecked ((int)0x80 048458); / / -2147187 624 | |||||
| 3316 | publ ic const i nt JobName IsEmptyOrN ull = unch ecked((int )0x8004845 7); // -21 47187625 | |||||
| 3317 | publ ic const i nt ImportM ailMergeTe mplateErro r = unchec ked((int)0 x80048456) ; // -2147 187626 | |||||
| 3318 | publ ic const i nt ErrorsI nWorkflowD efinition = unchecke d((int)0x8 0048455); // -214718 7627 | |||||
| 3319 | publ ic const i nt Distrib uteNoListA ssociated = unchecke d((int)0x8 0048454); // -214718 7628 | |||||
| 3320 | publ ic const i nt Distrib uteListAss ociatedVar y = unchec ked((int)0 x80048453) ; // -2147 187629 | |||||
| 3321 | publ ic const i nt Offline FilterPare ntDownload ed = unche cked((int) 0x80048451 ); // -214 7187631 | |||||
| 3322 | publ ic const i nt Offline FilterNest edDateTime OR = unche cked((int) 0x80048450 ); // -214 7187632 | |||||
| 3323 | publ ic const i nt Duplica teOfflineF ilter = un checked((i nt)0x80048 449); // - 2147187639 | |||||
| 3324 | publ ic const i nt CannotA ssignAddre ssBookFilt ers = unch ecked((int )0x8004844 8); // -21 47187640 | |||||
| 3325 | publ ic const i nt CannotC reateAddre ssBookFilt ers = unch ecked((int )0x8004844 7); // -21 47187641 | |||||
| 3326 | publ ic const i nt CannotG rantAccess ToAddressB ookFilters = uncheck ed((int)0x 80048446); // -21471 87642 | |||||
| 3327 | publ ic const i nt CannotM odifyAcces sToAddress BookFilter s = unchec ked((int)0 x80048445) ; // -2147 187643 | |||||
| 3328 | publ ic const i nt CannotR evokeAcces sToAddress BookFilter s = unchec ked((int)0 x80048444) ; // -2147 187644 | |||||
| 3329 | publ ic const i nt Duplica teMapName = unchecke d((int)0x8 0048443); // -214718 7645 | |||||
| 3330 | publ ic const i nt Invalid WordXmlFil e = unchec ked((int)0 x80048441) ; // -2147 187647 | |||||
| 3331 | publ ic const i nt FileNot Found = un checked((i nt)0x80048 440); // - 2147187648 | |||||
| 3332 | publ ic const i nt Multipl eFilesFoun d = unchec ked((int)0 x80048439) ; // -2147 187655 | |||||
| 3333 | publ ic const i nt Invalid AttributeM apping = u nchecked(( int)0x8004 8438); // -214718765 6 | |||||
| 3334 | publ ic const i nt FileRea dError = u nchecked(( int)0x8004 8437); // -214718765 7 | |||||
| 3335 | publ ic const i nt ViewFor DuplicateD etectionNo tDefined = unchecked ((int)0x80 048838); / / -2147186 632 | |||||
| 3336 | publ ic const i nt FileInU se = unche cked((int) 0x80048837 ); // -214 7186633 | |||||
| 3337 | publ ic const i nt NoPubli shedDuplic ateDetecti onRules = unchecked( (int)0x800 48436); // -21471876 58 | |||||
| 3338 | publ ic const i nt NoEntit iesForBulk Delete = u nchecked(( int)0x8004 8442); // -214718764 6 | |||||
| 3339 | publ ic const i nt BulkDel eteRecordD eletionFai lure = unc hecked((in t)0x800484 35); // -2 147187659 | |||||
| 3340 | publ ic const i nt RuleAlr eadyPublis hing = unc hecked((in t)0x800484 34); // -2 147187660 | |||||
| 3341 | publ ic const i nt RuleNot Found = un checked((i nt)0x80048 433); // - 2147187661 | |||||
| 3342 | publ ic const i nt CannotD eleteSyste mEmailTemp late = unc hecked((in t)0x800484 32); // -2 147187662 | |||||
| 3343 | publ ic const i nt EntityD upCheckNot SupportedS ystemWide = unchecke d((int)0x8 0048431); // -214718 7663 | |||||
| 3344 | publ ic const i nt Duplica teDetectio nNotSuppor tedOnAttri buteType = unchecked ((int)0x80 048430); / / -2147187 664 | |||||
| 3345 | publ ic const i nt MaxMatc hCodeLengt hExceeded = unchecke d((int)0x8 0048429); // -214718 7671 | |||||
| 3346 | publ ic const i nt CannotD eleteUpdat eInUseRule = uncheck ed((int)0x 80048428); // -21471 87672 | |||||
| 3347 | publ ic const i nt ImportM appingsInv alidIdSpec ified = un checked((i nt)0x80048 427); // - 2147187673 | |||||
| 3348 | publ ic const i nt NotAWel lFormedXml = uncheck ed((int)0x 80048426); // -21471 87674 | |||||
| 3349 | publ ic const i nt Noncomp liantXml = unchecked ((int)0x80 048425); / / -2147187 675 | |||||
| 3350 | publ ic const i nt Duplica teDetectio nTemplateN otFound = unchecked( (int)0x800 48424); // -21471876 76 | |||||
| 3351 | publ ic const i nt RulesIn Inconsiste ntStateFou nd = unche cked((int) 0x80048423 ); // -214 7187677 | |||||
| 3352 | publ ic const i nt BulkDet ectInvalid EmailRecip ient = unc hecked((in t)0x800484 22); // -2 147187678 | |||||
| 3353 | publ ic const i nt CannotE nableDupli cateDetect ion = unch ecked((int )0x8004842 1); // -21 47187679 | |||||
| 3354 | publ ic const i nt CannotD eleteInUse Entity = u nchecked(( int)0x8004 8420); // -214718768 0 | |||||
| 3355 | publ ic const i nt StringA ttributeIn dexError = unchecked ((int)0x80 04d292); / / -2147167 598 | |||||
| 3356 | publ ic const i nt CannotC hangeAttri buteRequir edLevel = unchecked( (int)0x800 4d293); // -21471675 97 | |||||
| 3357 | publ ic const i nt Maximum NumberOfAt tributesFo rEntityRea ched = unc hecked((in t)0x800484 1a); // -2 147187686 | |||||
| 3358 | publ ic const i nt CannotP ublishMore Rules = un checked((i nt)0x80048 419); // - 2147187687 | |||||
| 3359 | publ ic const i nt CannotD eleteInUse Attribute = unchecke d((int)0x8 0048418); // -214718 7688 | |||||
| 3360 | publ ic const i nt CannotD eleteInUse OptionSet = unchecke d((int)0x8 0048417); // -214718 7689 | |||||
| 3361 | publ ic const i nt Invalid EntityName = uncheck ed((int)0x 80048416); // -21471 87690 | |||||
| 3362 | publ ic const i nt Invalid OperatorCo de = unche cked((int) 0x80048415 ); // -214 7187691 | |||||
| 3363 | publ ic const i nt CannotP ublishEmpt yRule = un checked((i nt)0x80048 414); // - 2147187692 | |||||
| 3364 | publ ic const i nt CannotP ublishInac tiveRule = unchecked ((int)0x80 048413); / / -2147187 693 | |||||
| 3365 | publ ic const i nt Duplica teCheckNot Enabled = unchecked( (int)0x800 48412); // -21471876 94 | |||||
| 3366 | publ ic const i nt Duplica teCheckNot SupportedO nEntity = unchecked( (int)0x800 48410); // -21471876 96 | |||||
| 3367 | publ ic const i nt Invalid StateCodeS tatusCode = unchecke d((int)0x8 0048408); // -214718 7704 | |||||
| 3368 | publ ic const i nt SyncToM sdeFailure = uncheck ed((int)0x 80048407); // -21471 87705 | |||||
| 3369 | publ ic const i nt FormDoe sNotExist = unchecke d((int)0x8 0048406); // -214718 7706 | |||||
| 3370 | publ ic const i nt AccessD enied = un checked((i nt)0x80048 405); // - 2147187707 | |||||
| 3371 | publ ic const i nt CannotD eleteOptio nSet = unc hecked((in t)0x800484 04); // -2 147187708 | |||||
| 3372 | publ ic const i nt Invalid OptionSetO peration = unchecked ((int)0x80 048403); / / -2147187 709 | |||||
| 3373 | publ ic const i nt OptionV aluePrefix OutOfRange = uncheck ed((int)0x 80048402); // -21471 87710 | |||||
| 3374 | publ ic const i nt CheckPr ivilegeGro upForUserO nPremiseEr ror = unch ecked((int )0x8004840 1); // -21 47187711 | |||||
| 3375 | publ ic const i nt CheckPr ivilegeGro upForUserO nSplaError = uncheck ed((int)0x 80048400); // -21471 87712 | |||||
| 3376 | publ ic const i nt unManag edIdsAcces sDenied = unchecked( (int)0x800 48306); // -21471879 62 | |||||
| 3377 | publ ic const i nt EntityI sIntersect = uncheck ed((int)0x 8004830f); // -21471 87953 | |||||
| 3378 | publ ic const i nt CannotD eleteTeamO wningRecor ds = unche cked((int) 0x8004830e ); // -214 7187954 | |||||
| 3379 | publ ic const i nt CannotR emoveMembe rsFromDefa ultTeam = unchecked( (int)0x800 4830c); // -21471879 56 | |||||
| 3380 | publ ic const i nt CannotA ddMembersT oDefaultTe am = unche cked((int) 0x8004830b ); // -214 7187957 | |||||
| 3381 | publ ic const i nt CannotU pdateNameD efaultTeam = uncheck ed((int)0x 8004830a); // -21471 87958 | |||||
| 3382 | publ ic const i nt CannotS etParentDe faultTeam = unchecke d((int)0x8 0048308); // -214718 7960 | |||||
| 3383 | publ ic const i nt CannotD eleteDefau ltTeam = u nchecked(( int)0x8004 8307); // -214718796 1 | |||||
| 3384 | publ ic const i nt TeamNam eTooLong = unchecked ((int)0x80 048305); / / -2147187 963 | |||||
| 3385 | publ ic const i nt CannotA ssignRoles OrProfiles ToAccessTe am = unche cked((int) 0x80048331 ); // -214 7187919 | |||||
| 3386 | publ ic const i nt TooMany EntitiesEn abledForAu toCreatedA ccessTeams = uncheck ed((int)0x 80048332); // -21471 87918 | |||||
| 3387 | publ ic const i nt TooMany TeamTempla tesForEnti tyAccessTe ams = unch ecked((int )0x8004833 3); // -21 47187917 | |||||
| 3388 | publ ic const i nt EntityN otEnabledF orAutoCrea tedAccessT eams = unc hecked((in t)0x800483 34); // -2 147187916 | |||||
| 3389 | publ ic const i nt Invalid AccessMask ForTeamTem plate = un checked((i nt)0x80048 335); // - 2147187915 | |||||
| 3390 | publ ic const i nt CannotC hangeTeamT ypeDueToRo leOrProfil e = unchec ked((int)0 x80048336) ; // -2147 187914 | |||||
| 3391 | publ ic const i nt CannotC hangeTeamT ypeDueToOw nership = unchecked( (int)0x800 48337); // -21471879 13 | |||||
| 3392 | publ ic const i nt CannotD isableAuto CreateAcce ssTeams = unchecked( (int)0x800 48338); // -21471879 12 | |||||
| 3393 | publ ic const i nt CannotS hareSystem ManagedTea m = unchec ked((int)0 x80048339) ; // -2147 187911 | |||||
| 3394 | publ ic const i nt CannotA ssignToAcc essTeam = unchecked( (int)0x800 48340); // -21471879 04 | |||||
| 3395 | publ ic const i nt Duplica teSalesTea mMember = unchecked( (int)0x800 48341); // -21471879 03 | |||||
| 3396 | publ ic const i nt TargetU serInsuffi cientPrivi leges = un checked((i nt)0x80048 342); // - 2147187902 | |||||
| 3397 | publ ic const i nt CannotD isableOrDe letePositi onDueToAss ociatedUse rs = unche cked((int) 0x80048343 ); // -214 7187901 | |||||
| 3398 | publ ic const i nt CannotC reateOrEna blePositio nDueToPare ntPosition IsDisabled = uncheck ed((int)0x 80048344); // -21471 87900 | |||||
| 3399 | publ ic const i nt Invalid DomainName = uncheck ed((int)0x 80048015); // -21471 88715 | |||||
| 3400 | publ ic const i nt Invalid UserName = unchecked ((int)0x80 048095); / / -2147188 587 | |||||
| 3401 | publ ic const i nt BulkMai lServiceNo tAccessibl e = unchec ked((int)0 x80048304) ; // -2147 187964 | |||||
| 3402 | publ ic const i nt RSMoveI temError = unchecked ((int)0x80 048330); / / -2147187 920 | |||||
| 3403 | publ ic const i nt ReportP arentChild NotCustomi zable = un checked((i nt)0x80048 32f); // - 2147187921 | |||||
| 3404 | publ ic const i nt Convert FetchDataS etError = unchecked( (int)0x800 4832e); // -21471879 22 | |||||
| 3405 | publ ic const i nt Convert ReportToCr mError = u nchecked(( int)0x8004 832d); // -214718792 3 | |||||
| 3406 | publ ic const i nt ReportV iewerError = uncheck ed((int)0x 8004832c); // -21471 87924 | |||||
| 3407 | publ ic const i nt RSGetIt emTypeErro r = unchec ked((int)0 x8004832b) ; // -2147 187925 | |||||
| 3408 | publ ic const i nt RSSetPr opertiesEr ror = unch ecked((int )0x8004832 a); // -21 47187926 | |||||
| 3409 | publ ic const i nt RSRepor tParameter TypeMismat chError = unchecked( (int)0x800 48329); // -21471879 27 | |||||
| 3410 | publ ic const i nt RSUpdat eReportExe cutionSnap shotError = unchecke d((int)0x8 0048328); // -214718 7928 | |||||
| 3411 | publ ic const i nt RSSetRe portHistor yLimitErro r = unchec ked((int)0 x80048327) ; // -2147 187929 | |||||
| 3412 | publ ic const i nt RSSetRe portHistor yOptionsEr ror = unch ecked((int )0x8004832 6); // -21 47187930 | |||||
| 3413 | publ ic const i nt RSSetEx ecutionOpt ionsError = unchecke d((int)0x8 0048325); // -214718 7931 | |||||
| 3414 | publ ic const i nt RSSetRe portParame tersError = unchecke d((int)0x8 0048324); // -214718 7932 | |||||
| 3415 | publ ic const i nt RSGetRe portParame tersError = unchecke d((int)0x8 0048323); // -214718 7933 | |||||
| 3416 | publ ic const i nt RSSetIt emDataSour cesError = unchecked ((int)0x80 048322); / / -2147187 934 | |||||
| 3417 | publ ic const i nt RSGetIt emDataSour cesError = unchecked ((int)0x80 048321); / / -2147187 935 | |||||
| 3418 | publ ic const i nt RSCreat eBatchErro r = unchec ked((int)0 x80048320) ; // -2147 187936 | |||||
| 3419 | publ ic const i nt RSListR eportHisto ryError = unchecked( (int)0x800 4831f); // -21471879 37 | |||||
| 3420 | publ ic const i nt RSGetRe portHistor yLimitErro r = unchec ked((int)0 x8004831e) ; // -2147 187938 | |||||
| 3421 | publ ic const i nt RSExecu teBatchErr or = unche cked((int) 0x8004831d ); // -214 7187939 | |||||
| 3422 | publ ic const i nt RSCance lBatchErro r = unchec ked((int)0 x8004831c) ; // -2147 187940 | |||||
| 3423 | publ ic const i nt RSListE xtensionsE rror = unc hecked((in t)0x800483 1b); // -2 147187941 | |||||
| 3424 | publ ic const i nt RSGetDa taSourceCo ntentsErro r = unchec ked((int)0 x8004831a) ; // -2147 187942 | |||||
| 3425 | publ ic const i nt RSSetDa taSourceCo ntentsErro r = unchec ked((int)0 x80048319) ; // -2147 187943 | |||||
| 3426 | publ ic const i nt RSFindI temsError = unchecke d((int)0x8 0048318); // -214718 7944 | |||||
| 3427 | publ ic const i nt RSDelet eItemError = uncheck ed((int)0x 80048317); // -21471 87945 | |||||
| 3428 | publ ic const i nt ReportS ecurityErr or = unche cked((int) 0x80048316 ); // -214 7187946 | |||||
| 3429 | publ ic const i nt ReportM issingRepo rtSourceEr ror = unch ecked((int )0x8004831 5); // -21 47187947 | |||||
| 3430 | publ ic const i nt ReportM issingPara meterError = uncheck ed((int)0x 80048314); // -21471 87948 | |||||
| 3431 | publ ic const i nt ReportM issingEndp ointError = unchecke d((int)0x8 0048313); // -214718 7949 | |||||
| 3432 | publ ic const i nt ReportM issingData SourceErro r = unchec ked((int)0 x80048312) ; // -2147 187950 | |||||
| 3433 | publ ic const i nt ReportM issingData SourceCred entialsErr or = unche cked((int) 0x80048311 ); // -214 7187951 | |||||
| 3434 | publ ic const i nt ReportL ocalProces singError = unchecke d((int)0x8 0048310); // -214718 7952 | |||||
| 3435 | publ ic const i nt ReportS erverSP2Ho tFixNotApp lied = unc hecked((in t)0x800483 09); // -2 147187959 | |||||
| 3436 | publ ic const i nt DataSou rceProhibi ted = unch ecked((int )0x8004830 d); // -21 47187955 | |||||
| 3437 | publ ic const i nt ReportS erverVersi onLow = un checked((i nt)0x80048 303); // - 2147187965 | |||||
| 3438 | publ ic const i nt ReportS erverNoPri vilege = u nchecked(( int)0x8004 8302); // -214718796 6 | |||||
| 3439 | publ ic const i nt ReportS erverInval idUrl = un checked((i nt)0x80048 301); // - 2147187967 | |||||
| 3440 | publ ic const i nt ReportS erverUnkno wnExceptio n = unchec ked((int)0 x80048300) ; // -2147 187968 | |||||
| 3441 | publ ic const i nt ReportN otAvailabl e = unchec ked((int)0 x80048299) ; // -2147 188071 | |||||
| 3442 | publ ic const i nt ErrorUp loadingRep ort = unch ecked((int )0x8004829 8); // -21 47188072 | |||||
| 3443 | publ ic const i nt ReportF ileTooBig = unchecke d((int)0x8 0048297); // -214718 8073 | |||||
| 3444 | publ ic const i nt ReportF ileZeroLen gth = unch ecked((int )0x8004829 6); // -21 47188074 | |||||
| 3445 | publ ic const i nt ReportT ypeBlocked = uncheck ed((int)0x 80048295); // -21471 88075 | |||||
| 3446 | publ ic const i nt ReportU ploadDisab led = unch ecked((int )0x8004829 4); // -21 47188076 | |||||
| 3447 | publ ic const i nt ReportR dlSandboxi ng = unche cked((int) 0x80048293 ); // -214 7188077 | |||||
| 3448 | publ ic const i nt SrsData ConnectorN otInstalle dUpload = unchecked( (int)0x800 48292); // -21471880 78 | |||||
| 3449 | publ ic const i nt BothCon nectionSid esAreNeede d = unchec ked((int)0 x80048218) ; // -2147 188200 | |||||
| 3450 | publ ic const i nt CannotC onnectToSe lf = unche cked((int) 0x80048217 ); // -214 7188201 | |||||
| 3451 | publ ic const i nt Unrelat edConnecti onRoles = unchecked( (int)0x800 48216); // -21471882 02 | |||||
| 3452 | publ ic const i nt Connect ionRoleNot ValidForOb jectType = unchecked ((int)0x80 048215); / / -2147188 203 | |||||
| 3453 | publ ic const i nt Connect ionCannotB eEnabledOn ThisEntity = uncheck ed((int)0x 80048214); // -21471 88204 | |||||
| 3454 | publ ic const i nt Connect ionNotSupp orted = un checked((i nt)0x80048 213); // - 2147188205 | |||||
| 3455 | publ ic const i nt Connect ionObjects Missing = unchecked( (int)0x800 48210); // -21471882 08 | |||||
| 3456 | publ ic const i nt Connect ionInvalid StartEndDa te = unche cked((int) 0x80048209 ); // -214 7188215 | |||||
| 3457 | publ ic const i nt Connect ionExists = unchecke d((int)0x8 0048208); // -214718 8216 | |||||
| 3458 | publ ic const i nt Decoupl eUserOwned Entity = u nchecked(( int)0x8004 8207); // -214718821 7 | |||||
| 3459 | publ ic const i nt Decoupl eChildEnti ty = unche cked((int) 0x80048206 ); // -214 7188218 | |||||
| 3460 | publ ic const i nt Existin gParentalR elationshi p = unchec ked((int)0 x80048205) ; // -2147 188219 | |||||
| 3461 | publ ic const i nt Invalid CascadeLin kType = un checked((i nt)0x80048 204); // - 2147188220 | |||||
| 3462 | publ ic const i nt Invalid DeleteModi fication = unchecked ((int)0x80 048203); / / -2147188 221 | |||||
| 3463 | publ ic const i nt Custome rOpportuni tyRoleExis ts = unche cked((int) 0x80048202 ); // -214 7188222 | |||||
| 3464 | publ ic const i nt Custome rRelations hipExists = unchecke d((int)0x8 0048201); // -214718 8223 | |||||
| 3465 | publ ic const i nt Multipl eRelations hipsNotSup ported = u nchecked(( int)0x8004 8200); // -214718822 4 | |||||
| 3466 | publ ic const i nt ImportD uplicateEn tity = unc hecked((in t)0x800481 0c); // -2 147188468 | |||||
| 3467 | publ ic const i nt Cascade ProxyEmpty CallerId = unchecked ((int)0x80 04810b); / / -2147188 469 | |||||
| 3468 | publ ic const i nt Cascade ProxyInval idPrincipa lType = un checked((i nt)0x80048 10a); // - 2147188470 | |||||
| 3469 | publ ic const i nt Cascade ProxyInval idNativeDA Ptr = unch ecked((int )0x8004810 9); // -21 47188471 | |||||
| 3470 | publ ic const i nt Cascade FailToCrea teNativeDA Wrapper = unchecked( (int)0x800 48108); // -21471884 72 | |||||
| 3471 | publ ic const i nt Cascade ReparentOn NonUserOwn ed = unche cked((int) 0x80048107 ); // -214 7188473 | |||||
| 3472 | publ ic const i nt Cascade MergeInval idSpecialC olumn = un checked((i nt)0x80048 106); // - 2147188474 | |||||
| 3473 | publ ic const i nt Cascade RemoveLink OnNonNulla ble = unch ecked((int )0x8004810 4); // -21 47188476 | |||||
| 3474 | publ ic const i nt Cascade DeleteNotA llowDelete = uncheck ed((int)0x 80048103); // -21471 88477 | |||||
| 3475 | publ ic const i nt Cascade InvalidLin kType = un checked((i nt)0x80048 102); // - 2147188478 | |||||
| 3476 | publ ic const i nt IsvExte nsionsPriv ilegeNotPr esent = un checked((i nt)0x80048 029); // - 2147188695 | |||||
| 3477 | publ ic const i nt Relatio nshipNameL engthExcee dsLimit = unchecked( (int)0x800 4802a); // -21471886 94 | |||||
| 3478 | publ ic const i nt ImportE mailTempla teErrorMis singFile = unchecked ((int)0x80 04802b); / / -2147188 693 | |||||
| 3479 | publ ic const i nt Cascade InvalidExt raConditio nValue = u nchecked(( int)0x8004 8101); // -214718847 9 | |||||
| 3480 | publ ic const i nt ImportW orkflowNam eConflictE rror = unc hecked((in t)0x800480 27); // -2 147188697 | |||||
| 3481 | publ ic const i nt ImportW orkflowPub lishedErro r = unchec ked((int)0 x80048028) ; // -2147 188696 | |||||
| 3482 | publ ic const i nt ImportW orkflowEnt ityDepende ncyError = unchecked ((int)0x80 048023); / / -2147188 701 | |||||
| 3483 | publ ic const i nt ImportW orkflowAtt ributeDepe ndencyErro r = unchec ked((int)0 x80048022) ; // -2147 188702 | |||||
| 3484 | publ ic const i nt ImportW orkflowErr or = unche cked((int) 0x80048021 ); // -214 7188703 | |||||
| 3485 | publ ic const i nt ImportG enericEnti tiesError = unchecke d((int)0x8 0048020); // -214718 8704 | |||||
| 3486 | publ ic const i nt ImportR olePermiss ionError = unchecked ((int)0x80 048018); / / -2147188 712 | |||||
| 3487 | publ ic const i nt ImportR oleError = unchecked ((int)0x80 048017); / / -2147188 713 | |||||
| 3488 | publ ic const i nt ImportO rgSettings Error = un checked((i nt)0x80048 019); // - 2147188711 | |||||
| 3489 | publ ic const i nt Invalid SharePoint SiteCollec tionUrl = unchecked( (int)0x800 48052); // -21471886 54 | |||||
| 3490 | publ ic const i nt Invalid SiteRelati veUrlForma t = unchec ked((int)0 x80048053) ; // -2147 188653 | |||||
| 3491 | publ ic const i nt Invalid RelativeUr lFormat = unchecked( (int)0x800 48054); // -21471886 52 | |||||
| 3492 | publ ic const i nt Invalid AbsoluteUr lFormat = unchecked( (int)0x800 48055); // -21471886 51 | |||||
| 3493 | publ ic const i nt Invalid UrlConsecu tiveSlashe s = unchec ked((int)0 x80048056) ; // -2147 188650 | |||||
| 3494 | publ ic const i nt SharePo intRecordW ithDuplica teUrl = un checked((i nt)0x80048 057); // - 2147188649 | |||||
| 3495 | publ ic const i nt SharePo intAbsolut eAndRelati veUrlEmpty = uncheck ed((int)0x 80048149); // -21471 88407 | |||||
| 3496 | publ ic const i nt ImportO ptionSetsE rror = unc hecked((in t)0x800480 30); // -2 147188688 | |||||
| 3497 | publ ic const i nt ImportR ibbonsErro r = unchec ked((int)0 x80048031) ; // -2147 188687 | |||||
| 3498 | publ ic const i nt ImportR eportsErro r = unchec ked((int)0 x80048032) ; // -2147 188686 | |||||
| 3499 | publ ic const i nt ImportS olutionErr or = unche cked((int) 0x80048033 ); // -214 7188685 | |||||
| 3500 | publ ic const i nt ImportD ependencyS olutionErr or = unche cked((int) 0x80048034 ); // -214 7188684 | |||||
| 3501 | publ ic const i nt ExportS olutionErr or = unche cked((int) 0x80048035 ); // -214 7188683 | |||||
| 3502 | publ ic const i nt ExportM anagedSolu tionError = unchecke d((int)0x8 0048036); // -214718 8682 | |||||
| 3503 | publ ic const i nt ExportM issingSolu tionError = unchecke d((int)0x8 0048037); // -214718 8681 | |||||
| 3504 | publ ic const i nt ImportS olutionMan agedError = unchecke d((int)0x8 0048038); // -214718 8680 | |||||
| 3505 | publ ic const i nt ImportO ptionSetAt tributeErr or = unche cked((int) 0x80048039 ); // -214 7188679 | |||||
| 3506 | publ ic const i nt ImportS olutionMan agedToUnma nagedMisma tch = unch ecked((int )0x8004804 0); // -21 47188672 | |||||
| 3507 | publ ic const i nt ImportS olutionUnm anagedToMa nagedMisma tch = unch ecked((int )0x8004804 1); // -21 47188671 | |||||
| 3508 | publ ic const i nt ImportS olutionIsv ConfigWarn ing = unch ecked((int )0x8004804 2); // -21 47188670 | |||||
| 3509 | publ ic const i nt ImportS olutionSit eMapWarnin g = unchec ked((int)0 x80048043) ; // -2147 188669 | |||||
| 3510 | publ ic const i nt ImportS olutionOrg anizationS ettingsWar ning = unc hecked((in t)0x800480 44); // -2 147188668 | |||||
| 3511 | publ ic const i nt ImportE xportDepre catedError = uncheck ed((int)0x 80048045); // -21471 88667 | |||||
| 3512 | publ ic const i nt ImportS ystemSolut ionError = unchecked ((int)0x80 048046); / / -2147188 666 | |||||
| 3513 | publ ic const i nt ImportT ranslation MissingSol utionError = uncheck ed((int)0x 80048047); // -21471 88665 | |||||
| 3514 | publ ic const i nt ExportD efaultAsPa ckagedErro r = unchec ked((int)0 x80048048) ; // -2147 188664 | |||||
| 3515 | publ ic const i nt ImportD efaultAsPa ckageError = uncheck ed((int)0x 80048049); // -21471 88663 | |||||
| 3516 | publ ic const i nt ImportC ustomizati onsBadZipF ileError = unchecked ((int)0x80 048060); / / -2147188 640 | |||||
| 3517 | publ ic const i nt ImportT ranslation sBadZipFil eError = u nchecked(( int)0x8004 8061); // -214718863 9 | |||||
| 3518 | publ ic const i nt ImportA ttributeNa meError = unchecked( (int)0x800 48062); // -21471886 38 | |||||
| 3519 | publ ic const i nt ImportF ieldSecuri tyProfileI sSecuredMi ssingError = uncheck ed((int)0x 80048063); // -21471 88637 | |||||
| 3520 | publ ic const i nt ImportF ieldSecuri tyProfileA ttributesM issingErro r = unchec ked((int)0 x80048064) ; // -2147 188636 | |||||
| 3521 | publ ic const i nt ImportF ileSignatu reInvalid = unchecke d((int)0x8 0048065); // -214718 8635 | |||||
| 3522 | publ ic const i nt ImportS olutionPac kageNotVal id = unche cked((int) 0x80048066 ); // -214 7188634 | |||||
| 3523 | publ ic const i nt ImportS olutionPac kageNeedsU pgrade = u nchecked(( int)0x8004 8067); // -214718863 3 | |||||
| 3524 | publ ic const i nt ImportS olutionPac kageInvali dSolutionP ackageVers ion = unch ecked((int )0x8004806 8); // -21 47188632 | |||||
| 3525 | publ ic const i nt ImportS olutionPac kageMinimu mVersionNe eded = unc hecked((in t)0x1); // 1 | |||||
| 3526 | publ ic const i nt ImportS olutionPac kageRequir esOptInAva ilable = u nchecked(( int)0x8004 8069); // -214718863 1 | |||||
| 3527 | publ ic const i nt ImportS olutionPac kageRequir esOptInNot Available = unchecke d((int)0x8 004806a); // -214718 8630 | |||||
| 3528 | publ ic const i nt ImportS dkMessages Error = un checked((i nt)0x80048 016); // - 2147188714 | |||||
| 3529 | publ ic const i nt ImportE mailTempla tePersonal Error = un checked((i nt)0x80048 014); // - 2147188716 | |||||
| 3530 | publ ic const i nt ImportN onWellForm edFileErro r = unchec ked((int)0 x80048013) ; // -2147 188717 | |||||
| 3531 | publ ic const i nt ImportP luginTypes Error = un checked((i nt)0x80048 012); // - 2147188718 | |||||
| 3532 | publ ic const i nt ImportS iteMapErro r = unchec ked((int)0 x80048011) ; // -2147 188719 | |||||
| 3533 | publ ic const i nt Default SiteMapDel eteFailure = uncheck ed((int)0x 80048070); // -21471 88624 | |||||
| 3534 | publ ic const i nt ImportM appingsMis singEntity MapError = unchecked ((int)0x80 048010); / / -2147188 720 | |||||
| 3535 | publ ic const i nt ImportM appingsSys temMapErro r = unchec ked((int)0 x8004800f) ; // -2147 188721 | |||||
| 3536 | publ ic const i nt ImportI svConfigEr ror = unch ecked((int )0x8004800 e); // -21 47188722 | |||||
| 3537 | publ ic const i nt ImportA rticleTemp lateError = unchecke d((int)0x8 004800d); // -214718 8723 | |||||
| 3538 | publ ic const i nt ImportE mailTempla teError = unchecked( (int)0x800 4800c); // -21471887 24 | |||||
| 3539 | publ ic const i nt ImportC ontractTem plateError = uncheck ed((int)0x 8004800b); // -21471 88725 | |||||
| 3540 | publ ic const i nt ImportR elationshi pRoleMapsE rror = unc hecked((in t)0x800480 0a); // -2 147188726 | |||||
| 3541 | publ ic const i nt ImportR elationshi pRolesErro r = unchec ked((int)0 x80048009) ; // -2147 188727 | |||||
| 3542 | publ ic const i nt ImportR elationshi pRolesPriv ilegeError = uncheck ed((int)0x 8004802f); // -21471 88689 | |||||
| 3543 | publ ic const i nt ImportE ntityNameM ismatchErr or = unche cked((int) 0x80048008 ); // -214 7188728 | |||||
| 3544 | publ ic const i nt ImportF ormXmlErro r = unchec ked((int)0 x80048007) ; // -2147 188729 | |||||
| 3545 | publ ic const i nt ImportF ieldXmlErr or = unche cked((int) 0x80048006 ); // -214 7188730 | |||||
| 3546 | publ ic const i nt ImportS avedQueryE xistingErr or = unche cked((int) 0x80048005 ); // -214 7188731 | |||||
| 3547 | publ ic const i nt ImportS avedQueryO tcMismatch Error = un checked((i nt)0x80048 004); // - 2147188732 | |||||
| 3548 | publ ic const i nt ImportE ntityCusto mResources NewStringE rror = unc hecked((in t)0x800480 03); // -2 147188733 | |||||
| 3549 | publ ic const i nt ImportE ntityCusto mResources Error = un checked((i nt)0x80048 002); // - 2147188734 | |||||
| 3550 | publ ic const i nt ImportE ntityIconE rror = unc hecked((in t)0x800480 01); // -2 147188735 | |||||
| 3551 | publ ic const i nt ImportS avedQueryD eletedErro r = unchec ked((int)0 x8004801b) ; // -2147 188709 | |||||
| 3552 | publ ic const i nt ImportE ntitySyste mUserOnPre miseMismat chError = unchecked( (int)0x800 48024); // -21471887 00 | |||||
| 3553 | publ ic const i nt ImportE ntitySyste mUserLiveM ismatchErr or = unche cked((int) 0x80048025 ); // -214 7188699 | |||||
| 3554 | publ ic const i nt ImportL anguagesIg noredError = uncheck ed((int)0x 80048026); // -21471 88698 | |||||
| 3555 | publ ic const i nt ImportI nvalidFile Error = un checked((i nt)0x80048 000); // - 2147188736 | |||||
| 3556 | publ ic const i nt ImportX sdValidati onError = unchecked( (int)0x800 4801a); // -21471887 10 | |||||
| 3557 | publ ic const i nt ImportI nvalidXmlE rror = unc hecked((in t)0x800480 2c); // -2 147188692 | |||||
| 3558 | publ ic const i nt ImportW rongPublis herError = unchecked ((int)0x80 04801c); / / -2147188 708 | |||||
| 3559 | publ ic const i nt ImportM issingDepe ndenciesEr ror = unch ecked((int )0x8004801 d); // -21 47188707 | |||||
| 3560 | publ ic const i nt ImportG enericErro r = unchec ked((int)0 x8004801e) ; // -2147 188706 | |||||
| 3561 | publ ic const i nt ImportM issingComp onent = un checked((i nt)0x80048 01f); // - 2147188705 | |||||
| 3562 | publ ic const i nt ImportM issingRoot ComponentE ntry = unc hecked((in t)0x800480 3a); // -2 147188678 | |||||
| 3563 | publ ic const i nt Unmanag edComponen tParentsMa nagedCompo nent = unc hecked((in t)0x800480 3b); // -2 147188677 | |||||
| 3564 | publ ic const i nt FailedT oGetNetwor kServiceNa me = unche cked((int) 0x80047103 ); // -214 7192573 | |||||
| 3565 | publ ic const i nt CustomP arentingSy stemNotSup ported = u nchecked(( int)0x8004 7102); // -214719257 4 | |||||
| 3566 | publ ic const i nt Invalid FormatPara meters = u nchecked(( int)0x8004 7101); // -214719257 5 | |||||
| 3567 | publ ic const i nt Invalid Hierarchic alRelation ship = unc hecked((in t)0x800470 1f); // -2 147192801 | |||||
| 3568 | publ ic const i nt Missing Hierarchic alRelation shipForOpe rator = un checked((i nt)0x80047 020); // - 2147192800 | |||||
| 3569 | publ ic const i nt Duplica tePrimaryN ameAttribu te = unche cked((int) 0x8004701e ); // -214 7192802 | |||||
| 3570 | publ ic const i nt Configu rationPage NotValidFo rSolution = unchecke d((int)0x8 004701d); // -214719 2803 | |||||
| 3571 | publ ic const i nt Solutio nConfigura tionPageMu stBeHtmlWe bResource = unchecke d((int)0x8 004701c); // -214719 2804 | |||||
| 3572 | publ ic const i nt Invalid SolutionCo nfiguratio nPage = un checked((i nt)0x80047 01b); // - 2147192805 | |||||
| 3573 | publ ic const i nt Invalid Hierarchic alRelation shipChange = uncheck ed((int)0x 8004701a); // -21471 92806 | |||||
| 3574 | publ ic const i nt Invalid LanguageFo rSolution = unchecke d((int)0x8 0047019); // -214719 2807 | |||||
| 3575 | publ ic const i nt CannotH aveDuplica teYomi = u nchecked(( int)0x8004 7018); // -214719280 8 | |||||
| 3576 | publ ic const i nt SavedQu eryIsNotCu stomizable = uncheck ed((int)0x 80047017); // -21471 92809 | |||||
| 3577 | publ ic const i nt CannotD eleteChild Attribute = unchecke d((int)0x8 0047016); // -214719 2810 | |||||
| 3578 | publ ic const i nt EntityH asNoStateC ode = unch ecked((int )0x8004701 5); // -21 47192811 | |||||
| 3579 | publ ic const i nt NoAttri butesForEn tityCreate = uncheck ed((int)0x 80047014); // -21471 92812 | |||||
| 3580 | publ ic const i nt Duplica teAttribut eSchemaNam e = unchec ked((int)0 x80047013) ; // -2147 192813 | |||||
| 3581 | publ ic const i nt Duplica teDisplayC ollectionN ame = unch ecked((int )0x8004701 2); // -21 47192814 | |||||
| 3582 | publ ic const i nt Duplica teDisplayN ame = unch ecked((int )0x8004701 1); // -21 47192815 | |||||
| 3583 | publ ic const i nt Duplica teName = u nchecked(( int)0x8004 7010); // -214719281 6 | |||||
| 3584 | publ ic const i nt Invalid Relationsh ipType = u nchecked(( int)0x8004 700f); // -214719281 7 | |||||
| 3585 | publ ic const i nt Invalid PrimaryFie ldType = u nchecked(( int)0x8004 700e); // -214719281 8 | |||||
| 3586 | publ ic const i nt Invalid OwnershipT ypeMask = unchecked( (int)0x800 4700d); // -21471928 19 | |||||
| 3587 | publ ic const i nt Invalid DisplayNam e = unchec ked((int)0 x8004700c) ; // -2147 192820 | |||||
| 3588 | publ ic const i nt Invalid SchemaName = uncheck ed((int)0x 8004700b); // -21471 92821 | |||||
| 3589 | publ ic const i nt Relatio nshipIsNot CustomRela tionship = unchecked ((int)0x80 04700a); / / -2147192 822 | |||||
| 3590 | publ ic const i nt Attribu teIsNotCus tomAttribu te = unche cked((int) 0x80047009 ); // -214 7192823 | |||||
| 3591 | publ ic const i nt EntityI sNotCustom izable = u nchecked(( int)0x8004 7008); // -214719282 4 | |||||
| 3592 | publ ic const i nt Multipl eParentsNo tSupported = uncheck ed((int)0x 80047007); // -21471 92825 | |||||
| 3593 | publ ic const i nt CannotC reateActiv ityRelatio nship = un checked((i nt)0x80047 006); // - 2147192826 | |||||
| 3594 | publ ic const i nt Cyclica lRelations hip = unch ecked((int )0x8004700 4); // -21 47192828 | |||||
| 3595 | publ ic const i nt Invalid Relationsh ipDescript ion = unch ecked((int )0x8004700 3); // -21 47192829 | |||||
| 3596 | publ ic const i nt CannotD eletePrima ryUIAttrib ute = unch ecked((int )0x8004700 2); // -21 47192830 | |||||
| 3597 | publ ic const i nt RowGuid IsNotValid Name = unc hecked((in t)0x800470 01); // -2 147192831 | |||||
| 3598 | publ ic const i nt FailedT oScheduleA ctivity = unchecked( (int)0x800 47000); // -21471928 32 | |||||
| 3599 | publ ic const i nt CannotD eleteLastE mailAttrib ute = unch ecked((int )0x80046ff f); // -21 47192833 | |||||
| 3600 | publ ic const i nt SystemA ttributeMa p = unchec ked((int)0 x80046205) ; // -2147 196411 | |||||
| 3601 | publ ic const i nt UpdateA ttributeMa p = unchec ked((int)0 x80046204) ; // -2147 196412 | |||||
| 3602 | publ ic const i nt Invalid AttributeM ap = unche cked((int) 0x80046203 ); // -214 7196413 | |||||
| 3603 | publ ic const i nt SystemE ntityMap = unchecked ((int)0x80 046202); / / -2147196 414 | |||||
| 3604 | publ ic const i nt UpdateE ntityMap = unchecked ((int)0x80 046201); / / -2147196 415 | |||||
| 3605 | publ ic const i nt NonMapp ableEntity = uncheck ed((int)0x 80046200); // -21471 96416 | |||||
| 3606 | publ ic const i nt unManag edidsCallo utExceptio n = unchec ked((int)0 x80045f05) ; // -2147 197179 | |||||
| 3607 | publ ic const i nt unManag edidscallo utinvalide vent = unc hecked((in t)0x80045f 04); // -2 147197180 | |||||
| 3608 | publ ic const i nt unManag edidscallo utinvalidc onfig = un checked((i nt)0x80045 f03); // - 2147197181 | |||||
| 3609 | publ ic const i nt unManag edidscallo utisvstop = unchecke d((int)0x8 0045f02); // -214719 7182 | |||||
| 3610 | publ ic const i nt unManag edidscallo utisvabort = uncheck ed((int)0x 80045f01); // -21471 97183 | |||||
| 3611 | publ ic const i nt unManag edidscallo utisvexcep tion = unc hecked((in t)0x80045f 00); // -2 147197184 | |||||
| 3612 | publ ic const i nt unManag edidscusto mentityamb iguousrela tionship = unchecked ((int)0x80 04590d); / / -2147198 707 | |||||
| 3613 | publ ic const i nt unManag edidscusto mentitynor elationshi p = unchec ked((int)0 x8004590c) ; // -2147 198708 | |||||
| 3614 | publ ic const i nt unManag edidscusto mentitypar entchildid entical = unchecked( (int)0x800 4590b); // -21471987 09 | |||||
| 3615 | publ ic const i nt unManag edidscusto mentityinv alidparent = uncheck ed((int)0x 8004590a); // -21471 98710 | |||||
| 3616 | publ ic const i nt unManag edidscusto mentityinv alidchild = unchecke d((int)0x8 0045909); // -214719 8711 | |||||
| 3617 | publ ic const i nt unManag edidscusto mentitywou ldcreatelo op = unche cked((int) 0x80045908 ); // -214 7198712 | |||||
| 3618 | publ ic const i nt unManag edidscusto mentityexi stingloop = unchecke d((int)0x8 0045907); // -214719 8713 | |||||
| 3619 | publ ic const i nt unManag edidscusto mentitysta ckunderflo w = unchec ked((int)0 x80045906) ; // -2147 198714 | |||||
| 3620 | publ ic const i nt unManag edidscusto mentitysta ckoverflow = uncheck ed((int)0x 80045905); // -21471 98715 | |||||
| 3621 | publ ic const i nt unManag edidscusto mentitytls failure = unchecked( (int)0x800 45904); // -21471987 16 | |||||
| 3622 | publ ic const i nt unManag edidscusto mentityinv alidowners hip = unch ecked((int )0x8004590 3); // -21 47198717 | |||||
| 3623 | publ ic const i nt unManag edidscusto mentitynot initialize d = unchec ked((int)0 x80045902) ; // -2147 198718 | |||||
| 3624 | publ ic const i nt unManag edidscusto mentityalr eadyinitia lized = un checked((i nt)0x80045 901); // - 2147198719 | |||||
| 3625 | publ ic const i nt unManag edidscusto mentitynam eviolation = uncheck ed((int)0x 80045900); // -21471 98720 | |||||
| 3626 | publ ic const i nt unManag edidscasca deunexpect ederror = unchecked( (int)0x800 45603); // -21471994 85 | |||||
| 3627 | publ ic const i nt unManag edidscasca deemptylin kerror = u nchecked(( int)0x8004 5602); // -214719948 6 | |||||
| 3628 | publ ic const i nt unManag edidscasca deundefine drelatione rror = unc hecked((in t)0x800456 01); // -2 147199487 | |||||
| 3629 | publ ic const i nt unManag edidscasca deinconsis tencyerror = uncheck ed((int)0x 80045600); // -21471 99488 | |||||
| 3630 | publ ic const i nt MergeLo ssOfParent ingWarning = uncheck ed((int)0x 80045317); // -21472 00233 | |||||
| 3631 | publ ic const i nt MergeDi fferentlyP arentedWar ning = unc hecked((in t)0x800453 16); // -2 147200234 | |||||
| 3632 | publ ic const i nt MergeEn titiesIden ticalError = uncheck ed((int)0x 80045305); // -21472 00251 | |||||
| 3633 | publ ic const i nt MergeEn tityNotAct iveError = unchecked ((int)0x80 045304); / / -2147200 252 | |||||
| 3634 | publ ic const i nt unManag edidsmerge differentb izorgerror = uncheck ed((int)0x 80045303); // -21472 00253 | |||||
| 3635 | publ ic const i nt MergeAc tiveQuoteE rror = unc hecked((in t)0x800453 02); // -2 147200254 | |||||
| 3636 | publ ic const i nt MergeSe curityErro r = unchec ked((int)0 x80045301) ; // -2147 200255 | |||||
| 3637 | publ ic const i nt MergeCy clicalPare ntingError = uncheck ed((int)0x 80045300); // -21472 00256 | |||||
| 3638 | publ ic const i nt unManag edidscalen darruledoe snotexist = unchecke d((int)0x8 0045100); // -214720 0768 | |||||
| 3639 | publ ic const i nt unManag edidscalen darinvalid calendar = unchecked ((int)0x80 044d00); / / -2147201 792 | |||||
| 3640 | publ ic const i nt Attachm entInvalid FileName = unchecked ((int)0x80 044a08); / / -2147202 552 | |||||
| 3641 | publ ic const i nt unManag edidsattac hmentcanno ttruncatet empfile = unchecked( (int)0x800 44a07); // -21472025 53 | |||||
| 3642 | publ ic const i nt unManag edidsattac hmentcanno tunmaptemp file = unc hecked((in t)0x80044a 06); // -2 147202554 | |||||
| 3643 | publ ic const i nt unManag edidsattac hmentcanno tcreatetem pfile = un checked((i nt)0x80044 a05); // - 2147202555 | |||||
| 3644 | publ ic const i nt unManag edidsattac hmentisemp ty = unche cked((int) 0x80044a04 ); // -214 7202556 | |||||
| 3645 | publ ic const i nt unManag edidsattac hmentcanno treadtempf ile = unch ecked((int )0x80044a0 3); // -21 47202557 | |||||
| 3646 | publ ic const i nt unManag edidsattac hmentinval idfilesize = uncheck ed((int)0x 80044a02); // -21472 02558 | |||||
| 3647 | publ ic const i nt unManag edidsattac hmentcanno tgetfilesi ze = unche cked((int) 0x80044a01 ); // -214 7202559 | |||||
| 3648 | publ ic const i nt unManag edidsattac hmentcanno topentempf ile = unch ecked((int )0x80044a0 0); // -21 47202560 | |||||
| 3649 | publ ic const i nt unManag edidscusto mizationtr ansformati onnotsuppo rted = unc hecked((in t)0x800447 00); // -2 147203328 | |||||
| 3650 | publ ic const i nt Contrac tDetailDis countAmoun tAndPercen t = unchec ked((int)0 x80044414) ; // -2147 204076 | |||||
| 3651 | publ ic const i nt Contrac tDetailDis countAmoun t = unchec ked((int)0 x80044413) ; // -2147 204077 | |||||
| 3652 | publ ic const i nt Contrac tDetailDis countPerce nt = unche cked((int) 0x80044412 ); // -214 7204078 | |||||
| 3653 | publ ic const i nt Inciden tIsAlready ClosedOrCa ncelled = unchecked( (int)0x800 44411); // -21472040 79 | |||||
| 3654 | publ ic const i nt unManag edidsincid entparenta ccountandp arentconta ctnotprese nt = unche cked((int) 0x80044410 ); // -214 7204080 | |||||
| 3655 | publ ic const i nt unManag edidsincid entparenta ccountandp arentconta ctpresent = unchecke d((int)0x8 004440f); // -214720 4081 | |||||
| 3656 | publ ic const i nt Inciden tCannotCan cel = unch ecked((int )0x8004440 e); // -21 47204082 | |||||
| 3657 | publ ic const i nt Inciden tInvalidCo ntractLine StateForCr eate = unc hecked((in t)0x800444 0d); // -2 147204083 | |||||
| 3658 | publ ic const i nt Inciden tNullSpent TimeOrBill ed = unche cked((int) 0x8004440c ); // -214 7204084 | |||||
| 3659 | publ ic const i nt Inciden tInvalidAl lotmentTyp e = unchec ked((int)0 x8004440b) ; // -2147 204085 | |||||
| 3660 | publ ic const i nt unManag edidsincid entcannotc lose = unc hecked((in t)0x800444 0a); // -2 147204086 | |||||
| 3661 | publ ic const i nt Inciden tMissingAc tivityRega rdingObjec t = unchec ked((int)0 x80044409) ; // -2147 204087 | |||||
| 3662 | publ ic const i nt unManag edidsincid entmissing activityob jecttype = unchecked ((int)0x80 044408); / / -2147204 088 | |||||
| 3663 | publ ic const i nt unManag edidsincid entnullact ivitytypec ode = unch ecked((int )0x8004440 7); // -21 47204089 | |||||
| 3664 | publ ic const i nt unManag edidsincid entinvalid activityty pecode = u nchecked(( int)0x8004 4406); // -214720409 0 | |||||
| 3665 | publ ic const i nt unManag edidsincid entassocia tedactivit ycorrupted = uncheck ed((int)0x 80044405); // -21472 04091 | |||||
| 3666 | publ ic const i nt unManag edidsincid entinvalid state = un checked((i nt)0x80044 404); // - 2147204092 | |||||
| 3667 | publ ic const i nt Inciden tContractD oesNotHave Allotments = uncheck ed((int)0x 80044403); // -21472 04093 | |||||
| 3668 | publ ic const i nt unManag edidsincid entcontrac tdetaildoe snotmatchc ontract = unchecked( (int)0x800 44402); // -21472040 94 | |||||
| 3669 | publ ic const i nt Inciden tMissingCo ntractDeta il = unche cked((int) 0x80044401 ); // -214 7204095 | |||||
| 3670 | publ ic const i nt Inciden tInvalidCo ntractStat eForCreate = uncheck ed((int)0x 80044400); // -21472 04096 | |||||
| 3671 | publ ic const i nt Invalid PrimaryCon tactBasedO nAccount = unchecked ((int)0x80 04f864); / / -2147157 916 | |||||
| 3672 | publ ic const i nt Invalid PrimaryCon tactBasedO nContact = unchecked ((int)0x80 04f865); / / -2147157 915 | |||||
| 3673 | publ ic const i nt Invalid Entitlemen tForSelect edCustomer OrProduct = unchecke d((int)0x8 004f866); // -214715 7914 | |||||
| 3674 | publ ic const i nt Invalid Entitlemen tContacts = unchecke d((int)0x8 0044207); // -214720 4601 | |||||
| 3675 | publ ic const i nt Entitle mentAlread yInCancele dState = u nchecked(( int)0x8004 4208); // -214720460 0 | |||||
| 3676 | publ ic const i nt Disable dCRMGoingO ffline = u nchecked(( int)0x8004 4200); // -214720460 8 | |||||
| 3677 | publ ic const i nt Disable dCRMGoingO nline = un checked((i nt)0x80044 201); // - 2147204607 | |||||
| 3678 | publ ic const i nt Disable dCRMAddinL oadFailure = uncheck ed((int)0x 80044202); // -21472 04606 | |||||
| 3679 | publ ic const i nt Disable dCRMClient VersionLow er = unche cked((int) 0x80044203 ); // -214 7204605 | |||||
| 3680 | publ ic const i nt Disable dCRMClient VersionHig her = unch ecked((int )0x8004420 4); // -21 47204604 | |||||
| 3681 | publ ic const i nt Disable dCRMPostOf flineUpgra de = unche cked((int) 0x80044205 ); // -214 7204603 | |||||
| 3682 | publ ic const i nt Disable dCRMOnline CrmNotAvai lable = un checked((i nt)0x80044 206); // - 2147204602 | |||||
| 3683 | publ ic const i nt GoOffli neMetadata VersionsMi smatch = u nchecked(( int)0x8004 4220); // -214720457 6 | |||||
| 3684 | publ ic const i nt GoOffli neGetBCPFi leExceptio n = unchec ked((int)0 x80044221) ; // -2147 204575 | |||||
| 3685 | publ ic const i nt GoOffli neDbSizeLi mit = unch ecked((int )0x8004422 2); // -21 47204574 | |||||
| 3686 | publ ic const i nt GoOffli neServerFa iledGenera teBCPFile = unchecke d((int)0x8 0044223); // -214720 4573 | |||||
| 3687 | publ ic const i nt GoOffli neBCPFileS ize = unch ecked((int )0x8004422 4); // -21 47204572 | |||||
| 3688 | publ ic const i nt GoOffli neFailedMo veData = u nchecked(( int)0x8004 4225); // -214720457 1 | |||||
| 3689 | publ ic const i nt GoOffli neFailedPr epareMsde = unchecke d((int)0x8 0044226); // -214720 4570 | |||||
| 3690 | publ ic const i nt GoOffli neFailedRe loadMetada taCache = unchecked( (int)0x800 44227); // -21472045 69 | |||||
| 3691 | publ ic const i nt DoNotTr ackItem = unchecked( (int)0x800 44228); // -21472045 68 | |||||
| 3692 | publ ic const i nt GoOffli neFileWasD eleted = u nchecked(( int)0x8004 4229); // -214720456 7 | |||||
| 3693 | publ ic const i nt GoOffli neEmptyFil eForDelete = uncheck ed((int)0x 80044230); // -21472 04560 | |||||
| 3694 | publ ic const i nt Invalid ForOfficeG raph = unc hecked((in t)0x800442 31); // -2 147204559 | |||||
| 3695 | publ ic const i nt Trendin gDocuments OnpremiseD eploymentE rror = unc hecked((in t)0x800442 32); // -2 147204558 | |||||
| 3696 | publ ic const i nt Trendin gDocuments Integratio nDisabledE rror = unc hecked((in t)0x800442 33); // -2 147204557 | |||||
| 3697 | publ ic const i nt Trendin gDocuments DataRetrie valFailure = uncheck ed((int)0x 80044234); // -21472 04556 | |||||
| 3698 | publ ic const i nt Relatio nshipNotCr eatedForOf ficeGraphE rror = unc hecked((in t)0x800442 35); // -2 147204555 | |||||
| 3699 | publ ic const i nt Relatio nshipNotUp datedForOf ficeGraphE rror = unc hecked((in t)0x800442 36); // -2 147204554 | |||||
| 3700 | publ ic const i nt Attribu teNotCreat edForOffic eGraphErro r = unchec ked((int)0 x80044237) ; // -2147 204553 | |||||
| 3701 | publ ic const i nt Attribu teNotUpdat edForOffic eGraphErro r = unchec ked((int)0 x80044238) ; // -2147 204552 | |||||
| 3702 | publ ic const i nt OfficeG raphDisabl edError = unchecked( (int)0x800 44239); // -21472045 51 | |||||
| 3703 | publ ic const i nt BaseAtt ributeName NotPresent Error = un checked((i nt)0x80044 240); // - 2147204544 | |||||
| 3704 | publ ic const i nt Operato rCodeNotPr esentError = uncheck ed((int)0x 80044241); // -21472 04543 | |||||
| 3705 | publ ic const i nt Invalid BaseAttrib uteError = unchecked ((int)0x80 044242); / / -2147204 542 | |||||
| 3706 | publ ic const i nt Matchin gAttribute NameNotNul lError = u nchecked(( int)0x8004 4243); // -214720454 1 | |||||
| 3707 | publ ic const i nt Invalid MatchingAt tributeErr or = unche cked((int) 0x80044244 ); // -214 7204540 | |||||
| 3708 | publ ic const i nt BaseMat chingAttri buteNotSam eError = u nchecked(( int)0x8004 4245); // -214720453 9 | |||||
| 3709 | publ ic const i nt Invalid OperatorCo deError = unchecked( (int)0x800 44253); // -21472045 25 | |||||
| 3710 | publ ic const i nt Invalid Similarity RuleStateE rror = unc hecked((in t)0x800442 54); // -2 147204524 | |||||
| 3711 | publ ic const i nt Trendin gDocuments Integratio nTurnedOff Error = un checked((i nt)0x80044 255); // - 2147204523 | |||||
| 3712 | publ ic const i nt OfficeG raphSiteNo tConfigure d = unchec ked((int)0 x80044257) ; // -2147 204521 | |||||
| 3713 | publ ic const i nt Trendin gDocuments OfflineMod eError = u nchecked(( int)0x8004 4258); // -214720452 0 | |||||
| 3714 | publ ic const i nt S2SNotC onfigured = unchecke d((int)0x8 0044259); // -214720 4519 | |||||
| 3715 | publ ic const i nt GraphAp iS2SSetupF ailureExce ption = un checked((i nt)0x80044 260); // - 2147204512 | |||||
| 3716 | publ ic const i nt Provisi onRIAccess NotAllowed = uncheck ed((int)0x 80044270); // -21472 04496 | |||||
| 3717 | publ ic const i nt Invalid RequestDat aFormat = unchecked( (int)0x800 44271); // -21472044 95 | |||||
| 3718 | publ ic const i nt Invalid FeatureTyp e = unchec ked((int)0 x80044272) ; // -2147 204494 | |||||
| 3719 | publ ic const i nt UpdateR IOrganizat ionDataAcc essNotAllo wed = unch ecked((int )0x8004427 3); // -21 47204493 | |||||
| 3720 | publ ic const i nt Deprovi sionRIAcce ssNotAllow ed = unche cked((int) 0x80044274 ); // -214 7204492 | |||||
| 3721 | publ ic const i nt Activit yAnalysisO rganizatio nUpdateErr or = unche cked((int) 0x80044275 ); // -214 7204491 | |||||
| 3722 | publ ic const i nt Relatio nshipIntel ligenceSDK Invocation Error = un checked((i nt)0x80044 276); // - 2147204490 | |||||
| 3723 | publ ic const i nt EnableR IFeatureNo tAllowed = unchecked ((int)0x80 044279); / / -2147204 487 | |||||
| 3724 | publ ic const i nt Disable RIFeatureN otAllowed = unchecke d((int)0x8 0044280); // -214720 4480 | |||||
| 3725 | publ ic const i nt RINotPr ovisioned = unchecke d((int)0x8 0044281); // -214720 4479 | |||||
| 3726 | publ ic const i nt ErrorOn GetRIProvi sionStatus = uncheck ed((int)0x 80044282); // -21472 04478 | |||||
| 3727 | publ ic const i nt ErrorOn GetRITenan tEndPoint = unchecke d((int)0x8 0044283); // -214720 4477 | |||||
| 3728 | publ ic const i nt ErrorOn StartOfRIP rovision = unchecked ((int)0x80 044284); / / -2147204 476 | |||||
| 3729 | publ ic const i nt ErrorOn TenantVeri fyUpdate = unchecked ((int)0x80 044285); / / -2147204 475 | |||||
| 3730 | publ ic const i nt ErrorOn GetRecord = unchecke d((int)0x8 0044286); // -214720 4474 | |||||
| 3731 | publ ic const i nt ErrorOn QryPropert yBagCollec tion = unc hecked((in t)0x800442 87); // -2 147204473 | |||||
| 3732 | publ ic const i nt ErrorPr opertyBagC ollectionM issedColum n = unchec ked((int)0 x80044288) ; // -2147 204472 | |||||
| 3733 | publ ic const i nt ErrorOn FeatureSta tusChange = unchecke d((int)0x8 0044289); // -214720 4471 | |||||
| 3734 | publ ic const i nt ErrorFe tchingBase Url = unch ecked((int )0x8004429 0); // -21 47204464 | |||||
| 3735 | publ ic const i nt ErrorFe tchingRIPr ovisionSta tus = unch ecked((int )0x8004429 1); // -21 47204463 | |||||
| 3736 | publ ic const i nt Relatio nshipInsig htsFeature DisableErr or = unche cked((int) 0x80044292 ); // -214 7204462 | |||||
| 3737 | publ ic const i nt Relatio nshipInsig htsFeature NotEnabled Error = un checked((i nt)0x80044 293); // - 2147204461 | |||||
| 3738 | publ ic const i nt ClientV ersionTooL ow = unche cked((int) 0x80044500 ); // -214 7203840 | |||||
| 3739 | publ ic const i nt ClientV ersionTooH igh = unch ecked((int )0x8004450 1); // -21 47203839 | |||||
| 3740 | publ ic const i nt Insuffi cientAcces sMode = un checked((i nt)0x80044 502); // - 2147203838 | |||||
| 3741 | publ ic const i nt ClientS erverDateT imeMismatc h = unchec ked((int)0 x80044503) ; // -2147 203837 | |||||
| 3742 | publ ic const i nt ClientS erverEmail AddressMis match = un checked((i nt)0x80044 504); // - 2147203836 | |||||
| 3743 | publ ic const i nt Federat edEndpoint Error = un checked((i nt)0x80044 505); // - 2147203835 | |||||
| 3744 | publ ic const i nt Communi cationBloc ked = unch ecked((int )0x8004450 6); // -21 47203834 | |||||
| 3745 | publ ic const i nt UserDoe sNotHaveAc cessToTheT enant = un checked((i nt)0x80044 507); // - 2147203833 | |||||
| 3746 | publ ic const i nt Configu redUserIsD ifferentTh anSupplied User = unc hecked((in t)0x800445 08); // -2 147203832 | |||||
| 3747 | publ ic const i nt Outlook ClientConf igActionFa iled = unc hecked((in t)0x800445 09); // -2 147203831 | |||||
| 3748 | publ ic const i nt Organiz ationUIDep recated = unchecked( (int)0x800 44159); // -21472047 75 | |||||
| 3749 | publ ic const i nt IsKitCa nnotBeNull = uncheck ed((int)0x 80044158); // -21472 04776 | |||||
| 3750 | publ ic const i nt SqlMaxR ecursionEx ceeded = u nchecked(( int)0x8004 4157); // -214720477 7 | |||||
| 3751 | publ ic const i nt unManag edidssqlti meouterror = uncheck ed((int)0x 80044151); // -21472 04783 | |||||
| 3752 | publ ic const i nt unManag edidssqler ror = unch ecked((int )0x8004415 0); // -21 47204784 | |||||
| 3753 | publ ic const i nt unManag edidsrcsyn cinvalidfi ltererror = unchecke d((int)0x8 004410d); // -214720 4851 | |||||
| 3754 | publ ic const i nt unManag edidsrcsyn cnotprimar y = unchec ked((int)0 x80044111) ; // -2147 204847 | |||||
| 3755 | publ ic const i nt unManag edidsrcsyn cnoprimary = uncheck ed((int)0x 80044112); // -21472 04846 | |||||
| 3756 | publ ic const i nt unManag edidsrcsyn cnoclient = unchecke d((int)0x8 0044113); // -214720 4845 | |||||
| 3757 | publ ic const i nt unManag edidsrcsyn cmethodnon e = unchec ked((int)0 x80044114) ; // -2147 204844 | |||||
| 3758 | publ ic const i nt unManag edidsrcsyn cfilternoa ccess = un checked((i nt)0x80044 10f); // - 2147204849 | |||||
| 3759 | publ ic const i nt Invalid OfflineOpe ration = u nchecked(( int)0x8004 410e); // -214720485 0 | |||||
| 3760 | publ ic const i nt unManag edidsrcsyn csqlgeneri cerror = u nchecked(( int)0x8004 4110); // -214720484 8 | |||||
| 3761 | publ ic const i nt unManag edidsrcsyn csqlpaused error = un checked((i nt)0x80044 10c); // - 2147204852 | |||||
| 3762 | publ ic const i nt unManag edidsrcsyn csqlstoppe derror = u nchecked(( int)0x8004 410b); // -214720485 3 | |||||
| 3763 | publ ic const i nt unManag edidsrcsyn csubscript ionowner = unchecked ((int)0x80 04410a); / / -2147204 854 | |||||
| 3764 | publ ic const i nt unManag edidsrcsyn cinvalidsu bscription = uncheck ed((int)0x 80044109); // -21472 04855 | |||||
| 3765 | publ ic const i nt unManag edidsrcsyn csoapparse error = un checked((i nt)0x80044 108); // - 2147204856 | |||||
| 3766 | publ ic const i nt unManag edidsrcsyn csoapreade rror = unc hecked((in t)0x800441 07); // -2 147204857 | |||||
| 3767 | publ ic const i nt unManag edidsrcsyn csoapfault error = un checked((i nt)0x80044 106); // - 2147204858 | |||||
| 3768 | publ ic const i nt unManag edidsrcsyn csoapserve rerror = u nchecked(( int)0x8004 4105); // -214720485 9 | |||||
| 3769 | publ ic const i nt unManag edidsrcsyn csoapsendf ailed = un checked((i nt)0x80044 104); // - 2147204860 | |||||
| 3770 | publ ic const i nt unManag edidsrcsyn csoapconnf ailed = un checked((i nt)0x80044 103); // - 2147204861 | |||||
| 3771 | publ ic const i nt unManag edidsrcsyn csoapgenfa iled = unc hecked((in t)0x800441 02); // -2 147204862 | |||||
| 3772 | publ ic const i nt unManag edidsrcsyn cmsxmlfail ed = unche cked((int) 0x80044101 ); // -214 7204863 | |||||
| 3773 | publ ic const i nt unManag edidsrcsyn cinvalidsy nctime = u nchecked(( int)0x8004 4100); // -214720486 4 | |||||
| 3774 | publ ic const i nt Attachm entBlocked = uncheck ed((int)0x 80043e09); // -21472 05623 | |||||
| 3775 | publ ic const i nt unManag edidsartic letemplate isnotactiv e = unchec ked((int)0 x80043e07) ; // -2147 205625 | |||||
| 3776 | publ ic const i nt unManag edidsfullt extoperati onfailed = unchecked ((int)0x80 043e06); / / -2147205 626 | |||||
| 3777 | publ ic const i nt unManag edidsartic letemplate containsar ticles = u nchecked(( int)0x8004 3e05); // -214720562 7 | |||||
| 3778 | publ ic const i nt unManag edidsqueue organizati onidnotmat ch = unche cked((int) 0x80043e04 ); // -214 7205628 | |||||
| 3779 | publ ic const i nt unManag edidsqueue missingbus inessuniti d = unchec ked((int)0 x80043e03) ; // -2147 205629 | |||||
| 3780 | publ ic const i nt Subject DoesNotExi st = unche cked((int) 0x80043e02 ); // -214 7205630 | |||||
| 3781 | publ ic const i nt Subject LoopBeingC reated = u nchecked(( int)0x8004 3e01); // -214720563 1 | |||||
| 3782 | publ ic const i nt Subject LoopExists = uncheck ed((int)0x 80043e00); // -21472 05632 | |||||
| 3783 | publ ic const i nt Invalid SubmitFrom Unapproved Article = unchecked( (int)0x800 48dff); // -21471851 53 | |||||
| 3784 | publ ic const i nt Invalid UnpublishF romUnappro vedArticle = uncheck ed((int)0x 80048dfe); // -21471 85154 | |||||
| 3785 | publ ic const i nt Invalid ApproveFro mDraftArti cle = unch ecked((int )0x80048df d); // -21 47185155 | |||||
| 3786 | publ ic const i nt Invalid UnpublishF romDraftAr ticle = un checked((i nt)0x80048 dfc); // - 2147185156 | |||||
| 3787 | publ ic const i nt Invalid ApproveFro mPublished Article = unchecked( (int)0x800 48dfb); // -21471851 57 | |||||
| 3788 | publ ic const i nt Invalid SubmitFrom PublishedA rticle = u nchecked(( int)0x8004 8dfa); // -214718515 8 | |||||
| 3789 | publ ic const i nt QuoteRe viseExisti ngActiveQu ote = unch ecked((int )0x80048d0 0); // -21 47185408 | |||||
| 3790 | publ ic const i nt BaseCur rencyNotDe letable = unchecked( (int)0x800 48cff); // -21471854 09 | |||||
| 3791 | publ ic const i nt CannotD eleteBaseM oneyCalcul ationAttri bute = unc hecked((in t)0x80048c fe); // -2 147185410 | |||||
| 3792 | publ ic const i nt Invalid ExchangeRa te = unche cked((int) 0x80048cfd ); // -214 7185411 | |||||
| 3793 | publ ic const i nt Invalid Currency = unchecked ((int)0x80 048cfc); / / -2147185 412 | |||||
| 3794 | publ ic const i nt Currenc yCannotBeN ullDueToNo nNullMoney Fields = u nchecked(( int)0x8004 8cfb); // -214718541 3 | |||||
| 3795 | publ ic const i nt CannotU pdateProdu ctCurrency = uncheck ed((int)0x 80048cfa); // -21471 85414 | |||||
| 3796 | publ ic const i nt Invalid PriceLevel CurrencyFo rPricingMe thod = unc hecked((in t)0x80048c f9); // -2 147185415 | |||||
| 3797 | publ ic const i nt Discoun tTypeAndPr iceLevelCu rrencyNotE qual = unc hecked((in t)0x80048c f8); // -2 147185416 | |||||
| 3798 | publ ic const i nt Currenc yRequiredF orDiscount TypeAmount = uncheck ed((int)0x 80048cf7); // -21471 85417 | |||||
| 3799 | publ ic const i nt RecordA ndPricelis tCurrencyN otEqual = unchecked( (int)0x800 48cf6); // -21471854 18 | |||||
| 3800 | publ ic const i nt Exchang eRateOfBas eCurrencyN otUpdatabl e = unchec ked((int)0 x80048cf5) ; // -2147 185419 | |||||
| 3801 | publ ic const i nt BaseCur rencyCanno tBeDeactiv ated = unc hecked((in t)0x80048c f4); // -2 147185420 | |||||
| 3802 | publ ic const i nt Duplica teIsoCurre ncyCode = unchecked( (int)0x800 48cf3); // -21471854 21 | |||||
| 3803 | publ ic const i nt Invalid IsoCurrenc yCode = un checked((i nt)0x80048 cf2); // - 2147185422 | |||||
| 3804 | publ ic const i nt Percent ageDiscoun tCannotHav eCurrency = unchecke d((int)0x8 0048cf1); // -214718 5423 | |||||
| 3805 | publ ic const i nt RecordA ndOpportun ityCurrenc yNotEqual = unchecke d((int)0x8 0048cef); // -214718 5425 | |||||
| 3806 | publ ic const i nt QuoteAn dSalesOrde rCurrencyN otEqual = unchecked( (int)0x800 48cee); // -21471854 26 | |||||
| 3807 | publ ic const i nt SalesOr derAndInvo iceCurrenc yNotEqual = unchecke d((int)0x8 0048ced); // -214718 5427 | |||||
| 3808 | publ ic const i nt BaseCur rencyOverf low = unch ecked((int )0x80048ce c); // -21 47185428 | |||||
| 3809 | publ ic const i nt BaseCur rencyUnder flow = unc hecked((in t)0x80048c eb); // -2 147185429 | |||||
| 3810 | publ ic const i nt Currenc yNotEqual = unchecke d((int)0x8 0048cea); // -214718 5430 | |||||
| 3811 | publ ic const i nt UnitNoN ame = unch ecked((int )0x80043b2 6); // -21 47206362 | |||||
| 3812 | publ ic const i nt unManag edidsinvoi cecloseapi deprecated = uncheck ed((int)0x 80043b25); // -21472 06363 | |||||
| 3813 | publ ic const i nt Product DoesNotExi st = unche cked((int) 0x80043b24 ); // -214 7206364 | |||||
| 3814 | publ ic const i nt Product KitLoopBei ngCreated = unchecke d((int)0x8 0043b23); // -214720 6365 | |||||
| 3815 | publ ic const i nt Product KitLoopExi sts = unch ecked((int )0x80043b2 2); // -21 47206366 | |||||
| 3816 | publ ic const i nt Discoun tPercent = unchecked ((int)0x80 043b21); / / -2147206 367 | |||||
| 3817 | publ ic const i nt Discoun tAmount = unchecked( (int)0x800 43b20); // -21472063 68 | |||||
| 3818 | publ ic const i nt Discoun tAmountAnd Percent = unchecked( (int)0x800 43b1f); // -21472063 69 | |||||
| 3819 | publ ic const i nt EntityI sUnlocked = unchecke d((int)0x8 0043b1e); // -214720 6370 | |||||
| 3820 | publ ic const i nt EntityI sLocked = unchecked( (int)0x800 43b1d); // -21472063 71 | |||||
| 3821 | publ ic const i nt BaseUni tDoesNotEx ist = unch ecked((int )0x80043b1 c); // -21 47206372 | |||||
| 3822 | publ ic const i nt UnitDoe sNotExist = unchecke d((int)0x8 0043b1b); // -214720 6373 | |||||
| 3823 | publ ic const i nt UnitLoo pBeingCrea ted = unch ecked((int )0x80043b1 a); // -21 47206374 | |||||
| 3824 | publ ic const i nt UnitLoo pExists = unchecked( (int)0x800 43b19); // -21472063 75 | |||||
| 3825 | publ ic const i nt Quantit yReadonly = unchecke d((int)0x8 0043b18); // -214720 6376 | |||||
| 3826 | publ ic const i nt BaseUni tNotNull = unchecked ((int)0x80 043b17); / / -2147206 377 | |||||
| 3827 | publ ic const i nt UnitNot InSchedule = uncheck ed((int)0x 80043b16); // -21472 06378 | |||||
| 3828 | publ ic const i nt Missing Opportunit yId = unch ecked((int )0x80043b1 5); // -21 47206379 | |||||
| 3829 | publ ic const i nt Product InvalidUni t = unchec ked((int)0 x80043b14) ; // -2147 206380 | |||||
| 3830 | publ ic const i nt Product MissingUom SheduleId = unchecke d((int)0x8 0043b13); // -214720 6381 | |||||
| 3831 | publ ic const i nt Missing PriceLevel Id = unche cked((int) 0x80043b12 ); // -214 7206382 | |||||
| 3832 | publ ic const i nt Missing ProductId = unchecke d((int)0x8 0043b11); // -214720 6383 | |||||
| 3833 | publ ic const i nt Invalid PricePerUn it = unche cked((int) 0x80043b10 ); // -214 7206384 | |||||
| 3834 | publ ic const i nt PriceLe velNameExi sts = unch ecked((int )0x80043b0 f); // -21 47206385 | |||||
| 3835 | publ ic const i nt PriceLe velNoName = unchecke d((int)0x8 0043b0e); // -214720 6386 | |||||
| 3836 | publ ic const i nt Missing UomId = un checked((i nt)0x80043 b0d); // - 2147206387 | |||||
| 3837 | publ ic const i nt Product InvalidPri ceLevelPer centage = unchecked( (int)0x800 43b0c); // -21472063 88 | |||||
| 3838 | publ ic const i nt Invalid BaseUnit = unchecked ((int)0x80 043b0b); / / -2147206 389 | |||||
| 3839 | publ ic const i nt Missing UomSchedul eId = unch ecked((int )0x80043b0 a); // -21 47206390 | |||||
| 3840 | publ ic const i nt ParentR eadOnly = unchecked( (int)0x800 43b09); // -21472063 91 | |||||
| 3841 | publ ic const i nt Duplica teProductP riceLevel = unchecke d((int)0x8 0043b08); // -214720 6392 | |||||
| 3842 | publ ic const i nt Product InvalidQua ntityDecim al = unche cked((int) 0x80043b07 ); // -214 7206393 | |||||
| 3843 | publ ic const i nt Product ProductNum berExists = unchecke d((int)0x8 0043b06); // -214720 6394 | |||||
| 3844 | publ ic const i nt Product NoProductN umber = un checked((i nt)0x80043 b05); // - 2147206395 | |||||
| 3845 | publ ic const i nt unManag edidscanno tdeactivat epriceleve l = unchec ked((int)0 x80043b04) ; // -2147 206396 | |||||
| 3846 | publ ic const i nt BaseUni tNotDeleta ble = unch ecked((int )0x80043b0 3); // -21 47206397 | |||||
| 3847 | publ ic const i nt Discoun tRangeOver lap = unch ecked((int )0x80043b0 2); // -21 47206398 | |||||
| 3848 | publ ic const i nt LowQuan tityGreate rThanHighQ uantity = unchecked( (int)0x800 43b01); // -21472063 99 | |||||
| 3849 | publ ic const i nt LowQuan tityLessTh anZero = u nchecked(( int)0x8004 3b00); // -214720640 0 | |||||
| 3850 | publ ic const i nt Invalid Substitute Product = unchecked( (int)0x800 43aff); // -21472064 01 | |||||
| 3851 | publ ic const i nt Invalid KitProduct = uncheck ed((int)0x 80043afe); // -21472 06402 | |||||
| 3852 | publ ic const i nt Invalid Kit = unch ecked((int )0x80043af d); // -21 47206403 | |||||
| 3853 | publ ic const i nt Invalid QuantityDe cimalCode = unchecke d((int)0x8 0043afc); // -214720 6404 | |||||
| 3854 | publ ic const i nt CannotS pecifyBoth ProductAnd ProductDes c = unchec ked((int)0 x80043afb) ; // -2147 206405 | |||||
| 3855 | publ ic const i nt CannotS pecifyBoth UomAndProd uctDesc = unchecked( (int)0x800 43afa); // -21472064 06 | |||||
| 3856 | publ ic const i nt unManag edidsstate doesnotexi st = unche cked((int) 0x80043af9 ); // -214 7206407 | |||||
| 3857 | publ ic const i nt FiscalS ettingsAlr eadyUpdate d = unchec ked((int)0 x80043809) ; // -2147 207159 | |||||
| 3858 | publ ic const i nt unManag edidssales peopleinva lidfiscalc alendartyp e = unchec ked((int)0 x80043808) ; // -2147 207160 | |||||
| 3859 | publ ic const i nt unManag edidssales peopleinva lidfiscalp eriodindex = uncheck ed((int)0x 80043807); // -21472 07161 | |||||
| 3860 | publ ic const i nt SalesPe opleManage rNotAllowe d = unchec ked((int)0 x80043805) ; // -2147 207163 | |||||
| 3861 | publ ic const i nt unManag edidssales peopleinva lidterrito ryobjectty pe = unche cked((int) 0x80043804 ); // -214 7207164 | |||||
| 3862 | publ ic const i nt SalesPe opleDuplic ateCalenda rNotAllowe d = unchec ked((int)0 x80043803) ; // -2147 207165 | |||||
| 3863 | publ ic const i nt unManag edidssales peopledupl icatecalen darfound = unchecked ((int)0x80 043802); / / -2147207 166 | |||||
| 3864 | publ ic const i nt SalesPe opleEmptyE ffectiveDa te = unche cked((int) 0x80043801 ); // -214 7207167 | |||||
| 3865 | publ ic const i nt SalesPe opleEmptyS alesPerson = uncheck ed((int)0x 80043800); // -21472 07168 | |||||
| 3866 | publ ic const i nt Invalid NumberGrou pFormat = unchecked( (int)0x800 43700); // -21472074 24 | |||||
| 3867 | publ ic const i nt BaseUom NameNotSpe cified = u nchecked(( int)0x8004 3810); // -214720715 2 | |||||
| 3868 | publ ic const i nt Invalid ActivityPa rtyAddress = uncheck ed((int)0x 80043518); // -21472 07912 | |||||
| 3869 | publ ic const i nt FaxNoSu pport = un checked((i nt)0x80043 517); // - 2147207913 | |||||
| 3870 | publ ic const i nt FaxNoDa ta = unche cked((int) 0x80043516 ); // -214 7207914 | |||||
| 3871 | publ ic const i nt Invalid PartyMappi ng = unche cked((int) 0x80043515 ); // -214 7207915 | |||||
| 3872 | publ ic const i nt Invalid ActivityXm l = unchec ked((int)0 x80043514) ; // -2147 207916 | |||||
| 3873 | publ ic const i nt Activit yInvalidOb jectTypeCo de = unche cked((int) 0x80043513 ); // -214 7207917 | |||||
| 3874 | publ ic const i nt Activit yInvalidSe ssionToken = uncheck ed((int)0x 80043512); // -21472 07918 | |||||
| 3875 | publ ic const i nt FaxServ iceNotRunn ing = unch ecked((int )0x8004351 1); // -21 47207919 | |||||
| 3876 | publ ic const i nt FaxSend Blocked = unchecked( (int)0x800 43510); // -21472079 20 | |||||
| 3877 | publ ic const i nt NoDialN umber = un checked((i nt)0x80043 50f); // - 2147207921 | |||||
| 3878 | publ ic const i nt TooMany Recipients = uncheck ed((int)0x 8004350e); // -21472 07922 | |||||
| 3879 | publ ic const i nt Missing Recipient = unchecke d((int)0x8 004350d); // -214720 7923 | |||||
| 3880 | publ ic const i nt unManag edidsactiv itynotrout able = unc hecked((in t)0x800435 0b); // -2 147207925 | |||||
| 3881 | publ ic const i nt unManag edidsactiv ityduratio ndoesnotma tch = unch ecked((int )0x8004350 a); // -21 47207926 | |||||
| 3882 | publ ic const i nt unManag edidsactiv ityinvalid duration = unchecked ((int)0x80 043509); / / -2147207 927 | |||||
| 3883 | publ ic const i nt unManag edidsactiv ityinvalid timeformat = uncheck ed((int)0x 80043508); // -21472 07928 | |||||
| 3884 | publ ic const i nt unManag edidsactiv ityinvalid regardingo bject = un checked((i nt)0x80043 507); // - 2147207929 | |||||
| 3885 | publ ic const i nt Activit yPartyObje ctTypeNotA llowed = u nchecked(( int)0x8004 3506); // -214720793 0 | |||||
| 3886 | publ ic const i nt unManag edidsactiv ityinvalid partyobjec ttype = un checked((i nt)0x80043 505); // - 2147207931 | |||||
| 3887 | publ ic const i nt unManag edidsactiv itypartyob jectidorty pemissing = unchecke d((int)0x8 0043504); // -214720 7932 | |||||
| 3888 | publ ic const i nt unManag edidsactiv ityinvalid objecttype = uncheck ed((int)0x 80043503); // -21472 07933 | |||||
| 3889 | publ ic const i nt unManag edidsactiv ityobjecti dortypemis sing = unc hecked((in t)0x800435 02); // -2 147207934 | |||||
| 3890 | publ ic const i nt unManag edidsactiv ityinvalid type = unc hecked((in t)0x800435 01); // -2 147207935 | |||||
| 3891 | publ ic const i nt unManag edidsactiv ityinvalid state = un checked((i nt)0x80043 500); // - 2147207936 | |||||
| 3892 | publ ic const i nt Contrac tInvalidDa tesForRene w = unchec ked((int)0 x80043218) ; // -2147 208680 | |||||
| 3893 | publ ic const i nt unManag edidscontr actinvalid startdatef orrenewedc ontract = unchecked( (int)0x800 43217); // -21472086 81 | |||||
| 3894 | publ ic const i nt unManag edidscontr acttemplat eabbreviat ionexists = unchecke d((int)0x8 0043216); // -214720 8682 | |||||
| 3895 | publ ic const i nt Contrac tInvalidPr ice = unch ecked((int )0x8004321 5); // -21 47208683 | |||||
| 3896 | publ ic const i nt unManag edidscontr actinvalid totalallot ments = un checked((i nt)0x80043 214); // - 2147208684 | |||||
| 3897 | publ ic const i nt Contrac tInvalidCo ntract = u nchecked(( int)0x8004 3213); // -214720868 5 | |||||
| 3898 | publ ic const i nt unManag edidscontr actinvalid owner = un checked((i nt)0x80043 212); // - 2147208686 | |||||
| 3899 | publ ic const i nt Contrac tInvalidCo ntractTemp late = unc hecked((in t)0x800432 11); // -2 147208687 | |||||
| 3900 | publ ic const i nt Contrac tInvalidBi llToCustom er = unche cked((int) 0x80043210 ); // -214 7208688 | |||||
| 3901 | publ ic const i nt Contrac tInvalidBi llToAddres s = unchec ked((int)0 x8004320f) ; // -2147 208689 | |||||
| 3902 | publ ic const i nt Contrac tInvalidSe rviceAddre ss = unche cked((int) 0x8004320e ); // -214 7208690 | |||||
| 3903 | publ ic const i nt Contrac tInvalidCu stomer = u nchecked(( int)0x8004 320d); // -214720869 1 | |||||
| 3904 | publ ic const i nt Contrac tNoLineIte ms = unche cked((int) 0x8004320c ); // -214 7208692 | |||||
| 3905 | publ ic const i nt Contrac tTemplateN oAbbreviat ion = unch ecked((int )0x8004320 b); // -21 47208693 | |||||
| 3906 | publ ic const i nt unManag edidscontr actopencas esexist = unchecked( (int)0x800 4320a); // -21472086 94 | |||||
| 3907 | publ ic const i nt unManag edidscontr actlineite mdoesnotex ist = unch ecked((int )0x8004320 8); // -21 47208696 | |||||
| 3908 | publ ic const i nt unManag edidscontr actdoesnot exist = un checked((i nt)0x80043 207); // - 2147208697 | |||||
| 3909 | publ ic const i nt Contrac tTemplateD oesNotExis t = unchec ked((int)0 x80043206) ; // -2147 208698 | |||||
| 3910 | publ ic const i nt Contrac tInvalidAl lotmentTyp eCode = un checked((i nt)0x80043 205); // - 2147208699 | |||||
| 3911 | publ ic const i nt Contrac tLineInval idState = unchecked( (int)0x800 43204); // -21472087 00 | |||||
| 3912 | publ ic const i nt Contrac tInvalidSt ate = unch ecked((int )0x8004320 3); // -21 47208701 | |||||
| 3913 | publ ic const i nt Contrac tInvalidSt artEndDate = uncheck ed((int)0x 80043202); // -21472 08702 | |||||
| 3914 | publ ic const i nt unManag edidscontr actaccount missing = unchecked( (int)0x800 43201); // -21472087 03 | |||||
| 3915 | publ ic const i nt unManag edidscontr actunexpec ted = unch ecked((int )0x8004320 0); // -21 47208704 | |||||
| 3916 | publ ic const i nt unManag edidsevale rrorformat lookuppara meter = un checked((i nt)0x80042 c4c); // - 2147210164 | |||||
| 3917 | publ ic const i nt unManag edidsevale rrorformat timezoneco deparamete r = unchec ked((int)0 x80042c4b) ; // -2147 210165 | |||||
| 3918 | publ ic const i nt unManag edidsevale rrorformat decimalpar ameter = u nchecked(( int)0x8004 2c4a); // -214721016 6 | |||||
| 3919 | publ ic const i nt unManag edidsevale rrorformat integerpar ameter = u nchecked(( int)0x8004 2c49); // -214721016 7 | |||||
| 3920 | publ ic const i nt unManag edidsevale rrorobject type = unc hecked((in t)0x80042c 48); // -2 147210168 | |||||
| 3921 | publ ic const i nt unManag edidsevale rrorqueuei dparameter = uncheck ed((int)0x 80042c47); // -21472 10169 | |||||
| 3922 | publ ic const i nt unManag edidsevale rrorformat picklistpa rameter = unchecked( (int)0x800 42c46); // -21472101 70 | |||||
| 3923 | publ ic const i nt unManag edidsevale rrorformat booleanpar ameter = u nchecked(( int)0x8004 2c45); // -214721017 1 | |||||
| 3924 | publ ic const i nt unManag edidsevale rrorformat datetimepa rameter = unchecked( (int)0x800 42c44); // -21472101 72 | |||||
| 3925 | publ ic const i nt unManag edidsevale rrorisnull listparame ter = unch ecked((int )0x80042c4 3); // -21 47210173 | |||||
| 3926 | publ ic const i nt unManag edidsevale rrorinlist parameter = unchecke d((int)0x8 0042c42); // -214721 0174 | |||||
| 3927 | publ ic const i nt unManag edidsevale rrorsetact ivityparty = uncheck ed((int)0x 80042c41); // -21472 10175 | |||||
| 3928 | publ ic const i nt unManag edidsevale rrorremove fromactivi typarty = unchecked( (int)0x800 42c40); // -21472101 76 | |||||
| 3929 | publ ic const i nt unManag edidsevale rrorappend toactivity party = un checked((i nt)0x80042 c3f); // - 2147210177 | |||||
| 3930 | publ ic const i nt unManag edidsevalt imererrorc alculatesc heduletime = uncheck ed((int)0x 80042c3e); // -21472 10178 | |||||
| 3931 | publ ic const i nt unManag edidsevalt imerinvali dparameter number = u nchecked(( int)0x8004 2c3d); // -214721017 9 | |||||
| 3932 | publ ic const i nt unManag edidsevalc reateshoul dhave2para meters = u nchecked(( int)0x8004 2c3c); // -214721018 0 | |||||
| 3933 | publ ic const i nt unManag edidsevale rrorcreate = uncheck ed((int)0x 80042c3b); // -21472 10181 | |||||
| 3934 | publ ic const i nt unManag edidsevale rrorcontai nparameter = uncheck ed((int)0x 80042c3a); // -21472 10182 | |||||
| 3935 | publ ic const i nt unManag edidsevale rrorendwit hparameter = uncheck ed((int)0x 80042c39); // -21472 10183 | |||||
| 3936 | publ ic const i nt unManag edidsevale rrorbeginw ithparamet er = unche cked((int) 0x80042c38 ); // -214 7210184 | |||||
| 3937 | publ ic const i nt unManag edidsevale rrorstrlen parameter = unchecke d((int)0x8 0042c37); // -214721 0185 | |||||
| 3938 | publ ic const i nt unManag edidsevale rrorsubstr parameter = unchecke d((int)0x8 0042c36); // -214721 0186 | |||||
| 3939 | publ ic const i nt unManag edidsevale rrorinvali drecipient = uncheck ed((int)0x 80042c35); // -21472 10187 | |||||
| 3940 | publ ic const i nt unManag edidsevale rrorinpara meter = un checked((i nt)0x80042 c34); // - 2147210188 | |||||
| 3941 | publ ic const i nt unManag edidsevale rrorbetwee nparameter = uncheck ed((int)0x 80042c33); // -21472 10189 | |||||
| 3942 | publ ic const i nt unManag edidsevale rrorneqpar ameter = u nchecked(( int)0x8004 2c32); // -214721019 0 | |||||
| 3943 | publ ic const i nt unManag edidsevale rroreqpara meter = un checked((i nt)0x80042 c31); // - 2147210191 | |||||
| 3944 | publ ic const i nt unManag edidsevale rrorleqpar ameter = u nchecked(( int)0x8004 2c30); // -214721019 2 | |||||
| 3945 | publ ic const i nt unManag edidsevale rrorltpara meter = un checked((i nt)0x80042 c2f); // - 2147210193 | |||||
| 3946 | publ ic const i nt unManag edidsevale rrorgeqpar ameter = u nchecked(( int)0x8004 2c2e); // -214721019 4 | |||||
| 3947 | publ ic const i nt unManag edidsevale rrorgtpara meter = un checked((i nt)0x80042 c2d); // - 2147210195 | |||||
| 3948 | publ ic const i nt unManag edidsevale rrorabspar ameter = u nchecked(( int)0x8004 2c2c); // -214721019 6 | |||||
| 3949 | publ ic const i nt unManag edidsevale rrorinvali dparameter = uncheck ed((int)0x 80042c2b); // -21472 10197 | |||||
| 3950 | publ ic const i nt unManag edidsevalg enericerro r = unchec ked((int)0 x80042c2a) ; // -2147 210198 | |||||
| 3951 | publ ic const i nt unManag edidsevale rrorincide ntqueue = unchecked( (int)0x800 42c29); // -21472101 99 | |||||
| 3952 | publ ic const i nt unManag edidsevale rrorhalt = unchecked ((int)0x80 042c28); / / -2147210 200 | |||||
| 3953 | publ ic const i nt unManag edidsevale rrorexec = unchecked ((int)0x80 042c27); / / -2147210 201 | |||||
| 3954 | publ ic const i nt unManag edidsevale rrorpostur l = unchec ked((int)0 x80042c26) ; // -2147 210202 | |||||
| 3955 | publ ic const i nt unManag edidsevale rrorsetsta te = unche cked((int) 0x80042c25 ); // -214 7210203 | |||||
| 3956 | publ ic const i nt unManag edidsevale rrorroute = unchecke d((int)0x8 0042c24); // -214721 0204 | |||||
| 3957 | publ ic const i nt unManag edidsevale rrorupdate = uncheck ed((int)0x 80042c23); // -21472 10205 | |||||
| 3958 | publ ic const i nt unManag edidsevale rrorassign = uncheck ed((int)0x 80042c22); // -21472 10206 | |||||
| 3959 | publ ic const i nt unManag edidsevale rroremailt emplate = unchecked( (int)0x800 42c21); // -21472102 07 | |||||
| 3960 | publ ic const i nt unManag edidsevale rrorsendem ail = unch ecked((int )0x80042c2 0); // -21 47210208 | |||||
| 3961 | publ ic const i nt unManag edidsevale rrorunhand leincident = uncheck ed((int)0x 80042c1f); // -21472 10209 | |||||
| 3962 | publ ic const i nt unManag edidsevale rrorhandle incident = unchecked ((int)0x80 042c1e); / / -2147210 210 | |||||
| 3963 | publ ic const i nt unManag edidsevale rrorcreate incident = unchecked ((int)0x80 042c1d); / / -2147210 211 | |||||
| 3964 | publ ic const i nt unManag edidsevale rrornoteat tachment = unchecked ((int)0x80 042c1c); / / -2147210 212 | |||||
| 3965 | publ ic const i nt unManag edidsevale rrorcreate note = unc hecked((in t)0x80042c 1b); // -2 147210213 | |||||
| 3966 | publ ic const i nt unManag edidsevale rrorunhand leactivity = uncheck ed((int)0x 80042c1a); // -21472 10214 | |||||
| 3967 | publ ic const i nt unManag edidsevale rrorhandle activity = unchecked ((int)0x80 042c19); / / -2147210 215 | |||||
| 3968 | publ ic const i nt unManag edidsevale rroractivi tyattachme nt = unche cked((int) 0x80042c18 ); // -214 7210216 | |||||
| 3969 | publ ic const i nt unManag edidsevale rrorcreate activity = unchecked ((int)0x80 042c17); / / -2147210 217 | |||||
| 3970 | publ ic const i nt unManag edidsevale rrordivide dbyzero = unchecked( (int)0x800 42c16); // -21472102 18 | |||||
| 3971 | publ ic const i nt unManag edidsevale rrormodulu sparameter = uncheck ed((int)0x 80042c15); // -21472 10219 | |||||
| 3972 | publ ic const i nt unManag edidsevale rrormodulu sparameter s = unchec ked((int)0 x80042c14) ; // -2147 210220 | |||||
| 3973 | publ ic const i nt unManag edidsevale rrordivisi onparamete r = unchec ked((int)0 x80042c13) ; // -2147 210221 | |||||
| 3974 | publ ic const i nt unManag edidsevale rrordivisi onparamete rs = unche cked((int) 0x80042c12 ); // -214 7210222 | |||||
| 3975 | publ ic const i nt unManag edidsevale rrormultip licationpa rameter = unchecked( (int)0x800 42c11); // -21472102 23 | |||||
| 3976 | publ ic const i nt unManag edidsevale rrorsubtra ctionparam eter = unc hecked((in t)0x80042c 10); // -2 147210224 | |||||
| 3977 | publ ic const i nt unManag edidsevale rroraddpar ameter = u nchecked(( int)0x8004 2c0f); // -214721022 5 | |||||
| 3978 | publ ic const i nt unManag edidsevalm issselectq uery = unc hecked((in t)0x80042c 0e); // -2 147210226 | |||||
| 3979 | publ ic const i nt unManag edidsevalc hangetypee rror = unc hecked((in t)0x80042c 0d); // -2 147210227 | |||||
| 3980 | publ ic const i nt unManag edidsevala llcomplete d = unchec ked((int)0 x80042c0c) ; // -2147 210228 | |||||
| 3981 | publ ic const i nt unManag edidsevalm etabaseatt ributenotm atchquery = unchecke d((int)0x8 0042c0b); // -214721 0229 | |||||
| 3982 | publ ic const i nt unManag edidsevalm etabaseent itynotmatc hquery = u nchecked(( int)0x8004 2c0a); // -214721023 0 | |||||
| 3983 | publ ic const i nt unManag edidsevalp ropertyisn ull = unch ecked((int )0x80042c0 9); // -21 47210231 | |||||
| 3984 | publ ic const i nt unManag edidsevalm etabaseatt ributenotf ound = unc hecked((in t)0x80042c 08); // -2 147210232 | |||||
| 3985 | publ ic const i nt unManag edidsevalm etabaseent itycompoun dkeys = un checked((i nt)0x80042 c07); // - 2147210233 | |||||
| 3986 | publ ic const i nt unManag edidsevalp ropertynot found = un checked((i nt)0x80042 c06); // - 2147210234 | |||||
| 3987 | publ ic const i nt unManag edidsevalo bjectnotfo und = unch ecked((int )0x80042c0 5); // -21 47210235 | |||||
| 3988 | publ ic const i nt unManag edidsevalc ompleted = unchecked ((int)0x80 042c04); / / -2147210 236 | |||||
| 3989 | publ ic const i nt unManag edidsevala borted = u nchecked(( int)0x8004 2c03); // -214721023 7 | |||||
| 3990 | publ ic const i nt unManag edidsevala llaborted = unchecke d((int)0x8 0042c02); // -214721 0238 | |||||
| 3991 | publ ic const i nt unManag edidsevala ssignshoul dhave4para meters = u nchecked(( int)0x8004 2c01); // -214721023 9 | |||||
| 3992 | publ ic const i nt unManag edidsevalu pdateshoul dhave3para meters = u nchecked(( int)0x8004 2c00); // -214721024 0 | |||||
| 3993 | publ ic const i nt unManag edidscpdec ryptfailed = uncheck ed((int)0x 80042903); // -21472 11005 | |||||
| 3994 | publ ic const i nt unManag edidscpenc ryptfailed = uncheck ed((int)0x 80042902); // -21472 11006 | |||||
| 3995 | publ ic const i nt unManag edidscpbad password = unchecked ((int)0x80 042901); / / -2147211 007 | |||||
| 3996 | publ ic const i nt unManag edidscpuse rdoesnotex ist = unch ecked((int )0x8004290 0); // -21 47211008 | |||||
| 3997 | publ ic const i nt unManag edidsdataa ccessunexp ected = un checked((i nt)0x80042 300); // - 2147212544 | |||||
| 3998 | publ ic const i nt unManag edidspropb agattribut ealreadyse t = unchec ked((int)0 x8004203f) ; // -2147 213249 | |||||
| 3999 | publ ic const i nt unManag edidspropb agattribut enotnullab le = unche cked((int) 0x8004203e ); // -214 7213250 | |||||
| 4000 | publ ic const i nt unManag edidsrspro pbagdbinfo alreadyset = uncheck ed((int)0x 8004203d); // -21472 13251 | |||||
| 4001 | publ ic const i nt unManag edidsrspro pbagdbinfo notset = u nchecked(( int)0x8004 203c); // -214721325 2 | |||||
| 4002 | publ ic const i nt unManag edidspropb agcollouto frange = u nchecked(( int)0x8004 201e); // -214721328 2 | |||||
| 4003 | publ ic const i nt unManag edidspropb agnullprop erty = unc hecked((in t)0x800420 02); // -2 147213310 | |||||
| 4004 | publ ic const i nt unManag edidspropb agnointerf ace = unch ecked((int )0x8004200 1); // -21 47213311 | |||||
| 4005 | publ ic const i nt unManag edMissingO bjectType = unchecke d((int)0x8 0042003); // -214721 3309 | |||||
| 4006 | publ ic const i nt unManag edObjectTy peUnexpect ed = unche cked((int) 0x80042004 ); // -214 7213308 | |||||
| 4007 | publ ic const i nt Busines sUnitCanno tBeDisable d = unchec ked((int)0 x80041d59) ; // -2147 213991 | |||||
| 4008 | publ ic const i nt Busines sUnitIsNot DisabledAn dCannotBeD eleted = u nchecked(( int)0x8004 1d60); // -214721398 4 | |||||
| 4009 | publ ic const i nt Busines sUnitHasCh ildAndCann otBeDelete d = unchec ked((int)0 x80041d61) ; // -2147 213983 | |||||
| 4010 | publ ic const i nt Busines sUnitDefau ltTeamOwns Records = unchecked( (int)0x800 41d62); // -21472139 82 | |||||
| 4011 | publ ic const i nt RootBus inessUnitC annotBeDis abled = un checked((i nt)0x80041 d63); // - 2147213981 | |||||
| 4012 | publ ic const i nt unManag edidspropb agproperty notfound = unchecked ((int)0x80 042000); / / -2147213 312 | |||||
| 4013 | publ ic const i nt ReadOnl yUserNotSu pported = unchecked( (int)0x800 41d40); // -21472140 16 | |||||
| 4014 | publ ic const i nt Support UserCannot BeCreateNo rUpdated = unchecked ((int)0x80 041d41); / / -2147214 015 | |||||
| 4015 | publ ic const i nt Delegat edAdminUse rCannotBeC reateNorUp dated = un checked((i nt)0x80041 d67); // - 2147213977 | |||||
| 4016 | publ ic const i nt Applica tionUserCa nnotBeUpda ted = unch ecked((int )0x80041d4 8); // -21 47214008 | |||||
| 4017 | publ ic const i nt Applica tionNotReg isteredWit hDeploymen t = unchec ked((int)0 x80041d49) ; // -2147 214007 | |||||
| 4018 | publ ic const i nt Invalid OAuthToken = uncheck ed((int)0x 80041d50); // -21472 14000 | |||||
| 4019 | publ ic const i nt Expired OAuthToken = uncheck ed((int)0x 80041d52); // -21472 13998 | |||||
| 4020 | publ ic const i nt CannotA ssignRoles ToSupportU ser = unch ecked((int )0x80041d5 1); // -21 47213999 | |||||
| 4021 | publ ic const i nt CannotM akeSelfRea dOnlyUser = unchecke d((int)0x8 0041d39); // -214721 4023 | |||||
| 4022 | publ ic const i nt CannotM akeReadOnl yUser = un checked((i nt)0x80041 d38); // - 2147214024 | |||||
| 4023 | publ ic const i nt unManag edidsbizmg mtcantchan georgname = unchecke d((int)0x8 0041d36); // -214721 4026 | |||||
| 4024 | publ ic const i nt Multipl eOrganizat ionsNotAll owed = unc hecked((in t)0x80041d 35); // -2 147214027 | |||||
| 4025 | publ ic const i nt UserSet tingsInval idAdvanced FindStartu pMode = un checked((i nt)0x80041 d34); // - 2147214028 | |||||
| 4026 | publ ic const i nt UserSet tingsInval idSearchEx perienceVa lue = unch ecked((int )0x80041d5 3); // -21 47213997 | |||||
| 4027 | publ ic const i nt CannotM odifySpeci alUser = u nchecked(( int)0x8004 1d33); // -214721402 9 | |||||
| 4028 | publ ic const i nt unManag edidsbizmg mtcannotad dlocaluser = uncheck ed((int)0x 80041d32); // -21472 14030 | |||||
| 4029 | publ ic const i nt CannotM odifySysAd min = unch ecked((int )0x80041d3 1); // -21 47214031 | |||||
| 4030 | publ ic const i nt CannotM odifySuppo rtUser = u nchecked(( int)0x8004 1d43); // -214721401 3 | |||||
| 4031 | publ ic const i nt CannotA ssignSuppo rtUser = u nchecked(( int)0x8004 1d44); // -214721401 2 | |||||
| 4032 | publ ic const i nt CannotR emoveFromS upportUser = uncheck ed((int)0x 80041d45); // -21472 14011 | |||||
| 4033 | publ ic const i nt CannotC reateFromS upportUser = uncheck ed((int)0x 80041d46); // -21472 14010 | |||||
| 4034 | publ ic const i nt CannotU pdateSuppo rtUser = u nchecked(( int)0x8004 1d47); // -214721400 9 | |||||
| 4035 | publ ic const i nt CannotR emoveFromS ysAdmin = unchecked( (int)0x800 41d30); // -21472140 32 | |||||
| 4036 | publ ic const i nt CannotD isableSysA dmin = unc hecked((in t)0x80041d 2f); // -2 147214033 | |||||
| 4037 | publ ic const i nt CannotD eleteSysAd min = unch ecked((int )0x80041d2 e); // -21 47214034 | |||||
| 4038 | publ ic const i nt CannotD eleteSuppo rtUser = u nchecked(( int)0x8004 1d42); // -214721401 4 | |||||
| 4039 | publ ic const i nt CannotD eleteSyste mCustomize r = unchec ked((int)0 x80041d4a) ; // -2147 214006 | |||||
| 4040 | publ ic const i nt CannotC reateSyncU serObjectM issing = u nchecked(( int)0x8004 1d4b); // -214721400 5 | |||||
| 4041 | publ ic const i nt CannotU pdateSyncU serIsLicen sedField = unchecked ((int)0x80 041d4c); / / -2147214 004 | |||||
| 4042 | publ ic const i nt CannotC reateSyncU serIsLicen sedField = unchecked ((int)0x80 041d4d); / / -2147214 003 | |||||
| 4043 | publ ic const i nt CannotU pdateSyncU serIsSyncW ithDirecto ryField = unchecked( (int)0x800 41d4e); // -21472140 02 | |||||
| 4044 | publ ic const i nt CannotU pdateAzure ActiveDire ctoryObjec tIdField = unchecked ((int)0x80 041d4f); / / -2147214 001 | |||||
| 4045 | publ ic const i nt unManag edidsbizmg mtcannotre adaccountc ontrol = u nchecked(( int)0x8004 1d2d); // -214721403 5 | |||||
| 4046 | publ ic const i nt UserAlr eadyExists = uncheck ed((int)0x 80041d2c); // -21472 14036 | |||||
| 4047 | publ ic const i nt unManag edidsbizmg mtusersett ingsnotcre ated = unc hecked((in t)0x80041d 2b); // -2 147214037 | |||||
| 4048 | publ ic const i nt ObjectN otFoundInA D = unchec ked((int)0 x80041d2a) ; // -2147 214038 | |||||
| 4049 | publ ic const i nt Generic ActiveDire ctoryError = uncheck ed((int)0x 80041d37); // -21472 14025 | |||||
| 4050 | publ ic const i nt Generic AzureActiv eDirectory Error = un checked((i nt)0x80041 d54); // - 2147213996 | |||||
| 4051 | publ ic const i nt unManag edidsbizmg mtnoparent business = unchecked ((int)0x80 041d29); / / -2147214 039 | |||||
| 4052 | publ ic const i nt ParentU serDoesNot Exist = un checked((i nt)0x80041 d27); // - 2147214041 | |||||
| 4053 | publ ic const i nt ChildUs erDoesNotE xist = unc hecked((in t)0x80041d 26); // -2 147214042 | |||||
| 4054 | publ ic const i nt UserLoo pBeingCrea ted = unch ecked((int )0x80041d2 5); // -21 47214043 | |||||
| 4055 | publ ic const i nt UserLoo pExists = unchecked( (int)0x800 41d24); // -21472140 44 | |||||
| 4056 | publ ic const i nt ParentB usinessDoe sNotExist = unchecke d((int)0x8 0041d23); // -214721 4045 | |||||
| 4057 | publ ic const i nt ChildBu sinessDoes NotExist = unchecked ((int)0x80 041d22); / / -2147214 046 | |||||
| 4058 | publ ic const i nt Busines sManagemen tLoopBeing Created = unchecked( (int)0x800 41d21); // -21472140 47 | |||||
| 4059 | publ ic const i nt Busines sManagemen tLoopExist s = unchec ked((int)0 x80041d20) ; // -2147 214048 | |||||
| 4060 | publ ic const i nt Busines sManagemen tInvalidUs erId = unc hecked((in t)0x80041d 1f); // -2 147214049 | |||||
| 4061 | publ ic const i nt unManag edidsbizmg mtuserdoes nothavepar ent = unch ecked((int )0x80041d1 e); // -21 47214050 | |||||
| 4062 | publ ic const i nt unManag edidsbizmg mtcannoten ableprovis ion = unch ecked((int )0x80041d1 d); // -21 47214051 | |||||
| 4063 | publ ic const i nt unManag edidsbizmg mtcannoten ablebusine ss = unche cked((int) 0x80041d1c ); // -214 7214052 | |||||
| 4064 | publ ic const i nt unManag edidsbizmg mtcannotdi sableprovi sion = unc hecked((in t)0x80041d 1b); // -2 147214053 | |||||
| 4065 | publ ic const i nt unManag edidsbizmg mtcannotdi sablebusin ess = unch ecked((int )0x80041d1 a); // -21 47214054 | |||||
| 4066 | publ ic const i nt unManag edidsbizmg mtcannotde leteprovis ion = unch ecked((int )0x80041d1 9); // -21 47214055 | |||||
| 4067 | publ ic const i nt unManag edidsbizmg mtcannotde letebusine ss = unche cked((int) 0x80041d18 ); // -214 7214056 | |||||
| 4068 | publ ic const i nt unManag edidsbizmg mtcannotre movepartne rshipdefau ltuser = u nchecked(( int)0x8004 1d17); // -214721405 7 | |||||
| 4069 | publ ic const i nt unManag edidsbizmg mtpartners hipnotinpe ndingstatu s = unchec ked((int)0 x80041d16) ; // -2147 214058 | |||||
| 4070 | publ ic const i nt unManag edidsbizmg mtdefaultu sernotinpa rtnerbusin ess = unch ecked((int )0x80041d1 5); // -21 47214059 | |||||
| 4071 | publ ic const i nt unManag edidsbizmg mtcallerno tinpartner business = unchecked ((int)0x80 041d14); / / -2147214 060 | |||||
| 4072 | publ ic const i nt unManag edidsbizmg mtdefaultu sernotinpr imarybusin ess = unch ecked((int )0x80041d1 3); // -21 47214061 | |||||
| 4073 | publ ic const i nt unManag edidsbizmg mtcallerno tinprimary business = unchecked ((int)0x80 041d12); / / -2147214 062 | |||||
| 4074 | publ ic const i nt unManag edidsbizmg mtpartners hipalready exists = u nchecked(( int)0x8004 1d11); // -214721406 3 | |||||
| 4075 | publ ic const i nt unManag edidsbizmg mtprimarys ameaspartn er = unche cked((int) 0x80041d10 ); // -214 7214064 | |||||
| 4076 | publ ic const i nt unManag edidsbizmg mtmisspart nerbusines s = unchec ked((int)0 x80041d0f) ; // -2147 214065 | |||||
| 4077 | publ ic const i nt unManag edidsbizmg mtmissprim arybusines s = unchec ked((int)0 x80041d0e) ; // -2147 214066 | |||||
| 4078 | publ ic const i nt Invalid AccessMode Transition = uncheck ed((int)0x 80041d66); // -21472 13978 | |||||
| 4079 | publ ic const i nt Missing TeamName = unchecked ((int)0x80 041d0b); / / -2147214 069 | |||||
| 4080 | publ ic const i nt TeamAdm inistrator MissedPriv ilege = un checked((i nt)0x80041 d0a); // - 2147214070 | |||||
| 4081 | publ ic const i nt CannotD isableTena ntAdmin = unchecked( (int)0x800 41d65); // -21472139 79 | |||||
| 4082 | publ ic const i nt CannotR emoveTenan tAdminFrom SysAdminRo le = unche cked((int) 0x80041d64 ); // -214 7213980 | |||||
| 4083 | publ ic const i nt UserNot InParentHi erarchy = unchecked( (int)0x800 41d07); // -21472140 73 | |||||
| 4084 | publ ic const i nt unManag edidsbizmg mtusercann otbeownpar ent = unch ecked((int )0x80041d0 6); // -21 47214074 | |||||
| 4085 | publ ic const i nt unManag edidsbizmg mtcannotmo vedefaultu ser = unch ecked((int )0x80041d0 5); // -21 47214075 | |||||
| 4086 | publ ic const i nt unManag edidsbizmg mtbusiness parentdiff merchant = unchecked ((int)0x80 041d04); / / -2147214 076 | |||||
| 4087 | publ ic const i nt unManag edidsbizmg mtdefaultu sernotinbu siness = u nchecked(( int)0x8004 1d03); // -214721407 7 | |||||
| 4088 | publ ic const i nt unManag edidsbizmg mtmisspare ntbusiness = uncheck ed((int)0x 80041d02); // -21472 14078 | |||||
| 4089 | publ ic const i nt unManag edidsbizmg mtmissuser domainname = uncheck ed((int)0x 80041d01); // -21472 14079 | |||||
| 4090 | publ ic const i nt unManag edidsbizmg mtmissbusi nessname = unchecked ((int)0x80 041d00); / / -2147214 080 | |||||
| 4091 | publ ic const i nt unManag edidsxmlin validread = unchecke d((int)0x8 0041a08); // -214721 4840 | |||||
| 4092 | publ ic const i nt unManag edidsxmlin validfield = uncheck ed((int)0x 80041a07); // -21472 14841 | |||||
| 4093 | publ ic const i nt unManag edidsxmlin validentit yattribute s = unchec ked((int)0 x80041a06) ; // -2147 214842 | |||||
| 4094 | publ ic const i nt unManag edidsxmlun expected = unchecked ((int)0x80 041a05); / / -2147214 843 | |||||
| 4095 | publ ic const i nt unManag edidsxmlpa rseerror = unchecked ((int)0x80 041a04); / / -2147214 844 | |||||
| 4096 | publ ic const i nt unManag edidsxmlin validcolle ctionname = unchecke d((int)0x8 0041a03); // -214721 4845 | |||||
| 4097 | publ ic const i nt unManag edidsxmlin validupdat e = unchec ked((int)0 x80041a02) ; // -2147 214846 | |||||
| 4098 | publ ic const i nt unManag edidsxmlin validcreat e = unchec ked((int)0 x80041a01) ; // -2147 214847 | |||||
| 4099 | publ ic const i nt unManag edidsxmlin validentit yname = un checked((i nt)0x80041 a00); // - 2147214848 | |||||
| 4100 | publ ic const i nt unManag edidsnotes noattachme nt = unche cked((int) 0x80041704 ); // -214 7215612 | |||||
| 4101 | publ ic const i nt unManag edidsnotes loopbeingc reated = u nchecked(( int)0x8004 1703); // -214721561 3 | |||||
| 4102 | publ ic const i nt unManag edidsnotes loopexists = uncheck ed((int)0x 80041702); // -21472 15614 | |||||
| 4103 | publ ic const i nt unManag edidsnotes alreadyatt ached = un checked((i nt)0x80041 701); // - 2147215615 | |||||
| 4104 | publ ic const i nt unManag edidsnotes notedoesno texist = u nchecked(( int)0x8004 1700); // -214721561 6 | |||||
| 4105 | publ ic const i nt Duplica tedPrivile ge = unche cked((int) 0x8004140f ); // -214 7216369 | |||||
| 4106 | publ ic const i nt MemberH asAlreadyB eenContact ed = unche cked((int) 0x8004140e ); // -214 7216370 | |||||
| 4107 | publ ic const i nt TeamInW rongBusine ss = unche cked((int) 0x8004140d ); // -214 7216371 | |||||
| 4108 | publ ic const i nt unManag edidsroles deletenonp arentrole = unchecke d((int)0x8 004140c); // -214721 6372 | |||||
| 4109 | publ ic const i nt Invalid PrivilegeD epth = unc hecked((in t)0x800414 0b); // -2 147216373 | |||||
| 4110 | publ ic const i nt unManag edidsroles invalidrol ename = un checked((i nt)0x80041 40a); // - 2147216374 | |||||
| 4111 | publ ic const i nt UserInW rongBusine ss = unche cked((int) 0x80041409 ); // -214 7216375 | |||||
| 4112 | publ ic const i nt unManag edidsroles missprivid = uncheck ed((int)0x 80041408); // -21472 16376 | |||||
| 4113 | publ ic const i nt unManag edidsroles missrolena me = unche cked((int) 0x80041407 ); // -214 7216377 | |||||
| 4114 | publ ic const i nt unManag edidsroles missbusine ssid = unc hecked((in t)0x800414 06); // -2 147216378 | |||||
| 4115 | publ ic const i nt unManag edidsroles missroleid = uncheck ed((int)0x 80041405); // -21472 16379 | |||||
| 4116 | publ ic const i nt unManag edidsroles invalidtem plateid = unchecked( (int)0x800 41404); // -21472163 80 | |||||
| 4117 | publ ic const i nt RoleAlr eadyExists = uncheck ed((int)0x 80041403); // -21472 16381 | |||||
| 4118 | publ ic const i nt unManag edidsroles roledoesno texist = u nchecked(( int)0x8004 1402); // -214721638 2 | |||||
| 4119 | publ ic const i nt unManag edidsroles invalidrol eid = unch ecked((int )0x8004140 1); // -21 47216383 | |||||
| 4120 | publ ic const i nt unManag edidsroles invalidrol edata = un checked((i nt)0x80041 400); // - 2147216384 | |||||
| 4121 | publ ic const i nt QueryBu ilderNoEnt ityKey = u nchecked(( int)0x8004 1140); // -214721708 8 | |||||
| 4122 | publ ic const i nt QueryBu ilderInval idAttribut eValue = u nchecked(( int)0x8004 1139); // -214721709 5 | |||||
| 4123 | publ ic const i nt QueryBu ilderSeria lizationIn validIsQui ckFindFilt er = unche cked((int) 0x80041138 ); // -214 7217096 | |||||
| 4124 | publ ic const i nt QueryBu ilderAttri buteCannot BeGroupByA ndAggregat e = unchec ked((int)0 x80041137) ; // -2147 217097 | |||||
| 4125 | publ ic const i nt SqlArit hmeticOver flowError = unchecke d((int)0x8 0041136); // -214721 7098 | |||||
| 4126 | publ ic const i nt QueryBu ilderInval idDateGrou ping = unc hecked((in t)0x800411 35); // -2 147217099 | |||||
| 4127 | publ ic const i nt QueryBu ilderAlias RequiredFo rAggregate OrderBy = unchecked( (int)0x800 41134); // -21472171 00 | |||||
| 4128 | publ ic const i nt QueryBu ilderAttri buteRequir edForNonAg gregateOrd erBy = unc hecked((in t)0x800411 33); // -2 147217101 | |||||
| 4129 | publ ic const i nt QueryBu ilderAlias NotAllowed ForNonAggr egateOrder By = unche cked((int) 0x80041132 ); // -214 7217102 | |||||
| 4130 | publ ic const i nt QueryBu ilderAttri buteNotAll owedForAgg regateOrde rBy = unch ecked((int )0x8004113 1); // -21 47217103 | |||||
| 4131 | publ ic const i nt QueryBu ilderDupli cateAlias = unchecke d((int)0x8 0041130); // -214721 7104 | |||||
| 4132 | publ ic const i nt QueryBu ilderInval idAggregat eAttribute = uncheck ed((int)0x 8004112f); // -21472 17105 | |||||
| 4133 | publ ic const i nt QueryBu ilderDeser ializeInva lidGroupBy = uncheck ed((int)0x 8004112e); // -21472 17106 | |||||
| 4134 | publ ic const i nt QueryBu ilderNoAtt rsDistinct Conflict = unchecked ((int)0x80 04112c); / / -2147217 108 | |||||
| 4135 | publ ic const i nt QueryBu ilderInval idPagingCo okie = unc hecked((in t)0x800411 2a); // -2 147217110 | |||||
| 4136 | publ ic const i nt QueryBu ilderPagin gOrderBy = unchecked ((int)0x80 041129); / / -2147217 111 | |||||
| 4137 | publ ic const i nt QueryBu ilderEntit iesDontMat ch = unche cked((int) 0x80041128 ); // -214 7217112 | |||||
| 4138 | publ ic const i nt QueryBu ilderLinkN odeForOrde rNotFound = unchecke d((int)0x8 0041126); // -214721 7114 | |||||
| 4139 | publ ic const i nt QueryBu ilderDeser ializeNoDo cElemXml = unchecked ((int)0x80 041125); / / -2147217 115 | |||||
| 4140 | publ ic const i nt QueryBu ilderDeser ializeEmpt yXml = unc hecked((in t)0x800411 24); // -2 147217116 | |||||
| 4141 | publ ic const i nt QueryBu ilderEleme ntNotFound = uncheck ed((int)0x 80041123); // -21472 17117 | |||||
| 4142 | publ ic const i nt QueryBu ilderInval idFilterTy pe = unche cked((int) 0x80041122 ); // -214 7217118 | |||||
| 4143 | publ ic const i nt QueryBu ilderInval idJoinOper ator = unc hecked((in t)0x800411 21); // -2 147217119 | |||||
| 4144 | publ ic const i nt QueryBu ilderInval idConditio nOperator = unchecke d((int)0x8 0041120); // -214721 7120 | |||||
| 4145 | publ ic const i nt QueryBu ilderInval idOrderTyp e = unchec ked((int)0 x8004111f) ; // -2147 217121 | |||||
| 4146 | publ ic const i nt QueryBu ilderAttri buteNotFou nd = unche cked((int) 0x8004111e ); // -214 7217122 | |||||
| 4147 | publ ic const i nt QueryBu ilderDeser ializeInva lidUtcOffs et = unche cked((int) 0x8004111d ); // -214 7217123 | |||||
| 4148 | publ ic const i nt QueryBu ilderDeser ializeInva lidNode = unchecked( (int)0x800 4111c); // -21472171 24 | |||||
| 4149 | publ ic const i nt QueryBu ilderDeser ializeInva lidGetMinA ctiveRowVe rsion = un checked((i nt)0x80041 11b); // - 2147217125 | |||||
| 4150 | publ ic const i nt QueryBu ilderDeser ializeInva lidAggrega te = unche cked((int) 0x8004111a ); // -214 7217126 | |||||
| 4151 | publ ic const i nt QueryBu ilderDeser ializeInva lidDescend ing = unch ecked((int )0x8004111 9); // -21 47217127 | |||||
| 4152 | publ ic const i nt QueryBu ilderDeser ializeInva lidNoLock = unchecke d((int)0x8 0041118); // -214721 7128 | |||||
| 4153 | publ ic const i nt QueryBu ilderDeser ializeInva lidLinkTyp e = unchec ked((int)0 x80041117) ; // -2147 217129 | |||||
| 4154 | publ ic const i nt QueryBu ilderDeser ializeInva lidMapping = uncheck ed((int)0x 80041116); // -21472 17130 | |||||
| 4155 | publ ic const i nt QueryBu ilderDeser ializeInva lidDistinc t = unchec ked((int)0 x80041115) ; // -2147 217131 | |||||
| 4156 | publ ic const i nt QueryBu ilderSeria lzeLinkTop Criteria = unchecked ((int)0x80 041114); / / -2147217 132 | |||||
| 4157 | publ ic const i nt QueryBu ilderColum nSetVersio nMissing = unchecked ((int)0x80 041113); / / -2147217 133 | |||||
| 4158 | publ ic const i nt QueryBu ilderInval idColumnSe tVersion = unchecked ((int)0x80 041112); / / -2147217 134 | |||||
| 4159 | publ ic const i nt QueryBu ilderAttri butePairMi smatch = u nchecked(( int)0x8004 1111); // -214721713 5 | |||||
| 4160 | publ ic const i nt QueryBu ilderByAtt ributeNonE mpty = unc hecked((in t)0x800411 10); // -2 147217136 | |||||
| 4161 | publ ic const i nt QueryBu ilderByAtt ributeMism atch = unc hecked((in t)0x800411 0f); // -2 147217137 | |||||
| 4162 | publ ic const i nt QueryBu ilderMulti pleInterse ctEntities = uncheck ed((int)0x 8004110e); // -21472 17138 | |||||
| 4163 | publ ic const i nt QueryBu ilderRepor tView_Does _Not_Exist = uncheck ed((int)0x 8004110d); // -21472 17139 | |||||
| 4164 | publ ic const i nt QueryBu ilderValue _GreaterTh anZero = u nchecked(( int)0x8004 110c); // -214721714 0 | |||||
| 4165 | publ ic const i nt QueryBu ilderNoAli as = unche cked((int) 0x8004110b ); // -214 7217141 | |||||
| 4166 | publ ic const i nt QueryBu ilderAlias _Does_Not_ Exist = un checked((i nt)0x80041 10a); // - 2147217142 | |||||
| 4167 | publ ic const i nt QueryBu ilderInval id_Alias = unchecked ((int)0x80 041109); / / -2147217 143 | |||||
| 4168 | publ ic const i nt QueryBu ilderInval id_Value = unchecked ((int)0x80 041108); / / -2147217 144 | |||||
| 4169 | publ ic const i nt QueryBu ilderAttri bute_With_ Aggregate = unchecke d((int)0x8 0041107); // -214721 7145 | |||||
| 4170 | publ ic const i nt QueryBu ilderBad_C ondition = unchecked ((int)0x80 041106); / / -2147217 146 | |||||
| 4171 | publ ic const i nt QueryBu ilderNoAtt ribute = u nchecked(( int)0x8004 1103); // -214721714 9 | |||||
| 4172 | publ ic const i nt QueryBu ilderNoEnt ity = unch ecked((int )0x8004110 2); // -21 47217150 | |||||
| 4173 | publ ic const i nt QueryBu ilderUnexp ected = un checked((i nt)0x80041 101); // - 2147217151 | |||||
| 4174 | publ ic const i nt QueryBu ilderInval idUpdate = unchecked ((int)0x80 041100); / / -2147217 152 | |||||
| 4175 | publ ic const i nt QueryBu ilderInval idLogicalO perator = unchecked( (int)0x800 410fe); // -21472171 54 | |||||
| 4176 | publ ic const i nt unManag edidsmetad atanorelat ionship = unchecked( (int)0x800 40e02); // -21472179 18 | |||||
| 4177 | publ ic const i nt Metadat aNoMapping = uncheck ed((int)0x 80040e01); // -21472 17919 | |||||
| 4178 | publ ic const i nt Metadat aNotSerial izable = u nchecked(( int)0x8004 0e03); // -214721791 7 | |||||
| 4179 | publ ic const i nt unManag edidsmetad atanoentit y = unchec ked((int)0 x80040e00) ; // -2147 217920 | |||||
| 4180 | publ ic const i nt unManag edidscommu nicationsn osenderadd ress = unc hecked((in t)0x80040b 08); // -2 147218680 | |||||
| 4181 | publ ic const i nt unManag edidscommu nicationst emplateinv alidtempla te = unche cked((int) 0x80040b07 ); // -214 7218681 | |||||
| 4182 | publ ic const i nt unManag edidscommu nicationsn oparticipa tionmask = unchecked ((int)0x80 040b06); / / -2147218 682 | |||||
| 4183 | publ ic const i nt unManag edidscommu nicationsn orecipient s = unchec ked((int)0 x80040b05) ; // -2147 218683 | |||||
| 4184 | publ ic const i nt EmailRe cipientNot Specified = unchecke d((int)0x8 0040b04); // -214721 8684 | |||||
| 4185 | publ ic const i nt unManag edidscommu nicationsn osender = unchecked( (int)0x800 40b02); // -21472186 86 | |||||
| 4186 | publ ic const i nt unManag edidscommu nicationsb adsender = unchecked ((int)0x80 040b01); / / -2147218 687 | |||||
| 4187 | publ ic const i nt unManag edidscommu nicationsn opartyaddr ess = unch ecked((int )0x80040b0 0); // -21 47218688 | |||||
| 4188 | publ ic const i nt unManag edidsjourn alingmissi ngincident id = unche cked((int) 0x80040809 ); // -214 7219447 | |||||
| 4189 | publ ic const i nt unManag edidsjourn alingmissi ngcontacti d = unchec ked((int)0 x80040808) ; // -2147 219448 | |||||
| 4190 | publ ic const i nt unManag edidsjourn alingmissi ngopportun ityid = un checked((i nt)0x80040 807); // - 2147219449 | |||||
| 4191 | publ ic const i nt unManag edidsjourn alingmissi ngaccounti d = unchec ked((int)0 x80040806) ; // -2147 219450 | |||||
| 4192 | publ ic const i nt unManag edidsjourn alingmissi ngleadid = unchecked ((int)0x80 040805); / / -2147219 451 | |||||
| 4193 | publ ic const i nt unManag edidsjourn alingmissi ngeventtyp e = unchec ked((int)0 x80040804) ; // -2147 219452 | |||||
| 4194 | publ ic const i nt unManag edidsjourn alinginval ideventtyp e = unchec ked((int)0 x80040803) ; // -2147 219453 | |||||
| 4195 | publ ic const i nt unManag edidsjourn alingmissi ngeventdir ection = u nchecked(( int)0x8004 0802); // -214721945 4 | |||||
| 4196 | publ ic const i nt unManag edidsjourn alingunsup portedobje cttype = u nchecked(( int)0x8004 0801); // -214721945 5 | |||||
| 4197 | publ ic const i nt SdkEnti tyDoesNotS upportMess age = unch ecked((int )0x8004080 0); // -21 47219456 | |||||
| 4198 | publ ic const i nt Opportu nityAlread yInOpenSta te = unche cked((int) 0x8004051a ); // -214 7220198 | |||||
| 4199 | publ ic const i nt LeadAlr eadyInClos edState = unchecked( (int)0x800 40519); // -21472201 99 | |||||
| 4200 | publ ic const i nt LeadAlr eadyInOpen State = un checked((i nt)0x80040 518); // - 2147220200 | |||||
| 4201 | publ ic const i nt Custome rIsInactiv e = unchec ked((int)0 x80040517) ; // -2147 220201 | |||||
| 4202 | publ ic const i nt Opportu nityCannot BeClosed = unchecked ((int)0x80 040516); / / -2147220 202 | |||||
| 4203 | publ ic const i nt Opportu nityIsAlre adyClosed = unchecke d((int)0x8 0040515); // -214722 0203 | |||||
| 4204 | publ ic const i nt unManag edidscusto meraddress typeinvali d = unchec ked((int)0 x80040514) ; // -2147 220204 | |||||
| 4205 | publ ic const i nt unManag edidsleadn otassigned tocaller = unchecked ((int)0x80 040513); / / -2147220 205 | |||||
| 4206 | publ ic const i nt unManag edidsconta cthaschild opportunit ies = unch ecked((int )0x8004051 2); // -21 47220206 | |||||
| 4207 | publ ic const i nt unManag edidsaccou nthaschild opportunit ies = unch ecked((int )0x8004051 1); // -21 47220207 | |||||
| 4208 | publ ic const i nt unManag edidsleado neaccount = unchecke d((int)0x8 0040510); // -214722 0208 | |||||
| 4209 | publ ic const i nt unManag edidsoppor tunityorph an = unche cked((int) 0x8004050f ); // -214 7220209 | |||||
| 4210 | publ ic const i nt unManag edidsoppor tunityonea ccount = u nchecked(( int)0x8004 050e); // -214722021 0 | |||||
| 4211 | publ ic const i nt unManag edidsleadu sercannotr eject = un checked((i nt)0x80040 50d); // - 2147220211 | |||||
| 4212 | publ ic const i nt unManag edidsleadn otassigned = uncheck ed((int)0x 8004050c); // -21472 20212 | |||||
| 4213 | publ ic const i nt unManag edidsleadn oparent = unchecked( (int)0x800 4050b); // -21472202 13 | |||||
| 4214 | publ ic const i nt Contact LoopBeingC reated = u nchecked(( int)0x8004 050a); // -214722021 4 | |||||
| 4215 | publ ic const i nt Contact LoopExists = uncheck ed((int)0x 80040509); // -21472 20215 | |||||
| 4216 | publ ic const i nt Present ParentAcco untAndPare ntContact = unchecke d((int)0x8 0040508); // -214722 0216 | |||||
| 4217 | publ ic const i nt Account LoopBeingC reated = u nchecked(( int)0x8004 0507); // -214722021 7 | |||||
| 4218 | publ ic const i nt Account LoopExists = uncheck ed((int)0x 80040506); // -21472 20218 | |||||
| 4219 | publ ic const i nt unManag edidsoppor tunitymiss ingparent = unchecke d((int)0x8 0040505); // -214722 0219 | |||||
| 4220 | publ ic const i nt unManag edidsoppor tunityinva lidparent = unchecke d((int)0x8 0040504); // -214722 0220 | |||||
| 4221 | publ ic const i nt Contact DoesNotExi st = unche cked((int) 0x80040503 ); // -214 7220221 | |||||
| 4222 | publ ic const i nt Account DoesNotExi st = unche cked((int) 0x80040502 ); // -214 7220222 | |||||
| 4223 | publ ic const i nt unManag edidsleadd oesnotexis t = unchec ked((int)0 x80040501) ; // -2147 220223 | |||||
| 4224 | publ ic const i nt unManag edidsoppor tunitydoes notexist = unchecked ((int)0x80 040500); / / -2147220 224 | |||||
| 4225 | publ ic const i nt ReportD oesNotExis t = unchec ked((int)0 x80040499) ; // -2147 220327 | |||||
| 4226 | publ ic const i nt ReportL oopBeingCr eated = un checked((i nt)0x80040 498); // - 2147220328 | |||||
| 4227 | publ ic const i nt ReportL oopExists = unchecke d((int)0x8 0040497); // -214722 0329 | |||||
| 4228 | publ ic const i nt ParentR eportLinks ToSameName Child = un checked((i nt)0x80040 496); // - 2147220330 | |||||
| 4229 | publ ic const i nt Duplica teReportVi sibility = unchecked ((int)0x80 040495); / / -2147220 331 | |||||
| 4230 | publ ic const i nt ReportR enderError = uncheck ed((int)0x 80040494); // -21472 20332 | |||||
| 4231 | publ ic const i nt SubRepo rtDoesNotE xist = unc hecked((in t)0x800404 93); // -2 147220333 | |||||
| 4232 | publ ic const i nt SrsData ConnectorN otInstalle d = unchec ked((int)0 x80040492) ; // -2147 220334 | |||||
| 4233 | publ ic const i nt Invalid CustomRepo rtingWizar dXml = unc hecked((in t)0x800404 91); // -2 147220335 | |||||
| 4234 | publ ic const i nt UpdateN onCustomRe portFromTe mplate = u nchecked(( int)0x8004 0490); // -214722033 6 | |||||
| 4235 | publ ic const i nt Snapsho tReportNot Ready = un checked((i nt)0x80040 489); // - 2147220343 | |||||
| 4236 | publ ic const i nt Existin gExternalR eport = un checked((i nt)0x80040 488); // - 2147220344 | |||||
| 4237 | publ ic const i nt ParentR eportNotSu pported = unchecked( (int)0x800 40487); // -21472203 45 | |||||
| 4238 | publ ic const i nt ParentR eportDoesN otReferenc eChild = u nchecked(( int)0x8004 0486); // -214722034 6 | |||||
| 4239 | publ ic const i nt Multipl eParentRep ortsFound = unchecke d((int)0x8 0040485); // -214722 0347 | |||||
| 4240 | publ ic const i nt Reporti ngServices ReportExpe cted = unc hecked((in t)0x800404 84); // -2 147220348 | |||||
| 4241 | publ ic const i nt Invalid Transforma tionParame ter = unch ecked((int )0x8004038 9); // -21 47220599 | |||||
| 4242 | publ ic const i nt Reflexi veEntityPa rentOrChil dDoesNotEx ist = unch ecked((int )0x8004038 8); // -21 47220600 | |||||
| 4243 | publ ic const i nt EntityL oopBeingCr eated = un checked((i nt)0x80040 387); // - 2147220601 | |||||
| 4244 | publ ic const i nt EntityL oopExists = unchecke d((int)0x8 0040386); // -214722 0602 | |||||
| 4245 | publ ic const i nt Unsuppo rtedProces sCode = un checked((i nt)0x80040 385); // - 2147220603 | |||||
| 4246 | publ ic const i nt NoOutpu tTransform ationParam eterMappin gFound = u nchecked(( int)0x8004 0384); // -214722060 4 | |||||
| 4247 | publ ic const i nt Require dColumnsNo tFoundInIm portFile = unchecked ((int)0x80 040383); / / -2147220 605 | |||||
| 4248 | publ ic const i nt Invalid Transforma tionParame terMapping = uncheck ed((int)0x 80040382); // -21472 20606 | |||||
| 4249 | publ ic const i nt Unmappe dTransform ationOutpu tDataFound = uncheck ed((int)0x 80040381); // -21472 20607 | |||||
| 4250 | publ ic const i nt Invalid Transforma tionParame terDataTyp e = unchec ked((int)0 x80040380) ; // -2147 220608 | |||||
| 4251 | publ ic const i nt ArrayMa ppingFound ForSinglet onParamete r = unchec ked((int)0 x8004037f) ; // -2147 220609 | |||||
| 4252 | publ ic const i nt Singlet onMappingF oundForArr ayParamete r = unchec ked((int)0 x8004037e) ; // -2147 220610 | |||||
| 4253 | publ ic const i nt Incompl eteTransfo rmationPar ameterMapp ingsFound = unchecke d((int)0x8 004037d); // -214722 0611 | |||||
| 4254 | publ ic const i nt Invalid Transforma tionParame terMapping s = unchec ked((int)0 x8004037c) ; // -2147 220612 | |||||
| 4255 | publ ic const i nt Generic Transforma tionInvoca tionError = unchecke d((int)0x8 004037b); // -214722 0613 | |||||
| 4256 | publ ic const i nt Invalid Transforma tionType = unchecked ((int)0x80 04037a); / / -2147220 614 | |||||
| 4257 | publ ic const i nt UnableT oLoadTrans formationT ype = unch ecked((int )0x8004037 9); // -21 47220615 | |||||
| 4258 | publ ic const i nt UnableT oLoadTrans formationA ssembly = unchecked( (int)0x800 40378); // -21472206 16 | |||||
| 4259 | publ ic const i nt Invalid ColumnMapp ing = unch ecked((int )0x8004037 7); // -21 47220617 | |||||
| 4260 | publ ic const i nt CannotM odifyOldDa taFromImpo rt = unche cked((int) 0x80040376 ); // -214 7220618 | |||||
| 4261 | publ ic const i nt ImportF ileTooLarg eToUpload = unchecke d((int)0x8 0040375); // -214722 0619 | |||||
| 4262 | publ ic const i nt Invalid ImportFile Content = unchecked( (int)0x800 40374); // -21472206 20 | |||||
| 4263 | publ ic const i nt EmptyRe cord = unc hecked((in t)0x800403 73); // -2 147220621 | |||||
| 4264 | publ ic const i nt LongPar seRow = un checked((i nt)0x80040 372); // - 2147220622 | |||||
| 4265 | publ ic const i nt ParseMu stBeCalled BeforeTran sform = un checked((i nt)0x80040 371); // - 2147220623 | |||||
| 4266 | publ ic const i nt HeaderV alueDoesNo tMatchAttr ibuteDispl ayLabel = unchecked( (int)0x800 40370); // -21472206 24 | |||||
| 4267 | publ ic const i nt Invalid TargetEnti ty = unche cked((int) 0x80040369 ); // -214 7220631 | |||||
| 4268 | publ ic const i nt NoHeade rColumnFou nd = unche cked((int) 0x80040368 ); // -214 7220632 | |||||
| 4269 | publ ic const i nt Parsing MetadataNo tFound = u nchecked(( int)0x8004 0367); // -214722063 3 | |||||
| 4270 | publ ic const i nt EmptyHe aderRow = unchecked( (int)0x800 40366); // -21472206 34 | |||||
| 4271 | publ ic const i nt EmptyCo ntent = un checked((i nt)0x80040 365); // - 2147220635 | |||||
| 4272 | publ ic const i nt Invalid IsFirstRow HeaderForU seSystemMa p = unchec ked((int)0 x80040364) ; // -2147 220636 | |||||
| 4273 | publ ic const i nt Invalid Guid = unc hecked((in t)0x800403 63); // -2 147220637 | |||||
| 4274 | publ ic const i nt GuidNot Present = unchecked( (int)0x800 40362); // -21472206 38 | |||||
| 4275 | publ ic const i nt OwnerVa lueNotMapp ed = unche cked((int) 0x80040361 ); // -214 7220639 | |||||
| 4276 | publ ic const i nt Picklis tValueNotM apped = un checked((i nt)0x80040 360); // - 2147220640 | |||||
| 4277 | publ ic const i nt ErrorIn Delete = u nchecked(( int)0x8004 035a); // -214722064 6 | |||||
| 4278 | publ ic const i nt ErrorIn create = u nchecked(( int)0x8004 0359); // -214722064 7 | |||||
| 4279 | publ ic const i nt ErrorIn Update = u nchecked(( int)0x8004 0358); // -214722064 8 | |||||
| 4280 | publ ic const i nt ErrorIn SetState = unchecked ((int)0x80 040357); / / -2147220 649 | |||||
| 4281 | publ ic const i nt Invalid DataFormat = uncheck ed((int)0x 80040356); // -21472 20650 | |||||
| 4282 | publ ic const i nt Invalid FormatForD ataDelimit er = unche cked((int) 0x80040355 ); // -214 7220651 | |||||
| 4283 | publ ic const i nt CRMUser DoesNotExi st = unche cked((int) 0x80040354 ); // -214 7220652 | |||||
| 4284 | publ ic const i nt LookupN otFound = unchecked( (int)0x800 40353); // -21472206 53 | |||||
| 4285 | publ ic const i nt Duplica teLookupFo und = unch ecked((int )0x8004035 2); // -21 47220654 | |||||
| 4286 | publ ic const i nt Invalid ImportFile Data = unc hecked((in t)0x800403 51); // -2 147220655 | |||||
| 4287 | publ ic const i nt Invalid XmlSSConte nt = unche cked((int) 0x80040350 ); // -214 7220656 | |||||
| 4288 | publ ic const i nt Invalid ImportFile ParseData = unchecke d((int)0x8 0040349); // -214722 0663 | |||||
| 4289 | publ ic const i nt Invalid ValueForFi leType = u nchecked(( int)0x8004 0348); // -214722066 4 | |||||
| 4290 | publ ic const i nt EmptyIm portFileRo w = unchec ked((int)0 x80040347) ; // -2147 220665 | |||||
| 4291 | publ ic const i nt ErrorIn ParseRow = unchecked ((int)0x80 040346); / / -2147220 666 | |||||
| 4292 | publ ic const i nt DataCol umnsNumber Mismatch = unchecked ((int)0x80 040345); / / -2147220 667 | |||||
| 4293 | publ ic const i nt Invalid HeaderColu mn = unche cked((int) 0x80040344 ); // -214 7220668 | |||||
| 4294 | publ ic const i nt OwnerMa ppingExist sWithSourc eSystemUse rName = un checked((i nt)0x80040 343); // - 2147220669 | |||||
| 4295 | publ ic const i nt PickLis tMappingEx istsWithSo urceValue = unchecke d((int)0x8 0040342); // -214722 0670 | |||||
| 4296 | publ ic const i nt Invalid ValueForDa taDelimite r = unchec ked((int)0 x80040341) ; // -2147 220671 | |||||
| 4297 | publ ic const i nt Invalid ValueForFi eldDelimit er = unche cked((int) 0x80040340 ); // -214 7220672 | |||||
| 4298 | publ ic const i nt PickLis tMappingEx istsForTar getValue = unchecked ((int)0x80 04033f); / / -2147220 673 | |||||
| 4299 | publ ic const i nt Mapping ExistsForT argetAttri bute = unc hecked((in t)0x800403 3e); // -2 147220674 | |||||
| 4300 | publ ic const i nt SourceE ntityMappe dToMultipl eTargets = unchecked ((int)0x80 04033d); / / -2147220 675 | |||||
| 4301 | publ ic const i nt Attribu teNotOfTyp ePicklist = unchecke d((int)0x8 004033c); // -214722 0676 | |||||
| 4302 | publ ic const i nt Attribu teNotOfTyp eReference = uncheck ed((int)0x 80040390); // -21472 20592 | |||||
| 4303 | publ ic const i nt TargetE ntityNotFo und = unch ecked((int )0x8004039 1); // -21 47220591 | |||||
| 4304 | publ ic const i nt TargetA ttributeNo tFound = u nchecked(( int)0x8004 0392); // -214722059 0 | |||||
| 4305 | publ ic const i nt Picklis tValueNotF ound = unc hecked((in t)0x800403 93); // -2 147220589 | |||||
| 4306 | publ ic const i nt TargetA ttributeIn validForMa p = unchec ked((int)0 x80040394) ; // -2147 220588 | |||||
| 4307 | publ ic const i nt TargetE ntityInval idForMap = unchecked ((int)0x80 040395); / / -2147220 587 | |||||
| 4308 | publ ic const i nt Invalid FileBadCha racters = unchecked( (int)0x800 40396); // -21472205 86 | |||||
| 4309 | publ ic const i nt ErrorsI nImportFil es = unche cked((int) 0x8004034a ); // -214 7220662 | |||||
| 4310 | publ ic const i nt Invalid OperationW henListIsN otActive = unchecked ((int)0x80 04033a); / / -2147220 678 | |||||
| 4311 | publ ic const i nt Invalid OperationW henPartyIs NotActive = unchecke d((int)0x8 004033b); // -214722 0677 | |||||
| 4312 | publ ic const i nt AsyncOp erationSus pendedOrLo cked = unc hecked((in t)0x800403 39); // -2 147220679 | |||||
| 4313 | publ ic const i nt Duplica teHeaderCo lumn = unc hecked((in t)0x800403 38); // -2 147220680 | |||||
| 4314 | publ ic const i nt EmptyHe aderColumn = uncheck ed((int)0x 80040337); // -21472 20681 | |||||
| 4315 | publ ic const i nt Invalid ColumnNumb er = unche cked((int) 0x80040336 ); // -214 7220682 | |||||
| 4316 | publ ic const i nt Transfo rmMustBeCa lledBefore Import = u nchecked(( int)0x8004 0335); // -214722068 3 | |||||
| 4317 | publ ic const i nt Operati onCanBeCal ledOnlyOnc e = unchec ked((int)0 x80040334) ; // -2147 220684 | |||||
| 4318 | publ ic const i nt Duplica teRecordsF ound = unc hecked((in t)0x800403 33); // -2 147220685 | |||||
| 4319 | publ ic const i nt Campaig nActivityC losed = un checked((i nt)0x80040 331); // - 2147220687 | |||||
| 4320 | publ ic const i nt Unexpec tedErrorIn MailMerge = unchecke d((int)0x8 0040330); // -214722 0688 | |||||
| 4321 | publ ic const i nt UserCan celledMail Merge = un checked((i nt)0x80040 32f); // - 2147220689 | |||||
| 4322 | publ ic const i nt Filtere dDuetoMiss ingEmailAd dress = un checked((i nt)0x80040 32e); // - 2147220690 | |||||
| 4323 | publ ic const i nt CannotD eleteAsBac kgroundOpe rationInPr ogress = u nchecked(( int)0x8004 032b); // -214722069 3 | |||||
| 4324 | publ ic const i nt Filtere dDuetoInac tiveState = unchecke d((int)0x8 004032a); // -214722 0694 | |||||
| 4325 | publ ic const i nt Missing BOWFRules = unchecke d((int)0x8 0040329); // -214722 0695 | |||||
| 4326 | publ ic const i nt AsyncOp erationPos tponed = u nchecked(( int)0x8004 0328); // -214722069 6 | |||||
| 4327 | publ ic const i nt CannotS pecifyOwne rForActivi tyPropagat ion = unch ecked((int )0x8004032 7); // -21 47220697 | |||||
| 4328 | publ ic const i nt Campaig nActivityA lreadyProp agated = u nchecked(( int)0x8004 0326); // -214722069 8 | |||||
| 4329 | publ ic const i nt Filtere dDuetoAnti Spam = unc hecked((in t)0x800403 25); // -2 147220699 | |||||
| 4330 | publ ic const i nt Templat eTypeNotSu pportedFor Unsubscrib eAcknowled gement = u nchecked(( int)0x8004 0324); // -214722070 0 | |||||
| 4331 | publ ic const i nt ErrorIn ImportConf ig = unche cked((int) 0x80040323 ); // -214 7220701 | |||||
| 4332 | publ ic const i nt ImportC onfigNotSp ecified = unchecked( (int)0x800 40322); // -21472207 02 | |||||
| 4333 | publ ic const i nt Invalid ActivityTy pe = unche cked((int) 0x80040321 ); // -214 7220703 | |||||
| 4334 | publ ic const i nt Unsuppo rtedParame ter = unch ecked((int )0x8004032 0); // -21 47220704 | |||||
| 4335 | publ ic const i nt Missing Parameter = unchecke d((int)0x8 004031f); // -214722 0705 | |||||
| 4336 | publ ic const i nt CannotS pecifyComm unicationA ttributeOn ActivityFo rPropagati on = unche cked((int) 0x8004031e ); // -214 7220706 | |||||
| 4337 | publ ic const i nt CannotS pecifyReci pientForAc tivityProp agation = unchecked( (int)0x800 4031d); // -21472207 07 | |||||
| 4338 | publ ic const i nt CannotS pecifyAtte ndeeForApp ointmentPr opagation = unchecke d((int)0x8 004031c); // -214722 0708 | |||||
| 4339 | publ ic const i nt CannotS pecifySend erForActiv ityPropaga tion = unc hecked((in t)0x800403 1b); // -2 147220709 | |||||
| 4340 | publ ic const i nt CannotS pecifyOrga nizerForAp pointmentP ropagation = uncheck ed((int)0x 8004031a); // -21472 20710 | |||||
| 4341 | publ ic const i nt Invalid RegardingO bjectTypeC ode = unch ecked((int )0x8004031 9); // -21 47220711 | |||||
| 4342 | publ ic const i nt Unspeci fiedActivi tyXmlForCa mpaignActi vityPropag ate = unch ecked((int )0x8004031 8); // -21 47220712 | |||||
| 4343 | publ ic const i nt MoneySi zeExceeded = uncheck ed((int)0x 80040317); // -21472 20713 | |||||
| 4344 | publ ic const i nt ExtraPa rtyInforma tion = unc hecked((in t)0x800403 16); // -2 147220714 | |||||
| 4345 | publ ic const i nt NotSupp orted = un checked((i nt)0x80040 315); // - 2147220715 | |||||
| 4346 | publ ic const i nt Invalid OperationF orClosedOr CancelledC ampaignAct ivity = un checked((i nt)0x80040 314); // - 2147220716 | |||||
| 4347 | publ ic const i nt Invalid EmailTempl ate = unch ecked((int )0x8004031 3); // -21 47220717 | |||||
| 4348 | publ ic const i nt CannotC reateRespo nseForTemp late = unc hecked((in t)0x800403 12); // -2 147220718 | |||||
| 4349 | publ ic const i nt CannotP ropagateCa mapaignAct ivityForTe mplate = u nchecked(( int)0x8004 0311); // -214722071 9 | |||||
| 4350 | publ ic const i nt Invalid ChannelFor CampaignAc tivityProp agate = un checked((i nt)0x80040 310); // - 2147220720 | |||||
| 4351 | publ ic const i nt Invalid ActivityTy peForCampa ignActivit yPropagate = uncheck ed((int)0x 8004030f); // -21472 20721 | |||||
| 4352 | publ ic const i nt ObjectN otRelatedT oCampaign = unchecke d((int)0x8 004030e); // -214722 0722 | |||||
| 4353 | publ ic const i nt CannotR elateObjec tTypeToCam paignActiv ity = unch ecked((int )0x8004030 d); // -21 47220723 | |||||
| 4354 | publ ic const i nt CannotU pdateCampa ignForCamp aignRespon se = unche cked((int) 0x8004030c ); // -214 7220724 | |||||
| 4355 | publ ic const i nt CannotU pdateCampa ignForCamp aignActivi ty = unche cked((int) 0x8004030b ); // -214 7220725 | |||||
| 4356 | publ ic const i nt Campaig nNotSpecif iedForCamp aignRespon se = unche cked((int) 0x8004030a ); // -214 7220726 | |||||
| 4357 | publ ic const i nt Campaig nNotSpecif iedForCamp aignActivi ty = unche cked((int) 0x80040309 ); // -214 7220727 | |||||
| 4358 | publ ic const i nt CannotR elateObjec tTypeToCam paign = un checked((i nt)0x80040 307); // - 2147220729 | |||||
| 4359 | publ ic const i nt CannotC opyIncompa tibleListT ype = unch ecked((int )0x8004030 6); // -21 47220730 | |||||
| 4360 | publ ic const i nt Invalid ActivityTy peForList = unchecke d((int)0x8 0040305); // -214722 0731 | |||||
| 4361 | publ ic const i nt CannotA ssociateIn activeItem ToCampaign = uncheck ed((int)0x 80040304); // -21472 20732 | |||||
| 4362 | publ ic const i nt Invalid FetchXml = unchecked ((int)0x80 040303); / / -2147220 733 | |||||
| 4363 | publ ic const i nt Invalid OperationW henListLoc ked = unch ecked((int )0x8004030 2); // -21 47220734 | |||||
| 4364 | publ ic const i nt Unsuppo rtedListMe mberType = unchecked ((int)0x80 040301); / / -2147220 735 | |||||
| 4365 | publ ic const i nt Invalid PrimaryKey = uncheck ed((int)0x 80040266); // -21472 20890 | |||||
| 4366 | publ ic const i nt IsvAbor ted = unch ecked((int )0x8004026 5); // -21 47220891 | |||||
| 4367 | publ ic const i nt CannotA ssignOutlo okFilters = unchecke d((int)0x8 0040264); // -214722 0892 | |||||
| 4368 | publ ic const i nt CannotC reateOutlo okFilters = unchecke d((int)0x8 0040263); // -214722 0893 | |||||
| 4369 | publ ic const i nt CannotG rantAccess ToOutlookF ilters = u nchecked(( int)0x8004 0268); // -214722088 8 | |||||
| 4370 | publ ic const i nt CannotM odifyAcces sToOutlook Filters = unchecked( (int)0x800 40269); // -21472208 87 | |||||
| 4371 | publ ic const i nt CannotR evokeAcces sToOutlook Filters = unchecked( (int)0x800 40270); // -21472208 80 | |||||
| 4372 | publ ic const i nt CannotG rantAccess ToOfflineF ilters = u nchecked(( int)0x8004 0271); // -214722087 9 | |||||
| 4373 | publ ic const i nt CannotM odifyAcces sToOffline Filters = unchecked( (int)0x800 40272); // -21472208 78 | |||||
| 4374 | publ ic const i nt CannotR evokeAcces sToOffline Filters = unchecked( (int)0x800 40273); // -21472208 77 | |||||
| 4375 | publ ic const i nt Duplica teOutlookA ppointment = uncheck ed((int)0x 80040274); // -21472 20876 | |||||
| 4376 | publ ic const i nt Appoint mentSchedu leNotSet = unchecked ((int)0x80 040275); / / -2147220 875 | |||||
| 4377 | publ ic const i nt Privile geCreateIs DisabledFo rOrganizat ion = unch ecked((int )0x8004027 6); // -21 47220874 | |||||
| 4378 | publ ic const i nt Unautho rizedAcces s = unchec ked((int)0 x80040277) ; // -2147 220873 | |||||
| 4379 | publ ic const i nt Invalid Characters InField = unchecked( (int)0x800 40278); // -21472208 72 | |||||
| 4380 | publ ic const i nt CannotC hangeState OfNonpubli cView = un checked((i nt)0x80040 279); // - 2147220871 | |||||
| 4381 | publ ic const i nt CannotD eactivateD efaultView = uncheck ed((int)0x 8004027a); // -21472 20870 | |||||
| 4382 | publ ic const i nt CannotS etInactive ViewAsDefa ult = unch ecked((int )0x8004027 b); // -21 47220869 | |||||
| 4383 | publ ic const i nt CannotE xceedFilte rLimit = u nchecked(( int)0x8004 027c); // -214722086 8 | |||||
| 4384 | publ ic const i nt CannotH aveMultipl eDefaultFi lterTempla tes = unch ecked((int )0x8004027 d); // -21 47220867 | |||||
| 4385 | publ ic const i nt CrmCons traintPars ingError = unchecked ((int)0x80 040262); / / -2147220 894 | |||||
| 4386 | publ ic const i nt CrmCons traintEval uationErro r = unchec ked((int)0 x80040261) ; // -2147 220895 | |||||
| 4387 | publ ic const i nt CrmExpr essionEval uationErro r = unchec ked((int)0 x80040260) ; // -2147 220896 | |||||
| 4388 | publ ic const i nt CrmExpr essionPara metersPars ingError = unchecked ((int)0x80 04025f); / / -2147220 897 | |||||
| 4389 | publ ic const i nt CrmExpr essionBody ParsingErr or = unche cked((int) 0x8004025e ); // -214 7220898 | |||||
| 4390 | publ ic const i nt CrmExpr essionPars ingError = unchecked ((int)0x80 04025d); / / -2147220 899 | |||||
| 4391 | publ ic const i nt CrmMalf ormedExpre ssionError = uncheck ed((int)0x 8004025c); // -21472 20900 | |||||
| 4392 | publ ic const i nt Callout Exception = unchecke d((int)0x8 004025b); // -214722 0901 | |||||
| 4393 | publ ic const i nt DateTim eFormatFai led = unch ecked((int )0x8004025 a); // -21 47220902 | |||||
| 4394 | publ ic const i nt NumberF ormatFaile d = unchec ked((int)0 x80040259) ; // -2147 220903 | |||||
| 4395 | publ ic const i nt Invalid Restore = unchecked( (int)0x800 40258); // -21472209 04 | |||||
| 4396 | publ ic const i nt Invalid Caller = u nchecked(( int)0x8004 0257); // -214722090 5 | |||||
| 4397 | publ ic const i nt CrmSecu rityError = unchecke d((int)0x8 0040256); // -214722 0906 | |||||
| 4398 | publ ic const i nt Transac tionAborte d = unchec ked((int)0 x80040255) ; // -2147 220907 | |||||
| 4399 | publ ic const i nt CannotB indToSessi on = unche cked((int) 0x80040254 ); // -214 7220908 | |||||
| 4400 | publ ic const i nt Session TokenUnava ilable = u nchecked(( int)0x8004 0253); // -214722090 9 | |||||
| 4401 | publ ic const i nt Transac tionNotCom mited = un checked((i nt)0x80040 252); // - 2147220910 | |||||
| 4402 | publ ic const i nt Transac tionNotSta rted = unc hecked((in t)0x800402 51); // -2 147220911 | |||||
| 4403 | publ ic const i nt Multipl eChildPick list = unc hecked((in t)0x800402 50); // -2 147220912 | |||||
| 4404 | publ ic const i nt Invalid SingletonR esults = u nchecked(( int)0x8004 024f); // -214722091 3 | |||||
| 4405 | publ ic const i nt FailedT oLoadAssem bly = unch ecked((int )0x8004024 e); // -21 47220914 | |||||
| 4406 | publ ic const i nt CrmQuer yExpressio nNotInitia lized = un checked((i nt)0x80040 24d); // - 2147220915 | |||||
| 4407 | publ ic const i nt Invalid RegistryKe y = unchec ked((int)0 x8004024c) ; // -2147 220916 | |||||
| 4408 | publ ic const i nt Invalid Priv = unc hecked((in t)0x800402 4b); // -2 147220917 | |||||
| 4409 | publ ic const i nt Metadat aNotFound = unchecke d((int)0x8 004024a); // -214722 0918 | |||||
| 4410 | publ ic const i nt Invalid EntityClas sException = uncheck ed((int)0x 80040249); // -21472 20919 | |||||
| 4411 | publ ic const i nt Invalid XmlEntityN ameExcepti on = unche cked((int) 0x80040248 ); // -214 7220920 | |||||
| 4412 | publ ic const i nt Invalid XmlCollect ionNameExc eption = u nchecked(( int)0x8004 0247); // -214722092 1 | |||||
| 4413 | publ ic const i nt Invalid Recurrence Rule = unc hecked((in t)0x800402 46); // -2 147220922 | |||||
| 4414 | publ ic const i nt CrmImpe rsonationE rror = unc hecked((in t)0x800402 45); // -2 147220923 | |||||
| 4415 | publ ic const i nt Service Instantiat ionFailed = unchecke d((int)0x8 0040244); // -214722 0924 | |||||
| 4416 | publ ic const i nt EntityI nstantiati onFailed = unchecked ((int)0x80 040243); / / -2147220 925 | |||||
| 4417 | publ ic const i nt FormTra nsitionErr or = unche cked((int) 0x80040242 ); // -214 7220926 | |||||
| 4418 | publ ic const i nt UserTim eConvertEx ception = unchecked( (int)0x800 40241); // -21472209 27 | |||||
| 4419 | publ ic const i nt UserTim eZoneExcep tion = unc hecked((in t)0x800402 40); // -2 147220928 | |||||
| 4420 | publ ic const i nt Invalid Connection String = u nchecked(( int)0x8004 023f); // -214722092 9 | |||||
| 4421 | publ ic const i nt OpenCrm DBConnecti on = unche cked((int) 0x8004023e ); // -214 7220930 | |||||
| 4422 | publ ic const i nt Unpopul atedPrimar yKey = unc hecked((in t)0x800402 3d); // -2 147220931 | |||||
| 4423 | publ ic const i nt Invalid Version = unchecked( (int)0x800 4023c); // -21472209 32 | |||||
| 4424 | publ ic const i nt Invalid Operation = unchecke d((int)0x8 004023b); // -214722 0933 | |||||
| 4425 | publ ic const i nt Invalid Metadata = unchecked ((int)0x80 04023a); / / -2147220 934 | |||||
| 4426 | publ ic const i nt Invalid DateTime = unchecked ((int)0x80 040239); / / -2147220 935 | |||||
| 4427 | publ ic const i nt unManag edidscanno tdefaultpr ivateview = unchecke d((int)0x8 0040238); // -214722 0936 | |||||
| 4428 | publ ic const i nt Duplica teRecord = unchecked ((int)0x80 040237); / / -2147220 937 | |||||
| 4429 | publ ic const i nt unManag edidsnorel ationship = unchecke d((int)0x8 0040236); // -214722 0938 | |||||
| 4430 | publ ic const i nt Missing QueryType = unchecke d((int)0x8 0040235); // -214722 0939 | |||||
| 4431 | publ ic const i nt Invalid RollupType = uncheck ed((int)0x 80040234); // -21472 20940 | |||||
| 4432 | publ ic const i nt Invalid State = un checked((i nt)0x80040 233); // - 2147220941 | |||||
| 4433 | publ ic const i nt unManag edidsviewi snotsharab le = unche cked((int) 0x80040232 ); // -214 7220942 | |||||
| 4434 | publ ic const i nt Princip alPrivileg eDenied = unchecked( (int)0x800 40231); // -21472209 43 | |||||
| 4435 | publ ic const i nt CannotU pdateObjec tBecauseIt IsInactive = uncheck ed((int)0x 80040230); // -21472 20944 | |||||
| 4436 | publ ic const i nt CannotD eleteCanne dView = un checked((i nt)0x80040 22f); // - 2147220945 | |||||
| 4437 | publ ic const i nt CannotU pdateBecau seItIsRead Only = unc hecked((in t)0x800402 2e); // -2 147220946 | |||||
| 4438 | publ ic const i nt CaseAlr eadyResolv ed = unche cked((int) 0x800404cf ); // -214 7220273 | |||||
| 4439 | publ ic const i nt Invalid Customer = unchecked ((int)0x80 04022d); / / -2147220 947 | |||||
| 4440 | publ ic const i nt unManag edidsdatao utofrange = unchecke d((int)0x8 004022c); // -214722 0948 | |||||
| 4441 | publ ic const i nt unManag edidsowner notenabled = uncheck ed((int)0x 8004022b); // -21472 20949 | |||||
| 4442 | publ ic const i nt Busines sManagemen tObjectAlr eadyExists = uncheck ed((int)0x 8004022a); // -21472 20950 | |||||
| 4443 | publ ic const i nt Invalid OwnerID = unchecked( (int)0x800 40229); // -21472209 51 | |||||
| 4444 | publ ic const i nt CannotD eleteAsItI sReadOnly = unchecke d((int)0x8 0040228); // -214722 0952 | |||||
| 4445 | publ ic const i nt CannotD eleteDueTo Associatio n = unchec ked((int)0 x80040227) ; // -2147 220953 | |||||
| 4446 | publ ic const i nt unManag edidsanony mousenable d = unchec ked((int)0 x80040226) ; // -2147 220954 | |||||
| 4447 | publ ic const i nt unManag edidsusern otenabled = unchecke d((int)0x8 0040225); // -214722 0955 | |||||
| 4448 | publ ic const i nt Busines sNotEnable d = unchec ked((int)0 x8004032c) ; // -2147 220692 | |||||
| 4449 | publ ic const i nt CannotA ssignToDis abledBusin ess = unch ecked((int )0x8004032 d); // -21 47220691 | |||||
| 4450 | publ ic const i nt IsvUnEx pected = u nchecked(( int)0x8004 0224); // -214722095 6 | |||||
| 4451 | publ ic const i nt OnlyOwn erCanRevok e = unchec ked((int)0 x80040223) ; // -2147 220957 | |||||
| 4452 | publ ic const i nt unManag edidsoutof memory = u nchecked(( int)0x8004 0222); // -214722095 8 | |||||
| 4453 | publ ic const i nt unManag edidscanno tassigntob usiness = unchecked( (int)0x800 40221); // -21472209 59 | |||||
| 4454 | publ ic const i nt Privile geDenied = unchecked ((int)0x80 040220); / / -2147220 960 | |||||
| 4455 | publ ic const i nt Invalid ObjectType s = unchec ked((int)0 x8004021f) ; // -2147 220961 | |||||
| 4456 | publ ic const i nt unManag edidscanno tgrantorre vokeaccess tobusiness = uncheck ed((int)0x 8004021e); // -21472 20962 | |||||
| 4457 | publ ic const i nt unManag edidsinval iduseridor businessid orusersbus inessinval id = unche cked((int) 0x8004021d ); // -214 7220963 | |||||
| 4458 | publ ic const i nt unManag edidsprese ntuseridan dteamid = unchecked( (int)0x800 4021c); // -21472209 64 | |||||
| 4459 | publ ic const i nt Missing UserId = u nchecked(( int)0x8004 021b); // -214722096 5 | |||||
| 4460 | publ ic const i nt Missing BusinessId = uncheck ed((int)0x 8004021a); // -21472 20966 | |||||
| 4461 | publ ic const i nt NotImpl emented = unchecked( (int)0x800 40219); // -21472209 67 | |||||
| 4462 | publ ic const i nt Invalid Pointer = unchecked( (int)0x800 40218); // -21472209 68 | |||||
| 4463 | publ ic const i nt ObjectD oesNotExis t = unchec ked((int)0 x80040217) ; // -2147 220969 | |||||
| 4464 | publ ic const i nt UnExpec ted = unch ecked((int )0x8004021 6); // -21 47220970 | |||||
| 4465 | publ ic const i nt Missing Owner = un checked((i nt)0x80040 215); // - 2147220971 | |||||
| 4466 | publ ic const i nt CannotS hareWithOw ner = unch ecked((int )0x8004021 4); // -21 47220972 | |||||
| 4467 | publ ic const i nt unManag edidsinval idvisibili tymodifica tionaccess = uncheck ed((int)0x 80040213); // -21472 20973 | |||||
| 4468 | publ ic const i nt unManag edidsinval idowningus er = unche cked((int) 0x80040212 ); // -214 7220974 | |||||
| 4469 | publ ic const i nt unManag edidsinval idassociat ion = unch ecked((int )0x8004021 1); // -21 47220975 | |||||
| 4470 | publ ic const i nt Invalid AssigneeId = uncheck ed((int)0x 80040210); // -21472 20976 | |||||
| 4471 | publ ic const i nt unManag edidsfailu reinittoke n = unchec ked((int)0 x8004020f) ; // -2147 220977 | |||||
| 4472 | publ ic const i nt unManag edidsinval idvisibili ty = unche cked((int) 0x8004020e ); // -214 7220978 | |||||
| 4473 | publ ic const i nt Invalid AccessRigh ts = unche cked((int) 0x8004020d ); // -214 7220979 | |||||
| 4474 | publ ic const i nt Invalid Sharee = u nchecked(( int)0x8004 020c); // -214722098 0 | |||||
| 4475 | publ ic const i nt unManag edidsinval iditemid = unchecked ((int)0x80 04020b); / / -2147220 981 | |||||
| 4476 | publ ic const i nt unManag edidsinval idorgid = unchecked( (int)0x800 4020a); // -21472209 82 | |||||
| 4477 | publ ic const i nt unManag edidsinval idbusiness id = unche cked((int) 0x80040209 ); // -214 7220983 | |||||
| 4478 | publ ic const i nt unManag edidsinval idteamid = unchecked ((int)0x80 040208); / / -2147220 984 | |||||
| 4479 | publ ic const i nt unManag edidsinval iduserid = unchecked ((int)0x80 040207); / / -2147220 985 | |||||
| 4480 | publ ic const i nt Invalid ParentId = unchecked ((int)0x80 040206); / / -2147220 986 | |||||
| 4481 | publ ic const i nt Invalid Parent = u nchecked(( int)0x8004 0205); // -214722098 7 | |||||
| 4482 | publ ic const i nt Invalid UserAuth = unchecked ((int)0x80 040204); / / -2147220 988 | |||||
| 4483 | publ ic const i nt Invalid Argument = unchecked ((int)0x80 040203); / / -2147220 989 | |||||
| 4484 | publ ic const i nt EmptyXm l = unchec ked((int)0 x80040202) ; // -2147 220990 | |||||
| 4485 | publ ic const i nt Invalid Xml = unch ecked((int )0x8004020 1); // -21 47220991 | |||||
| 4486 | publ ic const i nt Require dFieldMiss ing = unch ecked((int )0x8004020 0); // -21 47220992 | |||||
| 4487 | publ ic const i nt SearchT extLenExce eded = unc hecked((in t)0x800401 ff); // -2 147220993 | |||||
| 4488 | publ ic const i nt CannotA ssignOffli neFilters = unchecke d((int)0x8 00404ff); // -214722 0225 | |||||
| 4489 | publ ic const i nt Article IsPublishe d = unchec ked((int)0 x800404fe) ; // -2147 220226 | |||||
| 4490 | publ ic const i nt Invalid ArticleTem plateState = uncheck ed((int)0x 800404fd); // -21472 20227 | |||||
| 4491 | publ ic const i nt Invalid ArticleSta teTransiti on = unche cked((int) 0x800404fc ); // -214 7220228 | |||||
| 4492 | publ ic const i nt Invalid ArticleSta te = unche cked((int) 0x800404fb ); // -214 7220229 | |||||
| 4493 | publ ic const i nt NullKBA rticleTemp lateId = u nchecked(( int)0x8004 04fa); // -214722023 0 | |||||
| 4494 | publ ic const i nt NullArt icleTempla teStructur eXml = unc hecked((in t)0x800404 f9); // -2 147220231 | |||||
| 4495 | publ ic const i nt NullArt icleTempla teFormatXm l = unchec ked((int)0 x800404f8) ; // -2147 220232 | |||||
| 4496 | publ ic const i nt NullArt icleXml = unchecked( (int)0x800 404f7); // -21472202 33 | |||||
| 4497 | publ ic const i nt Invalid ContractDe tailId = u nchecked(( int)0x8004 04f6); // -214722023 4 | |||||
| 4498 | publ ic const i nt Invalid TotalPrice = uncheck ed((int)0x 800404f5); // -21472 20235 | |||||
| 4499 | publ ic const i nt Invalid TotalDisco unt = unch ecked((int )0x800404f 4); // -21 47220236 | |||||
| 4500 | publ ic const i nt Invalid NetPrice = unchecked ((int)0x80 0404f3); / / -2147220 237 | |||||
| 4501 | publ ic const i nt Invalid Allotments Remaining = unchecke d((int)0x8 00404f2); // -214722 0238 | |||||
| 4502 | publ ic const i nt Invalid Allotments Used = unc hecked((in t)0x800404 f1); // -2 147220239 | |||||
| 4503 | publ ic const i nt Invalid Allotments Total = un checked((i nt)0x80040 4f0); // - 2147220240 | |||||
| 4504 | publ ic const i nt Invalid Allotments Calc = unc hecked((in t)0x800404 ef); // -2 147220241 | |||||
| 4505 | publ ic const i nt CannotR outeToSame Queue = un checked((i nt)0x80040 51b); // - 2147220197 | |||||
| 4506 | publ ic const i nt CannotA ddSingleQu eueEnabled EntityToQu eue = unch ecked((int )0x8004051 c); // -21 47220196 | |||||
| 4507 | publ ic const i nt CannotU pdateDeact ivatedQueu eItem = un checked((i nt)0x80040 51d); // - 2147220195 | |||||
| 4508 | publ ic const i nt CannotC reateQueue ItemInacti veObject = unchecked ((int)0x80 04051e); / / -2147220 194 | |||||
| 4509 | publ ic const i nt Insuffi cientPrivi legeToQueu eOwner = u nchecked(( int)0x8004 0520); // -214722019 2 | |||||
| 4510 | publ ic const i nt NoPrivi legeToWork er = unche cked((int) 0x80040521 ); // -214 7220191 | |||||
| 4511 | publ ic const i nt CannotA ddQueueIte msToInacti veQueue = unchecked( (int)0x800 40522); // -21472201 90 | |||||
| 4512 | publ ic const i nt EmailAl readyExist sInDestina tionQueue = unchecke d((int)0x8 0040523); // -214722 0189 | |||||
| 4513 | publ ic const i nt CouldNo tFindQueue ItemInQueu e = unchec ked((int)0 x80040524) ; // -2147 220188 | |||||
| 4514 | publ ic const i nt Multipl eQueueItem sFound = u nchecked(( int)0x8004 0525); // -214722018 7 | |||||
| 4515 | publ ic const i nt ActiveQ ueueItemAl readyExist s = unchec ked((int)0 x80040526) ; // -2147 220186 | |||||
| 4516 | publ ic const i nt CannotR outeInacti veQueueIte m = unchec ked((int)0 x80040527) ; // -2147 220185 | |||||
| 4517 | publ ic const i nt QueueId NotPresent = uncheck ed((int)0x 80040528); // -21472 20184 | |||||
| 4518 | publ ic const i nt QueueIt emNotPrese nt = unche cked((int) 0x80040529 ); // -214 7220183 | |||||
| 4519 | publ ic const i nt CannotU pdatePriva teOrWIPQue ue = unche cked((int) 0x800404ee ); // -214 7220242 | |||||
| 4520 | publ ic const i nt CannotF indUserQue ue = unche cked((int) 0x800404ec ); // -214 7220244 | |||||
| 4521 | publ ic const i nt CannotF indObjectI nQueue = u nchecked(( int)0x8004 04eb); // -214722024 5 | |||||
| 4522 | publ ic const i nt CannotR outeToQueu e = unchec ked((int)0 x800404ea) ; // -2147 220246 | |||||
| 4523 | publ ic const i nt RouteTy peUnsuppor ted = unch ecked((int )0x800404e 9); // -21 47220247 | |||||
| 4524 | publ ic const i nt UserIdO rQueueNotS et = unche cked((int) 0x800404e8 ); // -214 7220248 | |||||
| 4525 | publ ic const i nt Routing NotAllowed = uncheck ed((int)0x 800404e7); // -21472 20249 | |||||
| 4526 | publ ic const i nt CannotU pdateMetri cOnChildGo al = unche cked((int) 0x80044900 ); // -214 7202816 | |||||
| 4527 | publ ic const i nt CannotU pdateGoalP eriodInfoC hildGoal = unchecked ((int)0x80 044901); / / -2147202 815 | |||||
| 4528 | publ ic const i nt CannotU pdateMetri cOnGoalWit hChildren = unchecke d((int)0x8 0044902); // -214720 2814 | |||||
| 4529 | publ ic const i nt FiscalP eriodGoalM issingInfo = uncheck ed((int)0x 80044903); // -21472 02813 | |||||
| 4530 | publ ic const i nt CustomP eriodGoalH avingExtra Info = unc hecked((in t)0x800449 04); // -2 147202812 | |||||
| 4531 | publ ic const i nt ParentC hildMetric IdDiffers = unchecke d((int)0x8 0044905); // -214720 2811 | |||||
| 4532 | publ ic const i nt ParentC hildPeriod Attributes Differ = u nchecked(( int)0x8004 4906); // -214720281 0 | |||||
| 4533 | publ ic const i nt CustomP eriodGoalM issingInfo = uncheck ed((int)0x 80044907); // -21472 02809 | |||||
| 4534 | publ ic const i nt GoalMis singPeriod TypeInfo = unchecked ((int)0x80 044908); / / -2147202 808 | |||||
| 4535 | publ ic const i nt Partici patingQuer yEntityMis match = un checked((i nt)0x80044 909); // - 2147202807 | |||||
| 4536 | publ ic const i nt CannotU pdateGoalP eriodInfoC losedGoal = unchecke d((int)0x8 0044910); // -214720 2800 | |||||
| 4537 | publ ic const i nt CannotU pdateRollu pFields = unchecked( (int)0x800 44911); // -21472027 99 | |||||
| 4538 | publ ic const i nt CannotD eleteMetri cWithGoals = uncheck ed((int)0x 80044800); // -21472 03072 | |||||
| 4539 | publ ic const i nt CannotU pdateRollu pAttribute WithClosed Goals = un checked((i nt)0x80044 801); // - 2147203071 | |||||
| 4540 | publ ic const i nt MetricN ameAlready Exists = u nchecked(( int)0x8004 4802); // -214720307 0 | |||||
| 4541 | publ ic const i nt CannotU pdateMetri cWithGoals = uncheck ed((int)0x 80044803); // -21472 03069 | |||||
| 4542 | publ ic const i nt CannotC reateUpdat eSourceAtt ribute = u nchecked(( int)0x8004 4804); // -214720306 8 | |||||
| 4543 | publ ic const i nt Invalid DateAttrib ute = unch ecked((int )0x8004480 5); // -21 47203067 | |||||
| 4544 | publ ic const i nt Invalid SourceEnti tyAttribut e = unchec ked((int)0 x80044806) ; // -2147 203066 | |||||
| 4545 | publ ic const i nt GoalAtt ributeAlre adyMapped = unchecke d((int)0x8 0044807); // -214720 3065 | |||||
| 4546 | publ ic const i nt Invalid SourceAttr ibuteType = unchecke d((int)0x8 0044808); // -214720 3064 | |||||
| 4547 | publ ic const i nt MaxLimi tForRollup Attribute = unchecke d((int)0x8 004480a); // -214720 3062 | |||||
| 4548 | publ ic const i nt Invalid GoalAttrib ute = unch ecked((int )0x8004480 b); // -21 47203061 | |||||
| 4549 | publ ic const i nt CannotU pdateParen tAndDepend ents = unc hecked((in t)0x800448 0c); // -2 147203060 | |||||
| 4550 | publ ic const i nt UserDoe sNotHaveSe ndAsAllowe d = unchec ked((int)0 x8004480d) ; // -2147 203059 | |||||
| 4551 | publ ic const i nt CannotU pdateQuote Currency = unchecked ((int)0x80 04480e); / / -2147203 058 | |||||
| 4552 | publ ic const i nt UserDoe sNotHaveSe ndAsForQue ue = unche cked((int) 0x8004480f ); // -214 7203057 | |||||
| 4553 | publ ic const i nt Invalid SourceStat eValue = u nchecked(( int)0x8004 4810); // -214720305 6 | |||||
| 4554 | publ ic const i nt Invalid SourceStat usValue = unchecked( (int)0x800 44811); // -21472030 55 | |||||
| 4555 | publ ic const i nt Invalid EntityForD ateAttribu te = unche cked((int) 0x80044812 ); // -214 7203054 | |||||
| 4556 | publ ic const i nt Invalid EntityForR ollup = un checked((i nt)0x80044 813); // - 2147203053 | |||||
| 4557 | publ ic const i nt Invalid FiscalPeri od = unche cked((int) 0x80044814 ); // -214 7203052 | |||||
| 4558 | publ ic const i nt unManag edchildent ityisnotch ild = unch ecked((int )0x800404e 6); // -21 47220250 | |||||
| 4559 | publ ic const i nt unManag edmissingp arententit y = unchec ked((int)0 x800404e5) ; // -2147 220251 | |||||
| 4560 | publ ic const i nt unManag edunablege texecution context = unchecked( (int)0x800 404e4); // -21472202 52 | |||||
| 4561 | publ ic const i nt unManag edpendingt rxexists = unchecked ((int)0x80 0404e3); / / -2147220 253 | |||||
| 4562 | publ ic const i nt unManag edinvalidt rxcountfor commit = u nchecked(( int)0x8004 04e2); // -214722025 4 | |||||
| 4563 | publ ic const i nt unManag edinvalidt rxcountfor rollback = unchecked ((int)0x80 0404e1); / / -2147220 255 | |||||
| 4564 | publ ic const i nt unManag edunablesw itchuserco ntext = un checked((i nt)0x80040 4e0); // - 2147220256 | |||||
| 4565 | publ ic const i nt unManag edmissingd ataaccess = unchecke d((int)0x8 00404df); // -214722 0257 | |||||
| 4566 | publ ic const i nt unManag edinvalidc haracterda taforaggre gate = unc hecked((in t)0x800404 de); // -2 147220258 | |||||
| 4567 | publ ic const i nt unManag edtrxinter ophandlers et = unche cked((int) 0x800404dd ); // -214 7220259 | |||||
| 4568 | publ ic const i nt unManag edinvalidb inaryfield = uncheck ed((int)0x 800404dc); // -21472 20260 | |||||
| 4569 | publ ic const i nt unManag edinvaludi dispatchfi eld = unch ecked((int )0x800404d b); // -21 47220261 | |||||
| 4570 | publ ic const i nt unManag edinvalidd bdatefield = uncheck ed((int)0x 800404da); // -21472 20262 | |||||
| 4571 | publ ic const i nt unManag edinvalddb timefield = unchecke d((int)0x8 00404d9); // -214722 0263 | |||||
| 4572 | publ ic const i nt unManag edinvalidf ieldtype = unchecked ((int)0x80 0404d8); / / -2147220 264 | |||||
| 4573 | publ ic const i nt unManag edinvalids treamfield = uncheck ed((int)0x 800404d7); // -21472 20265 | |||||
| 4574 | publ ic const i nt unManag edinvalidp arameterty peforparam eterizedqu ery = unch ecked((int )0x800404d 6); // -21 47220266 | |||||
| 4575 | publ ic const i nt unManag edinvalidd ynamicpara meteracces sor = unch ecked((int )0x800404d 5); // -21 47220267 | |||||
| 4576 | publ ic const i nt unManag edunablege tsessionto kennotrx = unchecked ((int)0x80 0404d4); / / -2147220 268 | |||||
| 4577 | publ ic const i nt unManag edunablege tsessionto ken = unch ecked((int )0x800404d 3); // -21 47220269 | |||||
| 4578 | publ ic const i nt unManag edinvalids ecuritypri ncipal = u nchecked(( int)0x8004 04d2); // -214722027 0 | |||||
| 4579 | publ ic const i nt unManag edmissingp reviousown ertype = u nchecked(( int)0x8004 04d0); // -214722027 2 | |||||
| 4580 | publ ic const i nt unManag edinvalidp rivilegeid = uncheck ed((int)0x 800404ce); // -21472 20274 | |||||
| 4581 | publ ic const i nt unManag edinvalidp rivilegeus ergroup = unchecked( (int)0x800 404cd); // -21472202 75 | |||||
| 4582 | publ ic const i nt unManag edunexpect edproperty type = unc hecked((in t)0x800404 cc); // -2 147220276 | |||||
| 4583 | publ ic const i nt unManag edmissinga ddressenti ty = unche cked((int) 0x800404cb ); // -214 7220277 | |||||
| 4584 | publ ic const i nt unManag ederroradd ingfiltert oqueryplan = uncheck ed((int)0x 800404ca); // -21472 20278 | |||||
| 4585 | publ ic const i nt unManag edmissingr eferencesf romrelatio nship = un checked((i nt)0x80040 4c9); // - 2147220279 | |||||
| 4586 | publ ic const i nt unManag edmissingr eferencing attribute = unchecke d((int)0x8 00404c8); // -214722 0280 | |||||
| 4587 | publ ic const i nt unManag edinvalido perator = unchecked( (int)0x800 404c7); // -21472202 81 | |||||
| 4588 | publ ic const i nt unManag edunableto accessquer yplanfilte r = unchec ked((int)0 x800404c6) ; // -2147 220282 | |||||
| 4589 | publ ic const i nt unManag edmissinga ttributefo rtag = unc hecked((in t)0x800404 c5); // -2 147220283 | |||||
| 4590 | publ ic const i nt unManag ederrorpro cessingfil ternodes = unchecked ((int)0x80 0404c4); / / -2147220 284 | |||||
| 4591 | publ ic const i nt unManag edunableto locatecond itionfilte r = unchec ked((int)0 x800404c3) ; // -2147 220285 | |||||
| 4592 | publ ic const i nt unManag edinvalidp agevalue = unchecked ((int)0x80 0404c2); / / -2147220 286 | |||||
| 4593 | publ ic const i nt unManag edinvalidc ountvalue = unchecke d((int)0x8 00404c1); // -214722 0287 | |||||
| 4594 | publ ic const i nt unManag edinvalidv ersionvalu e = unchec ked((int)0 x800404c0) ; // -2147 220288 | |||||
| 4595 | publ ic const i nt unManag edinvalidv aluettagou tsidecondi tiontag = unchecked( (int)0x800 404bf); // -21472202 89 | |||||
| 4596 | publ ic const i nt unManag edinvalido rganizatio nid = unch ecked((int )0x800404b e); // -21 47220290 | |||||
| 4597 | publ ic const i nt unManag edinvalido wninguser = unchecke d((int)0x8 00404bd); // -214722 0291 | |||||
| 4598 | publ ic const i nt unManag edinvalido wningbusin essunitorb usinessuni tid = unch ecked((int )0x800404b c); // -21 47220292 | |||||
| 4599 | publ ic const i nt unManag edinvalidp rivilegeed epth = unc hecked((in t)0x800404 bb); // -2 147220293 | |||||
| 4600 | publ ic const i nt unManag edinvalidl inkobjects = uncheck ed((int)0x 800404ba); // -21472 20294 | |||||
| 4601 | publ ic const i nt unManag edpartylis tattribute notsupport ed = unche cked((int) 0x800404b8 ); // -214 7220296 | |||||
| 4602 | publ ic const i nt unManag edinvalida rgumentsfo rcondition = uncheck ed((int)0x 800404b7); // -21472 20297 | |||||
| 4603 | publ ic const i nt unManag edunknowna ggregateop eration = unchecked( (int)0x800 404b6); // -21472202 98 | |||||
| 4604 | publ ic const i nt unManag edmissingp arentattri buteonenti ty = unche cked((int) 0x800404b5 ); // -214 7220299 | |||||
| 4605 | publ ic const i nt unManag edinvalidp rocesschil dofconditi on = unche cked((int) 0x800404b4 ); // -214 7220300 | |||||
| 4606 | publ ic const i nt unManag edunexpect edrimaryke y = unchec ked((int)0 x800404b3) ; // -2147 220301 | |||||
| 4607 | publ ic const i nt unManag edmissingl inkentity = unchecke d((int)0x8 00404b2); // -214722 0302 | |||||
| 4608 | publ ic const i nt unManag edinvalidp rocesslite rnalcondit ion = unch ecked((int )0x800404b 1); // -21 47220303 | |||||
| 4609 | publ ic const i nt unManag edemptypro cesslitera lcondition = uncheck ed((int)0x 800404b0); // -21472 20304 | |||||
| 4610 | publ ic const i nt unManag edunusable variantdat a = unchec ked((int)0 x800404af) ; // -2147 220305 | |||||
| 4611 | publ ic const i nt unManag edfieldnot validatedb yplatform = unchecke d((int)0x8 00404ae); // -214722 0306 | |||||
| 4612 | publ ic const i nt unManag edmissingf ilterattri bute = unc hecked((in t)0x800404 ad); // -2 147220307 | |||||
| 4613 | publ ic const i nt unManag edinvalide qualityope rand = unc hecked((in t)0x800404 ac); // -2 147220308 | |||||
| 4614 | publ ic const i nt unManag edfilterin dexoutofra nge = unch ecked((int )0x800404a b); // -21 47220309 | |||||
| 4615 | publ ic const i nt unManag edentityis notinterse ct = unche cked((int) 0x800404aa ); // -214 7220310 | |||||
| 4616 | publ ic const i nt unManag edcihldofc onditionfo roffilefil ters = unc hecked((in t)0x800404 a9); // -2 147220311 | |||||
| 4617 | publ ic const i nt unManag edinvalido wningbusin essunit = unchecked( (int)0x800 404a8); // -21472203 12 | |||||
| 4618 | publ ic const i nt unManag edinvalidb usinessuni tid = unch ecked((int )0x800404a 7); // -21 47220313 | |||||
| 4619 | publ ic const i nt unManag edmorethan onesortatt ribute = u nchecked(( int)0x8004 04a6); // -214722031 4 | |||||
| 4620 | publ ic const i nt unManag edunableto accessquer yplan = un checked((i nt)0x80040 4a5); // - 2147220315 | |||||
| 4621 | publ ic const i nt unManag edparentat tributenot found = un checked((i nt)0x80040 4a4); // - 2147220316 | |||||
| 4622 | publ ic const i nt unManag edinvalidt lsmananger = uncheck ed((int)0x 800404a2); // -21472 20318 | |||||
| 4623 | publ ic const i nt unManag edinvalide scapedxml = unchecke d((int)0x8 00404a1); // -214722 0319 | |||||
| 4624 | publ ic const i nt unManag edunableto retrievepr ivileges = unchecked ((int)0x80 0404a0); / / -2147220 320 | |||||
| 4625 | publ ic const i nt unManag edproxycre ationfaile d = unchec ked((int)0 x8004049f) ; // -2147 220321 | |||||
| 4626 | publ ic const i nt unManag edinvalidp rincipal = unchecked ((int)0x80 04049e); / / -2147220 322 | |||||
| 4627 | publ ic const i nt Restric tInherited Role = unc hecked((in t)0x800441 52); // -2 147204782 | |||||
| 4628 | publ ic const i nt unManag edidsfetch betweentex t = unchec ked((int)0 x80044153) ; // -2147 204781 | |||||
| 4629 | publ ic const i nt unManag edidscantd isable = u nchecked(( int)0x8004 4154); // -214720478 0 | |||||
| 4630 | publ ic const i nt Cascade InvalidLin kTypeTrans ition = un checked((i nt)0x80044 155); // - 2147204779 | |||||
| 4631 | publ ic const i nt Invalid OrgOwnedCa scadeLinkT ype = unch ecked((int )0x8004415 6); // -21 47204778 | |||||
| 4632 | publ ic const i nt CallerC annotChang eOwnDomain Name = unc hecked((in t)0x800441 61); // -2 147204767 | |||||
| 4633 | publ ic const i nt AsyncOp erationInv alidStateC hange = un checked((i nt)0x80044 162); // - 2147204766 | |||||
| 4634 | publ ic const i nt AsyncOp erationInv alidStateC hangeUnexp ected = un checked((i nt)0x80044 163); // - 2147204765 | |||||
| 4635 | publ ic const i nt AsyncOp erationMis singId = u nchecked(( int)0x8004 4164); // -214720476 4 | |||||
| 4636 | publ ic const i nt AsyncOp erationInv alidStateC hangeToCom plete = un checked((i nt)0x80044 165); // - 2147204763 | |||||
| 4637 | publ ic const i nt AsyncOp erationInv alidStateC hangeToRea dy = unche cked((int) 0x80044166 ); // -214 7204762 | |||||
| 4638 | publ ic const i nt AsyncOp erationInv alidStateC hangeToSus pended = u nchecked(( int)0x8004 4167); // -214720476 1 | |||||
| 4639 | publ ic const i nt AsyncOp erationCan notUpdateN onrecurrin g = unchec ked((int)0 x80044168) ; // -2147 204760 | |||||
| 4640 | publ ic const i nt AsyncOp erationCan notUpdateR ecurring = unchecked ((int)0x80 044169); / / -2147204 759 | |||||
| 4641 | publ ic const i nt AsyncOp erationCan notDeleteU nlessCompl eted = unc hecked((in t)0x800441 6a); // -2 147204758 | |||||
| 4642 | publ ic const i nt SdkInva lidMessage PropertyNa me = unche cked((int) 0x8004416b ); // -214 7204757 | |||||
| 4643 | publ ic const i nt PluginA ssemblyMus tHavePubli cKeyToken = unchecke d((int)0x8 004416c); // -214720 4756 | |||||
| 4644 | publ ic const i nt SdkMess ageInvalid ImageTypeR egistratio n = unchec ked((int)0 x8004416d) ; // -2147 204755 | |||||
| 4645 | publ ic const i nt SdkMess ageDoesNot SupportPos tImageRegi stration = unchecked ((int)0x80 04416e); / / -2147204 754 | |||||
| 4646 | publ ic const i nt CannotD eserialize Request = unchecked( (int)0x800 4416f); // -21472047 53 | |||||
| 4647 | publ ic const i nt Invalid PluginRegi strationCo nfiguratio n = unchec ked((int)0 x80044170) ; // -2147 204752 | |||||
| 4648 | publ ic const i nt Sandbox ClientPlug inTimeout = unchecke d((int)0x8 0044171); // -214720 4751 | |||||
| 4649 | publ ic const i nt Sandbox HostPlugin Timeout = unchecked( (int)0x800 44172); // -21472047 50 | |||||
| 4650 | publ ic const i nt Sandbox WorkerPlug inTimeout = unchecke d((int)0x8 0044173); // -214720 4749 | |||||
| 4651 | publ ic const i nt Sandbox SdkListene rStartFail ed = unche cked((int) 0x80044174 ); // -214 7204748 | |||||
| 4652 | publ ic const i nt Service BusPostFai led = unch ecked((int )0x8004417 5); // -21 47204747 | |||||
| 4653 | publ ic const i nt Service BusIssuerN otFound = unchecked( (int)0x800 44176); // -21472047 46 | |||||
| 4654 | publ ic const i nt Service BusIssuerC ertificate Error = un checked((i nt)0x80044 177); // - 2147204745 | |||||
| 4655 | publ ic const i nt Service BusExtende dTokenFail ed = unche cked((int) 0x80044178 ); // -214 7204744 | |||||
| 4656 | publ ic const i nt Service BusPostPos tponed = u nchecked(( int)0x8004 4179); // -214720474 3 | |||||
| 4657 | publ ic const i nt Service BusPostDis abled = un checked((i nt)0x80044 17a); // - 2147204742 | |||||
| 4658 | publ ic const i nt SdkMess ageNotSupp ortedOnSer ver = unch ecked((int )0x8004418 0); // -21 47204736 | |||||
| 4659 | publ ic const i nt SdkMess ageNotSupp ortedOnCli ent = unch ecked((int )0x8004418 1); // -21 47204735 | |||||
| 4660 | publ ic const i nt SdkCorr elationTok enDepthToo High = unc hecked((in t)0x800441 82); // -2 147204734 | |||||
| 4661 | publ ic const i nt OnlySte pInPredefi nedStagesC anBeModifi ed = unche cked((int) 0x80044184 ); // -214 7204732 | |||||
| 4662 | publ ic const i nt OnlySte pInServerO nlyCanHave SecureConf iguration = unchecke d((int)0x8 0044185); // -214720 4731 | |||||
| 4663 | publ ic const i nt OnlySte pOutsideTr ansactionC anCreateCr mService = unchecked ((int)0x80 044186); / / -2147204 730 | |||||
| 4664 | publ ic const i nt SdkCust omProcessi ngStepIsNo tAllowed = unchecked ((int)0x80 044187); / / -2147204 729 | |||||
| 4665 | publ ic const i nt SdkEnti tyOfflineQ ueuePlayba ckIsNotAll owed = unc hecked((in t)0x800441 88); // -2 147204728 | |||||
| 4666 | publ ic const i nt SdkMess ageDoesNot SupportIma geRegistra tion = unc hecked((in t)0x800441 89); // -2 147204727 | |||||
| 4667 | publ ic const i nt Request LengthTooL arge = unc hecked((in t)0x800441 8a); // -2 147204726 | |||||
| 4668 | publ ic const i nt Sandbox WorkerNotA vailable = unchecked ((int)0x80 04418d); / / -2147204 723 | |||||
| 4669 | publ ic const i nt Sandbox HostNotAva ilable = u nchecked(( int)0x8004 418e); // -214720472 2 | |||||
| 4670 | publ ic const i nt PluginA ssemblyCon tentSizeEx ceeded = u nchecked(( int)0x8004 418f); // -214720472 1 | |||||
| 4671 | publ ic const i nt UnableT oLoadPlugi nType = un checked((i nt)0x80044 190); // - 2147204720 | |||||
| 4672 | publ ic const i nt UnableT oLoadPlugi nAssembly = unchecke d((int)0x8 0044191); // -214720 4719 | |||||
| 4673 | publ ic const i nt Invalid PluginAsse mblyConten t = unchec ked((int)0 x8004418b) ; // -2147 204725 | |||||
| 4674 | publ ic const i nt Invalid PluginType Implementa tion = unc hecked((in t)0x800441 8c); // -2 147204724 | |||||
| 4675 | publ ic const i nt Invalid PluginAsse mblyVersio n = unchec ked((int)0 x8004417b) ; // -2147 204741 | |||||
| 4676 | publ ic const i nt PluginT ypeMustBeU nique = un checked((i nt)0x80044 17c); // - 2147204740 | |||||
| 4677 | publ ic const i nt Invalid AssemblySo urceType = unchecked ((int)0x80 04417d); / / -2147204 739 | |||||
| 4678 | publ ic const i nt Invalid AssemblyPr ocessorArc hitecture = unchecke d((int)0x8 004417e); // -214720 4738 | |||||
| 4679 | publ ic const i nt CyclicR eferencesN otSupporte d = unchec ked((int)0 x8004417f) ; // -2147 204737 | |||||
| 4680 | publ ic const i nt Invalid Query = un checked((i nt)0x80044 183); // - 2147204733 | |||||
| 4681 | publ ic const i nt Sandbox WorkerPlug inExecuteT imeout = u nchecked(( int)0x8008 1111); // -214695499 1 | |||||
| 4682 | publ ic const i nt Service BusEndpoin tNotConfig ured = unc hecked((in t)0x800811 12); // -2 146954990 | |||||
| 4683 | publ ic const i nt Invalid EmailAddre ssFormat = unchecked ((int)0x80 044192); / / -2147204 718 | |||||
| 4684 | publ ic const i nt Contrac tInvalidDi scount = u nchecked(( int)0x8004 4193); // -214720471 7 | |||||
| 4685 | publ ic const i nt Invalid LanguageCo de = unche cked((int) 0x80044195 ); // -214 7204715 | |||||
| 4686 | publ ic const i nt ConfigN ullPrimary Key = unch ecked((int )0x8004419 6); // -21 47204714 | |||||
| 4687 | publ ic const i nt ConfigM issingDesc ription = unchecked( (int)0x800 44197); // -21472047 13 | |||||
| 4688 | publ ic const i nt Attribu teDoesNotS upportLoca lizedLabel s = unchec ked((int)0 x80044198) ; // -2147 204712 | |||||
| 4689 | publ ic const i nt NoLangu ageProvisi oned = unc hecked((in t)0x800441 99); // -2 147204711 | |||||
| 4690 | publ ic const i nt CannotI mportNullS tringsForB aseLanguag e = unchec ked((int)0 x80044246) ; // -2147 204538 | |||||
| 4691 | publ ic const i nt CannotU pdateNonCu stomizable String = u nchecked(( int)0x8004 4247); // -214720453 7 | |||||
| 4692 | publ ic const i nt Invalid Organizati onId = unc hecked((in t)0x800442 48); // -2 147204536 | |||||
| 4693 | publ ic const i nt Invalid Translatio nsFile = u nchecked(( int)0x8004 4249); // -214720453 5 | |||||
| 4694 | publ ic const i nt Metadat aRecordNot Deletable = unchecke d((int)0x8 0044250); // -214720 4528 | |||||
| 4695 | publ ic const i nt Invalid ImportJobT emplateFil e = unchec ked((int)0 x80044251) ; // -2147 204527 | |||||
| 4696 | publ ic const i nt Invalid ImportJobI d = unchec ked((int)0 x80044252) ; // -2147 204526 | |||||
| 4697 | publ ic const i nt Missing CrmAuthent icationTok en = unche cked((int) 0x80044300 ); // -214 7204352 | |||||
| 4698 | publ ic const i nt Integra tedAuthent icationIsN otAllowed = unchecke d((int)0x8 0044301); // -214720 4351 | |||||
| 4699 | publ ic const i nt Request IsNotAuthe nticated = unchecked ((int)0x80 044302); / / -2147204 350 | |||||
| 4700 | publ ic const i nt AsyncOp erationTyp eIsNotReco gnized = u nchecked(( int)0x8004 4303); // -214720434 9 | |||||
| 4701 | publ ic const i nt FailedT oDeseriali zeAsyncOpe rationData = uncheck ed((int)0x 80044304); // -21472 04348 | |||||
| 4702 | publ ic const i nt UserSet tingsOverM axPagingLi mit = unch ecked((int )0x8004430 5); // -21 47204347 | |||||
| 4703 | publ ic const i nt AsyncNe tworkError = uncheck ed((int)0x 80044306); // -21472 04346 | |||||
| 4704 | publ ic const i nt AsyncCo mmunicatio nError = u nchecked(( int)0x8004 4307); // -214720434 5 | |||||
| 4705 | publ ic const i nt Missing CrmAuthent icationTok enOrganiza tionName = unchecked ((int)0x80 044308); / / -2147204 344 | |||||
| 4706 | publ ic const i nt SdkNotE noughPrivi legeToSetC allerOrigi nToken = u nchecked(( int)0x8004 4309); // -214720434 3 | |||||
| 4707 | publ ic const i nt OverRet rievalUppe rLimitWith outPagingC ookie = un checked((i nt)0x80044 30a); // - 2147204342 | |||||
| 4708 | publ ic const i nt Invalid Allotments Overage = unchecked( (int)0x800 4430b); // -21472043 41 | |||||
| 4709 | publ ic const i nt TooMany Conditions InQuery = unchecked( (int)0x800 4430c); // -21472043 40 | |||||
| 4710 | publ ic const i nt TooMany LinkEntiti esInQuery = unchecke d((int)0x8 004430d); // -214720 4339 | |||||
| 4711 | publ ic const i nt TooMany ConditionP arametersI nQuery = u nchecked(( int)0x8004 430e); // -214720433 8 | |||||
| 4712 | publ ic const i nt Invalid OneToManyR elationshi pForRelate dEntitiesQ uery = unc hecked((in t)0x800443 0f); // -2 147204337 | |||||
| 4713 | publ ic const i nt Picklis tValueNotU nique = un checked((i nt)0x80044 310); // - 2147204336 | |||||
| 4714 | publ ic const i nt UnableT oLogOnUser FromUserNa meAndPassw ord = unch ecked((int )0x8004431 1); // -21 47204335 | |||||
| 4715 | publ ic const i nt Picklis tValueOutO fRange = u nchecked(( int)0x8004 431a); // -214720432 6 | |||||
| 4716 | publ ic const i nt WrongNu mberOfBool eanOptions = uncheck ed((int)0x 8004431b); // -21472 04325 | |||||
| 4717 | publ ic const i nt Boolean OptionOutO fRange = u nchecked(( int)0x8004 431c); // -214720432 4 | |||||
| 4718 | publ ic const i nt CannotA ddNewBoole anValue = unchecked( (int)0x800 4431d); // -21472043 23 | |||||
| 4719 | publ ic const i nt CannotA ddNewState Value = un checked((i nt)0x80044 31e); // - 2147204322 | |||||
| 4720 | publ ic const i nt NoMoreC ustomOptio nValuesExi st = unche cked((int) 0x8004431f ); // -214 7204321 | |||||
| 4721 | publ ic const i nt InsertO ptionValue InvalidTyp e = unchec ked((int)0 x80044320) ; // -2147 204320 | |||||
| 4722 | publ ic const i nt NewStat usRequires Associated State = un checked((i nt)0x80044 321); // - 2147204319 | |||||
| 4723 | publ ic const i nt NewStat usHasInval idState = unchecked( (int)0x800 44322); // -21472043 18 | |||||
| 4724 | publ ic const i nt CannotD eleteEnumO ptionsFrom AttributeT ype = unch ecked((int )0x8004432 3); // -21 47204317 | |||||
| 4725 | publ ic const i nt OptionR eorderArra yIncorrect Length = u nchecked(( int)0x8004 4324); // -214720431 6 | |||||
| 4726 | publ ic const i nt ValueMi ssingInOpt ionOrderAr ray = unch ecked((int )0x8004432 5); // -21 47204315 | |||||
| 4727 | publ ic const i nt NavPane OrderValue NotAllowed = uncheck ed((int)0x 80044327); // -21472 04313 | |||||
| 4728 | publ ic const i nt EntityR elationshi pRoleCusto mLabelsMis sing = unc hecked((in t)0x800443 28); // -2 147204312 | |||||
| 4729 | publ ic const i nt NavPane NotCustomi zable = un checked((i nt)0x80044 329); // - 2147204311 | |||||
| 4730 | publ ic const i nt EntityR elationshi pSchemaNam eRequired = unchecke d((int)0x8 004432a); // -214720 4310 | |||||
| 4731 | publ ic const i nt EntityR elationshi pSchemaNam eNotUnique = uncheck ed((int)0x 8004432b); // -21472 04309 | |||||
| 4732 | publ ic const i nt CustomR eflexiveRe lationship NotAllowed ForEntity = unchecke d((int)0x8 004432c); // -214720 4308 | |||||
| 4733 | publ ic const i nt EntityC annotBeChi ldInCustom Relationsh ip = unche cked((int) 0x8004432d ); // -214 7204307 | |||||
| 4734 | publ ic const i nt Referen cedEntityH asLogicalP rimaryName Field = un checked((i nt)0x80044 32e); // - 2147204306 | |||||
| 4735 | publ ic const i nt Integer ValueOutOf Range = un checked((i nt)0x80044 32f); // - 2147204305 | |||||
| 4736 | publ ic const i nt Decimal ValueOutOf Range = un checked((i nt)0x80044 330); // - 2147204304 | |||||
| 4737 | publ ic const i nt StringL engthTooLo ng = unche cked((int) 0x80044331 ); // -214 7204303 | |||||
| 4738 | publ ic const i nt EntityC annotParti cipateInEn tityAssoci ation = un checked((i nt)0x80044 332); // - 2147204302 | |||||
| 4739 | publ ic const i nt DataMig rationMana gerUnknown Problem = unchecked( (int)0x800 44333); // -21472043 01 | |||||
| 4740 | publ ic const i nt ImportO perationCh ildFailure = uncheck ed((int)0x 80044334); // -21472 04300 | |||||
| 4741 | publ ic const i nt Attribu teDeprecat ed = unche cked((int) 0x80044335 ); // -214 7204299 | |||||
| 4742 | publ ic const i nt DataMig rationMana gerMandato ryUpdatesN otInstalle d = unchec ked((int)0 x80044336) ; // -2147 204298 | |||||
| 4743 | publ ic const i nt Referen cedEntityM ustHaveLoo kupView = unchecked( (int)0x800 44337); // -21472042 97 | |||||
| 4744 | publ ic const i nt Referen cingEntity MustHaveAs sociationV iew = unch ecked((int )0x8004433 8); // -21 47204296 | |||||
| 4745 | publ ic const i nt CouldNo tObtainLoc kOnResourc e = unchec ked((int)0 x80044339) ; // -2147 204295 | |||||
| 4746 | publ ic const i nt SourceA ttributeHe aderTooBig = uncheck ed((int)0x 80044340); // -21472 04288 | |||||
| 4747 | publ ic const i nt CannotD eleteDefau ltStatusOp tion = unc hecked((in t)0x800443 41); // -2 147204287 | |||||
| 4748 | publ ic const i nt CannotF indDomainA ccount = u nchecked(( int)0x8004 4342); // -214720428 6 | |||||
| 4749 | publ ic const i nt CannotU pdateAppDe faultValue ForStateAt tribute = unchecked( (int)0x800 44343); // -21472042 85 | |||||
| 4750 | publ ic const i nt CannotU pdateAppDe faultValue ForStatusA ttribute = unchecked ((int)0x80 044344); / / -2147204 284 | |||||
| 4751 | publ ic const i nt Invalid OptionSetS chemaName = unchecke d((int)0x8 0044345); // -214720 4283 | |||||
| 4752 | publ ic const i nt Referen cingEntity CannotBeSo lutionAwar e = unchec ked((int)0 x80044350) ; // -2147 204272 | |||||
| 4753 | publ ic const i nt ErrorIn FieldWidth Increase = unchecked ((int)0x80 044351); / / -2147204 271 | |||||
| 4754 | publ ic const i nt Expired VersionSta mp = unche cked((int) 0x80044352 ); // -214 7204270 | |||||
| 4755 | publ ic const i nt AsyncOp erationCan notCancel = unchecke d((int)0x8 0044f00); // -214720 1280 | |||||
| 4756 | publ ic const i nt AsyncOp erationCan notPause = unchecked ((int)0x80 044f01); / / -2147201 279 | |||||
| 4757 | publ ic const i nt CannotD eleteOrCan celSystemJ obs = unch ecked((int )0x80044f0 2); // -21 47201278 | |||||
| 4758 | publ ic const i nt Workflo wCompileFa ilure = un checked((i nt)0x80045 001); // - 2147201023 | |||||
| 4759 | publ ic const i nt UpdateP ublishedWo rkflowDefi nition = u nchecked(( int)0x8004 5002); // -214720102 2 | |||||
| 4760 | publ ic const i nt UpdateW orkflowAct ivation = unchecked( (int)0x800 45003); // -21472010 21 | |||||
| 4761 | publ ic const i nt DeleteW orkflowAct ivation = unchecked( (int)0x800 45004); // -21472010 20 | |||||
| 4762 | publ ic const i nt DeleteW orkflowAct ivationWor kflowDepen dency = un checked((i nt)0x80045 005); // - 2147201019 | |||||
| 4763 | publ ic const i nt DeleteP ublishedWo rkflowDefi nitionWork flowDepend ency = unc hecked((in t)0x800450 06); // -2 147201018 | |||||
| 4764 | publ ic const i nt UpdateW orkflowAct ivationWor kflowDepen dency = un checked((i nt)0x80045 007); // - 2147201017 | |||||
| 4765 | publ ic const i nt UpdateP ublishedWo rkflowDefi nitionWork flowDepend ency = unc hecked((in t)0x800450 08); // -2 147201016 | |||||
| 4766 | publ ic const i nt CreateW orkflowAct ivationWor kflowDepen dency = un checked((i nt)0x80045 009); // - 2147201015 | |||||
| 4767 | publ ic const i nt CreateP ublishedWo rkflowDefi nitionWork flowDepend ency = unc hecked((in t)0x800450 0a); // -2 147201014 | |||||
| 4768 | publ ic const i nt Workflo wPublished ByNonOwner = uncheck ed((int)0x 8004500b); // -21472 01013 | |||||
| 4769 | publ ic const i nt Publish edWorkflow OwnershipC hange = un checked((i nt)0x80045 00c); // - 2147201012 | |||||
| 4770 | publ ic const i nt OnlyWor kflowDefin itionOrTem plateCanBe Published = unchecke d((int)0x8 004500d); // -214720 1011 | |||||
| 4771 | publ ic const i nt OnlyWor kflowDefin itionOrTem plateCanBe Unpublishe d = unchec ked((int)0 x8004500e) ; // -2147 201010 | |||||
| 4772 | publ ic const i nt DeleteW orkflowAct iveDefinit ion = unch ecked((int )0x8004500 f); // -21 47201009 | |||||
| 4773 | publ ic const i nt Workflo wCondition IncorrectU naryOperat orFormatio n = unchec ked((int)0 x80045010) ; // -2147 201008 | |||||
| 4774 | publ ic const i nt Workflo wCondition IncorrectB inaryOpera torFormati on = unche cked((int) 0x80045011 ); // -214 7201007 | |||||
| 4775 | publ ic const i nt Workflo wCondition OperatorNo tSupported = uncheck ed((int)0x 80045012); // -21472 01006 | |||||
| 4776 | publ ic const i nt Workflo wCondition TypeNotSup port = unc hecked((in t)0x800450 13); // -2 147201005 | |||||
| 4777 | publ ic const i nt Workflo wValidatio nFailure = unchecked ((int)0x80 045014); / / -2147201 004 | |||||
| 4778 | publ ic const i nt Publish edWorkflow LimitForSk uReached = unchecked ((int)0x80 045015); / / -2147201 003 | |||||
| 4779 | publ ic const i nt NoPrivi legeToPubl ishWorkflo w = unchec ked((int)0 x80045016) ; // -2147 201002 | |||||
| 4780 | publ ic const i nt Workflo wSystemPau sed = unch ecked((int )0x8004501 7); // -21 47201001 | |||||
| 4781 | publ ic const i nt Workflo wPublishNo Activation Parameters = uncheck ed((int)0x 80045018); // -21472 01000 | |||||
| 4782 | publ ic const i nt CreateW orkflowDep endencyFor PublishedT emplate = unchecked( (int)0x800 45019); // -21472009 99 | |||||
| 4783 | publ ic const i nt DeleteA ctiveWorkf lowTemplat eDependenc y = unchec ked((int)0 x8004501a) ; // -2147 200998 | |||||
| 4784 | publ ic const i nt UpdateP ublishedWo rkflowTemp late = unc hecked((in t)0x800450 1b); // -2 147200997 | |||||
| 4785 | publ ic const i nt DeleteW orkflowAct iveTemplat e = unchec ked((int)0 x8004501c) ; // -2147 200996 | |||||
| 4786 | publ ic const i nt CustomA ctivityInv alid = unc hecked((in t)0x800450 1d); // -2 147200995 | |||||
| 4787 | publ ic const i nt Primary EntityInva lid = unch ecked((int )0x8004501 e); // -21 47200994 | |||||
| 4788 | publ ic const i nt CannotD eserialize WorkflowIn stance = u nchecked(( int)0x8004 501f); // -214720099 3 | |||||
| 4789 | publ ic const i nt CannotD eserialize XamlWorkfl ow = unche cked((int) 0x80045020 ); // -214 7200992 | |||||
| 4790 | publ ic const i nt CannotD eleteCusto mEntityUse dInWorkflo w = unchec ked((int)0 x8004502c) ; // -2147 200980 | |||||
| 4791 | publ ic const i nt BulkMai lOperation Failed = u nchecked(( int)0x8004 502d); // -214720097 9 | |||||
| 4792 | publ ic const i nt Workflo wExpressio nOperatorN otSupporte d = unchec ked((int)0 x8004502e) ; // -2147 200978 | |||||
| 4793 | publ ic const i nt ChildWo rkflowNotF ound = unc hecked((in t)0x800450 2f); // -2 147200977 | |||||
| 4794 | publ ic const i nt CannotD eleteAttri buteUsedIn Workflow = unchecked ((int)0x80 045030); / / -2147200 976 | |||||
| 4795 | publ ic const i nt CannotL ocateRecor dForWorkfl owActivity = uncheck ed((int)0x 80045031); // -21472 00975 | |||||
| 4796 | publ ic const i nt Publish WorkflowWh ileActingO nBehalfOfA notherUser Error = un checked((i nt)0x80045 032); // - 2147200974 | |||||
| 4797 | publ ic const i nt CannotD isableInte rnetMarket ingUser = unchecked( (int)0x800 45033); // -21472009 73 | |||||
| 4798 | publ ic const i nt CannotS etWindowsL iveIdForIn ternetMark etingUser = unchecke d((int)0x8 0045034); // -214720 0972 | |||||
| 4799 | publ ic const i nt CannotC hangeAcces sModeForIn ternetMark etingUser = unchecke d((int)0x8 0045035); // -214720 0971 | |||||
| 4800 | publ ic const i nt CannotC hangeInvit ationStatu sForIntern etMarketin gUser = un checked((i nt)0x80045 036); // - 2147200970 | |||||
| 4801 | publ ic const i nt UIDataG enerationF ailed = un checked((i nt)0x80045 037); // - 2147200969 | |||||
| 4802 | publ ic const i nt Workflo wReference sInvalidAc tivity = u nchecked(( int)0x8004 5038); // -214720096 8 | |||||
| 4803 | publ ic const i nt Publish WorkflowWh ileImperso natingErro r = unchec ked((int)0 x80045039) ; // -2147 200967 | |||||
| 4804 | publ ic const i nt Exchang eAutodisco verError = unchecked ((int)0x80 04503a); / / -2147200 966 | |||||
| 4805 | publ ic const i nt NonCrmU IWorkflows NotSupport ed = unche cked((int) 0x80045040 ); // -214 7200960 | |||||
| 4806 | publ ic const i nt NotEnou ghPrivileg esForXamlW orkflows = unchecked ((int)0x80 045041); / / -2147200 959 | |||||
| 4807 | publ ic const i nt Workflo wAutomatic allyDeacti vated = un checked((i nt)0x80045 042); // - 2147200958 | |||||
| 4808 | publ ic const i nt StepAut omatically Disabled = unchecked ((int)0x80 045043); / / -2147200 957 | |||||
| 4809 | publ ic const i nt NonCrmU IInteracti veWorkflow NotSupport ed = unche cked((int) 0x80045044 ); // -214 7200956 | |||||
| 4810 | publ ic const i nt Workflo wActivityN otSupporte d = unchec ked((int)0 x80045045) ; // -2147 200955 | |||||
| 4811 | publ ic const i nt Execute NotOnDeman dWorkflow = unchecke d((int)0x8 0045046); // -214720 0954 | |||||
| 4812 | publ ic const i nt Execute Unpublishe dWorkflow = unchecke d((int)0x8 0045047); // -214720 0953 | |||||
| 4813 | publ ic const i nt ChildWo rkflowPara meterMisma tch = unch ecked((int )0x8004504 8); // -21 47200952 | |||||
| 4814 | publ ic const i nt Invalid ProcessSta teData = u nchecked(( int)0x8004 5049); // -214720095 1 | |||||
| 4815 | publ ic const i nt OutOfSc opeSlug = unchecked( (int)0x800 45050); // -21472009 44 | |||||
| 4816 | publ ic const i nt CustomW orkflowAct ivitiesNot Supported = unchecke d((int)0x8 0045051); // -214720 0943 | |||||
| 4817 | publ ic const i nt CustomO perationNo tActivated = uncheck ed((int)0x 80045052); // -21472 00942 | |||||
| 4818 | publ ic const i nt CrmSqlG overnorDat abaseReque stDenied = unchecked ((int)0x80 04a001); / / -2147180 543 | |||||
| 4819 | publ ic const i nt Invalid AuthTicket = uncheck ed((int)0x 8004a100); // -21471 80288 | |||||
| 4820 | publ ic const i nt Expired AuthTicket = uncheck ed((int)0x 8004a101); // -21471 80287 | |||||
| 4821 | publ ic const i nt BadAuth Ticket = u nchecked(( int)0x8004 a102); // -214718028 6 | |||||
| 4822 | publ ic const i nt Insuffi cientAuthT icket = un checked((i nt)0x8004a 103); // - 2147180285 | |||||
| 4823 | publ ic const i nt Organiz ationDisab led = unch ecked((int )0x8004a10 4); // -21 47180284 | |||||
| 4824 | publ ic const i nt Tampere dAuthTicke t = unchec ked((int)0 x8004a105) ; // -2147 180283 | |||||
| 4825 | publ ic const i nt Expired Key = unch ecked((int )0x8004a10 6); // -21 47180282 | |||||
| 4826 | publ ic const i nt ScaleGr oupDisable d = unchec ked((int)0 x8004a107) ; // -2147 180281 | |||||
| 4827 | publ ic const i nt Support LogOnExpir ed = unche cked((int) 0x8004a108 ); // -214 7180280 | |||||
| 4828 | publ ic const i nt Invalid PartnerSol utionCusto mizationPr ovider = u nchecked(( int)0x8004 a109); // -214718027 9 | |||||
| 4829 | publ ic const i nt Multipl ePartnerSe curityRole WithSameIn formation = unchecke d((int)0x8 004a10a); // -214718 0278 | |||||
| 4830 | publ ic const i nt Multipl ePartnerUs erWithSame Informatio n = unchec ked((int)0 x8004a10b) ; // -2147 180277 | |||||
| 4831 | publ ic const i nt Multipl eRootBusin essUnit = unchecked( (int)0x800 4a10c); // -21471802 76 | |||||
| 4832 | publ ic const i nt CannotD eletePartn erWithPart nerSolutio ns = unche cked((int) 0x8004a10d ); // -214 7180275 | |||||
| 4833 | publ ic const i nt CannotD eletePartn erSolution WithOrgani zations = unchecked( (int)0x800 4a10e); // -21471802 74 | |||||
| 4834 | publ ic const i nt CannotP rovisionPa rtnerSolut ion = unch ecked((int )0x8004a10 f); // -21 47180273 | |||||
| 4835 | publ ic const i nt CannotA ctOnBehalf OfAnotherU ser = unch ecked((int )0x8004a11 0); // -21 47180272 | |||||
| 4836 | publ ic const i nt SystemU serDisable d = unchec ked((int)0 x8004a112) ; // -2147 180270 | |||||
| 4837 | publ ic const i nt UserDoe sNotHaveAd minOnlyMod ePermissio ns = unche cked((int) 0x8004a113 ); // -214 7180269 | |||||
| 4838 | publ ic const i nt PluginD oesNotImpl ementCorre ctInterfac e = unchec ked((int)0 x8004a200) ; // -2147 180032 | |||||
| 4839 | publ ic const i nt CannotC reatePlugi nInstance = unchecke d((int)0x8 004a201); // -214718 0031 | |||||
| 4840 | publ ic const i nt CrmLive GenericErr or = unche cked((int) 0x8004b000 ); // -214 7176448 | |||||
| 4841 | publ ic const i nt CrmLive Organizati onProvisio ningFailed = uncheck ed((int)0x 8004b001); // -21471 76447 | |||||
| 4842 | publ ic const i nt CrmLive MissingAct iveDirecto ryGroup = unchecked( (int)0x800 4b002); // -21471764 46 | |||||
| 4843 | publ ic const i nt CrmLive InternalPr ovisioning Error = un checked((i nt)0x8004b 003); // - 2147176445 | |||||
| 4844 | publ ic const i nt CrmLive QueueItemD oesNotExis t = unchec ked((int)0 x8004b004) ; // -2147 176444 | |||||
| 4845 | publ ic const i nt CrmLive InvalidSet upParamete r = unchec ked((int)0 x8004b005) ; // -2147 176443 | |||||
| 4846 | publ ic const i nt CrmLive MultipleWi tnessServe rsInScaleG roup = unc hecked((in t)0x8004b0 06); // -2 147176442 | |||||
| 4847 | publ ic const i nt CrmLive MissingSer verRolesIn ScaleGroup = uncheck ed((int)0x 8004b007); // -21471 76441 | |||||
| 4848 | publ ic const i nt CrmLive ServerCann otHaveWitn essAndData ServerRole s = unchec ked((int)0 x8004b008) ; // -2147 176440 | |||||
| 4849 | publ ic const i nt IsNotLi veToSendIn vitation = unchecked ((int)0x80 04b009); / / -2147176 439 | |||||
| 4850 | publ ic const i nt Missing Organizati onFriendly Name = unc hecked((in t)0x8004b0 0a); // -2 147176438 | |||||
| 4851 | publ ic const i nt Missing Organizati onUniqueNa me = unche cked((int) 0x8004b00b ); // -214 7176437 | |||||
| 4852 | publ ic const i nt Offerin gCategoryA ndTokenNul l = unchec ked((int)0 x8004b00c) ; // -2147 176436 | |||||
| 4853 | publ ic const i nt Offerin gIdNotSupp orted = un checked((i nt)0x8004b 00d); // - 2147176435 | |||||
| 4854 | publ ic const i nt Organiz ationTaken ByYou = un checked((i nt)0x8004b 00e); // - 2147176434 | |||||
| 4855 | publ ic const i nt Organiz ationTaken BySomeoneE lse = unch ecked((int )0x8004b00 f); // -21 47176433 | |||||
| 4856 | publ ic const i nt Invalid Template = unchecked ((int)0x80 04b010); / / -2147176 432 | |||||
| 4857 | publ ic const i nt Invalid UserQuota = unchecke d((int)0x8 004b011); // -214717 6431 | |||||
| 4858 | publ ic const i nt Invalid Role = unc hecked((in t)0x8004b0 12); // -2 147176430 | |||||
| 4859 | publ ic const i nt ErrorGe neratingIn vitation = unchecked ((int)0x80 04b013); / / -2147176 429 | |||||
| 4860 | publ ic const i nt CrmLive Organizati onUpgradeF ailed = un checked((i nt)0x8004b 014); // - 2147176428 | |||||
| 4861 | publ ic const i nt UnableT oSendEmail = uncheck ed((int)0x 8004b015); // -21471 76427 | |||||
| 4862 | publ ic const i nt Invalid Email = un checked((i nt)0x8004b 016); // - 2147176426 | |||||
| 4863 | publ ic const i nt Version Mismatch = unchecked ((int)0x80 04b020); / / -2147176 416 | |||||
| 4864 | publ ic const i nt Missing ParameterT oMethod = unchecked( (int)0x800 4b021); // -21471764 15 | |||||
| 4865 | publ ic const i nt Invalid ValueForCo untryCode = unchecke d((int)0x8 004b022); // -214717 6414 | |||||
| 4866 | publ ic const i nt Invalid ValueForCu rrency = u nchecked(( int)0x8004 b023); // -214717641 3 | |||||
| 4867 | publ ic const i nt Invalid ValueForLo cale = unc hecked((in t)0x8004b0 24); // -2 147176412 | |||||
| 4868 | publ ic const i nt CrmLive SupportOrg anizationE xistsInSca leGroup = unchecked( (int)0x800 4b025); // -21471764 11 | |||||
| 4869 | publ ic const i nt CrmLive Monitoring Organizati onExistsIn ScaleGroup = uncheck ed((int)0x 8004b026); // -21471 76410 | |||||
| 4870 | publ ic const i nt Invalid UserLicens eCount = u nchecked(( int)0x8004 b027); // -214717640 9 | |||||
| 4871 | publ ic const i nt Missing Column = u nchecked(( int)0x8004 b028); // -214717640 8 | |||||
| 4872 | publ ic const i nt Invalid ResourceTy pe = unche cked((int) 0x8004b029 ); // -214 7176407 | |||||
| 4873 | publ ic const i nt Invalid MinimumRes ourceLimit = uncheck ed((int)0x 8004b02a); // -21471 76406 | |||||
| 4874 | publ ic const i nt Invalid MaximumRes ourceLimit = uncheck ed((int)0x 8004b02b); // -21471 76405 | |||||
| 4875 | publ ic const i nt Conflic tingProvis ionTypes = unchecked ((int)0x80 04b02c); / / -2147176 404 | |||||
| 4876 | publ ic const i nt Invalid AmountProv ided = unc hecked((in t)0x8004b0 2d); // -2 147176403 | |||||
| 4877 | publ ic const i nt CrmLive Organizati onDeleteFa iled = unc hecked((in t)0x8004b0 2e); // -2 147176402 | |||||
| 4878 | publ ic const i nt OnlyDis abledOrgan izationCan BeDeleted = unchecke d((int)0x8 004b02f); // -214717 6401 | |||||
| 4879 | publ ic const i nt CrmLive Organizati onDetailsN otFound = unchecked( (int)0x800 4b030); // -21471764 00 | |||||
| 4880 | publ ic const i nt CrmLive Organizati onFriendly NameTooSho rt = unche cked((int) 0x8004b031 ); // -214 7176399 | |||||
| 4881 | publ ic const i nt CrmLive Organizati onFriendly NameTooLon g = unchec ked((int)0 x8004b032) ; // -2147 176398 | |||||
| 4882 | publ ic const i nt CrmLive Organizati onUniqueNa meTooShort = uncheck ed((int)0x 8004b033); // -21471 76397 | |||||
| 4883 | publ ic const i nt CrmLive Organizati onUniqueNa meTooLong = unchecke d((int)0x8 004b034); // -214717 6396 | |||||
| 4884 | publ ic const i nt CrmLive Organizati onUniqueNa meInvalid = unchecke d((int)0x8 004b035); // -214717 6395 | |||||
| 4885 | publ ic const i nt CrmLive Organizati onUniqueNa meReserved = uncheck ed((int)0x 8004b036); // -21471 76394 | |||||
| 4886 | publ ic const i nt ValuePa rsingError = uncheck ed((int)0x 8004b037); // -21471 76393 | |||||
| 4887 | publ ic const i nt Invalid Granularit yValue = u nchecked(( int)0x8004 b038); // -214717639 2 | |||||
| 4888 | publ ic const i nt CrmLive InvalidQue ueItemSche dule = unc hecked((in t)0x8004b0 39); // -2 147176391 | |||||
| 4889 | publ ic const i nt CrmLive QueueItemT imeInPast = unchecke d((int)0x8 004b040); // -214717 6384 | |||||
| 4890 | publ ic const i nt CrmLive UnknownSku = uncheck ed((int)0x 8004b041); // -21471 76383 | |||||
| 4891 | publ ic const i nt ExceedC ustomEntit yQuota = u nchecked(( int)0x8004 b042); // -214717638 2 | |||||
| 4892 | publ ic const i nt ImportW illExceedC ustomEntit yQuota = u nchecked(( int)0x8004 b043); // -214717638 1 | |||||
| 4893 | publ ic const i nt Organiz ationMigra tionUnderw ay = unche cked((int) 0x8004b044 ); // -214 7176380 | |||||
| 4894 | publ ic const i nt CrmLive InvoicingA ccountIdMi ssing = un checked((i nt)0x8004b 045); // - 2147176379 | |||||
| 4895 | publ ic const i nt CrmLive DuplicateW indowsLive Id = unche cked((int) 0x8004b046 ); // -214 7176378 | |||||
| 4896 | publ ic const i nt CrmLive DnsDomainN otFound = unchecked( (int)0x800 4b047); // -21471763 77 | |||||
| 4897 | publ ic const i nt CrmLive DnsDomainA lreadyExis ts = unche cked((int) 0x8004b048 ); // -214 7176376 | |||||
| 4898 | publ ic const i nt Invalid Interactiv eUserQuota = uncheck ed((int)0x 8004b049); // -21471 76375 | |||||
| 4899 | publ ic const i nt Invalid NonInterac tiveUserQu ota = unch ecked((int )0x8004b05 0); // -21 47176368 | |||||
| 4900 | publ ic const i nt CrmLive CannotFind ExternalMe ssageProvi der = unch ecked((int )0x8004b05 1); // -21 47176367 | |||||
| 4901 | publ ic const i nt CrmLive InvalidExt ernalMessa geData = u nchecked(( int)0x8004 b052); // -214717636 6 | |||||
| 4902 | publ ic const i nt CrmLive Organizati onEnableFa iled = unc hecked((in t)0x8004b0 53); // -2 147176365 | |||||
| 4903 | publ ic const i nt CrmLive Organizati onDisableF ailed = un checked((i nt)0x8004b 054); // - 2147176364 | |||||
| 4904 | publ ic const i nt CrmLive AddOnUnexp ectedError = uncheck ed((int)0x 8004b055); // -21471 76363 | |||||
| 4905 | publ ic const i nt CrmLive AddOnAddLi censeLimit Reached = unchecked( (int)0x800 4b056); // -21471763 62 | |||||
| 4906 | publ ic const i nt CrmLive AddOnAddSt orageLimit Reached = unchecked( (int)0x800 4b057); // -21471763 61 | |||||
| 4907 | publ ic const i nt CrmLive AddOnRemov eStorageLi mitReached = uncheck ed((int)0x 8004b058); // -21471 76360 | |||||
| 4908 | publ ic const i nt CrmLive AddOnOrgIn NoUpdateMo de = unche cked((int) 0x8004b059 ); // -214 7176359 | |||||
| 4909 | publ ic const i nt CrmLive UnknownCat egory = un checked((i nt)0x8004b 05a); // - 2147176358 | |||||
| 4910 | publ ic const i nt CrmLive InvalidInv oicingAcco untNumber = unchecke d((int)0x8 004b05b); // -214717 6357 | |||||
| 4911 | publ ic const i nt CrmLive AddOnDataC hanged = u nchecked(( int)0x8004 b05c); // -214717635 6 | |||||
| 4912 | publ ic const i nt CrmLive InvalidEma il = unche cked((int) 0x8004b05d ); // -214 7176355 | |||||
| 4913 | publ ic const i nt CrmLive InvalidPho ne = unche cked((int) 0x8004b05e ); // -214 7176354 | |||||
| 4914 | publ ic const i nt CrmLive InvalidZip Code = unc hecked((in t)0x8004b0 5f); // -2 147176353 | |||||
| 4915 | publ ic const i nt Invalid AmountFree ResourceLi mit = unch ecked((int )0x8004b06 0); // -21 47176352 | |||||
| 4916 | publ ic const i nt Invalid Token = un checked((i nt)0x8004b 061); // - 2147176351 | |||||
| 4917 | publ ic const i nt CrmLive RegisterCu stomCodeDi sabled = u nchecked(( int)0x8004 b062); // -214717635 0 | |||||
| 4918 | publ ic const i nt CrmLive ExecuteCus tomCodeDis abled = un checked((i nt)0x8004b 063); // - 2147176349 | |||||
| 4919 | publ ic const i nt CrmLive InvalidTax Id = unche cked((int) 0x8004b064 ); // -214 7176348 | |||||
| 4920 | publ ic const i nt Datacen terNotAvai lable = un checked((i nt)0x8004b 065); // - 2147176347 | |||||
| 4921 | publ ic const i nt ErrorCo nnectingTo DiscoveryS ervice = u nchecked(( int)0x8004 b066); // -214717634 6 | |||||
| 4922 | publ ic const i nt OrgDoes NotExistIn DiscoveryS ervice = u nchecked(( int)0x8004 b067); // -214717634 5 | |||||
| 4923 | publ ic const i nt ErrorCo nnectingTo Organizati onService = unchecke d((int)0x8 004b068); // -214717 6344 | |||||
| 4924 | publ ic const i nt UserIsN otSystemAd minInOrgan ization = unchecked( (int)0x800 4b069); // -21471763 43 | |||||
| 4925 | publ ic const i nt MobileS erviceErro r = unchec ked((int)0 x8004b070) ; // -2147 176336 | |||||
| 4926 | publ ic const i nt LivePla tformGener alEmailErr or = unche cked((int) 0x8005b520 ); // -214 7109600 | |||||
| 4927 | publ ic const i nt LivePla tformEmail InvalidTo = unchecke d((int)0x8 004b521); // -214717 5135 | |||||
| 4928 | publ ic const i nt LivePla tformEmail InvalidFro m = unchec ked((int)0 x8004b522) ; // -2147 175134 | |||||
| 4929 | publ ic const i nt LivePla tformEmail InvalidSub ject = unc hecked((in t)0x8004b5 23); // -2 147175133 | |||||
| 4930 | publ ic const i nt LivePla tformEmail InvalidBod y = unchec ked((int)0 x8004b524) ; // -2147 175132 | |||||
| 4931 | publ ic const i nt Billing PartnerCer tificate = unchecked ((int)0x80 04b530); / / -2147175 120 | |||||
| 4932 | publ ic const i nt Billing NoSettingE rror = unc hecked((in t)0x8004b5 31); // -2 147175119 | |||||
| 4933 | publ ic const i nt Billing TestConnec tionError = unchecke d((int)0x8 004b532); // -214717 5118 | |||||
| 4934 | publ ic const i nt Billing TestConnec tionExcept ion = unch ecked((int )0x8004b53 3); // -21 47175117 | |||||
| 4935 | publ ic const i nt Billing UserPuidNu llError = unchecked( (int)0x800 4b534); // -21471751 16 | |||||
| 4936 | publ ic const i nt Billing UnmappedEr rorCode = unchecked( (int)0x800 4b535); // -21471751 15 | |||||
| 4937 | publ ic const i nt Billing UnknownErr orCode = u nchecked(( int)0x8004 b536); // -214717511 4 | |||||
| 4938 | publ ic const i nt Billing UnknownExc eption = u nchecked(( int)0x8004 b537); // -214717511 3 | |||||
| 4939 | publ ic const i nt Billing RetrieveKe yError = u nchecked(( int)0x8004 b538); // -214717511 2 | |||||
| 4940 | publ ic const i nt BDK_E_A DDRESS_VAL IDATION_FA ILURE = un checked((i nt)0x8004b 540); // - 2147175104 | |||||
| 4941 | publ ic const i nt BDK_E_A GREEMENT_A LREADY_SIG NED = unch ecked((int )0x8004b54 1); // -21 47175103 | |||||
| 4942 | publ ic const i nt BDK_E_A UTHORIZATI ON_FAILED = unchecke d((int)0x8 004b542); // -214717 5102 | |||||
| 4943 | publ ic const i nt BDK_E_A VS_FAILED = unchecke d((int)0x8 004b543); // -214717 5101 | |||||
| 4944 | publ ic const i nt BDK_E_B AD_CITYNAM E_LENGTH = unchecked ((int)0x80 04b544); / / -2147175 100 | |||||
| 4945 | publ ic const i nt BDK_E_B AD_STATECO DE_LENGTH = unchecke d((int)0x8 004b545); // -214717 5099 | |||||
| 4946 | publ ic const i nt BDK_E_B AD_ZIPCODE _LENGTH = unchecked( (int)0x800 4b546); // -21471750 98 | |||||
| 4947 | publ ic const i nt BDK_E_B ADXML = un checked((i nt)0x8004b 547); // - 2147175097 | |||||
| 4948 | publ ic const i nt BDK_E_B ANNED_PAYM ENT_INSTRU MENT = unc hecked((in t)0x8004b5 48); // -2 147175096 | |||||
| 4949 | publ ic const i nt BDK_E_B ANNEDPERSO N = unchec ked((int)0 x8004b549) ; // -2147 175095 | |||||
| 4950 | publ ic const i nt BDK_E_C ANNOT_EXCE ED_MAX_OWN ERSHIP = u nchecked(( int)0x8004 b54a); // -214717509 4 | |||||
| 4951 | publ ic const i nt BDK_E_C OUNTRY_CUR RENCY_PI_M ISMATCH = unchecked( (int)0x800 4b54b); // -21471750 93 | |||||
| 4952 | publ ic const i nt BDK_E_C REDIT_CARD _EXPIRED = unchecked ((int)0x80 04b54c); / / -2147175 092 | |||||
| 4953 | publ ic const i nt BDK_E_D ATE_EXPIRE D = unchec ked((int)0 x8004b54d) ; // -2147 175091 | |||||
| 4954 | publ ic const i nt BDK_E_E RROR_COUNT RYCODE_MIS MATCH = un checked((i nt)0x8004b 54e); // - 2147175090 | |||||
| 4955 | publ ic const i nt BDK_E_E RROR_COUNT RYCODE_REQ UIRED = un checked((i nt)0x8004b 54f); // - 2147175089 | |||||
| 4956 | publ ic const i nt BDK_E_E XTRA_REFER RAL_DATA = unchecked ((int)0x80 04b550); / / -2147175 088 | |||||
| 4957 | publ ic const i nt BDK_E_G UID_EXISTS = uncheck ed((int)0x 8004b551); // -21471 75087 | |||||
| 4958 | publ ic const i nt BDK_E_I NVALID_ADD RESS_ID = unchecked( (int)0x800 4b552); // -21471750 86 | |||||
| 4959 | publ ic const i nt BDK_E_I NVALID_BIL LABLE_ACCO UNT_ID = u nchecked(( int)0x8004 b553); // -214717508 5 | |||||
| 4960 | publ ic const i nt BDK_E_I NVALID_BUF _SIZE = un checked((i nt)0x8004b 554); // - 2147175084 | |||||
| 4961 | publ ic const i nt BDK_E_I NVALID_CAT EGORY_NAME = uncheck ed((int)0x 8004b555); // -21471 75083 | |||||
| 4962 | publ ic const i nt BDK_E_I NVALID_COU NTRY_CODE = unchecke d((int)0x8 004b556); // -214717 5082 | |||||
| 4963 | publ ic const i nt BDK_E_I NVALID_CUR RENCY = un checked((i nt)0x8004b 557); // - 2147175081 | |||||
| 4964 | publ ic const i nt BDK_E_I NVALID_CUS TOMER_TYPE = uncheck ed((int)0x 8004b558); // -21471 75080 | |||||
| 4965 | publ ic const i nt BDK_E_I NVALID_DAT E = unchec ked((int)0 x8004b559) ; // -2147 175079 | |||||
| 4966 | publ ic const i nt BDK_E_I NVALID_EMA IL_ADDRESS = uncheck ed((int)0x 8004b55a); // -21471 75078 | |||||
| 4967 | publ ic const i nt BDK_E_I NVALID_FIL TER = unch ecked((int )0x8004b55 b); // -21 47175077 | |||||
| 4968 | publ ic const i nt BDK_E_I NVALID_GUI D = unchec ked((int)0 x8004b55c) ; // -2147 175076 | |||||
| 4969 | publ ic const i nt BDK_E_I NVALID_INP UT_TO_TAXW ARE_OR_VER AZIP = unc hecked((in t)0x8004b5 5d); // -2 147175075 | |||||
| 4970 | publ ic const i nt BDK_E_I NVALID_LOC ALE = unch ecked((int )0x8004b55 e); // -21 47175074 | |||||
| 4971 | publ ic const i nt BDK_E_I NVALID_OBJ ECT_ID = u nchecked(( int)0x8004 b55f); // -214717507 3 | |||||
| 4972 | publ ic const i nt BDK_E_I NVALID_OFF ERING_GUID = uncheck ed((int)0x 8004b560); // -21471 75072 | |||||
| 4973 | publ ic const i nt BDK_E_I NVALID_PAY MENT_INSTR UMENT_STAT US = unche cked((int) 0x8004b561 ); // -214 7175071 | |||||
| 4974 | publ ic const i nt BDK_E_I NVALID_PAY MENT_METHO D_ID = unc hecked((in t)0x8004b5 62); // -2 147175070 | |||||
| 4975 | publ ic const i nt BDK_E_I NVALID_PHO NE_TYPE = unchecked( (int)0x800 4b563); // -21471750 69 | |||||
| 4976 | publ ic const i nt BDK_E_I NVALID_POL ICY_ID = u nchecked(( int)0x8004 b564); // -214717506 8 | |||||
| 4977 | publ ic const i nt BDK_E_I NVALID_REF ERRALDATA_ XML = unch ecked((int )0x8004b56 5); // -21 47175067 | |||||
| 4978 | publ ic const i nt BDK_E_I NVALID_STA TE_FOR_COU NTRY = unc hecked((in t)0x8004b5 66); // -2 147175066 | |||||
| 4979 | publ ic const i nt BDK_E_I NVALID_SUB SCRIPTION_ ID = unche cked((int) 0x8004b567 ); // -214 7175065 | |||||
| 4980 | publ ic const i nt BDK_E_I NVALID_TAX _EXEMPT_TY PE = unche cked((int) 0x8004b568 ); // -214 7175064 | |||||
| 4981 | publ ic const i nt BDK_E_M EG_CONFLIC T = unchec ked((int)0 x8004b569) ; // -2147 175063 | |||||
| 4982 | publ ic const i nt BDK_E_M ULTIPLE_CI TIES_FOUND = uncheck ed((int)0x 8004b56a); // -21471 75062 | |||||
| 4983 | publ ic const i nt BDK_E_M ULTIPLE_CO UNTIES_FOU ND = unche cked((int) 0x8004b56b ); // -214 7175061 | |||||
| 4984 | publ ic const i nt BDK_E_N ON_ACTIVE_ ACCOUNT = unchecked( (int)0x800 4b56c); // -21471750 60 | |||||
| 4985 | publ ic const i nt BDK_E_N OPERMISSIO N = unchec ked((int)0 x8004b56d) ; // -2147 175059 | |||||
| 4986 | publ ic const i nt BDK_E_O BJECT_ROLE _LIMIT_EXC EEDED = un checked((i nt)0x8004b 56e); // - 2147175058 | |||||
| 4987 | publ ic const i nt BDK_E_O FFERING_AC COUNT_CURR ENCY_MISMA TCH = unch ecked((int )0x8004b56 f); // -21 47175057 | |||||
| 4988 | publ ic const i nt BDK_E_O FFERING_CO UNTRY_ACCO UNT_MISMAT CH = unche cked((int) 0x8004b570 ); // -214 7175056 | |||||
| 4989 | publ ic const i nt BDK_E_O FFERING_NO T_PURCHASE ABLE = unc hecked((in t)0x8004b5 71); // -2 147175055 | |||||
| 4990 | publ ic const i nt BDK_E_O FFERING_PA YMENT_INST RUMENT_MIS MATCH = un checked((i nt)0x8004b 572); // - 2147175054 | |||||
| 4991 | publ ic const i nt BDK_E_O FFERING_RE QUIRES_PI = unchecke d((int)0x8 004b573); // -214717 5053 | |||||
| 4992 | publ ic const i nt BDK_E_P ARTNERNOTI NBILLING = unchecked ((int)0x80 04b574); / / -2147175 052 | |||||
| 4993 | publ ic const i nt BDK_E_P AYMENT_PRO VIDER_CONN ECTION_FAI LED = unch ecked((int )0x8004b57 5); // -21 47175051 | |||||
| 4994 | publ ic const i nt BDK_E_P RIMARY_PHO NE_REQUIRE D = unchec ked((int)0 x8004b576) ; // -2147 175050 | |||||
| 4995 | publ ic const i nt BDK_E_P OLICY_DEAL _COUNTRY_M ISMATCH = unchecked( (int)0x800 4b577); // -21471750 49 | |||||
| 4996 | publ ic const i nt BDK_E_P UID_ROLE_L IMIT_EXCEE DED = unch ecked((int )0x8004b57 8); // -21 47175048 | |||||
| 4997 | publ ic const i nt BDK_E_R ATING_FAIL URE = unch ecked((int )0x8004b57 9); // -21 47175047 | |||||
| 4998 | publ ic const i nt BDK_E_R EQUIRED_FI ELD_MISSIN G = unchec ked((int)0 x8004b57a) ; // -2147 175046 | |||||
| 4999 | publ ic const i nt BDK_E_S TATE_CITY_ INVALID = unchecked( (int)0x800 4b57b); // -21471750 45 | |||||
| 5000 | publ ic const i nt BDK_E_S TATE_INVAL ID = unche cked((int) 0x8004b57c ); // -214 7175044 | |||||
| 5001 | publ ic const i nt BDK_E_S TATE_ZIP_C ITY_INVALI D = unchec ked((int)0 x8004b57d) ; // -2147 175043 | |||||
| 5002 | publ ic const i nt BDK_E_S TATE_ZIP_C ITY_INVALI D2 = unche cked((int) 0x8004b57e ); // -214 7175042 | |||||
| 5003 | publ ic const i nt BDK_E_S TATE_ZIP_C ITY_INVALI D3 = unche cked((int) 0x8004b57f ); // -214 7175041 | |||||
| 5004 | publ ic const i nt BDK_E_S TATE_ZIP_C ITY_INVALI D4 = unche cked((int) 0x8004b580 ); // -214 7175040 | |||||
| 5005 | publ ic const i nt BDK_E_S TATE_ZIP_C OVERS_MULT IPLE_CITIE S = unchec ked((int)0 x8004b581) ; // -2147 175039 | |||||
| 5006 | publ ic const i nt BDK_E_S TATE_ZIP_I NVALID = u nchecked(( int)0x8004 b582); // -214717503 8 | |||||
| 5007 | publ ic const i nt BDK_E_T AXID_EXPDA TE = unche cked((int) 0x8004b583 ); // -214 7175037 | |||||
| 5008 | publ ic const i nt BDK_E_T OKEN_BLACK LISTED = u nchecked(( int)0x8004 b584); // -214717503 6 | |||||
| 5009 | publ ic const i nt BDK_E_T OKEN_EXPIR ED = unche cked((int) 0x8004b585 ); // -214 7175035 | |||||
| 5010 | publ ic const i nt BDK_E_T OKEN_NOT_V ALID_FOR_O FFERING = unchecked( (int)0x800 4b586); // -21471750 34 | |||||
| 5011 | publ ic const i nt BDK_E_T OKEN_RANGE _BLACKLIST ED = unche cked((int) 0x8004b587 ); // -214 7175033 | |||||
| 5012 | publ ic const i nt BDK_E_T RANS_BALAN CE_TO_PI_I NVALID = u nchecked(( int)0x8004 b588); // -214717503 2 | |||||
| 5013 | publ ic const i nt BDK_E_U NKNOWN_SER VER_FAILUR E = unchec ked((int)0 x8004b589) ; // -2147 175031 | |||||
| 5014 | publ ic const i nt BDK_E_U NSUPPORTED _CHAR_EXIS T = unchec ked((int)0 x8004b58a) ; // -2147 175030 | |||||
| 5015 | publ ic const i nt BDK_E_V ATID_DOESN OTHAVEEXPD ATE = unch ecked((int )0x8004b58 b); // -21 47175029 | |||||
| 5016 | publ ic const i nt BDK_E_Z IP_CITY_MI SSING = un checked((i nt)0x8004b 58c); // - 2147175028 | |||||
| 5017 | publ ic const i nt BDK_E_Z IP_INVALID = uncheck ed((int)0x 8004b58d); // -21471 75027 | |||||
| 5018 | publ ic const i nt BDK_E_Z IP_INVALID _FOR_ENTER ED_STATE = unchecked ((int)0x80 04b58e); / / -2147175 026 | |||||
| 5019 | publ ic const i nt BDK_E_U SAGE_COUNT _FOR_TOKEN _EXCEEDED = unchecke d((int)0x8 004b58f); // -214717 5025 | |||||
| 5020 | publ ic const i nt Missing ParameterT oStoredPro cedure = u nchecked(( int)0x8004 c000); // -214717235 2 | |||||
| 5021 | publ ic const i nt SqlErro rInStoredP rocedure = unchecked ((int)0x80 04c001); / / -2147172 351 | |||||
| 5022 | publ ic const i nt StoredP rocedureCo ntext = un checked((i nt)0x8004c 002); // - 2147172350 | |||||
| 5023 | publ ic const i nt Invitin gOrganizat ionNotFoun d = unchec ked((int)0 x8004d200) ; // -2147 167744 | |||||
| 5024 | publ ic const i nt Invitin gUserNotIn Organizati on = unche cked((int) 0x8004d201 ); // -214 7167743 | |||||
| 5025 | publ ic const i nt Invited UserAlread yExists = unchecked( (int)0x800 4d202); // -21471677 42 | |||||
| 5026 | publ ic const i nt Invited UserIsOrga nization = unchecked ((int)0x80 04d203); / / -2147167 741 | |||||
| 5027 | publ ic const i nt Invitat ionNotFoun d = unchec ked((int)0 x8004d204) ; // -2147 167740 | |||||
| 5028 | publ ic const i nt Invited UserAlread yAdded = u nchecked(( int)0x8004 d205); // -214716773 9 | |||||
| 5029 | publ ic const i nt Invitat ionWrongUs erOrgRelat ion = unch ecked((int )0x8004d20 6); // -21 47167738 | |||||
| 5030 | publ ic const i nt Invitat ionIsExpir ed = unche cked((int) 0x8004d207 ); // -214 7167737 | |||||
| 5031 | publ ic const i nt Invitat ionIsAccep ted = unch ecked((int )0x8004d20 8); // -21 47167736 | |||||
| 5032 | publ ic const i nt Invitat ionIsRejec ted = unch ecked((int )0x8004d20 9); // -21 47167735 | |||||
| 5033 | publ ic const i nt Invitat ionIsRevok ed = unche cked((int) 0x8004d20a ); // -214 7167734 | |||||
| 5034 | publ ic const i nt Invited UserMultip leTimes = unchecked( (int)0x800 4d20b); // -21471677 33 | |||||
| 5035 | publ ic const i nt Invitat ionStatusE rror = unc hecked((in t)0x8004d2 0c); // -2 147167732 | |||||
| 5036 | publ ic const i nt Invalid Invitation Token = un checked((i nt)0x8004d 20d); // - 2147167731 | |||||
| 5037 | publ ic const i nt Invalid Invitation LiveId = u nchecked(( int)0x8004 d20e); // -214716773 0 | |||||
| 5038 | publ ic const i nt Invitat ionSendToS elf = unch ecked((int )0x8004d20 f); // -21 47167729 | |||||
| 5039 | publ ic const i nt Invitat ionCannotB eReset = u nchecked(( int)0x8004 d210); // -214716772 8 | |||||
| 5040 | publ ic const i nt UserDat aNotFound = unchecke d((int)0x8 004d211); // -214716 7727 | |||||
| 5041 | publ ic const i nt CannotI nviteDisab ledUser = unchecked( (int)0x800 4d212); // -21471677 26 | |||||
| 5042 | publ ic const i nt Invitat ionBilling AdminUnkno wn = unche cked((int) 0x8004d213 ); // -214 7167725 | |||||
| 5043 | publ ic const i nt CannotR esetSysAdm inInvite = unchecked ((int)0x80 04d214); / / -2147167 724 | |||||
| 5044 | publ ic const i nt CannotS endInviteT oDuplicate WindowsLiv eId = unch ecked((int )0x8004d21 5); // -21 47167723 | |||||
| 5045 | publ ic const i nt UserInv iteDisable d = unchec ked((int)0 x8004d216) ; // -2147 167722 | |||||
| 5046 | publ ic const i nt Invitat ionOrganiz ationNotEn abled = un checked((i nt)0x8004d 217); // - 2147167721 | |||||
| 5047 | publ ic const i nt ClientA uthSignedO ut = unche cked((int) 0x8004d221 ); // -214 7167711 | |||||
| 5048 | publ ic const i nt ClientA uthSyncIss ue = unche cked((int) 0x8004d223 ); // -214 7167709 | |||||
| 5049 | publ ic const i nt ClientA uthCancele d = unchec ked((int)0 x8004d224) ; // -2147 167708 | |||||
| 5050 | publ ic const i nt ClientA uthNoConne ctivityOff line = unc hecked((in t)0x8004d2 25); // -2 147167707 | |||||
| 5051 | publ ic const i nt ClientA uthNoConne ctivity = unchecked( (int)0x800 4d226); // -21471677 06 | |||||
| 5052 | publ ic const i nt ClientA uthOffline InvalidCal lerId = un checked((i nt)0x8004d 227); // - 2147167705 | |||||
| 5053 | publ ic const i nt Authent icateToSer verBeforeR equestingP roxy = unc hecked((in t)0x8004d2 28); // -2 147167704 | |||||
| 5054 | publ ic const i nt ConfigD BObjectDoe sNotExist = unchecke d((int)0x8 004d230); // -214716 7696 | |||||
| 5055 | publ ic const i nt ConfigD BDuplicate Record = u nchecked(( int)0x8004 d231); // -214716769 5 | |||||
| 5056 | publ ic const i nt ConfigD BCannotDel eteObjectD ueState = unchecked( (int)0x800 4d232); // -21471676 94 | |||||
| 5057 | publ ic const i nt ConfigD BCascadeDe leteNotAll owDelete = unchecked ((int)0x80 04d233); / / -2147167 693 | |||||
| 5058 | publ ic const i nt MoveBot hToPrimary = uncheck ed((int)0x 8004d234); // -21471 67692 | |||||
| 5059 | publ ic const i nt MoveBot hToSeconda ry = unche cked((int) 0x8004d235 ); // -214 7167691 | |||||
| 5060 | publ ic const i nt MoveOrg anizationF ailedNotDi sabled = u nchecked(( int)0x8004 d236); // -214716769 0 | |||||
| 5061 | publ ic const i nt ConfigD BCannotUpd ateObjectD ueState = unchecked( (int)0x800 4d237); // -21471676 89 | |||||
| 5062 | publ ic const i nt LiveAdm inUnknownO bject = un checked((i nt)0x8004d 238); // - 2147167688 | |||||
| 5063 | publ ic const i nt LiveAdm inUnknownC ommand = u nchecked(( int)0x8004 d239); // -214716768 7 | |||||
| 5064 | publ ic const i nt Operati onOrganiza tionNotFul lyDisabled = uncheck ed((int)0x 8004d23a); // -21471 67686 | |||||
| 5065 | publ ic const i nt ConfigD BCannotDel eteDefault Organizati on = unche cked((int) 0x8004d23b ); // -214 7167685 | |||||
| 5066 | publ ic const i nt License NotEnoughT oActivate = unchecke d((int)0x8 0042f14); // -214720 9452 | |||||
| 5067 | publ ic const i nt UserNot AssignedRo les = unch ecked((int )0x80042f0 9); // -21 47209463 | |||||
| 5068 | publ ic const i nt TeamNot AssignedRo les = unch ecked((int )0x80042f0 a); // -21 47209462 | |||||
| 5069 | publ ic const i nt Invalid LicenseKey = uncheck ed((int)0x 8004d240); // -21471 67680 | |||||
| 5070 | publ ic const i nt NoLicen seInConfig DB = unche cked((int) 0x8004d241 ); // -214 7167679 | |||||
| 5071 | publ ic const i nt Invalid LicensePid = uncheck ed((int)0x 8004d242); // -21471 67678 | |||||
| 5072 | publ ic const i nt Invalid LicensePid GenCannotL oad = unch ecked((int )0x8004d24 3); // -21 47167677 | |||||
| 5073 | publ ic const i nt Invalid LicensePid GenOtherEr ror = unch ecked((int )0x8004d24 4); // -21 47167676 | |||||
| 5074 | publ ic const i nt Invalid LicenseCan notReadMpc File = unc hecked((in t)0x8004d2 45); // -2 147167675 | |||||
| 5075 | publ ic const i nt Invalid LicenseMpc Code = unc hecked((in t)0x8004d2 46); // -2 147167674 | |||||
| 5076 | publ ic const i nt License UpgradePat hNotAllowe d = unchec ked((int)0 x8004d247) ; // -2147 167673 | |||||
| 5077 | publ ic const i nt OrgsIna ccessible = unchecke d((int)0x8 004d24a); // -214716 7670 | |||||
| 5078 | publ ic const i nt UserNot AssignedLi cense = un checked((i nt)0x8004d 24b); // - 2147167669 | |||||
| 5079 | publ ic const i nt UserCan notEnableW ithoutLice nse = unch ecked((int )0x8004d24 c); // -21 47167668 | |||||
| 5080 | publ ic const i nt License ConfigFile Invalid = unchecked( (int)0x800 4d250); // -21471676 64 | |||||
| 5081 | publ ic const i nt License TrialExpir ed = unche cked((int) 0x8004415c ); // -214 7204772 | |||||
| 5082 | publ ic const i nt License Registrati onExpired = unchecke d((int)0x8 004415d); // -214720 4771 | |||||
| 5083 | publ ic const i nt License Tampered = unchecked ((int)0x80 04415f); / / -2147204 769 | |||||
| 5084 | publ ic const i nt NonInte ractiveUse rCannotAcc essUI = un checked((i nt)0x80044 160); // - 2147204768 | |||||
| 5085 | publ ic const i nt Invalid Organizati onUniqueNa me = unche cked((int) 0x8004d251 ); // -214 7167663 | |||||
| 5086 | publ ic const i nt Invalid Organizati onFriendly Name = unc hecked((in t)0x8004d2 52); // -2 147167662 | |||||
| 5087 | publ ic const i nt Organiz ationNotCo nfigured = unchecked ((int)0x80 04d253); / / -2147167 661 | |||||
| 5088 | publ ic const i nt Invalid DeviceToCo nfigureOrg anization = unchecke d((int)0x8 004d254); // -214716 7660 | |||||
| 5089 | publ ic const i nt Invalid BrowserToC onfigureOr ganization = uncheck ed((int)0x 8004d255); // -21471 67659 | |||||
| 5090 | publ ic const i nt Deploym entService NotAllowSe tToThisSta te = unche cked((int) 0x8004d260 ); // -214 7167648 | |||||
| 5091 | publ ic const i nt Deploym entService NotAllowOp eration = unchecked( (int)0x800 4d261); // -21471676 47 | |||||
| 5092 | publ ic const i nt Deploym entService CannotChan geStateFor Deployment Service = unchecked( (int)0x800 4d262); // -21471676 46 | |||||
| 5093 | publ ic const i nt Deploym entService RequestVal idationFai lure = unc hecked((in t)0x8004d2 63); // -2 147167645 | |||||
| 5094 | publ ic const i nt Deploym entService OperationI dentifierN otFound = unchecked( (int)0x800 4d264); // -21471676 44 | |||||
| 5095 | publ ic const i nt Deploym entService CannotDele teOperatio nInProgres s = unchec ked((int)0 x8004d265) ; // -2147 167643 | |||||
| 5096 | publ ic const i nt Configu reClaimsBe foreIfd = unchecked( (int)0x800 4d266); // -21471676 42 | |||||
| 5097 | publ ic const i nt EndUser Notificati onTypeNotV alidForEma il = unche cked((int) 0x8004d291 ); // -214 7167599 | |||||
| 5098 | publ ic const i nt ClientU pdateAvail able = unc hecked((in t)0x8004d2 94); // -2 147167596 | |||||
| 5099 | publ ic const i nt Invalid Recurrence RuleForBul kDeleteAnd DuplicateD etection = unchecked ((int)0x80 04d2a0); / / -2147167 584 | |||||
| 5100 | publ ic const i nt Invalid Recurrence Interval = unchecked ((int)0x80 04d2a1); / / -2147167 583 | |||||
| 5101 | publ ic const i nt Invalid Recurrence IntervalFo rRollupJob s = unchec ked((int)0 x8004d2a2) ; // -2147 167582 | |||||
| 5102 | publ ic const i nt Queries ForDiffere ntEntities = uncheck ed((int)0x 8004d2b0); // -21471 67568 | |||||
| 5103 | publ ic const i nt Aggrega teInnerQue ry = unche cked((int) 0x8004d2b1 ); // -214 7167567 | |||||
| 5104 | publ ic const i nt Invalid DataDescri ption = un checked((i nt)0x8004e 000); // - 2147164160 | |||||
| 5105 | publ ic const i nt NonPrim aryEntityD ataDescrip tionFound = unchecke d((int)0x8 004e001); // -214716 4159 | |||||
| 5106 | publ ic const i nt Invalid Presentati onDescript ion = unch ecked((int )0x8004e00 2); // -21 47164158 | |||||
| 5107 | publ ic const i nt SeriesM easureColl ectionMism atch = unc hecked((in t)0x8004e0 03); // -2 147164157 | |||||
| 5108 | publ ic const i nt YValues PerPointMe asureMisma tch = unch ecked((int )0x8004e00 4); // -21 47164156 | |||||
| 5109 | publ ic const i nt ChartAr eaCategory Mismatch = unchecked ((int)0x80 04e005); / / -2147164 155 | |||||
| 5110 | publ ic const i nt Multipl eSubcatego riesFound = unchecke d((int)0x8 004e006); // -214716 4154 | |||||
| 5111 | publ ic const i nt Multipl eMeasuresF ound = unc hecked((in t)0x8004e0 07); // -2 147164153 | |||||
| 5112 | publ ic const i nt Multipl eChartArea sFound = u nchecked(( int)0x8004 e008); // -214716415 2 | |||||
| 5113 | publ ic const i nt Invalid Category = unchecked ((int)0x80 04e009); / / -2147164 151 | |||||
| 5114 | publ ic const i nt Invalid MeasureCol lection = unchecked( (int)0x800 4e00a); // -21471641 50 | |||||
| 5115 | publ ic const i nt Duplica teAliasFou nd = unche cked((int) 0x8004e00b ); // -214 7164149 | |||||
| 5116 | publ ic const i nt EntityN otEnabledF orCharts = unchecked ((int)0x80 04e00c); / / -2147164 148 | |||||
| 5117 | publ ic const i nt Invalid PageRespon se = unche cked((int) 0x8004e00d ); // -214 7164147 | |||||
| 5118 | publ ic const i nt Visuali zationRend eringError = uncheck ed((int)0x 8004e00e); // -21471 64146 | |||||
| 5119 | publ ic const i nt Invalid GroupByAli as = unche cked((int) 0x8004e00f ); // -214 7164145 | |||||
| 5120 | publ ic const i nt Measure DataTypeIn valid = un checked((i nt)0x8004e 010); // - 2147164144 | |||||
| 5121 | publ ic const i nt NoDataF orVisualiz ation = un checked((i nt)0x8004e 011); // - 2147164143 | |||||
| 5122 | publ ic const i nt Visuali zationModu leNotFound = uncheck ed((int)0x 8004e012); // -21471 64142 | |||||
| 5123 | publ ic const i nt ImportV isualizati onDeletedE rror = unc hecked((in t)0x8004e0 13); // -2 147164141 | |||||
| 5124 | publ ic const i nt ImportV isualizati onExisting Error = un checked((i nt)0x8004e 014); // - 2147164140 | |||||
| 5125 | publ ic const i nt Visuali zationOtcN otFoundErr or = unche cked((int) 0x8004e015 ); // -214 7164139 | |||||
| 5126 | publ ic const i nt Invalid DundasPres entationDe scription = unchecke d((int)0x8 004e016); // -214716 4138 | |||||
| 5127 | publ ic const i nt Invalid WebResourc eForVisual ization = unchecked( (int)0x800 4e017); // -21471641 37 | |||||
| 5128 | publ ic const i nt ChartTy peNotSuppo rtedForCom parisonCha rt = unche cked((int) 0x8004e018 ); // -214 7164136 | |||||
| 5129 | publ ic const i nt Invalid FetchColle ction = un checked((i nt)0x8004e 019); // - 2147164135 | |||||
| 5130 | publ ic const i nt Categor yDataTypeI nvalid = u nchecked(( int)0x8004 e01a); // -214716413 4 | |||||
| 5131 | publ ic const i nt Duplica teGroupByF ound = unc hecked((in t)0x8004e0 1b); // -2 147164133 | |||||
| 5132 | publ ic const i nt Multipl eMeasureCo llectionsF ound = unc hecked((in t)0x8004e0 1c); // -2 147164132 | |||||
| 5133 | publ ic const i nt Invalid GroupByCol umn = unch ecked((int )0x8004e01 d); // -21 47164131 | |||||
| 5134 | publ ic const i nt Invalid FilterCrit eriaForVis ualization = uncheck ed((int)0x 8004e01e); // -21471 64130 | |||||
| 5135 | publ ic const i nt CountSp ecifiedWit houtOrder = unchecke d((int)0x8 004e01f); // -214716 4129 | |||||
| 5136 | publ ic const i nt NoPrevi ewForCusto mWebResour ce = unche cked((int) 0x8004e020 ); // -214 7164128 | |||||
| 5137 | publ ic const i nt ChartTy peNotSuppo rtedForMul tipleSerie sChart = u nchecked(( int)0x8004 e021); // -214716412 7 | |||||
| 5138 | publ ic const i nt Insuffi cientColum nsInSubQue ry = unche cked((int) 0x8004e022 ); // -214 7164126 | |||||
| 5139 | publ ic const i nt Aggrega teQueryRec ordLimitEx ceeded = u nchecked(( int)0x8004 e023); // -214716412 5 | |||||
| 5140 | publ ic const i nt RollupA ggregateQu eryRecordL imitExceed ed = unche cked((int) 0x8004e025 ); // -214 7164123 | |||||
| 5141 | publ ic const i nt Currenc yFieldMiss ing = unch ecked((int )0x8004e02 6); // -21 47164122 | |||||
| 5142 | publ ic const i nt QuickFi ndQueryRec ordLimitEx ceeded = u nchecked(( int)0x8004 e024); // -214716412 4 | |||||
| 5143 | publ ic const i nt RollupF ieldNoWrit eAccess = unchecked( (int)0x800 4e027); // -21471641 21 | |||||
| 5144 | publ ic const i nt CannotA ddOrActonB ehalfAnoth erUserPriv ilege = un checked((i nt)0x8004e d43); // - 2147160765 | |||||
| 5145 | publ ic const i nt HipNoSe ttingError = uncheck ed((int)0x 8004ed44); // -21471 60764 | |||||
| 5146 | publ ic const i nt HipInva lidCertifi cate = unc hecked((in t)0x8004ed 45); // -2 147160763 | |||||
| 5147 | publ ic const i nt NoSetti ngError = unchecked( (int)0x800 4ed46); // -21471607 62 | |||||
| 5148 | publ ic const i nt AppLock Timeout = unchecked( (int)0x800 4ed47); // -21471607 61 | |||||
| 5149 | publ ic const i nt Invalid Recurrence Pattern = unchecked( (int)0x800 4e100); // -21471639 04 | |||||
| 5150 | publ ic const i nt CreateR ecurrenceR uleFailed = unchecke d((int)0x8 004e101); // -214716 3903 | |||||
| 5151 | publ ic const i nt Partial ExpansionS ettingLoad Error = un checked((i nt)0x8004e 102); // - 2147163902 | |||||
| 5152 | publ ic const i nt Invalid CrmDateTim e = unchec ked((int)0 x8004e103) ; // -2147 163901 | |||||
| 5153 | publ ic const i nt Invalid Appointmen tInstance = unchecke d((int)0x8 004e104); // -214716 3900 | |||||
| 5154 | publ ic const i nt Invalid SeriesId = unchecked ((int)0x80 04e105); / / -2147163 899 | |||||
| 5155 | publ ic const i nt Appoint mentDelete d = unchec ked((int)0 x8004e106) ; // -2147 163898 | |||||
| 5156 | publ ic const i nt Invalid InstanceTy peCode = u nchecked(( int)0x8004 e107); // -214716389 7 | |||||
| 5157 | publ ic const i nt Overlap pingInstan ces = unch ecked((int )0x8004e10 8); // -21 47163896 | |||||
| 5158 | publ ic const i nt Invalid SeriesIdOr iginalStar t = unchec ked((int)0 x8004e109) ; // -2147 163895 | |||||
| 5159 | publ ic const i nt Validat eNotSuppor ted = unch ecked((int )0x8004e10 a); // -21 47163894 | |||||
| 5160 | publ ic const i nt Recurri ngSeriesCo mpleted = unchecked( (int)0x800 4e10b); // -21471638 93 | |||||
| 5161 | publ ic const i nt Expansi onRequestI sOutsideEx pansionWin dow = unch ecked((int )0x8004e10 c); // -21 47163892 | |||||
| 5162 | publ ic const i nt Invalid InstanceEn tityName = unchecked ((int)0x80 04e10d); / / -2147163 891 | |||||
| 5163 | publ ic const i nt BookFir stInstance Failed = u nchecked(( int)0x8004 e10e); // -214716389 0 | |||||
| 5164 | publ ic const i nt Invalid SeriesStat us = unche cked((int) 0x8004e10f ); // -214 7163889 | |||||
| 5165 | publ ic const i nt Recurre nceRuleUpd ateFailure = uncheck ed((int)0x 8004e110); // -21471 63888 | |||||
| 5166 | publ ic const i nt Recurre nceRuleDel eteFailure = uncheck ed((int)0x 8004e111); // -21471 63887 | |||||
| 5167 | publ ic const i nt EntityN otRule = u nchecked(( int)0x8004 e112); // -214716388 6 | |||||
| 5168 | publ ic const i nt Recurri ngSeriesMa sterIsLock ed = unche cked((int) 0x8004e113 ); // -214 7163885 | |||||
| 5169 | publ ic const i nt UpdateR ecurrenceR uleFailed = unchecke d((int)0x8 004e114); // -214716 3884 | |||||
| 5170 | publ ic const i nt Instanc eOutsideEf fectiveRan ge = unche cked((int) 0x8004e115 ); // -214 7163883 | |||||
| 5171 | publ ic const i nt Recurre nceCalenda rTypeNotSu pported = unchecked( (int)0x800 4e116); // -21471638 82 | |||||
| 5172 | publ ic const i nt Recurre nceHasNoOc currence = unchecked ((int)0x80 04e117); / / -2147163 881 | |||||
| 5173 | publ ic const i nt Recurre nceStartDa teTooSmall = uncheck ed((int)0x 8004e118); // -21471 63880 | |||||
| 5174 | publ ic const i nt Recurre nceEndDate TooBig = u nchecked(( int)0x8004 e119); // -214716387 9 | |||||
| 5175 | publ ic const i nt Occurre nceCrossin gBoundary = unchecke d((int)0x8 004e120); // -214716 3872 | |||||
| 5176 | publ ic const i nt Occurre nceTimeSpa nTooBig = unchecked( (int)0x800 4e121); // -21471638 71 | |||||
| 5177 | publ ic const i nt Occurre nceSkipsOv erForward = unchecke d((int)0x8 004e122); // -214716 3870 | |||||
| 5178 | publ ic const i nt Occurre nceSkipsOv erBackward = uncheck ed((int)0x 8004e123); // -21471 63869 | |||||
| 5179 | publ ic const i nt Invalid DaysInFebr uary = unc hecked((in t)0x8004e1 24); // -2 147163868 | |||||
| 5180 | publ ic const i nt Invalid Occurrence Number = u nchecked(( int)0x8004 e125); // -214716386 7 | |||||
| 5181 | publ ic const i nt Invalid NumberOfPa rtitions = unchecked ((int)0x80 04e200); / / -2147163 648 | |||||
| 5182 | publ ic const i nt Invalid ElementFou nd = unche cked((int) 0x8004e300 ); // -214 7163392 | |||||
| 5183 | publ ic const i nt Maximum ControlsLi mitExceede d = unchec ked((int)0 x8004e301) ; // -2147 163391 | |||||
| 5184 | publ ic const i nt UserVie wsOrVisual izationsFo und = unch ecked((int )0x8004e30 2); // -21 47163390 | |||||
| 5185 | publ ic const i nt Invalid AttributeF ound = unc hecked((in t)0x8004e3 03); // -2 147163389 | |||||
| 5186 | publ ic const i nt Multipl eFormEleme ntsFound = unchecked ((int)0x80 04e304); / / -2147163 388 | |||||
| 5187 | publ ic const i nt NullDas hboardName = uncheck ed((int)0x 8004e305); // -21471 63387 | |||||
| 5188 | publ ic const i nt Invalid FormType = unchecked ((int)0x80 04e306); / / -2147163 386 | |||||
| 5189 | publ ic const i nt Invalid ControlCla ss = unche cked((int) 0x8004e307 ); // -214 7163385 | |||||
| 5190 | publ ic const i nt ImportD ashboardDe letedError = uncheck ed((int)0x 8004e308); // -21471 63384 | |||||
| 5191 | publ ic const i nt Persona lReportFou nd = unche cked((int) 0x8004e309 ); // -214 7163383 | |||||
| 5192 | publ ic const i nt ObjectA lreadyExis ts = unche cked((int) 0x8004e30a ); // -214 7163382 | |||||
| 5193 | publ ic const i nt EntityT ypeSpecifi edForDashb oard = unc hecked((in t)0x8004e3 0b); // -2 147163381 | |||||
| 5194 | publ ic const i nt Unrestr ictedIFram eInUserDas hboard = u nchecked(( int)0x8004 e30c); // -214716338 0 | |||||
| 5195 | publ ic const i nt Multipl eLabelsInU serDashboa rd = unche cked((int) 0x8004e30d ); // -214 7163379 | |||||
| 5196 | publ ic const i nt Unsuppo rtedDashbo ardInEdito r = unchec ked((int)0 x8004e30e) ; // -2147 163378 | |||||
| 5197 | publ ic const i nt Invalid UrlProtoco l = unchec ked((int)0 x8004e30f) ; // -2147 163377 | |||||
| 5198 | publ ic const i nt CannotR emoveCompo nentFromDe faultSolut ion = unch ecked((int )0x8004f00 0); // -21 47160064 | |||||
| 5199 | publ ic const i nt Invalid SolutionUn iqueName = unchecked ((int)0x80 04f002); / / -2147160 062 | |||||
| 5200 | publ ic const i nt CannotU ndeleteLab el = unche cked((int) 0x8004f003 ); // -214 7160061 | |||||
| 5201 | publ ic const i nt ErrorRe activating ComponentI nstance = unchecked( (int)0x800 4f004); // -21471600 60 | |||||
| 5202 | publ ic const i nt CannotD eleteRestr ictedSolut ion = unch ecked((int )0x8004f00 5); // -21 47160059 | |||||
| 5203 | publ ic const i nt CannotD eleteRestr ictedPubli sher = unc hecked((in t)0x8004f0 06); // -2 147160058 | |||||
| 5204 | publ ic const i nt ImportR estrictedS olutionErr or = unche cked((int) 0x8004f007 ); // -214 7160057 | |||||
| 5205 | publ ic const i nt CannotS etSolution SystemAttr ibutes = u nchecked(( int)0x8004 f008); // -214716005 6 | |||||
| 5206 | publ ic const i nt CannotU pdateDefau ltSolution = uncheck ed((int)0x 8004f009); // -21471 60055 | |||||
| 5207 | publ ic const i nt CannotU pdateRestr ictedSolut ion = unch ecked((int )0x8004f00 a); // -21 47160054 | |||||
| 5208 | publ ic const i nt CannotA ddWorkflow Activation ToSolution = unchec ked((int)0 x8004f00c) ; // -2147 160052 | |||||
| 5209 | publ ic const i nt CannotQ ueryBaseTa bleWithAgg regates = unchecked( (int)0x800 4f00d); // -21471600 51 | |||||
| 5210 | publ ic const i nt Invalid StateTrans ition = un checked((i nt)0x8004f 00e); // - 2147160050 | |||||
| 5211 | publ ic const i nt CannotU pdateUnpub lishedDele teInstance = uncheck ed((int)0x 8004f00f); // -21471 60049 | |||||
| 5212 | publ ic const i nt Unsuppo rtedCompon entOperati on = unche cked((int) 0x8004f010 ); // -214 7160048 | |||||
| 5213 | publ ic const i nt Invalid CreateOnPr otectedCom ponent = u nchecked(( int)0x8004 f011); // -214716004 7 | |||||
| 5214 | publ ic const i nt Invalid UpdateOnPr otectedCom ponent = u nchecked(( int)0x8004 f012); // -214716004 6 | |||||
| 5215 | publ ic const i nt Invalid DeleteOnPr otectedCom ponent = u nchecked(( int)0x8004 f013); // -214716004 5 | |||||
| 5216 | publ ic const i nt Invalid PublishOnP rotectedCo mponent = unchecked( (int)0x800 4f014); // -21471600 44 | |||||
| 5217 | publ ic const i nt CannotA ddNonCusto mizableCom ponent = u nchecked(( int)0x8004 f015); // -214716004 3 | |||||
| 5218 | publ ic const i nt CannotO verwriteAc tiveCompon ent = unch ecked((int )0x8004f01 6); // -21 47160042 | |||||
| 5219 | publ ic const i nt CannotU pdateRestr ictedPubli sher = unc hecked((in t)0x8004f0 17); // -2 147160041 | |||||
| 5220 | publ ic const i nt CannotA ddSolution ComponentW ithoutRoot s = unche cked((int) 0x8004f018 ); // -214 7160040 | |||||
| 5221 | publ ic const i nt Compone ntDefiniti onDoesNotE xists = un checked((i nt)0x8004f 019); // - 2147160039 | |||||
| 5222 | publ ic const i nt Depende ncyAlready Exists = u nchecked(( int)0x8004 f01a); // -214716003 8 | |||||
| 5223 | publ ic const i nt Depende ncyTableNo tEmpty = u nchecked(( int)0x8004 f01b); // -214716003 7 | |||||
| 5224 | publ ic const i nt Invalid PublisherU niqueName = unchecke d((int)0x8 004f01c); // -214716 0036 | |||||
| 5225 | publ ic const i nt CannotU ninstallWi thDependen cies = unc hecked((in t)0x8004f0 1d); // -2 147160035 | |||||
| 5226 | publ ic const i nt Invalid SolutionVe rsion = un checked((i nt)0x8004f 01e); // - 2147160034 | |||||
| 5227 | publ ic const i nt CannotD eleteInUse Component = unchecke d((int)0x8 004f01f); // -214716 0033 | |||||
| 5228 | publ ic const i nt CannotU ninstallRe ferencedPr otectedSol ution = un checked((i nt)0x8004f 020); // - 2147160032 | |||||
| 5229 | publ ic const i nt CannotR emoveCompo nentFromSo lution = u nchecked(( int)0x8004 f021); // -214716003 1 | |||||
| 5230 | publ ic const i nt Restric tedSolutio nName = un checked((i nt)0x8004f 022); // - 2147160030 | |||||
| 5231 | publ ic const i nt Solutio nUniqueNam eViolation = uncheck ed((int)0x 8004f023); // -21471 60029 | |||||
| 5232 | publ ic const i nt CannotU pdateManag edSolution = uncheck ed((int)0x 8004f024); // -21471 60028 | |||||
| 5233 | publ ic const i nt Depende ncyTrackin gClosed = unchecked( (int)0x800 4f025); // -21471600 27 | |||||
| 5234 | publ ic const i nt Generic ManagedPro pertyFailu re = unche cked((int) 0x8004f026 ); // -214 7160026 | |||||
| 5235 | publ ic const i nt Combine dManagedPr opertyFail ure = unch ecked((int )0x8004f02 7); // -21 47160025 | |||||
| 5236 | publ ic const i nt ReportI mportCateg oryOptionN otFound = unchecked( (int)0x800 4f028); // -21471600 24 | |||||
| 5237 | publ ic const i nt Require dChildRepo rtHasOther Parent = u nchecked(( int)0x8004 f029); // -214716002 3 | |||||
| 5238 | publ ic const i nt Invalid ManagedPro pertyExcep tion = unc hecked((in t)0x8004f0 30); // -2 147160016 | |||||
| 5239 | publ ic const i nt OnlyOwn erCanSetMa nagedPrope rties = un checked((i nt)0x8004f 031); // - 2147160015 | |||||
| 5240 | publ ic const i nt CannotD eleteMetad ata = unch ecked((int )0x8004f03 2); // -21 47160014 | |||||
| 5241 | publ ic const i nt CannotU pdateReadO nlyPublish er = unche cked((int) 0x8004f033 ); // -214 7160013 | |||||
| 5242 | publ ic const i nt CannotS electReadO nlyPublish er = unche cked((int) 0x8004f034 ); // -214 7160012 | |||||
| 5243 | publ ic const i nt CannotR emoveCompo nentFromSy stemSoluti on = unche cked((int) 0x8004f035 ); // -214 7160011 | |||||
| 5244 | publ ic const i nt Invalid Dependency = uncheck ed((int)0x 8004f036); // -21471 60010 | |||||
| 5245 | publ ic const i nt Invalid Dependency FetchXml = unchecked ((int)0x80 04f037); / / -2147160 009 | |||||
| 5246 | publ ic const i nt CannotM odifyRepor tOutsideSo lutionIfMa naged = un checked((i nt)0x8004f 038); // - 2147160008 | |||||
| 5247 | publ ic const i nt Duplica teDetectio nRulesWere Unpublishe d = unchec ked((int)0 x8004f039) ; // -2147 160007 | |||||
| 5248 | publ ic const i nt Invalid Dependency Component = unchecke d((int)0x8 004f040); // -214716 0000 | |||||
| 5249 | publ ic const i nt Invalid Dependency Entity = u nchecked(( int)0x8004 f041); // -214715999 9 | |||||
| 5250 | publ ic const i nt SharePo intUnableT oAddUserTo Group = un checked((i nt)0x8004f 0f1); // - 2147159823 | |||||
| 5251 | publ ic const i nt SharePo intUnableT oRemoveUse rFromGroup = uncheck ed((int)0x 8004f0f2); // -21471 59822 | |||||
| 5252 | publ ic const i nt SharePo intSiteNot PresentInS harePoint = unchecke d((int)0x8 004f0f3); // -214715 9821 | |||||
| 5253 | publ ic const i nt SharePo intUnableT oRetrieveG roup = unc hecked((in t)0x8004f0 f4); // -2 147159820 | |||||
| 5254 | publ ic const i nt SharePo intUnableT oAclSiteWi thPrivileg e = unchec ked((int)0 x8004f0f5) ; // -2147 159819 | |||||
| 5255 | publ ic const i nt SharePo intUnableT oAclSite = unchecked ((int)0x80 04f0f6); / / -2147159 818 | |||||
| 5256 | publ ic const i nt SharePo intUnableT oCreateSit eGroup = u nchecked(( int)0x8004 f0f7); // -214715981 7 | |||||
| 5257 | publ ic const i nt SharePo intSiteCre ationFailu re = unche cked((int) 0x8004f0f8 ); // -214 7159816 | |||||
| 5258 | publ ic const i nt SharePo intTeamPro visionJobA lreadyExis ts = unche cked((int) 0x8004f0f9 ); // -214 7159815 | |||||
| 5259 | publ ic const i nt SharePo intRolePro visionJobA lreadyExis ts = unche cked((int) 0x8004f0fa ); // -214 7159814 | |||||
| 5260 | publ ic const i nt SharePo intSiteWid eProvision ingJobFail ed = unche cked((int) 0x8004f0fb ); // -214 7159813 | |||||
| 5261 | publ ic const i nt DataTyp eMismatchF orLinkedAt tribute = unchecked( (int)0x800 4f0fc); // -21471598 12 | |||||
| 5262 | publ ic const i nt Invalid EntityForL inkedAttri bute = unc hecked((in t)0x8004f0 fd); // -2 147159811 | |||||
| 5263 | publ ic const i nt Already LinkedToAn otherAttri bute = unc hecked((in t)0x8004f0 fe); // -2 147159810 | |||||
| 5264 | publ ic const i nt Documen tManagemen tDisabled = unchecke d((int)0x8 004f0ff); // -214715 9809 | |||||
| 5265 | publ ic const i nt Default SiteCollec tionUrlCha nged = unc hecked((in t)0x8004f1 00); // -2 147159808 | |||||
| 5266 | publ ic const i nt RibbonI mportHidin gBasicHome Tab = unch ecked((int )0x8004f10 1); // -21 47159807 | |||||
| 5267 | publ ic const i nt RibbonI mportInval idPrivileg eName = un checked((i nt)0x8004f 102); // - 2147159806 | |||||
| 5268 | publ ic const i nt RibbonI mportEntit yNotSuppor ted = unch ecked((int )0x8004f10 3); // -21 47159805 | |||||
| 5269 | publ ic const i nt RibbonI mportDepen dencyMissi ngEntity = unchecked ((int)0x80 04f104); / / -2147159 804 | |||||
| 5270 | publ ic const i nt RibbonI mportDepen dencyMissi ngRibbonEl ement = un checked((i nt)0x8004f 105); // - 2147159803 | |||||
| 5271 | publ ic const i nt RibbonI mportDepen dencyMissi ngWebResou rce = unch ecked((int )0x8004f10 6); // -21 47159802 | |||||
| 5272 | publ ic const i nt RibbonI mportDepen dencyMissi ngRibbonCo ntrol = un checked((i nt)0x8004f 107); // - 2147159801 | |||||
| 5273 | publ ic const i nt RibbonI mportModif yingTopLev elNode = u nchecked(( int)0x8004 f108); // -214715980 0 | |||||
| 5274 | publ ic const i nt RibbonI mportLocat ionAndIdDo NotMatch = unchecked ((int)0x80 04f109); / / -2147159 799 | |||||
| 5275 | publ ic const i nt RibbonI mportHidin gJewel = u nchecked(( int)0x8004 f10a); // -214715979 8 | |||||
| 5276 | publ ic const i nt RibbonI mportDupli cateElemen tId = unch ecked((int )0x8004f10 b); // -21 47159797 | |||||
| 5277 | publ ic const i nt WebReso urceInvali dType = un checked((i nt)0x8004f 111); // - 2147159791 | |||||
| 5278 | publ ic const i nt WebReso urceEmptyS ilverlight Version = unchecked( (int)0x800 4f112); // -21471597 90 | |||||
| 5279 | publ ic const i nt WebReso urceInvali dSilverlig htVersion = unchecke d((int)0x8 004f113); // -214715 9789 | |||||
| 5280 | publ ic const i nt WebReso urceConten tSizeExcee ded = unch ecked((int )0x8004f11 4); // -21 47159788 | |||||
| 5281 | publ ic const i nt WebReso urceDuplic ateName = unchecked( (int)0x800 4f115); // -21471597 87 | |||||
| 5282 | publ ic const i nt WebReso urceEmptyN ame = unch ecked((int )0x8004f11 6); // -21 47159786 | |||||
| 5283 | publ ic const i nt WebReso urceNameIn validChara cters = un checked((i nt)0x8004f 117); // - 2147159785 | |||||
| 5284 | publ ic const i nt WebReso urceNameIn validPrefi x = unchec ked((int)0 x8004f118) ; // -2147 159784 | |||||
| 5285 | publ ic const i nt WebReso urceNameIn validFileE xtension = unchecked ((int)0x80 04f119); / / -2147159 783 | |||||
| 5286 | publ ic const i nt WebReso urceImport MissingFil e = unchec ked((int)0 x8004f11a) ; // -2147 159782 | |||||
| 5287 | publ ic const i nt WebReso urceImport Error = un checked((i nt)0x8004f 11b); // - 2147159781 | |||||
| 5288 | publ ic const i nt Invalid ActivityOw nershipTyp eMask = un checked((i nt)0x8004f 120); // - 2147159776 | |||||
| 5289 | publ ic const i nt Activit yCannotHav eRelatedAc tivities = unchecked ((int)0x80 04f121); / / -2147159 775 | |||||
| 5290 | publ ic const i nt CustomA ctivityMus tHaveOffli neAvailabi lity = unc hecked((in t)0x8004f1 22); // -2 147159774 | |||||
| 5291 | publ ic const i nt Activit yMustHaveR elatedNote s = unchec ked((int)0 x8004f123) ; // -2147 159773 | |||||
| 5292 | publ ic const i nt CustomA ctivityCan notBeMailM ergeEnable d = unchec ked((int)0 x8004f124) ; // -2147 159772 | |||||
| 5293 | publ ic const i nt Invalid CustomActi vityType = unchecked ((int)0x80 04f125); / / -2147159 771 | |||||
| 5294 | publ ic const i nt Activit yMetadataU pdate = un checked((i nt)0x8004f 126); // - 2147159770 | |||||
| 5295 | publ ic const i nt Invalid PrimaryFie ldForActiv ity = unch ecked((int )0x8004f12 7); // -21 47159769 | |||||
| 5296 | publ ic const i nt CannotD eleteNonLe afNode = u nchecked(( int)0x8004 f200); // -214715955 2 | |||||
| 5297 | publ ic const i nt Duplica teUIStatem entRootsFo und = unch ecked((int )0x8004f20 1); // -21 47159551 | |||||
| 5298 | publ ic const i nt ErrorUp dateStatem entTextIsR eferenced = unchecke d((int)0x8 004f202); // -214715 9550 | |||||
| 5299 | publ ic const i nt ErrorDe leteStatem entTextIsR eferenced = unchecke d((int)0x8 004f203); // -214715 9549 | |||||
| 5300 | publ ic const i nt ErrorSc riptSessio nCannotCre ateForDraf tScript = unchecked( (int)0x800 4f204); // -21471595 48 | |||||
| 5301 | publ ic const i nt ErrorSc riptSessio nCannotUpd ateForDraf tScript = unchecked( (int)0x800 4f205); // -21471595 47 | |||||
| 5302 | publ ic const i nt ErrorSc riptLangua geNotInsta lled = unc hecked((in t)0x8004f2 06); // -2 147159546 | |||||
| 5303 | publ ic const i nt ErrorSc riptInitia lStatement NotInScrip t = unchec ked((int)0 x8004f207) ; // -2147 159545 | |||||
| 5304 | publ ic const i nt ErrorSc riptInitia lStatement NotRoot = unchecked( (int)0x800 4f208); // -21471595 44 | |||||
| 5305 | publ ic const i nt ErrorSc riptCannot DeletePubl ishedScrip t = unchec ked((int)0 x8004f209) ; // -2147 159543 | |||||
| 5306 | publ ic const i nt ErrorSc riptPublis hMissingIn itialState ment = unc hecked((in t)0x8004f2 0a); // -2 147159542 | |||||
| 5307 | publ ic const i nt ErrorSc riptPublis hMalformed Script = u nchecked(( int)0x8004 f20b); // -214715954 1 | |||||
| 5308 | publ ic const i nt ErrorSc riptUnpubl ishActiveS cript = un checked((i nt)0x8004f 20c); // - 2147159540 | |||||
| 5309 | publ ic const i nt ErrorSc riptSessio nCannotSet StateForDr aftScript = unchecke d((int)0x8 004f20d); // -214715 9539 | |||||
| 5310 | publ ic const i nt ErrorSc riptStatem entRespons eTypeOnlyF orPrompt = unchecked ((int)0x80 04f20e); / / -2147159 538 | |||||
| 5311 | publ ic const i nt ErrorSt atementOnl yForDraftS cript = un checked((i nt)0x8004f 20f); // - 2147159537 | |||||
| 5312 | publ ic const i nt ErrorSt atementDel eteOnlyFor DraftScrip t = unchec ked((int)0 x8004f210) ; // -2147 159536 | |||||
| 5313 | publ ic const i nt ErrorIn validUIScr iptImportF ile = unch ecked((int )0x8004f21 1); // -21 47159535 | |||||
| 5314 | publ ic const i nt ErrorSc riptFilePa rse = unch ecked((int )0x8004f21 2); // -21 47159534 | |||||
| 5315 | publ ic const i nt ErrorSc riptCannot UpdatePubl ishedScrip t = unchec ked((int)0 x8004f213) ; // -2147 159533 | |||||
| 5316 | publ ic const i nt ErrorIn validFileN ameChars = unchecked ((int)0x80 04f214); / / -2147159 532 | |||||
| 5317 | publ ic const i nt ErrorMi meTypeNull OrEmpty = unchecked( (int)0x800 4f215); // -21471595 31 | |||||
| 5318 | publ ic const i nt ErrorIm portInvali dForPublis hedScript = unchecke d((int)0x8 004f216); // -214715 9530 | |||||
| 5319 | publ ic const i nt UIScrip tIdentifie rDuplicate = uncheck ed((int)0x 8004f217); // -21471 59529 | |||||
| 5320 | publ ic const i nt UIScrip tIdentifie rInvalid = unchecked ((int)0x80 04f218); / / -2147159 528 | |||||
| 5321 | publ ic const i nt UIScrip tIdentifie rInvalidLe ngth = unc hecked((in t)0x8004f2 19); // -2 147159527 | |||||
| 5322 | publ ic const i nt ErrorNo QueryData = unchecke d((int)0x8 004f220); // -214715 9520 | |||||
| 5323 | publ ic const i nt ErrorUI ScriptProm ptMissing = unchecke d((int)0x8 004f221); // -214715 9519 | |||||
| 5324 | publ ic const i nt SharePo intUrlHost Validator = unchecke d((int)0x8 004f301); // -214715 9295 | |||||
| 5325 | publ ic const i nt SharePo intCrmDoma inValidato r = unchec ked((int)0 x8004f302) ; // -2147 159294 | |||||
| 5326 | publ ic const i nt SharePo intServerD iscoveryVa lidator = unchecked( (int)0x800 4f303); // -21471592 93 | |||||
| 5327 | publ ic const i nt SharePo intServerV ersionVali dator = un checked((i nt)0x8004f 304); // - 2147159292 | |||||
| 5328 | publ ic const i nt SharePo intSiteCol lectionIsA ccessibleV alidator = unchecked ((int)0x80 04f305); / / -2147159 291 | |||||
| 5329 | publ ic const i nt SharePo intUrlIsRo otWebValid ator = unc hecked((in t)0x8004f3 06); // -2 147159290 | |||||
| 5330 | publ ic const i nt SharePo intSitePer missionsVa lidator = unchecked( (int)0x800 4f307); // -21471592 89 | |||||
| 5331 | publ ic const i nt SharePo intServerL anguageVal idator = u nchecked(( int)0x8004 f308); // -214715928 8 | |||||
| 5332 | publ ic const i nt SharePo intCrmGrid IsInstalle dValidator = uncheck ed((int)0x 8004f309); // -21471 59287 | |||||
| 5333 | publ ic const i nt SharePo intErrorRe trieveAbso luteUrl = unchecked( (int)0x800 4f310); // -21471592 80 | |||||
| 5334 | publ ic const i nt SharePo intInvalid EntityForV alidation = unchecke d((int)0x8 004f311); // -214715 9279 | |||||
| 5335 | publ ic const i nt Documen tManagemen tIsDisable d = unchec ked((int)0 x8004f312) ; // -2147 159278 | |||||
| 5336 | publ ic const i nt Documen tManagemen tNotEnable dNoPrimary Field = un checked((i nt)0x8004f 313); // - 2147159277 | |||||
| 5337 | publ ic const i nt SharePo intErrorAb soluteUrlC lipped = u nchecked(( int)0x8004 f314); // -214715927 6 | |||||
| 5338 | publ ic const i nt SiteMap XsdValidat ionError = unchecked ((int)0x80 04f401); / / -2147159 039 | |||||
| 5339 | publ ic const i nt CannotS ecureAttri bute = unc hecked((in t)0x8004f5 01); // -2 147158783 | |||||
| 5340 | publ ic const i nt Attribu tePrivileg eCreateIsM issing = u nchecked(( int)0x8004 f502); // -214715878 2 | |||||
| 5341 | publ ic const i nt Attribu tePermissi onUpdateIs MissingDur ingShare = unchecked ((int)0x80 04f503); / / -2147158 781 | |||||
| 5342 | publ ic const i nt Attribu tePermissi onReadIsMi ssing = un checked((i nt)0x8004f 504); // - 2147158780 | |||||
| 5343 | publ ic const i nt CannotR emoveSysAd minProfile FromSysAdm inUser = u nchecked(( int)0x8004 f505); // -214715877 9 | |||||
| 5344 | publ ic const i nt QueryCo ntainedSec uredAttrib uteWithout Access = u nchecked(( int)0x8004 f506); // -214715877 8 | |||||
| 5345 | publ ic const i nt Attribu tePermissi onUpdateIs MissingDur ingUpdate = unchecke d((int)0x8 004f507); // -214715 8777 | |||||
| 5346 | publ ic const i nt Attribu teNotSecur ed = unche cked((int) 0x8004f508 ); // -214 7158776 | |||||
| 5347 | publ ic const i nt Attribu teSharingC reateShoul dSetReadOr AndUpdateA ccess = un checked((i nt)0x8004f 509); // - 2147158775 | |||||
| 5348 | publ ic const i nt Attribu teSharingU pdateInval id = unche cked((int) 0x8004f50a ); // -214 7158774 | |||||
| 5349 | publ ic const i nt Attribu teSharingC reateDupli cate = unc hecked((in t)0x8004f5 0b); // -2 147158773 | |||||
| 5350 | publ ic const i nt AdminPr ofileCanno tBeEditedO rDeleted = unchecked ((int)0x80 04f50c); / / -2147158 772 | |||||
| 5351 | publ ic const i nt Attribu tePrivileg eInvalidTo Unsecure = unchecked ((int)0x80 04f50d); / / -2147158 771 | |||||
| 5352 | publ ic const i nt Attribu tePermissi onIsInvali d = unchec ked((int)0 x8004f50e) ; // -2147 158770 | |||||
| 5353 | publ ic const i nt Applica tionUserAl lowCustomR oleOnly = unchecked( (int)0x800 4f50f); // -21471587 69 | |||||
| 5354 | publ ic const i nt AzureAp plicationI dNotFound = unchecke d((int)0x8 004f510); // -214715 8768 | |||||
| 5355 | publ ic const i nt Duplica teApplicat ionUser = unchecked( (int)0x800 4f511); // -21471587 67 | |||||
| 5356 | publ ic const i nt AzureAp plicationI dNotFoundI nOrgDB = u nchecked(( int)0x8004 f512); // -214715876 6 | |||||
| 5357 | publ ic const i nt Require ValidImpor tMapForUpd ate = unch ecked((int )0x8004f60 0); // -21 47158528 | |||||
| 5358 | publ ic const i nt Invalid FormatForU pdateMode = unchecke d((int)0x8 004f601); // -214715 8527 | |||||
| 5359 | publ ic const i nt Maximum CountForUp dateModeEx ceeded = u nchecked(( int)0x8004 f602); // -214715852 6 | |||||
| 5360 | publ ic const i nt RecordR esolutionF ailed = un checked((i nt)0x8004f 603); // - 2147158525 | |||||
| 5361 | publ ic const i nt Invalid OperationF orDynamicL ist = unch ecked((int )0x8004f70 1); // -21 47158271 | |||||
| 5362 | publ ic const i nt QueryNo tValidForS taticList = unchecke d((int)0x8 004f702); // -214715 8270 | |||||
| 5363 | publ ic const i nt LockSta tusNotVali dForDynami cList = un checked((i nt)0x8004f 703); // - 2147158269 | |||||
| 5364 | publ ic const i nt CannotC opyStaticL ist = unch ecked((int )0x8004f70 4); // -21 47158268 | |||||
| 5365 | publ ic const i nt CannotD eleteSyste mForm = un checked((i nt)0x8004f 652); // - 2147158446 | |||||
| 5366 | publ ic const i nt CannotU pdateSyste mEntityIco ns = unche cked((int) 0x8004f653 ); // -214 7158445 | |||||
| 5367 | publ ic const i nt Fallbac kFormDelet ion = unch ecked((int )0x8004f65 4); // -21 47158444 | |||||
| 5368 | publ ic const i nt SystemF ormImportM issingRole s = unchec ked((int)0 x8004f655) ; // -2147 158443 | |||||
| 5369 | publ ic const i nt SystemF ormCopyUnm atchedEnti ty = unche cked((int) 0x8004f656 ); // -214 7158442 | |||||
| 5370 | publ ic const i nt SystemF ormCopyUnm atchedForm Type = unc hecked((in t)0x8004f6 57); // -2 147158441 | |||||
| 5371 | publ ic const i nt SystemF ormCreateW ithExistin gLabel = u nchecked(( int)0x8004 f658); // -214715844 0 | |||||
| 5372 | publ ic const i nt QuickFo rmNotCusto mizableThr oughSdk = unchecked( (int)0x800 4f659); // -21471584 39 | |||||
| 5373 | publ ic const i nt Invalid Deactivate FormType = unchecked ((int)0x80 04f660); / / -2147158 432 | |||||
| 5374 | publ ic const i nt Fallbac kFormDeact ivation = unchecked( (int)0x800 4f661); // -21471584 31 | |||||
| 5375 | publ ic const i nt Depreca tedFormAct ivation = unchecked( (int)0x800 4f662); // -21471584 30 | |||||
| 5376 | publ ic const i nt CannotU pdateEntit ySetName = unchecked ((int)0x80 04f663); / / -2147158 429 | |||||
| 5377 | publ ic const i nt Fallbac kCardFormD eactivatio n = unchec ked((int)0 x8004f664) ; // -2147 158428 | |||||
| 5378 | publ ic const i nt Fallbac kQuickForm Deactivati on = unche cked((int) 0x8004f665 ); // -214 7158427 | |||||
| 5379 | publ ic const i nt Fallbac kMainInter actionCent ricFormDea ctivation = unchecke d((int)0x8 004f666); // -214715 8426 | |||||
| 5380 | publ ic const i nt Runtime RibbonXmlV alidation = unchecke d((int)0x8 004f671); // -214715 8415 | |||||
| 5381 | publ ic const i nt Initial izeErrorNo ReadOnSour ce = unche cked((int) 0x8004f800 ); // -214 7158016 | |||||
| 5382 | publ ic const i nt NoRollu pAttribute sDefined = unchecked ((int)0x80 04f681); / / -2147158 399 | |||||
| 5383 | publ ic const i nt GoalPer centageAch ievedValue OutOfRange = uncheck ed((int)0x 8004f682); // -21471 58398 | |||||
| 5384 | publ ic const i nt Invalid RollupQuer yAttribute Set = unch ecked((int )0x8004f68 3); // -21 47158397 | |||||
| 5385 | publ ic const i nt Invalid GoalManage r = unchec ked((int)0 x8004f684) ; // -2147 158396 | |||||
| 5386 | publ ic const i nt Inactiv eRollupQue rySetOnGoa l = unchec ked((int)0 x8004f685) ; // -2147 158395 | |||||
| 5387 | publ ic const i nt Inactiv eMetricSet OnGoal = u nchecked(( int)0x8004 f686); // -214715839 4 | |||||
| 5388 | publ ic const i nt MetricE ntityOrFie ldDeleted = unchecke d((int)0x8 004f687); // -214715 8393 | |||||
| 5389 | publ ic const i nt Exceede dNumberOfR ecordsCanF ollow = un checked((i nt)0x8004f 6a0); // - 2147158368 | |||||
| 5390 | publ ic const i nt EntityI sNotEnable dForFollow User = unc hecked((in t)0x8004f6 a1); // -2 147158367 | |||||
| 5391 | publ ic const i nt EntityI sNotEnable dForFollow = uncheck ed((int)0x 8004f6a2); // -21471 58366 | |||||
| 5392 | publ ic const i nt CannotF ollowInact iveEntity = unchecke d((int)0x8 004f6a3); // -214715 8365 | |||||
| 5393 | publ ic const i nt MustCon tainAtLeas tACharInMe ntion = un checked((i nt)0x8004f 6a4); // - 2147158364 | |||||
| 5394 | publ ic const i nt Languag eProvision ingSrsData ConnectorN otInstalle d = unchec ked((int)0 x8004f710) ; // -2147 158256 | |||||
| 5395 | publ ic const i nt BidsInv alidConnec tionString = uncheck ed((int)0x 8005e000); // -21470 98624 | |||||
| 5396 | publ ic const i nt BidsInv alidUrl = unchecked( (int)0x800 5e001); // -21470986 23 | |||||
| 5397 | publ ic const i nt BidsSer verConnect ionFailed = unchecke d((int)0x8 005e002); // -214709 8622 | |||||
| 5398 | publ ic const i nt BidsAut henticatio nError = u nchecked(( int)0x8005 e003); // -214709862 1 | |||||
| 5399 | publ ic const i nt BidsNoO rganizatio nsFound = unchecked( (int)0x800 5e004); // -21470986 20 | |||||
| 5400 | publ ic const i nt BidsOrg anizationN otFound = unchecked( (int)0x800 5e005); // -21470986 19 | |||||
| 5401 | publ ic const i nt BidsAut henticatio nFailed = unchecked( (int)0x800 5e006); // -21470986 18 | |||||
| 5402 | publ ic const i nt Transac tionNotSup ported = u nchecked(( int)0x8005 e007); // -214709861 7 | |||||
| 5403 | publ ic const i nt IndexOu tOfRange = unchecked ((int)0x80 05e008); / / -2147098 616 | |||||
| 5404 | publ ic const i nt Invalid Attribute = unchecke d((int)0x8 005e009); // -214709 8615 | |||||
| 5405 | publ ic const i nt MultiVa lueParamet erFound = unchecked( (int)0x800 5e00a); // -21470986 14 | |||||
| 5406 | publ ic const i nt QueryPa rameterNot Unique = u nchecked(( int)0x8005 e00b); // -214709861 3 | |||||
| 5407 | publ ic const i nt Invalid Entity = u nchecked(( int)0x8005 e00c); // -214709861 2 | |||||
| 5408 | publ ic const i nt Unsuppo rtedAttrib uteType = unchecked( (int)0x800 5e00d); // -21470986 11 | |||||
| 5409 | publ ic const i nt FetchDa taSetQuery Timeout = unchecked( (int)0x800 5e00e); // -21470986 10 | |||||
| 5410 | publ ic const i nt Invalid Command = unchecked( (int)0x800 5e100); // -21470983 68 | |||||
| 5411 | publ ic const i nt Invalid DataXml = unchecked( (int)0x800 5e101); // -21470983 67 | |||||
| 5412 | publ ic const i nt Invalid LanguageFo rProcessCo nfiguratio n = unchec ked((int)0 x8005e102) ; // -2147 098366 | |||||
| 5413 | publ ic const i nt Invalid ComplexCon trolId = u nchecked(( int)0x8005 e103); // -214709836 5 | |||||
| 5414 | publ ic const i nt Invalid ProcessCon trolEntity = uncheck ed((int)0x 8005e104); // -21470 98364 | |||||
| 5415 | publ ic const i nt Invalid ProcessCon trolAttrib ute = unch ecked((int )0x8005e10 5); // -21 47098363 | |||||
| 5416 | publ ic const i nt BadRequ est = unch ecked((int )0x8005f10 0); // -21 47094272 | |||||
| 5417 | publ ic const i nt AccessT okenExpire d = unchec ked((int)0 x8005f101) ; // -2147 094271 | |||||
| 5418 | publ ic const i nt Forbidd en = unche cked((int) 0x8005f102 ); // -214 7094270 | |||||
| 5419 | publ ic const i nt Throttl ing = unch ecked((int )0x8005f10 3); // -21 47094269 | |||||
| 5420 | publ ic const i nt Network Issue = un checked((i nt)0x8005f 104); // - 2147094268 | |||||
| 5421 | publ ic const i nt CouldNo tReadAcces sToken = u nchecked(( int)0x8005 f105); // -214709426 7 | |||||
| 5422 | publ ic const i nt NotVeri fiedAdmin = unchecke d((int)0x8 005f106); // -214709 4266 | |||||
| 5423 | publ ic const i nt YammerA uthTimedOu t = unchec ked((int)0 x8005f107) ; // -2147 094265 | |||||
| 5424 | publ ic const i nt NoYamme rNetworksF ound = unc hecked((in t)0x8005f1 08); // -2 147094264 | |||||
| 5425 | publ ic const i nt OAuthTo kenNotFoun d = unchec ked((int)0 x8005f109) ; // -2147 094263 | |||||
| 5426 | publ ic const i nt CouldNo tDecryptOA uthToken = unchecked ((int)0x80 05f110); / / -2147094 256 | |||||
| 5427 | publ ic const i nt UserNev erLoggedIn toYammer = unchecked ((int)0x80 05f111); / / -2147094 255 | |||||
| 5428 | publ ic const i nt StepNot SupportedF orClientBu sinessRule = uncheck ed((int)0x 80060000); // -21470 90432 | |||||
| 5429 | publ ic const i nt EventNo tSupported ForBusines sRule = un checked((i nt)0x80060 001); // - 2147090431 | |||||
| 5430 | publ ic const i nt CannotU pdateTrigg erForPubli shedRules = unchecke d((int)0x8 0060002); // -214709 0430 | |||||
| 5431 | publ ic const i nt EventTy peAndContr olNameAreM ismatched = unchecke d((int)0x8 0060003); // -214709 0429 | |||||
| 5432 | publ ic const i nt Express ionNotSupp ortedForEd itor = unc hecked((in t)0x800600 04); // -2 147090428 | |||||
| 5433 | publ ic const i nt EditorO nlySupport AndOperato rForLogica lCondition s = unchec ked((int)0 x80060005) ; // -2147 090427 | |||||
| 5434 | publ ic const i nt Unexpec tedRightOp erandCount = uncheck ed((int)0x 80060006); // -21470 90426 | |||||
| 5435 | publ ic const i nt RuleNot SupportedF orEditor = unchecked ((int)0x80 060007); / / -2147090 425 | |||||
| 5436 | publ ic const i nt Busines sRuleEdito rSupportsO nlyIfCondi tionBranch = uncheck ed((int)0x 80060008); // -21470 90424 | |||||
| 5437 | publ ic const i nt Unsuppo rtedStepFo rBusinessR uleEditor = unchecke d((int)0x8 0060009); // -214709 0423 | |||||
| 5438 | publ ic const i nt Unsuppo rtedAttrib uteForEdit or = unche cked((int) 0x80060010 ); // -214 7090416 | |||||
| 5439 | publ ic const i nt Expecti ngAtLeastO neBusiness RuleStep = unchecked ((int)0x80 060011); / / -2147090 415 | |||||
| 5440 | publ ic const i nt RuleCre ationNotAl lowedForCy clicRefere nces = unc hecked((in t)0x800600 12); // -2 147090414 | |||||
| 5441 | publ ic const i nt NoCondi tionRuleCr eationNotA llowedForS etValueSho wError = u nchecked(( int)0x8006 0013); // -214709041 3 | |||||
| 5442 | publ ic const i nt RuleAct ivationNot AllowedWit hDeletedSt ages = unc hecked((in t)0x800600 14); // -2 147090412 | |||||
| 5443 | publ ic const i nt EntityL imitExceed ed = unche cked((int) 0x80060200 ); // -214 7089920 | |||||
| 5444 | publ ic const i nt Invalid SearchEnti ty = unche cked((int) 0x80060201 ); // -214 7089919 | |||||
| 5445 | publ ic const i nt Invalid SearchEnti ties = unc hecked((in t)0x800602 02); // -2 147089918 | |||||
| 5446 | publ ic const i nt NoQuick FindFound = unchecke d((int)0x8 0060203); // -214708 9917 | |||||
| 5447 | publ ic const i nt Invalid SearchName = uncheck ed((int)0x 80060204); // -21470 89916 | |||||
| 5448 | publ ic const i nt EntityG roupNameOr EntityName sMustBePro vided = un checked((i nt)0x80060 205); // - 2147089915 | |||||
| 5449 | publ ic const i nt OnlyOne SearchPara meterMustB eProvided = unchecke d((int)0x8 0060206); // -214708 9914 | |||||
| 5450 | publ ic const i nt Externa lSearchAtt ributeLimi tExceeded = unchecke d((int)0x8 0060300); // -214708 9664 | |||||
| 5451 | publ ic const i nt CannotE nableEntit yForReleva nceSearch = unchecke d((int)0x8 0060302); // -214708 9662 | |||||
| 5452 | publ ic const i nt CannotD isableRele vanceSearc hManagedPr operty = u nchecked(( int)0x8006 0303); // -214708966 1 | |||||
| 5453 | publ ic const i nt Duplica teAttribut ePhysicalN ame = unch ecked((int )0x8006030 4); // -21 47089660 | |||||
| 5454 | publ ic const i nt Attribu teIsNotFac etable = u nchecked(( int)0x8006 0305); // -214708965 9 | |||||
| 5455 | publ ic const i nt Exceede dLimitForA llowedFace tableAttri butes = un checked((i nt)0x80060 306); // - 2147089658 | |||||
| 5456 | publ ic const i nt Managed BpfDeletio nInvalid = unchecked ((int)0x80 060383); / / -2147089 533 | |||||
| 5457 | publ ic const i nt BPFEnti tyAlreadyE xists = un checked((i nt)0x80060 384); // - 2147089532 | |||||
| 5458 | publ ic const i nt Missing ControlSte p = unchec ked((int)0 x80060385) ; // -2147 089531 | |||||
| 5459 | publ ic const i nt Invalid UniqueName = uncheck ed((int)0x 80060386); // -21470 89530 | |||||
| 5460 | publ ic const i nt Argumen tTypeMisma tch = unch ecked((int )0x8006038 7); // -21 47089529 | |||||
| 5461 | publ ic const i nt Argumen tDirection Mismatch = unchecked ((int)0x80 060388); / / -2147089 528 | |||||
| 5462 | publ ic const i nt Invalid BusinessPr ocess = un checked((i nt)0x80060 389); // - 2147089527 | |||||
| 5463 | publ ic const i nt Unsuppo rtedAction Type = unc hecked((in t)0x800603 90); // -2 147089520 | |||||
| 5464 | publ ic const i nt NotExis tBusinessP rocess = u nchecked(( int)0x8006 0391); // -214708951 9 | |||||
| 5465 | publ ic const i nt Invalid TaskFlow = unchecked ((int)0x80 060392); / / -2147089 518 | |||||
| 5466 | publ ic const i nt NotExis tArgumentI nAction = unchecked( (int)0x800 60393); // -21470895 17 | |||||
| 5467 | publ ic const i nt Unsuppo rtedArgume ntsMarkedR equired = unchecked( (int)0x800 60394); // -21470895 16 | |||||
| 5468 | publ ic const i nt EntityR eferenceAr gumentsNot Bound = un checked((i nt)0x80060 395); // - 2147089515 | |||||
| 5469 | publ ic const i nt NoDefau ltValueFor OptionSetA rgument = unchecked( (int)0x800 60396); // -21470895 14 | |||||
| 5470 | publ ic const i nt BpfInst anceAlread yExists = unchecked( (int)0x800 60397); // -21470895 13 | |||||
| 5471 | publ ic const i nt Process NameContai nsInvalidC haracters = unchecke d((int)0x8 0060398); // -214708 9512 | |||||
| 5472 | publ ic const i nt Process EmptyBranc hes = unch ecked((int )0x8006039 9); // -21 47089511 | |||||
| 5473 | publ ic const i nt Workflo wIdIsNull = unchecke d((int)0x8 0060400); // -214708 9408 | |||||
| 5474 | publ ic const i nt Primary EntityIsNu ll = unche cked((int) 0x80060401 ); // -214 7089407 | |||||
| 5475 | publ ic const i nt TypeNot SetToDefin ition = un checked((i nt)0x80060 402); // - 2147089406 | |||||
| 5476 | publ ic const i nt ScopeNo tSetToGlob al = unche cked((int) 0x80060403 ); // -214 7089405 | |||||
| 5477 | publ ic const i nt Categor yNotSetToB usinessPro cessFlow = unchecked ((int)0x80 060404); / / -2147089 404 | |||||
| 5478 | publ ic const i nt Busines sProcessFl owStepHasI nvalidPare nt = unche cked((int) 0x80060405 ); // -214 7089403 | |||||
| 5479 | publ ic const i nt NullOrE mptyAttrib uteInXaml = unchecke d((int)0x8 0060406); // -214708 9402 | |||||
| 5480 | publ ic const i nt Invalid GuidInXaml = uncheck ed((int)0x 80060407); // -21470 89401 | |||||
| 5481 | publ ic const i nt NoLabel sAssociate dWithStep = unchecke d((int)0x8 0060408); // -214708 9400 | |||||
| 5482 | publ ic const i nt StepSte pDoesNotHa veAnyContr olStepAsIt sChildren = unchecke d((int)0x8 0060409); // -214708 9399 | |||||
| 5483 | publ ic const i nt Invalid XmlForPara meters = u nchecked(( int)0x8006 0410); // -214708939 2 | |||||
| 5484 | publ ic const i nt Control IdIsNotUni que = unch ecked((int )0x8006041 1); // -21 47089391 | |||||
| 5485 | publ ic const i nt Invalid AttributeI nXaml = un checked((i nt)0x80060 412); // - 2147089390 | |||||
| 5486 | publ ic const i nt Attribu teCannotBe Updated = unchecked( (int)0x800 60413); // -21470893 89 | |||||
| 5487 | publ ic const i nt StepCou ntInXamlEx ceedsMaxAl lowed = un checked((i nt)0x80060 414); // - 2147089388 | |||||
| 5488 | publ ic const i nt Entitie sExceedMax Allowed = unchecked( (int)0x800 60415); // -21470893 87 | |||||
| 5489 | publ ic const i nt StepDoe sNotHaveAn yChildInXa ml = unche cked((int) 0x80060416 ); // -214 7089386 | |||||
| 5490 | publ ic const i nt Invalid Xaml = unc hecked((in t)0x800604 17); // -2 147089385 | |||||
| 5491 | publ ic const i nt Process NameIsNull OrEmpty = unchecked( (int)0x800 60418); // -21470893 84 | |||||
| 5492 | publ ic const i nt LabelId DoesNotMat chStepId = unchecked ((int)0x80 060419); / / -2147089 383 | |||||
| 5493 | publ ic const i nt Require dProcessSt epIsNull = unchecked ((int)0x80 06041a); / / -2147089 382 | |||||
| 5494 | publ ic const i nt EntityE xceedsMaxA ctiveBusin essProcess Flows = un checked((i nt)0x80060 420); // - 2147089376 | |||||
| 5495 | publ ic const i nt EntityI sNotBusine ssProcessF lowEnabled = uncheck ed((int)0x 80060421); // -21470 89375 | |||||
| 5496 | publ ic const i nt Calcula tedFieldsF eatureNotE nabled = u nchecked(( int)0x8006 0422); // -214708937 4 | |||||
| 5497 | publ ic const i nt Calcula tedFieldsI nvalidEnti ty = unche cked((int) 0x80060423 ); // -214 7089373 | |||||
| 5498 | publ ic const i nt Calcula tedFieldsI nvalidXaml = uncheck ed((int)0x 80060424); // -21470 89372 | |||||
| 5499 | publ ic const i nt Calcula tedFieldsN onCalculat edFieldAss ignment = unchecked( (int)0x800 60425); // -21470893 71 | |||||
| 5500 | publ ic const i nt Calcula tedFieldsT ypeMismatc h = unchec ked((int)0 x80060426) ; // -2147 089370 | |||||
| 5501 | publ ic const i nt Calcula tedFieldsI nvalidFunc tion = unc hecked((in t)0x800604 27); // -2 147089369 | |||||
| 5502 | publ ic const i nt Calcula tedFieldsI nvalidAttr ibute = un checked((i nt)0x80060 428); // - 2147089368 | |||||
| 5503 | publ ic const i nt TooMany Calculated FieldsInQu ery = unch ecked((int )0x8006042 9); // -21 47089367 | |||||
| 5504 | publ ic const i nt Calcula tedFieldsP rimitiveOv erflow = u nchecked(( int)0x8006 042a); // -214708936 6 | |||||
| 5505 | publ ic const i nt Calcula tedFieldsA ssignmentM ismatch = unchecked( (int)0x800 6042b); // -21470893 65 | |||||
| 5506 | publ ic const i nt Calcula tedFieldsF unctionMis match = un checked((i nt)0x80060 42c); // - 2147089364 | |||||
| 5507 | publ ic const i nt Calcula tedFieldsD ivideByZer o = unchec ked((int)0 x8006042d) ; // -2147 089363 | |||||
| 5508 | publ ic const i nt Calcula tedFieldsI nvalidAttr ibutes = u nchecked(( int)0x8006 042e); // -214708936 2 | |||||
| 5509 | publ ic const i nt Calcula tedFieldsI nvalidValu e = unchec ked((int)0 x8006042f) ; // -2147 089361 | |||||
| 5510 | publ ic const i nt Calcula tedFieldsI nvalidValu es = unche cked((int) 0x80060430 ); // -214 7089360 | |||||
| 5511 | publ ic const i nt Calcula tedFieldsC yclicRefer ence = unc hecked((in t)0x800604 31); // -2 147089359 | |||||
| 5512 | publ ic const i nt Calcula tedFieldsD epthExceed ed = unche cked((int) 0x80060432 ); // -214 7089358 | |||||
| 5513 | publ ic const i nt Calcula tedFieldsE ntitiesExc eeded = un checked((i nt)0x80060 433); // - 2147089357 | |||||
| 5514 | publ ic const i nt Invalid SourceType = uncheck ed((int)0x 80060437); // -21470 89353 | |||||
| 5515 | publ ic const i nt Calcula tedFieldsI nvalidSour ceTypeMask = uncheck ed((int)0x 80060438); // -21470 89352 | |||||
| 5516 | publ ic const i nt Attribu teFormulaD efinitionI sEmpty = u nchecked(( int)0x8006 0439); // -214708935 1 | |||||
| 5517 | publ ic const i nt Invalid WorkflowOr WorkflowDo esNotExist = uncheck ed((int)0x 8006040a); // -21470 89398 | |||||
| 5518 | publ ic const i nt Workflo wDoesNotEx ist = unch ecked((int )0x8006040 b); // -21 47089397 | |||||
| 5519 | publ ic const i nt ActionS tepInvalid Stageid = unchecked( (int)0x800 6040c); // -21470893 96 | |||||
| 5520 | publ ic const i nt ActionS tepInvalid Processid = unchecke d((int)0x8 006040d); // -214708 9395 | |||||
| 5521 | publ ic const i nt ActionS tepInvalid PipelineSt ageid = un checked((i nt)0x80060 40e); // - 2147089394 | |||||
| 5522 | publ ic const i nt Calcula tedFieldsD ateOnlyBeh aviorTypeM ismatch = unchecked( (int)0x800 6043a); // -21470893 50 | |||||
| 5523 | publ ic const i nt Calcula tedFieldsT imeInvBeha viorTypeMi smatch = u nchecked(( int)0x8006 043b); // -214708934 9 | |||||
| 5524 | publ ic const i nt Calcula tedFieldsU serLocBeha viorTypeMi smatch = u nchecked(( int)0x8006 043c); // -214708934 8 | |||||
| 5525 | publ ic const i nt RollupF ieldsTarge tRelations hipNull = unchecked( (int)0x800 60533); // -21470891 01 | |||||
| 5526 | publ ic const i nt RollupF ieldsTarge tRelations hipNotPart OfOneToNRe lationship = uncheck ed((int)0x 80060534); // -21470 89100 | |||||
| 5527 | publ ic const i nt RollupF ieldsSourc eEntityNot Hierarchic al = unche cked((int) 0x80060535 ); // -214 7089099 | |||||
| 5528 | publ ic const i nt RollupF ieldsAggre gateNotDef ined = unc hecked((in t)0x800605 36); // -2 147089098 | |||||
| 5529 | publ ic const i nt RollupF ieldsAggre gateFieldN otPartOfEn tity = unc hecked((in t)0x800605 37); // -2 147089097 | |||||
| 5530 | publ ic const i nt RollupF ieldsSourc eFilterCon ditionInva lid = unch ecked((int )0x8006053 8); // -21 47089096 | |||||
| 5531 | publ ic const i nt RollupF ieldsTarge tFilterCon ditionInva lid = unch ecked((int )0x8006053 9); // -21 47089095 | |||||
| 5532 | publ ic const i nt RollupF ieldsAggre gateFuncti onTypeMism atch = unc hecked((in t)0x800605 3a); // -2 147089094 | |||||
| 5533 | publ ic const i nt RollupF ieldsGener ic = unche cked((int) 0x8006053b ); // -214 7089093 | |||||
| 5534 | publ ic const i nt RollupF ieldsAggre gateOnRoll upFieldOrC omplexCalc FieldNotAl lowed = un checked((i nt)0x80060 53c); // - 2147089092 | |||||
| 5535 | publ ic const i nt RollupF ieldsAggre gateFieldD ataTypeNot AllowedSim ilarRollup FieldDataT ype = unch ecked((int )0x8006053 d); // -21 47089091 | |||||
| 5536 | publ ic const i nt RollupF ieldsDataT ypeNotVali d = unchec ked((int)0 x8006053e) ; // -2147 089090 | |||||
| 5537 | publ ic const i nt RollupF ieldsAggre gateFieldN otBelongTo SourceEnti ty = unche cked((int) 0x8006053f ); // -214 7089089 | |||||
| 5538 | publ ic const i nt RollupF ieldsAggre gateFieldN otBelongTo RelatedEnt ity = unch ecked((int )0x8006054 0); // -21 47089088 | |||||
| 5539 | publ ic const i nt RollupF ieldDepend entFieldCa nnotDelete d = unchec ked((int)0 x80060541) ; // -2147 089087 | |||||
| 5540 | publ ic const i nt Exceede dRollupFie ldsPerOrgQ uota = unc hecked((in t)0x800605 42); // -2 147089086 | |||||
| 5541 | publ ic const i nt Exceede dRollupFie ldsPerEnti tyQuota = unchecked( (int)0x800 60543); // -21470890 85 | |||||
| 5542 | publ ic const i nt RollupF ieldAndAgg regateFiel dDataTypeF ormatMisma tch = unch ecked((int )0x8006054 4); // -21 47089084 | |||||
| 5543 | publ ic const i nt RollupF ieldAggreg ateFunctio nNotAllowe dForRollup FieldDataT ype = unch ecked((int )0x8006054 5); // -21 47089083 | |||||
| 5544 | publ ic const i nt RollupF ieldAggreg ateFunctio nNotAllowe d = unchec ked((int)0 x80060546) ; // -2147 089082 | |||||
| 5545 | publ ic const i nt Hierarc hyCalculat eLimitReac hed = unch ecked((int )0x8006054 7); // -21 47089081 | |||||
| 5546 | publ ic const i nt RollupF ieldSource FilterFiel dNotAllowe d = unchec ked((int)0 x80060548) ; // -2147 089080 | |||||
| 5547 | publ ic const i nt RollupF ieldTarget FilterFiel dNotAllowe d = unchec ked((int)0 x80060549) ; // -2147 089079 | |||||
| 5548 | publ ic const i nt Calcula tedFieldUs edInRollup FieldCanno tBeComplex = uncheck ed((int)0x 80060550); // -21470 89072 | |||||
| 5549 | publ ic const i nt RollupF ieldsTarge tSameAsSou rceEntity = unchecke d((int)0x8 0060551); // -214708 9071 | |||||
| 5550 | publ ic const i nt RollupF ieldsTarge tEntityNot Valid = un checked((i nt)0x80060 552); // - 2147089070 | |||||
| 5551 | publ ic const i nt RollupF ieldDefini tionNotVal id = unche cked((int) 0x80060553 ); // -214 7089069 | |||||
| 5552 | publ ic const i nt Recalcu lateNotSup portedOnNo nRollupFie ld = unche cked((int) 0x80060554 ); // -214 7089068 | |||||
| 5553 | publ ic const i nt CannotM odifyRollu pDependent Field = un checked((i nt)0x80060 555); // - 2147089067 | |||||
| 5554 | publ ic const i nt RollupD ependentFi eldNameAlr eadyExists = uncheck ed((int)0x 80060556); // -21470 89066 | |||||
| 5555 | publ ic const i nt RollupO rCalcNotAl lowedInWor kflowWaitC ondition = unchecked ((int)0x80 060557); / / -2147089 065 | |||||
| 5556 | publ ic const i nt Calcula teNowOverf lowError = unchecked ((int)0x80 060558); / / -2147089 064 | |||||
| 5557 | publ ic const i nt Attribu teCannotBe UsedInAggr egate = un checked((i nt)0x80060 559); // - 2147089063 | |||||
| 5558 | publ ic const i nt RollupF ormulaFiel dInvalid = unchecked ((int)0x80 060560); / / -2147089 056 | |||||
| 5559 | publ ic const i nt RollupC alculation LimitReach ed = unche cked((int) 0x80060561 ); // -214 7089055 | |||||
| 5560 | publ ic const i nt RollupT argetLinke dEntityOnl ySupported ForActivit yEntities = unchecke d((int)0x8 0060562); // -214708 9054 | |||||
| 5561 | publ ic const i nt RollupT argetLinke dEntityCan OnlyUsedFo rActivityP artyEntiti es = unche cked((int) 0x80060563 ); // -214 7089053 | |||||
| 5562 | publ ic const i nt RollupI nvalidAttr ibuteForFi lterCondit ion = unch ecked((int )0x8006056 4); // -21 47089052 | |||||
| 5563 | publ ic const i nt RollupF ieldsV2Fea tureNotEna bled = unc hecked((in t)0x800605 65); // -2 147089051 | |||||
| 5564 | publ ic const i nt RollupT argetLinke dRelations hipNotVali d = unchec ked((int)0 x80060566) ; // -2147 089050 | |||||
| 5565 | publ ic const i nt Conditi onBranchDo esHaveSetN extStageOn lyChildInX aml = unch ecked((int )0x8006043 4); // -21 47089356 | |||||
| 5566 | publ ic const i nt Conditi onStepCoun tInXamlExc eedsMaxAll owed = unc hecked((in t)0x800604 35); // -2 147089355 | |||||
| 5567 | publ ic const i nt Conditi onAttribut esNotAnSub setOfStepA ttributes = unchecke d((int)0x8 0060436); // -214708 9354 | |||||
| 5568 | publ ic const i nt CannotD eleteUserM ailbox = u nchecked(( int)0x8005 e200); // -214709811 2 | |||||
| 5569 | publ ic const i nt EmailSe rverProfil eSslRequir edForOnlin e = unchec ked((int)0 x8005e201) ; // -2147 098111 | |||||
| 5570 | publ ic const i nt EmailSe rverProfil eInvalidCr edentialRe trievalFor Online = u nchecked(( int)0x8005 e202); // -214709811 0 | |||||
| 5571 | publ ic const i nt EmailSe rverProfil eInvalidCr edentialRe trievalFor Exchange = unchecked ((int)0x80 05e203); / / -2147098 109 | |||||
| 5572 | publ ic const i nt EmailSe rverProfil eAutoDisco verNotAllo wed = unch ecked((int )0x8005e20 4); // -21 47098108 | |||||
| 5573 | publ ic const i nt EmailSe rverProfil eLocationN otRequired = uncheck ed((int)0x 8005e205); // -21470 98107 | |||||
| 5574 | publ ic const i nt Forward MailboxCan notAssocia teWithUser = uncheck ed((int)0x 8005e207); // -21470 98105 | |||||
| 5575 | publ ic const i nt HybridS SSExchange OnlineS2SC ertExpired = uncheck ed((int)0x 80131509); // -21462 33079 | |||||
| 5576 | publ ic const i nt HybridS SSExchange OnlineS2SC ertActsExp ired = unc hecked((in t)0x801315 00); // -2 146233088 | |||||
| 5577 | publ ic const i nt Mailbox CannotModi fyEmailAdd ress = unc hecked((in t)0x8005e2 08); // -2 147098104 | |||||
| 5578 | publ ic const i nt Mailbox Credential NotSpecifi ed = unche cked((int) 0x8005e209 ); // -214 7098103 | |||||
| 5579 | publ ic const i nt EmailSe rverProfil eInvalidSe rverLocati on = unche cked((int) 0x8005e20a ); // -214 7098102 | |||||
| 5580 | publ ic const i nt CannotA cceptEmail = uncheck ed((int)0x 8005e20b); // -21470 98101 | |||||
| 5581 | publ ic const i nt QueueMa ilboxUnexp ectedDeliv eryMethod = unchecke d((int)0x8 005e210); // -214709 8096 | |||||
| 5582 | publ ic const i nt Forward MailboxEma ilAddressR equired = unchecked( (int)0x800 5e211); // -21470980 95 | |||||
| 5583 | publ ic const i nt Forward MailboxUne xpectedInc omingDeliv eryMethod = unchecke d((int)0x8 005e212); // -214709 8094 | |||||
| 5584 | publ ic const i nt Forward MailboxUne xpectedOut goingDeliv eryMethod = unchecke d((int)0x8 005e213); // -214709 8093 | |||||
| 5585 | publ ic const i nt Invalid Credential TypeForNon ExchangeIn comingConn ection = u nchecked(( int)0x8005 e214); // -214709809 2 | |||||
| 5586 | publ ic const i nt Pop3Une xpectedExc eption = u nchecked(( int)0x8005 e215); // -214709809 1 | |||||
| 5587 | publ ic const i nt OpenMai lboxExcept ion = unch ecked((int )0x8005e21 6); // -21 47098090 | |||||
| 5588 | publ ic const i nt Invalid Mailbox = unchecked( (int)0x800 5e217); // -21470980 89 | |||||
| 5589 | publ ic const i nt Invalid EmailServe rLocation = unchecke d((int)0x8 005e218); // -214709 8088 | |||||
| 5590 | publ ic const i nt Inactiv eMailbox = unchecked ((int)0x80 05e219); / / -2147098 087 | |||||
| 5591 | publ ic const i nt Unappro vedMailbox = uncheck ed((int)0x 8005e220); // -21470 98080 | |||||
| 5592 | publ ic const i nt Invalid EmailAddre ssInMailbo x = unchec ked((int)0 x8005e221) ; // -2147 098079 | |||||
| 5593 | publ ic const i nt EmailSe rverProfil eNotAssoci ated = unc hecked((in t)0x8005e2 22); // -2 147098078 | |||||
| 5594 | publ ic const i nt Incomin gDeliveryI sForwardMa ilbox = un checked((i nt)0x8005e 223); // - 2147098077 | |||||
| 5595 | publ ic const i nt Invalid IncomingDe liveryExpe ctingEmail Connector = unchecke d((int)0x8 005e224); // -214709 8076 | |||||
| 5596 | publ ic const i nt Outgoin gNotAllowe dForForwar dMailbox = unchecked ((int)0x80 05e225); / / -2147098 075 | |||||
| 5597 | publ ic const i nt Invalid OutgoingDe liveryExpe ctingEmail Connector = unchecke d((int)0x8 005e226); // -214709 8074 | |||||
| 5598 | publ ic const i nt Inacces sibleSmtpS erver = un checked((i nt)0x8005e 227); // - 2147098073 | |||||
| 5599 | publ ic const i nt Inactiv eEmailServ erProfile = unchecke d((int)0x8 005e228); // -214709 8072 | |||||
| 5600 | publ ic const i nt CannotU seUserCred entials = unchecked( (int)0x800 5e229); // -21470980 71 | |||||
| 5601 | publ ic const i nt CannotA ctivateMai lboxForDis abledUserO rQueue = u nchecked(( int)0x8005 e230); // -214709806 4 | |||||
| 5602 | publ ic const i nt ZeroEma ilReceived = uncheck ed((int)0x 8005e231); // -21470 98063 | |||||
| 5603 | publ ic const i nt NoTestE mailAccess Privilege = unchecke d((int)0x8 005e232); // -214709 8062 | |||||
| 5604 | publ ic const i nt Mailbox CannotDele teEmails = unchecked ((int)0x80 05e233); / / -2147098 061 | |||||
| 5605 | publ ic const i nt EmailSe rverProfil eSslRequir edForOnPre mise = unc hecked((in t)0x8005e2 34); // -2 147098060 | |||||
| 5606 | publ ic const i nt EmailSe rverProfil eDelegateA ccessNotAl lowed = un checked((i nt)0x8005e 235); // - 2147098059 | |||||
| 5607 | publ ic const i nt EmailSe rverProfil eImpersona tionNotAll owed = unc hecked((in t)0x8005e2 36); // -2 147098058 | |||||
| 5608 | publ ic const i nt EmailMe ssageSizeE xceeded = unchecked( (int)0x800 5e237); // -21470980 57 | |||||
| 5609 | publ ic const i nt Outgoin gSettingsU pdateNotAl lowed = un checked((i nt)0x8005e 238); // - 2147098056 | |||||
| 5610 | publ ic const i nt Certifi cateNotFou nd = unche cked((int) 0x8005e239 ); // -214 7098055 | |||||
| 5611 | publ ic const i nt Invalid Certificat e = unchec ked((int)0 x8005e23a) ; // -2147 098054 | |||||
| 5612 | publ ic const i nt EmailSe rverProfil eInvalidAu thenticati onProtocol = uncheck ed((int)0x 8005e23b); // -21470 98053 | |||||
| 5613 | publ ic const i nt EmailSe rverProfil eADBasedAu thenticati onProtocol NotAllowed = uncheck ed((int)0x 8005e23c); // -21470 98052 | |||||
| 5614 | publ ic const i nt EmailSe rverProfil eBasicAuth entication ProtocolNo tAllowed = unchecked ((int)0x80 05e23d); / / -2147098 051 | |||||
| 5615 | publ ic const i nt Incomin gServerLoc ationAndSs lSetToNo = unchecked ((int)0x80 05e23e); / / -2147098 050 | |||||
| 5616 | publ ic const i nt Outgoin gServerLoc ationAndSs lSetToNo = unchecked ((int)0x80 05e23f); / / -2147098 049 | |||||
| 5617 | publ ic const i nt Incomin gServerLoc ationAndSs lSetToYes = unchecke d((int)0x8 005e240); // -214709 8048 | |||||
| 5618 | publ ic const i nt Outgoin gServerLoc ationAndSs lSetToYes = unchecke d((int)0x8 005e241); // -214709 8047 | |||||
| 5619 | publ ic const i nt Unsuppo rtedEmailS erver = un checked((i nt)0x8005e 242); // - 2147098046 | |||||
| 5620 | publ ic const i nt S2SAcce ssTokenCan notBeAcqui red = unch ecked((int )0x8005e24 3); // -21 47098045 | |||||
| 5621 | publ ic const i nt Invalid ValueProce ssEmailAft er = unche cked((int) 0x8005e244 ); // -214 7098044 | |||||
| 5622 | publ ic const i nt Invalid S2SAuthent ication = unchecked( (int)0x800 5e245); // -21470980 43 | |||||
| 5623 | publ ic const i nt RouterI sDisabled = unchecke d((int)0x8 005e246); // -214709 8042 | |||||
| 5624 | publ ic const i nt Mailbox Unsupporte dEmailServ erType = u nchecked(( int)0x8005 e247); // -214709804 1 | |||||
| 5625 | publ ic const i nt TestEma ilConfigur ationSched uledInProg ress = unc hecked((in t)0x8005e2 48); // -2 147098040 | |||||
| 5626 | publ ic const i nt Service AccountMai lboxesCoun tIsZero = unchecked( (int)0x800 5e249); // -21470980 39 | |||||
| 5627 | publ ic const i nt Service AccountMai lboxesCoun tIsGreater ThanOne = unchecked( (int)0x800 5e24a); // -21470980 38 | |||||
| 5628 | publ ic const i nt TenantI DIsEmpty = unchecked ((int)0x80 05e25a); / / -2147098 022 | |||||
| 5629 | publ ic const i nt Invalid TenantIDVa lue = unch ecked((int )0x8005e25 b); // -21 47098021 | |||||
| 5630 | publ ic const i nt TenantI DValueChan ged = unch ecked((int )0x8005e25 c); // -21 47098020 | |||||
| 5631 | publ ic const i nt Specify IncomingSe rverLocati on = unche cked((int) 0x8005e24b ); // -214 7098037 | |||||
| 5632 | publ ic const i nt Specify OutgoingSe rverLocati on = unche cked((int) 0x8005e24c ); // -214 7098036 | |||||
| 5633 | publ ic const i nt UserNam eRequiredF orImperson ation = un checked((i nt)0x8005e 24d); // - 2147098035 | |||||
| 5634 | publ ic const i nt Passwor dRequiredF orImperson ation = un checked((i nt)0x8005e 24e); // - 2147098034 | |||||
| 5635 | publ ic const i nt ServerL ocationIsE mpty = unc hecked((in t)0x8005e2 50); // -2 147098032 | |||||
| 5636 | publ ic const i nt Specify IncomingUs erName = u nchecked(( int)0x8005 e251); // -214709803 1 | |||||
| 5637 | publ ic const i nt Specify OutgoingUs erName = u nchecked(( int)0x8005 e252); // -214709803 0 | |||||
| 5638 | publ ic const i nt Specify IncomingPa ssword = u nchecked(( int)0x8005 e253); // -214709802 9 | |||||
| 5639 | publ ic const i nt Specify OutgoingPa ssword = u nchecked(( int)0x8005 e254); // -214709802 8 | |||||
| 5640 | publ ic const i nt ServerL ocationAnd SSLSetToYe s = unchec ked((int)0 x8005e255) ; // -2147 098027 | |||||
| 5641 | publ ic const i nt Specify InComingPo rt = unche cked((int) 0x8005e24f ); // -214 7098033 | |||||
| 5642 | publ ic const i nt Specify OutgoingPo rt = unche cked((int) 0x8005e256 ); // -214 7098026 | |||||
| 5643 | publ ic const i nt TraceMe ssageConst ructionErr or = unche cked((int) 0x8004f900 ); // -214 7157760 | |||||
| 5644 | publ ic const i nt TooMany BytesInInp utStream = unchecked ((int)0x80 04f901); / / -2147157 759 | |||||
| 5645 | publ ic const i nt EmailRo uterFileTo oLargeToPr ocess = un checked((i nt)0x8005f 031); // - 2147094479 | |||||
| 5646 | publ ic const i nt ErrorsI nEmailRout erMigratio nFiles = u nchecked(( int)0x8005 f032); // -214709447 8 | |||||
| 5647 | publ ic const i nt Invalid MigrationF ileContent = uncheck ed((int)0x 8005f033); // -21470 94477 | |||||
| 5648 | publ ic const i nt ErrorMi grationPro cessExcess OnServer = unchecked ((int)0x80 05f034); / / -2147094 476 | |||||
| 5649 | publ ic const i nt EntityN otEnabledF orThisDevi ce = unche cked((int) 0x8005f200 ); // -214 7094016 | |||||
| 5650 | publ ic const i nt MobileC lientLangu ageNotSupp orted = un checked((i nt)0x8005f 201); // - 2147094015 | |||||
| 5651 | publ ic const i nt MobileC lientVersi onNotSuppo rted = unc hecked((in t)0x8005f2 02); // -2 147094014 | |||||
| 5652 | publ ic const i nt RoleNot EnabledFor TabletApp = unchecke d((int)0x8 005f203); // -214709 4013 | |||||
| 5653 | publ ic const i nt NoMinim umRequired Privileges ForTabletA pp = unche cked((int) 0x8005f20f ); // -214 7094001 | |||||
| 5654 | publ ic const i nt FilePic kerErrorAt tachmentTy peBlocked = unchecke d((int)0x8 005f204); // -214709 4012 | |||||
| 5655 | publ ic const i nt FilePic kerErrorFi leSizeBrea ched = unc hecked((in t)0x8005f2 05); // -2 147094011 | |||||
| 5656 | publ ic const i nt FilePic kerErrorFi leSizeCann otBeZero = unchecked ((int)0x80 05f206); / / -2147094 010 | |||||
| 5657 | publ ic const i nt FilePic kerErrorUn ableToOpen File = unc hecked((in t)0x8005f2 07); // -2 147094009 | |||||
| 5658 | publ ic const i nt GetPhot oFromGalle ryFailed = unchecked ((int)0x80 05f208); / / -2147094 008 | |||||
| 5659 | publ ic const i nt SaveDat aFileError OutOfSpace = uncheck ed((int)0x 8005f209); // -21470 94007 | |||||
| 5660 | publ ic const i nt OpenDoc umentError CodeUnable ToFindAnAc tivity = u nchecked(( int)0x8005 f20a); // -214709400 6 | |||||
| 5661 | publ ic const i nt OpenDoc umentError CodeUnable ToFindTheD ataId = un checked((i nt)0x8005f 20b); // - 2147094005 | |||||
| 5662 | publ ic const i nt OpenDoc umentError CodeGeneri c = unchec ked((int)0 x8005f20c) ; // -2147 094004 | |||||
| 5663 | publ ic const i nt FilePic kerErrorAp plicationI nSnapView = unchecke d((int)0x8 005f20d); // -214709 4003 | |||||
| 5664 | publ ic const i nt MobileC lientNotCo nfiguredFo rCurrentUs er = unche cked((int) 0x8005f20e ); // -214 7094002 | |||||
| 5665 | publ ic const i nt DataSou rceInitial izeFailedE rrorCode = unchecked ((int)0x80 05f210); / / -2147094 000 | |||||
| 5666 | publ ic const i nt DataSou rceOffline ErrorCode = unchecke d((int)0x8 005f211); // -214709 3999 | |||||
| 5667 | publ ic const i nt PingFai lureErrorC ode = unch ecked((int )0x8005f21 2); // -21 47093998 | |||||
| 5668 | publ ic const i nt Retriev eRecordOff lineErrorC ode = unch ecked((int )0x8005f21 3); // -21 47093997 | |||||
| 5669 | publ ic const i nt CantSav eRecordInO ffline = u nchecked(( int)0x8005 f214); // -214709399 6 | |||||
| 5670 | publ ic const i nt NotMobi leEnabled = unchecke d((int)0x8 005f215); // -214709 3995 | |||||
| 5671 | publ ic const i nt Invalid PreviewMod eOperation = uncheck ed((int)0x 8005f219); // -21470 93991 | |||||
| 5672 | publ ic const i nt PageNot Found = un checked((i nt)0x8005f 21a); // - 2147093990 | |||||
| 5673 | publ ic const i nt ViewNot AvailableF orMobileOf fline = un checked((i nt)0x8005f 21b); // - 2147093989 | |||||
| 5674 | publ ic const i nt NotMobi leWriteEna bled = unc hecked((in t)0x8005f2 1c); // -2 147093988 | |||||
| 5675 | publ ic const i nt DataSto reKeyNotFo undErrorCo de = unche cked((int) 0x8005f21d ); // -214 7093987 | |||||
| 5676 | publ ic const i nt Related EntityAlre adyExistsI nProfile = unchecked ((int)0x80 05f21e); / / -2147093 986 | |||||
| 5677 | publ ic const i nt Related EntityDoes NotExistsI nProfile = unchecked ((int)0x80 05f21f); / / -2147093 985 | |||||
| 5678 | publ ic const i nt Related EntityGene ricError = unchecked ((int)0x80 05f220); / / -2147093 984 | |||||
| 5679 | publ ic const i nt Relatio shipAlread yExists = unchecked( (int)0x800 5f221); // -21470939 83 | |||||
| 5680 | publ ic const i nt Invalid DataDownlo adFilterBu sinessUnit = uncheck ed((int)0x 8005f222); // -21470 93982 | |||||
| 5681 | publ ic const i nt Invalid DataDownlo adFilterOr ganization = uncheck ed((int)0x 8005f223); // -21470 93981 | |||||
| 5682 | publ ic const i nt CantUpd ateOnlineR ecord = un checked((i nt)0x8005f 224); // - 2147093980 | |||||
| 5683 | publ ic const i nt Applica tionMetada taUserVali dationUnkn ownError = unchecked ((int)0x80 05f225); / / -2147093 979 | |||||
| 5684 | publ ic const i nt Applica tionMetada taPrepareC ustomizati onsUnknown Error = un checked((i nt)0x8005f 226); // - 2147093978 | |||||
| 5685 | publ ic const i nt Applica tionMetada taRetrieve UserContex tUnknownEr ror = unch ecked((int )0x8005f22 7); // -21 47093977 | |||||
| 5686 | publ ic const i nt Applica tionMetada taSyncUnkn ownError = unchecked ((int)0x80 05f228); / / -2147093 976 | |||||
| 5687 | publ ic const i nt Applica tionMetada taRetrieve UnknownErr or = unche cked((int) 0x8005f229 ); // -214 7093975 | |||||
| 5688 | publ ic const i nt Applica tionMetada taGetPrevi ewMetadata UnknownErr or = unche cked((int) 0x8005f230 ); // -214 7093968 | |||||
| 5689 | publ ic const i nt Applica tionMetada taConverte rFailed = unchecked( (int)0x800 5f231); // -21470939 67 | |||||
| 5690 | publ ic const i nt Applica tionMetada tadaNullDa ta = unche cked((int) 0x8005f232 ); // -214 7093966 | |||||
| 5691 | publ ic const i nt Applica tionMetada tadaCreate Failed = u nchecked(( int)0x8005 f233); // -214709396 5 | |||||
| 5692 | publ ic const i nt Applica tionMetada tadaUpdate Failed = u nchecked(( int)0x8005 f234); // -214709396 4 | |||||
| 5693 | publ ic const i nt Applica tionMetada taPrepareC ustomizati onsRetriev erError = unchecked( (int)0x800 5f235); // -21470939 63 | |||||
| 5694 | publ ic const i nt Applica tionMetada taPrepareC ustomizati onsTimeout = uncheck ed((int)0x 8005f236); // -21470 93962 | |||||
| 5695 | publ ic const i nt Applica tionMetada taPrepareC ustomizati onsAppLock = uncheck ed((int)0x 8005f237); // -21470 93961 | |||||
| 5696 | publ ic const i nt EntityM etadataSyn cFailed = unchecked( (int)0x800 5f238); // -21470939 60 | |||||
| 5697 | publ ic const i nt EntityM etadataSyn cFailedWit hContinue = unchecke d((int)0x8 005f239); // -214709 3959 | |||||
| 5698 | publ ic const i nt Applica tionMetada taSyncFail ed = unche cked((int) 0x8005f240 ); // -214 7093952 | |||||
| 5699 | publ ic const i nt Applica tionMetada taFailedWi thContinue = uncheck ed((int)0x 8005f241); // -21470 93951 | |||||
| 5700 | publ ic const i nt Applica tionMetada taSyncTime out = unch ecked((int )0x8005f24 2); // -21 47093950 | |||||
| 5701 | publ ic const i nt Applica tionMetada taSyncTime outWithCon tinue = un checked((i nt)0x8005f 243); // - 2147093949 | |||||
| 5702 | publ ic const i nt Applica tionMetada taSyncAppL ock = unch ecked((int )0x8005f24 4); // -21 47093948 | |||||
| 5703 | publ ic const i nt Applica tionMetada taSyncAppL ockWithCon tinue = un checked((i nt)0x8005f 245); // - 2147093947 | |||||
| 5704 | publ ic const i nt Generic MetadataSy ncFailed = unchecked ((int)0x80 05f246); / / -2147093 946 | |||||
| 5705 | publ ic const i nt Generic MetadataSy ncFailedWi thContinue = uncheck ed((int)0x 8005f247); // -21470 93945 | |||||
| 5706 | publ ic const i nt CannotD eleteOnlin eRecord = unchecked( (int)0x800 5f248); // -21470939 44 | |||||
| 5707 | publ ic const i nt Entitle mentInvali dStartEndD ate = unch ecked((int )0x8006060 0); // -21 47088896 | |||||
| 5708 | publ ic const i nt Entitle mentInvali dState = u nchecked(( int)0x8006 0601); // -214708889 5 | |||||
| 5709 | publ ic const i nt Invalid ChannelOri gin = unch ecked((int )0x8006060 2); // -21 47088894 | |||||
| 5710 | publ ic const i nt Entitle mentChanne lInvalidSt ate = unch ecked((int )0x8006060 3); // -21 47088893 | |||||
| 5711 | publ ic const i nt Entitle mentInvali dTerms = u nchecked(( int)0x8006 0604); // -214708889 2 | |||||
| 5712 | publ ic const i nt Invalid Entitlemen tChannelTe rms = unch ecked((int )0x8006060 5); // -21 47088891 | |||||
| 5713 | publ ic const i nt Invalid Entitlemen tActivate = unchecke d((int)0x8 0060606); // -214708 8890 | |||||
| 5714 | publ ic const i nt Invalid Entitlemen tCancel = unchecked( (int)0x800 60607); // -21470888 89 | |||||
| 5715 | publ ic const i nt Invalid Entitlemen tDeactivat e = unchec ked((int)0 x80060608) ; // -2147 088888 | |||||
| 5716 | publ ic const i nt Invalid Entitlemen tAssociati onToCase = unchecked ((int)0x80 060609); / / -2147088 887 | |||||
| 5717 | publ ic const i nt Invalid Entitlemen tRenew = u nchecked(( int)0x8006 0610); // -214708888 0 | |||||
| 5718 | publ ic const i nt Invalid Entitlemen tStateAsso ciateToCas e = unchec ked((int)0 x80060611) ; // -2147 088879 | |||||
| 5719 | publ ic const i nt Entitle mentChanne lWithoutEn titlementI d = unchec ked((int)0 x80060612) ; // -2147 088878 | |||||
| 5720 | publ ic const i nt Entitle mentEditDr aft = unch ecked((int )0x8006061 3); // -21 47088877 | |||||
| 5721 | publ ic const i nt Entitle mentAlread yInDraftSt ate = unch ecked((int )0x8006061 4); // -21 47088876 | |||||
| 5722 | publ ic const i nt Entitle mentAlread yInactiveS tate = unc hecked((in t)0x800606 15); // -2 147088875 | |||||
| 5723 | publ ic const i nt Entitle mentNotAct iveInAssoc iationToCa se = unche cked((int) 0x80060616 ); // -214 7088874 | |||||
| 5724 | publ ic const i nt Expired Entitlemen tActivate = unchecke d((int)0x8 0060617); // -214708 8873 | |||||
| 5725 | publ ic const i nt Invalid Entitlemen tExpire = unchecked( (int)0x800 60618); // -21470888 72 | |||||
| 5726 | publ ic const i nt Invalid DeleteProc ess = unch ecked((int )0x8006069 1); // -21 47088751 | |||||
| 5727 | publ ic const i nt Entitle mentTotalT erms = unc hecked((in t)0x800606 19); // -2 147088871 | |||||
| 5728 | publ ic const i nt Entitle mentTempla teTotalTer ms = unche cked((int) 0x80060620 ); // -214 7088864 | |||||
| 5729 | publ ic const i nt SocialC areDisable dError = u nchecked(( int)0x8006 0621); // -214708886 3 | |||||
| 5730 | publ ic const i nt Entitle mentBlankT erms = unc hecked((in t)0x800606 22); // -2 147088862 | |||||
| 5731 | publ ic const i nt Invalid Product = unchecked( (int)0x800 60623); // -21470888 61 | |||||
| 5732 | publ ic const i nt Entitle mentInvali dRemaining Terms = un checked((i nt)0x80060 624); // - 2147088860 | |||||
| 5733 | publ ic const i nt NoIncid entMergeHa vingSamePa rent = unc hecked((in t)0x8003f4 50); // -2 147224496 | |||||
| 5734 | publ ic const i nt CancelA ctiveChild CaseFirst = unchecke d((int)0x8 003f451); // -214722 4495 | |||||
| 5735 | publ ic const i nt CloseAc tiveChildC aseFirst = unchecked ((int)0x80 03f452); / / -2147224 494 | |||||
| 5736 | publ ic const i nt Multile velParentC hildRelati onshipNotA llowed = u nchecked(( int)0x8003 f453); // -214722449 3 | |||||
| 5737 | publ ic const i nt MaxChil dCasesLimi tExceeded = unchecke d((int)0x8 003f454); // -214722 4492 | |||||
| 5738 | publ ic const i nt ParentC aseNotAllo wedAsAChil dCase = un checked((i nt)0x8003f 455); // - 2147224491 | |||||
| 5739 | publ ic const i nt CannotC loseCase = unchecked ((int)0x80 04f456); / / -2147158 954 | |||||
| 5740 | publ ic const i nt CannotM ergeCase = unchecked ((int)0x80 04f457); / / -2147158 953 | |||||
| 5741 | publ ic const i nt CaseSta teChangeIn valid = un checked((i nt)0x80060 74); // 13 4242420 | |||||
| 5742 | publ ic const i nt CannotD eleteActiv eRule = un checked((i nt)0x8004f 850); // - 2147157936 | |||||
| 5743 | publ ic const i nt CannotE ditActiveR ule = unch ecked((int )0x8004f85 1); // -21 47157935 | |||||
| 5744 | publ ic const i nt RuleAlr eadyInacti veState = unchecked( (int)0x800 4f852); // -21471579 34 | |||||
| 5745 | publ ic const i nt RuleAlr eadyInDraf tState = u nchecked(( int)0x8004 f853); // -214715793 3 | |||||
| 5746 | publ ic const i nt RuleAlr eadyExists WithSameQu eueAndChan nel = unch ecked((int )0x8004f88 4); // -21 47157884 | |||||
| 5747 | publ ic const i nt Routing RuleActiva teDeactiva teByNonOwn er = unche cked((int) 0x8004f885 ); // -214 7157883 | |||||
| 5748 | publ ic const i nt Convert RuleActiva teDeactiva teByNonOwn er = unche cked((int) 0x8004f886 ); // -214 7157882 | |||||
| 5749 | publ ic const i nt Convert RuleRespon seTemplate Validity = unchecked ((int)0x80 060730); / / -2147088 592 | |||||
| 5750 | publ ic const i nt Convert RuleAlread yActive = unchecked( (int)0x800 60731); // -21470885 91 | |||||
| 5751 | publ ic const i nt Convert RuleAlread yInDraftSt ate = unc hecked((in t)0x800607 32); // -2 147088590 | |||||
| 5752 | publ ic const i nt Convert RulePermis sionToPerf ormAction = unchecke d((int)0x8 0060733); // -214708 8589 | |||||
| 5753 | publ ic const i nt CannotD eleteQueue WithQueueI tems = unc hecked((in t)0x806311 17); // -2 140991209 | |||||
| 5754 | publ ic const i nt CannotD eleteQueue WithRouteR ules = unc hecked((in t)0x807311 18); // -2 139942632 | |||||
| 5755 | publ ic const i nt CannotR outePrivat eQueueItem Nonmember = unchecke d((int)0x8 0631121); // -214099 1199 | |||||
| 5756 | publ ic const i nt CannotR outeToNonQ ueueMember = uncheck ed((int)0x 80731119); // -21399 42631 | |||||
| 5757 | publ ic const i nt StateTr ansitionAc tiveToReso lve = unch ecked((int )0x8004f85 4); // -21 47157932 | |||||
| 5758 | publ ic const i nt StateTr ansitionAc tiveToCanc eled = unc hecked((in t)0x8004f8 55); // -2 147157931 | |||||
| 5759 | publ ic const i nt StateTr ansitionRe solvedOrCa nceledToAc tive = unc hecked((in t)0x8004f8 56); // -2 147157930 | |||||
| 5760 | publ ic const i nt StateTr ansitionAc tivateNewS tatus = un checked((i nt)0x8004f 857); // - 2147157929 | |||||
| 5761 | publ ic const i nt StateTr ansitionDe activateNe wStatus = unchecked( (int)0x800 4f858); // -21471579 28 | |||||
| 5762 | publ ic const i nt CannotD eleteRelat edSla = un checked((i nt)0x8004f 859); // - 2147157927 | |||||
| 5763 | publ ic const i nt CannotE ditActiveS la = unche cked((int) 0x8004f860 ); // -214 7157920 | |||||
| 5764 | publ ic const i nt SlaAlre adyInactiv eState = u nchecked(( int)0x8004 f861); // -214715791 9 | |||||
| 5765 | publ ic const i nt SlaAlre adyInDraft State = u nchecked(( int)0x8004 f862); // -214715791 8 | |||||
| 5766 | publ ic const i nt CannotC hangeState = uncheck ed((int)0x 8004f863); // -21471 57917 | |||||
| 5767 | publ ic const i nt ImportR outingRule Error = un checked((i nt)0x8004f 867); // - 2147157913 | |||||
| 5768 | publ ic const i nt ImportS laError = unchecked( (int)0x800 4f868); // -21471579 12 | |||||
| 5769 | publ ic const i nt ImportC onvertRule Error = un checked((i nt)0x8004f 869); // - 2147157911 | |||||
| 5770 | publ ic const i nt CannotD eleteActiv eSla = unc hecked((in t)0x8004f8 70); // -2 147157904 | |||||
| 5771 | publ ic const i nt ActiveS laCannotEd it = unche cked((int) 0x8004f871 ); // -214 7157903 | |||||
| 5772 | publ ic const i nt MaxActi veSLAError = uncheck ed((int)0x 8004f897); // -21471 57865 | |||||
| 5773 | publ ic const i nt MaxActi veSLAKPIEr ror = unch ecked((int )0x8004f89 8); // -21 47157864 | |||||
| 5774 | publ ic const i nt BundleC annotConta inBundle = unchecked ((int)0x80 04f972); / / -2147157 646 | |||||
| 5775 | publ ic const i nt Product OrBundleCa nnotBeAsPa rent = unc hecked((in t)0x8004f9 73); // -2 147157645 | |||||
| 5776 | publ ic const i nt CannotA ssociateRe tiredProdu cts = unch ecked((int )0x8004f97 4); // -21 47157644 | |||||
| 5777 | publ ic const i nt CannotU pdateDraft Products = unchecked ((int)0x80 04f975); / / -2147157 643 | |||||
| 5778 | publ ic const i nt CannotA ddProductT oBundle = unchecked( (int)0x800 4f976); // -21471576 42 | |||||
| 5779 | publ ic const i nt Product FromRetire dToActiveS tate = unc hecked((in t)0x8004f9 77); // -2 147157641 | |||||
| 5780 | publ ic const i nt Product FromDraftT oRetiredSt ate = unch ecked((int )0x8004f97 8); // -21 47157640 | |||||
| 5781 | publ ic const i nt Product FromRetire dToDraftSt ate = unch ecked((int )0x8004f97 9); // -21 47157639 | |||||
| 5782 | publ ic const i nt Product FromRetire dToRetired State = un checked((i nt)0x8004f 980); // - 2147157632 | |||||
| 5783 | publ ic const i nt Product FromDraftT oDraftStat e = unchec ked((int)0 x8004f981) ; // -2147 157631 | |||||
| 5784 | publ ic const i nt Product FromActive ToActiveSt ate = unch ecked((int )0x8004f98 2); // -21 47157630 | |||||
| 5785 | publ ic const i nt SaveRec ordBeforeA ddingBundl e = unchec ked((int)0 x8004f983) ; // -2147 157629 | |||||
| 5786 | publ ic const i nt RecordC anOnlyBeRe visedFromA ctiveState = uncheck ed((int)0x 8004f883); // -21471 57885 | |||||
| 5787 | publ ic const i nt CannotA ddDraftFam ilyProduct BundleToCa ses = unch ecked((int )0x8004f98 4); // -21 47157628 | |||||
| 5788 | publ ic const i nt CannotC loneBundle AsProductL imitExceed ed = unche cked((int) 0x8004f985 ); // -214 7157627 | |||||
| 5789 | publ ic const i nt CannotC hangeSelec tedBundleT oAnotherVa lue = unch ecked((int )0x8004f98 6); // -21 47157626 | |||||
| 5790 | publ ic const i nt CannotC hangeSelec tedProduct WithBundle = uncheck ed((int)0x 8004f987); // -21471 57625 | |||||
| 5791 | publ ic const i nt Invalid Relationsh ipTypeForU pSell = un checked((i nt)0x8004f 988); // - 2147157624 | |||||
| 5792 | publ ic const i nt Invalid Relationsh ipTypeForA ccessory = unchecked ((int)0x80 04f989); / / -2147157 623 | |||||
| 5793 | publ ic const i nt Product NoSubstitu tedProduct Number = u nchecked(( int)0x8004 f990); // -214715761 6 | |||||
| 5794 | publ ic const i nt Duplica teProductR elationshi p = unchec ked((int)0 x8004f891) ; // -2147 157871 | |||||
| 5795 | publ ic const i nt BundleC annotConta inProductF amily = un checked((i nt)0x8004f 992); // - 2147157614 | |||||
| 5796 | publ ic const i nt Retired ProductToB undle = un checked((i nt)0x8004f 993); // - 2147157613 | |||||
| 5797 | publ ic const i nt DraftBu ndleToProd uct = unch ecked((int )0x8004f99 4); // -21 47157612 | |||||
| 5798 | publ ic const i nt Product CanOnlyBeU pdatedInDr aft = unch ecked((int )0x8004f99 5); // -21 47157611 | |||||
| 5799 | publ ic const i nt Inconsi stentProdu ctRelation shipState = unchecke d((int)0x8 004f996); // -214715 7610 | |||||
| 5800 | publ ic const i nt CannotR etireProdu ctFromActi veBundle = unchecked ((int)0x80 04f997); / / -2147157 609 | |||||
| 5801 | publ ic const i nt CannotS etProductA sParent = unchecked( (int)0x800 4f998); // -21471576 08 | |||||
| 5802 | publ ic const i nt CannotA ssociatePr oductFamil y = unchec ked((int)0 x8004f999) ; // -2147 157607 | |||||
| 5803 | publ ic const i nt CannotA ddPricelis tToProduct Family = u nchecked(( int)0x8004 f902); // -214715775 8 | |||||
| 5804 | publ ic const i nt SdkMess agesDeprec atedError = unchecke d((int)0x8 004f903); // -214715 7757 | |||||
| 5805 | publ ic const i nt CanOnly SetActiveO rDraftProd uctFamilyA sParent = unchecked( (int)0x800 4f906); // -21471577 54 | |||||
| 5806 | publ ic const i nt CannotP ublishBund leWithProd uctStateDr aftOrRetir e = unchec ked((int)0 x8004f907) ; // -2147 157753 | |||||
| 5807 | publ ic const i nt CannotP ublishKitW ithProduct StateDraft OrRetire = unchecked ((int)0x80 04f916); / / -2147157 738 | |||||
| 5808 | publ ic const i nt CannotA ddProduct = unchecke d((int)0x8 004f908); // -214715 7752 | |||||
| 5809 | publ ic const i nt CannotP ublishChil dOfNonActi veProductF amily = un checked((i nt)0x8004f 909); // - 2147157751 | |||||
| 5810 | publ ic const i nt Product HasUnretir edChild = unchecked( (int)0x800 4f910); // -21471577 44 | |||||
| 5811 | publ ic const i nt Product FromActive ToDraftSta te = unche cked((int) 0x8004f912 ); // -214 7157742 | |||||
| 5812 | publ ic const i nt Product FromDraftT oRevisedSt ate = unch ecked((int )0x8004f91 3); // -21 47157741 | |||||
| 5813 | publ ic const i nt CannotO verridePro pertyFromD ifferentHi erarchy = unchecked( (int)0x800 4f914); // -21471577 40 | |||||
| 5814 | publ ic const i nt CannotR etireProdu ct = unche cked((int) 0x8004f915 ); // -214 7157739 | |||||
| 5815 | publ ic const i nt Invalid StateForPu blish = un checked((i nt)0x8004f 90a); // - 2147157750 | |||||
| 5816 | publ ic const i nt HiddenP ropertyVal idationFai led = unch ecked((int )0x8006100 0); // -21 47086336 | |||||
| 5817 | publ ic const i nt ActiveP ropertyVal idationFai led = unch ecked((int )0x8006100 1); // -21 47086335 | |||||
| 5818 | publ ic const i nt ReadOnl yCreateVal idationFai led = unch ecked((int )0x8006100 2); // -21 47086334 | |||||
| 5819 | publ ic const i nt ReadOnl yUpdateVal idationFai led = unch ecked((int )0x8006100 3); // -21 47086333 | |||||
| 5820 | publ ic const i nt MinMaxV alidationF ailed = un checked((i nt)0x80061 004); // - 2147086332 | |||||
| 5821 | publ ic const i nt OptionS etValidati onFailed = unchecked ((int)0x80 061005); / / -2147086 331 | |||||
| 5822 | publ ic const i nt Validat ionFailedF orDynamicP roperty = unchecked( (int)0x800 61021); // -21470863 03 | |||||
| 5823 | publ ic const i nt Product CloneFaile d = unchec ked((int)0 x80061006) ; // -2147 086330 | |||||
| 5824 | publ ic const i nt CannotA ddBundleTo Pricelist = unchecke d((int)0x8 0061007); // -214708 6329 | |||||
| 5825 | publ ic const i nt CannotR emoveProdu ctFromPric elist = un checked((i nt)0x80061 008); // - 2147086328 | |||||
| 5826 | publ ic const i nt CannotA ddRetiredP roductToPr icelist = unchecked( (int)0x800 61009); // -21470863 27 | |||||
| 5827 | publ ic const i nt CannotD eleteProdu ctFromActi veBundle = unchecked ((int)0x80 061010); / / -2147086 320 | |||||
| 5828 | publ ic const i nt CannotP ublishNest edBundle = unchecked ((int)0x80 061011); / / -2147086 319 | |||||
| 5829 | publ ic const i nt CannotC reateKitOf TypeFamily OrBundle = unchecked ((int)0x80 061012); / / -2147086 318 | |||||
| 5830 | publ ic const i nt CannotC hangeProdu ctRelation ship = unc hecked((in t)0x800610 13); // -2 147086317 | |||||
| 5831 | publ ic const i nt BundleC annotConta inProductK it = unche cked((int) 0x80061014 ); // -214 7086316 | |||||
| 5832 | publ ic const i nt CannotA ddParentTo AKit = unc hecked((in t)0x800610 15); // -2 147086315 | |||||
| 5833 | publ ic const i nt CannotC onvertProd uctAssocia tedWithFam ilyToKit = unchecked ((int)0x80 061016); / / -2147086 314 | |||||
| 5834 | publ ic const i nt OnlyPro ductCanBeC onvertedTo Kit = unch ecked((int )0x8006101 7); // -21 47086313 | |||||
| 5835 | publ ic const i nt CannotC onvertProd uctAssocia tedWithBun dleToKit = unchecked ((int)0x80 061018); / / -2147086 312 | |||||
| 5836 | publ ic const i nt Unsuppo rtedCudOpe rationForD ynamicProp erties = u nchecked(( int)0x8006 1019); // -214708631 1 | |||||
| 5837 | publ ic const i nt CannotC loneProduc tKit = unc hecked((in t)0x800610 20); // -2 147086304 | |||||
| 5838 | publ ic const i nt CannotA ddProductB undleToKit = uncheck ed((int)0x 80061022); // -21470 86302 | |||||
| 5839 | publ ic const i nt CannotA ddProductF amilyToKit = uncheck ed((int)0x 80061023); // -21470 86301 | |||||
| 5840 | publ ic const i nt CannotA ddProductT oKit = unc hecked((in t)0x800610 24); // -2 147086300 | |||||
| 5841 | publ ic const i nt Unsuppo rtedSdkMes sageForBun dles = unc hecked((in t)0x800610 25); // -2 147086299 | |||||
| 5842 | publ ic const i nt CannotA ddProductT oRetiredKi t = unchec ked((int)0 x80061026) ; // -2147 086298 | |||||
| 5843 | publ ic const i nt CannotA ddRetiredP roductToKi t = unchec ked((int)0 x80061027) ; // -2147 086297 | |||||
| 5844 | publ ic const i nt CannotC onvertProd uctFamilyT oKit = unc hecked((in t)0x800610 29); // -2 147086295 | |||||
| 5845 | publ ic const i nt CannotC onvertBund leToKit = unchecked( (int)0x800 61030); // -21470862 88 | |||||
| 5846 | publ ic const i nt CannotA ddBundleTo Itself = u nchecked(( int)0x8006 1031); // -214708628 7 | |||||
| 5847 | publ ic const i nt CannotA ddKitToIts elf = unch ecked((int )0x8006103 2); // -21 47086286 | |||||
| 5848 | publ ic const i nt CannotA ddRetiredP roduct = u nchecked(( int)0x8006 1033); // -214708628 5 | |||||
| 5849 | publ ic const i nt CannotC loneBundle WithRetire dProducts = unchecke d((int)0x8 0061034); // -214708 6284 | |||||
| 5850 | publ ic const i nt CannotS etPublishR etiredProd uctsToDraf t = unchec ked((int)0 x80061035) ; // -2147 086283 | |||||
| 5851 | publ ic const i nt CannotO verwritePr operty = u nchecked(( int)0x8006 1036); // -214708628 2 | |||||
| 5852 | publ ic const i nt Missing RequiredAt tributes = unchecked ((int)0x80 061037); / / -2147086 281 | |||||
| 5853 | publ ic const i nt Dynamic PropertyDe faultValue Needed = u nchecked(( int)0x8006 1038); // -214708628 0 | |||||
| 5854 | publ ic const i nt NonDraf tBundleUpd ate = unch ecked((int )0x8006103 9); // -21 47086279 | |||||
| 5855 | publ ic const i nt Associa teProductF ailureDiff erentUom = unchecked ((int)0x80 061040); / / -2147086 272 | |||||
| 5856 | publ ic const i nt Dynamic PropertyIn validState ForUpdate = unchecke d((int)0x8 0081000); // -214695 5264 | |||||
| 5857 | publ ic const i nt Dynamic PropertyIn validState Change = u nchecked(( int)0x8008 1001); // -214695526 3 | |||||
| 5858 | publ ic const i nt Dynamic PropertyIn validState ForDelete = unchecke d((int)0x8 0081002); // -214695 5262 | |||||
| 5859 | publ ic const i nt CannotD eleteDynam icProperty InUse = un checked((i nt)0x80081 003); // - 2146955261 | |||||
| 5860 | publ ic const i nt Dynamic PropertyIn validRegar dingForUpd ate = unch ecked((int )0x8008100 4); // -21 46955260 | |||||
| 5861 | publ ic const i nt CannotO verrideOwn edDynamicP roperty = unchecked( (int)0x800 81005); // -21469552 59 | |||||
| 5862 | publ ic const i nt CannotD eleteNotOw nedDynamic Property = unchecked ((int)0x80 081006); / / -2146955 258 | |||||
| 5863 | publ ic const i nt Product FamilyCanC reateDynam icProperty = uncheck ed((int)0x 80081007); // -21469 55257 | |||||
| 5864 | publ ic const i nt CannotD eleteOverr iddenPrope rty = unch ecked((int )0x8008110 0); // -21 46955008 | |||||
| 5865 | publ ic const i nt SlaActi vateDeacti vateByNonO wner = unc hecked((in t)0x8004f8 72); // -2 147157902 | |||||
| 5866 | publ ic const i nt Partial HolidaySch eduleCreat ion = unch ecked((int )0x8004f87 3); // -21 47157901 | |||||
| 5867 | publ ic const i nt ErrorNo ActiveRout ingRuleExi sts = unch ecked((int )0x8004f87 4); // -21 47157900 | |||||
| 5868 | publ ic const i nt SlaPerm issionToPe rformActio n = unchec ked((int)0 x8004f875) ; // -2147 157899 | |||||
| 5869 | publ ic const i nt Routing RulePublis hedByOwner = uncheck ed((int)0x 8004f876); // -21471 57898 | |||||
| 5870 | publ ic const i nt Routing RuleMissin gRuleCrite ria = unch ecked((int )0x8004f87 7); // -21 47157897 | |||||
| 5871 | publ ic const i nt Routing RulePublis hedByNonOw ner = unch ecked((int )0x8004f87 8); // -21 47157896 | |||||
| 5872 | publ ic const i nt Convert RuleInvali dAutoRespo nseSetting s = unchec ked((int)0 x8004f879) ; // -2147 157895 | |||||
| 5873 | publ ic const i nt CannotD eleteActiv eCaseCreat ionRule = unchecked( (int)0x800 4f880); // -21471578 88 | |||||
| 5874 | publ ic const i nt CannotO verridePro perty = un checked((i nt)0x8004f 887); // - 2147157881 | |||||
| 5875 | publ ic const i nt ParentH ierarchyEx istPropert y = unchec ked((int)0 x8004f888) ; // -2147 157880 | |||||
| 5876 | publ ic const i nt CreateP ropertyErr or = unche cked((int) 0x8004f889 ); // -214 7157879 | |||||
| 5877 | publ ic const i nt CreateP ropertyIns tanceError = uncheck ed((int)0x 8004f890); // -21471 57872 | |||||
| 5878 | publ ic const i nt CannotD eleteDynam icProperty InRetiredS tate = unc hecked((in t)0x8004f8 92); // -2 147157870 | |||||
| 5879 | publ ic const i nt CannotD eleteActiv eRecordCre ationRuleI tem = unch ecked((int )0x8004f89 4); // -21 47157868 | |||||
| 5880 | publ ic const i nt Convert RuleQueueI dMissingFo rEmailSour ce = unche cked((int) 0x8004f896 ); // -214 7157866 | |||||
| 5881 | publ ic const i nt SPFileN otCheckedO utErrorCod e = unchec ked((int)0 x80060700) ; // -2147 088640 | |||||
| 5882 | publ ic const i nt SPUnaut horizedAcc essErrorCo de = unche cked((int) 0x80060701 ); // -214 7088639 | |||||
| 5883 | publ ic const i nt SPFileA lreadyChec kedOutErro rCode = un checked((i nt)0x80060 702); // - 2147088638 | |||||
| 5884 | publ ic const i nt SPFileC heckedOutI nvalidArgs ErrorCode = unchecke d((int)0x8 0060703); // -214708 8637 | |||||
| 5885 | publ ic const i nt SPShare dLockOnFil eErrorCode = uncheck ed((int)0x 80060704); // -21470 88636 | |||||
| 5886 | publ ic const i nt SPExclu siveLockOn FileErrorC ode = unch ecked((int )0x8006070 5); // -21 47088635 | |||||
| 5887 | publ ic const i nt SPFileN otFoundErr orCode = u nchecked(( int)0x8006 0706); // -214708863 4 | |||||
| 5888 | publ ic const i nt SPFileN otLockedEr rorCode = unchecked( (int)0x800 60707); // -21470886 33 | |||||
| 5889 | publ ic const i nt SPDupli cateValues FoundError Code = unc hecked((in t)0x800607 08); // -2 147088632 | |||||
| 5890 | publ ic const i nt SPFileT ooLargeOrI nfectedErr orCode = u nchecked(( int)0x8006 0709); // -214708863 1 | |||||
| 5891 | publ ic const i nt SPBadLo ckInFileCo llectionEr rorCode = unchecked( (int)0x800 6070a); // -21470886 30 | |||||
| 5892 | publ ic const i nt SPInval idLookupVa luesErrorC ode = unch ecked((int )0x8006070 b); // -21 47088629 | |||||
| 5893 | publ ic const i nt SPNullF ileUrlErro rCode = un checked((i nt)0x80060 70c); // - 2147088628 | |||||
| 5894 | publ ic const i nt SPFileC ontentNull ErrorCode = unchecke d((int)0x8 006070d); // -214708 8627 | |||||
| 5895 | publ ic const i nt SPFileS izeMismatc hErrorCode = uncheck ed((int)0x 8006070e); // -21470 88626 | |||||
| 5896 | publ ic const i nt SPFileI sReadOnlyE rrorCode = unchecked ((int)0x80 06070f); / / -2147088 625 | |||||
| 5897 | publ ic const i nt SPModif iedOnServe rErrorCode = uncheck ed((int)0x 80060710); // -21470 88624 | |||||
| 5898 | publ ic const i nt SPDataV alidationF iledOnFiel dErrorCode = uncheck ed((int)0x 80060711); // -21470 88623 | |||||
| 5899 | publ ic const i nt SPDataV alidationF iledOnList ErrorCode = unchecke d((int)0x8 0060712); // -214708 8622 | |||||
| 5900 | publ ic const i nt SPDataV alidationF iledOnFiel dAndListEr rorCode = unchecked( (int)0x800 60713); // -21470886 21 | |||||
| 5901 | publ ic const i nt SPThrot tlingLimit ExceededEr rorCode = unchecked( (int)0x800 60714); // -21470886 20 | |||||
| 5902 | publ ic const i nt SPOpera tionNotSup portedErro rCode = un checked((i nt)0x80060 715); // - 2147088619 | |||||
| 5903 | publ ic const i nt SPInsta nceOfRecur ringEventE rrorCode = unchecked ((int)0x80 060716); / / -2147088 618 | |||||
| 5904 | publ ic const i nt SPItemN otExistErr orCode = u nchecked(( int)0x8006 0717); // -214708861 7 | |||||
| 5905 | publ ic const i nt SPInval idSavedQue ryErrorCod e = unchec ked((int)0 x80060718) ; // -2147 088616 | |||||
| 5906 | publ ic const i nt SPGener icErrorCod e = unchec ked((int)0 x80060719) ; // -2147 088615 | |||||
| 5907 | publ ic const i nt SPSiteN otFoundErr orCode = u nchecked(( int)0x8006 071a); // -214708861 4 | |||||
| 5908 | publ ic const i nt SPFolde rNotFoundE rrorCode = unchecked ((int)0x80 06071b); / / -2147088 613 | |||||
| 5909 | publ ic const i nt SPNoAct iveDocumen tLocationE rrorCode = unchecked ((int)0x80 06071c); / / -2147088 612 | |||||
| 5910 | publ ic const i nt SPIlleg alFileType ErrorCode = unchecke d((int)0x8 006071d); // -214708 8611 | |||||
| 5911 | publ ic const i nt SPInval idFieldVal ueErrorCod e = unchec ked((int)0 x8006071e) ; // -2147 088610 | |||||
| 5912 | publ ic const i nt SPIlleg alCharacte rsInFileNa meErrorCod e = unchec ked((int)0 x8006071f) ; // -2147 088609 | |||||
| 5913 | publ ic const i nt SPCurre ntDocument LocationDi sabledErro rCode = un checked((i nt)0x80060 720); // - 2147088608 | |||||
| 5914 | publ ic const i nt SPCurre ntFolderAl readyExist ErrorCode = unchecke d((int)0x8 0060721); // -214708 8607 | |||||
| 5915 | publ ic const i nt SPNullR egardingOb jectErrorC ode = unch ecked((int )0x8006072 3); // -21 47088605 | |||||
| 5916 | publ ic const i nt SPOpera torNotSupp ortedError Code = unc hecked((in t)0x800607 24); // -2 147088604 | |||||
| 5917 | publ ic const i nt SPRequi redColChec kInErrorCo de = unche cked((int) 0x80060725 ); // -214 7088603 | |||||
| 5918 | publ ic const i nt SPFileI sCheckedOu tByOtherUs er = unche cked((int) 0x80060728 ); // -214 7088600 | |||||
| 5919 | publ ic const i nt SPFileN ameModifie dErrorCode = uncheck ed((int)0x 80060729); // -21470 88599 | |||||
| 5920 | publ ic const i nt SPAccou ntNameFetc hFailure = unchecked ((int)0x80 06072a); / / -2147088 598 | |||||
| 5921 | publ ic const i nt SPPerso nalSiteNot Found = un checked((i nt)0x80060 72b); // - 2147088597 | |||||
| 5922 | publ ic const i nt SPFolde rRenameFai lure = unc hecked((in t)0x800607 2c); // -2 147088596 | |||||
| 5923 | publ ic const i nt SPMulti pleOdbSite sError = u nchecked(( int)0x8006 072d); // -214708859 5 | |||||
| 5924 | publ ic const i nt SPOdbDi sabledErro r = unchec ked((int)0 x8006072e) ; // -2147 088594 | |||||
| 5925 | publ ic const i nt SPOdbUp dateDelete Error = un checked((i nt)0x80060 72f); // - 2147088593 | |||||
| 5926 | publ ic const i nt SPDocum entMapping Failure = unchecked( (int)0x800 60734); // -21470885 88 | |||||
| 5927 | publ ic const i nt SPOdbDu plicateLoc ationError = uncheck ed((int)0x 80060735); // -21470 88587 | |||||
| 5928 | publ ic const i nt SPOdbUp dateDelete LocationEr ror = unch ecked((int )0x8006073 6); // -21 47088586 | |||||
| 5929 | publ ic const i nt SPSearc hOneDriveN otCreated = unchecke d((int)0x8 0060737); // -214708 8585 | |||||
| 5930 | publ ic const i nt SPSiteP rotocolErr or = unche cked((int) 0x80060738 ); // -214 7088584 | |||||
| 5931 | publ ic const i nt SPDefau ltSiteNotP resent = u nchecked(( int)0x8006 0739); // -214708858 3 | |||||
| 5932 | publ ic const i nt SPUploa dFailure = unchecked ((int)0x80 060740); / / -2147088 576 | |||||
| 5933 | publ ic const i nt SPAllFi lesErrorSc enario = u nchecked(( int)0x8006 0760); // -214708854 4 | |||||
| 5934 | publ ic const i nt Require dBundlePro ductCannot BeDeleted = unchecke d((int)0x8 0081008); // -214695 5256 | |||||
| 5935 | publ ic const i nt Require dBundleIte mCannotBeU pdated = u nchecked(( int)0x8008 1009); // -214695525 5 | |||||
| 5936 | publ ic const i nt Dynamic PropertyIn stanceMiss ingRequire dColumns = unchecked ((int)0x80 08100a); / / -2146955 254 | |||||
| 5937 | publ ic const i nt Dynamic PropertyIn stanceUpda teValuesDi fferentReg arding = u nchecked(( int)0x8008 100b); // -214695525 3 | |||||
| 5938 | publ ic const i nt Dynamic PropertyOp tionSetInv alidStateF orUpdate = unchecked ((int)0x80 08100c); / / -2146955 252 | |||||
| 5939 | publ ic const i nt Product MaxPropert yLimitExce eded = unc hecked((in t)0x800810 0d); // -2 146955251 | |||||
| 5940 | publ ic const i nt BundleM axProperty LimitExcee ded = unch ecked((int )0x8008100 e); // -21 46955250 | |||||
| 5941 | publ ic const i nt Hierarc hicalOpera tionFailed = uncheck ed((int)0x 8008100f); // -21469 55249 | |||||
| 5942 | publ ic const i nt Conflic tForOverri ddenProper tiesEncoun tered = un checked((i nt)0x80081 010); // - 2146955248 | |||||
| 5943 | publ ic const i nt Product FamilyRoot ParentisLo cked = unc hecked((in t)0x800810 1f); // -2 146955233 | |||||
| 5944 | publ ic const i nt CannotA ssociateRe tiredBundl es = unche cked((int) 0x80081011 ); // -214 6955247 | |||||
| 5945 | publ ic const i nt Missing Quantity = unchecked ((int)0x80 081012); / / -2146955 246 | |||||
| 5946 | publ ic const i nt CannotC reatePrope rtyOptionS etItem = u nchecked(( int)0x8008 1013); // -214695524 5 | |||||
| 5947 | publ ic const i nt CannotD eleteInher itedDynami cProperty = unchecke d((int)0x8 0081014); // -214695 5244 | |||||
| 5948 | publ ic const i nt CannotD eletePrope rtyOverrid denByBundl eItem = un checked((i nt)0x80081 015); // - 2146955243 | |||||
| 5949 | publ ic const i nt CannotD eleteProdu ctStatusCo de = unche cked((int) 0x80081016 ); // -214 6955242 | |||||
| 5950 | publ ic const i nt CannotA ctivateRec ord = unch ecked((int )0x8008101 7); // -21 46955241 | |||||
| 5951 | publ ic const i nt CannotQ ualifyLead = uncheck ed((int)0x 80081018); // -21469 55240 | |||||
| 5952 | publ ic const i nt ImportH ierarchyRu leDeletedE rror = unc hecked((in t)0x8004f9 a1); // -2 147157599 | |||||
| 5953 | publ ic const i nt ImportH ierarchyRu leExisting Error = un checked((i nt)0x8004f 9a2); // - 2147157598 | |||||
| 5954 | publ ic const i nt ImportH ierarchyRu leOtcMisma tchError = unchecked ((int)0x80 04f9a3); / / -2147157 597 | |||||
| 5955 | publ ic const i nt HonorPa useWithout SLAKPIErro r = unchec ked((int)0 x80045000) ; // -2147 201024 | |||||
| 5956 | publ ic const i nt CannotS etCaseOnHo ld = unche cked((int) 0x80055000 ); // -214 7135488 | |||||
| 5957 | publ ic const i nt ApplyAc tiveSLAOnl y = unchec ked((int)0 x80055001) ; // -2147 135487 | |||||
| 5958 | publ ic const i nt NoPrivi legeToAppl yManualSLA = uncheck ed((int)0x 80055002); // -21471 35486 | |||||
| 5959 | publ ic const i nt SlaNotE nabledEnti ty = unche cked((int) 0x80055003 ); // -214 7135485 | |||||
| 5960 | publ ic const i nt CannotS etEntityOn Hold = unc hecked((in t)0x800550 04); // -2 147135484 | |||||
| 5961 | publ ic const i nt CannotC reateSLAFo rEntity = unchecked( (int)0x800 55005); // -21471354 83 | |||||
| 5962 | publ ic const i nt SyncAtt ributeMapp ingCannotB eUpdated = unchecked ((int)0x80 060741); / / -2147088 575 | |||||
| 5963 | publ ic const i nt Invalid SyncDirect ionValueFo rUpdate = unchecked( (int)0x800 60742); // -21470885 74 | |||||
| 5964 | publ ic const i nt Invalid LanguageFo rCreate = unchecked( (int)0x800 60750); // -21470885 60 | |||||
| 5965 | publ ic const i nt Invalid LanguageFo rUpdate = unchecked( (int)0x800 60751); // -21470885 59 | |||||
| 5966 | publ ic const i nt Generic ImportTran slationsEr ror = unch ecked((int )0x8006075 2); // -21 47088558 | |||||
| 5967 | publ ic const i nt CannotS etEntitlem entTermsDe crementBeh avior = un checked((i nt)0x80060 851); // - 2147088303 | |||||
| 5968 | publ ic const i nt CannotU pdateEntit lement = u nchecked(( int)0x8006 0852); // -214708830 2 | |||||
| 5969 | publ ic const i nt CannotC reateCase = unchecke d((int)0x8 0060853); // -214708 8301 | |||||
| 5970 | publ ic const i nt KBInval idCreateAs sociation = unchecke d((int)0x8 0060861); // -214708 8287 | |||||
| 5971 | publ ic const i nt Invalid NumberOfTa bsInDialog = uncheck ed((int)0x 80060871); // -21470 88271 | |||||
| 5972 | publ ic const i nt Invalid NumberOfSe ctionsInTa b = unchec ked((int)0 x80060872) ; // -2147 088270 | |||||
| 5973 | publ ic const i nt DialogN ameCannotB eNull = un checked((i nt)0x80060 873); // - 2147088269 | |||||
| 5974 | publ ic const i nt Invalid FormTypeCa lledThroug hSdk = unc hecked((in t)0x800608 74); // -2 147088268 | |||||
| 5975 | publ ic const i nt Invalid FormatForC ontrol = u nchecked(( int)0x8006 0875); // -214708826 7 | |||||
| 5976 | publ ic const i nt Invalid OptionSetI dForContro l = unchec ked((int)0 x80060876) ; // -2147 088266 | |||||
| 5977 | publ ic const i nt Invalid Relationsh ipNameForC ontrol = u nchecked(( int)0x8006 0877); // -214708826 5 | |||||
| 5978 | publ ic const i nt Invalid TargetEnti tyTypeForC ontrol = u nchecked(( int)0x8006 0878); // -214708826 4 | |||||
| 5979 | publ ic const i nt Invalid MaxLengthF orControl = uncheck ed((int)0x 80060879); // -21470 88263 | |||||
| 5980 | publ ic const i nt Invalid MinValueFo rControl = unchecke d((int)0x8 006087a); // -214708 8262 | |||||
| 5981 | publ ic const i nt Invalid MaxValueFo rControl = unchecke d((int)0x8 006087b); // -214708 8261 | |||||
| 5982 | publ ic const i nt Invalid MinAndMaxV alueForCon trol = un checked((i nt)0x80060 87c); // - 2147088260 | |||||
| 5983 | publ ic const i nt Invalid PrecisionF orControl = uncheck ed((int)0x 8006087d); // -21470 88259 | |||||
| 5984 | publ ic const i nt ReadInt entIncompa tible = un checked((i nt)0x80060 881); // - 2147088255 | |||||
| 5985 | publ ic const i nt Concurr encyVersio nMismatch = unchecke d((int)0x8 0060882); // -214708 8254 | |||||
| 5986 | publ ic const i nt Concurr encyVersio nNotProvid ed = unche cked((int) 0x80060883 ); // -214 7088253 | |||||
| 5987 | publ ic const i nt CrmHttp Error = un checked((i nt)0x80060 88a); // - 2147088246 | |||||
| 5988 | publ ic const i nt Incompa tibleSteps Encountere d = unchec ked((int)0 x8006088b) ; // -2147 088245 | |||||
| 5989 | publ ic const i nt Mailbox TrackingFo lderMappin gCannotBeU pdated = u nchecked(( int)0x8006 088c); // -214708824 4 | |||||
| 5990 | publ ic const i nt Optimis ticConcurr encyNotEna bled = unc hecked((in t)0x800608 8d); // -2 147088243 | |||||
| 5991 | publ ic const i nt Invalid Collection Name = unc hecked((in t)0x800608 8e); // -2 147088242 | |||||
| 5992 | publ ic const i nt Invalid EntityKeyO peration = unchecked ((int)0x80 06088f); / / -2147088 241 | |||||
| 5993 | publ ic const i nt EntityK eyNotDefin ed = unche cked((int) 0x80060890 ); // -214 7088240 | |||||
| 5994 | publ ic const i nt RecordN otFoundByE ntityKey = unchecked ((int)0x80 060891); / / -2147088 239 | |||||
| 5995 | publ ic const i nt Duplica teRecordEn tityKey = unchecked( (int)0x800 60892); // -21470882 38 | |||||
| 5996 | publ ic const i nt EntityK eyNameExis ts = unche cked((int) 0x80060893 ); // -214 7088237 | |||||
| 5997 | publ ic const i nt EntityK eyWithSele ctedAttrib utesExists = uncheck ed((int)0x 80060894); // -21470 88236 | |||||
| 5998 | publ ic const i nt IndexSi zeConstrai ntViolated = uncheck ed((int)0x 80060895); // -21470 88235 | |||||
| 5999 | publ ic const i nt CannotS ecureEntit yKeyAttrib ute = unch ecked((int )0x8006089 6); // -21 47088234 | |||||
| 6000 | publ ic const i nt Reactiv ateEntityK eyOnlyForF ailedJobs = unchecke d((int)0x8 0060897); // -214708 8233 | |||||
| 6001 | publ ic const i nt RefRole NavPaneDis playOption Required = unchecked ((int)0x80 060898); / / -2147088 232 | |||||
| 6002 | publ ic const i nt Invalid RoleTypeFo rOneToMany Relationsh ip = unche cked((int) 0x80060899 ); // -214 7088231 | |||||
| 6003 | publ ic const i nt Invalid RoleOccurr encesForOn eToManyRel ationship = unchecke d((int)0x8 006089a); // -214708 8230 | |||||
| 6004 | publ ic const i nt Invalid EntitySetN ame = unch ecked((int )0x8006089 b); // -21 47088229 | |||||
| 6005 | publ ic const i nt Incorre ctEntitySe tName = un checked((i nt)0x80060 89c); // - 2147088228 | |||||
| 6006 | publ ic const i nt WopiDis coveryFail ed = unche cked((int) 0x80060800 ); // -214 7088384 | |||||
| 6007 | publ ic const i nt WopiApp licationUr l = unchec ked((int)0 x80060802) ; // -2147 088382 | |||||
| 6008 | publ ic const i nt WopiMax FileSizeEx ceeded = u nchecked(( int)0x8006 0803); // -214708838 1 | |||||
| 6009 | publ ic const i nt ExportT oExcelOnli neFeatureN otEnabled = unchecke d((int)0x8 0060804); // -214708 8380 | |||||
| 6010 | publ ic const i nt ExcelFi leNotFound = uncheck ed((int)0x 80060805); // -21470 88379 | |||||
| 6011 | publ ic const i nt Invalid UserToView ExcelOnlin eFile = un checked((i nt)0x80060 806); // - 2147088378 | |||||
| 6012 | publ ic const i nt Invalid UserToImpo rtExcelOnl ineFile = unchecked( (int)0x800 60807); // -21470883 77 | |||||
| 6013 | publ ic const i nt SharePo intCertifi cateExpire d = unchec ked((int)0 x800608b1) ; // -2147 088207 | |||||
| 6014 | publ ic const i nt SharePo intRealmMi smatch = u nchecked(( int)0x8006 08b2); // -214708820 6 | |||||
| 6015 | publ ic const i nt SharePo intAuthent icationFai lure = unc hecked((in t)0x800608 b3); // -2 147088205 | |||||
| 6016 | publ ic const i nt SharePo intAuthori zationFail ure = unch ecked((int )0x800608b 4); // -21 47088204 | |||||
| 6017 | publ ic const i nt SharePo intConnect ionFailure = uncheck ed((int)0x 800608b5); // -21470 88203 | |||||
| 6018 | publ ic const i nt SharePo intVersion Unsupporte d = unchec ked((int)0 x800608b6) ; // -2147 088202 | |||||
| 6019 | publ ic const i nt CannotD eleteOneNo teTableOfC ontent = u nchecked(( int)0x8006 08b7); // -214708820 1 | |||||
| 6020 | publ ic const i nt Invalid HexColorVa lue = unch ecked((int )0x800608d 0); // -21 47088176 | |||||
| 6021 | publ ic const i nt ThemeId OrUpdateTi mestampIsN ull = unch ecked((int )0x800608d 1); // -21 47088175 | |||||
| 6022 | publ ic const i nt LogoIma geNodeDoes NotExist = unchecked ((int)0x80 0608d2); / / -2147088 174 | |||||
| 6023 | publ ic const i nt Invalid LogoImageI d = unchec ked((int)0 x800608d3) ; // -2147 088173 | |||||
| 6024 | publ ic const i nt Invalid ThemeId = unchecked( (int)0x800 608d4); // -21470881 72 | |||||
| 6025 | publ ic const i nt CannotC reateSyste mOrDefault Theme = un checked((i nt)0x80060 8d5); // - 2147088171 | |||||
| 6026 | publ ic const i nt CannotU pdateSyste mTheme = u nchecked(( int)0x8006 08d6); // -214708817 0 | |||||
| 6027 | publ ic const i nt Invalid ThemeDelet eOperation = uncheck ed((int)0x 800608d7); // -21470 88169 | |||||
| 6028 | publ ic const i nt CannotU pdateDefau ltField = unchecked( (int)0x800 608d8); // -21470881 68 | |||||
| 6029 | publ ic const i nt Invalid LogoImageW ebResource Type = unc hecked((in t)0x800608 d9); // -2 147088167 | |||||
| 6030 | publ ic const i nt CannotD eleteSyste mTheme = u nchecked(( int)0x8006 08da); // -214708816 6 | |||||
| 6031 | publ ic const i nt Invalid BehaviorSe lection = unchecked( (int)0x800 608a0); // -21470882 24 | |||||
| 6032 | publ ic const i nt Invalid Behavior = unchecked ((int)0x80 0608a1); / / -2147088 223 | |||||
| 6033 | publ ic const i nt Invalid DateTimeFo rmat = unc hecked((in t)0x800608 a2); // -2 147088222 | |||||
| 6034 | publ ic const i nt SkipVal idDateTime Behavior = unchecked ((int)0x80 0608a3); / / -2147088 221 | |||||
| 6035 | publ ic const i nt ValidDa teTimeBeha viorWarnin g = unchec ked((int)0 x800608a4) ; // -2147 088220 | |||||
| 6036 | publ ic const i nt ValidDa teTimeBeha viorExport AsWarning = unchecke d((int)0x8 00608a5); // -214708 8219 | |||||
| 6037 | publ ic const i nt ExportT oXlsxFeatu reNotEnabl ed = unche cked((int) 0x800608c1 ); // -214 7088191 | |||||
| 6038 | publ ic const i nt XlsxImp ortInvalid ExcelDocum ent = unch ecked((int )0x800608c 2); // -21 47088190 | |||||
| 6039 | publ ic const i nt XlsxImp ortInvalid FileData = unchecked ((int)0x80 0608c3); / / -2147088 189 | |||||
| 6040 | publ ic const i nt XlsxImp ortHiddenC olumnAbsen t = unchec ked((int)0 x800608c4) ; // -2147 088188 | |||||
| 6041 | publ ic const i nt XlsxImp ortInvalid ColumnCoun t = unchec ked((int)0 x800608c5) ; // -2147 088187 | |||||
| 6042 | publ ic const i nt XlsxImp ortColumnH eadersInva lid = unch ecked((int )0x800608c 6); // -21 47088186 | |||||
| 6043 | publ ic const i nt XlsxExp ortGenerat ingExcelFa iled = unc hecked((in t)0x800608 c7); // -2 147088185 | |||||
| 6044 | publ ic const i nt XlsxImp ortExcelFa iled = unc hecked((in t)0x800608 c8); // -2 147088184 | |||||
| 6045 | publ ic const i nt Documen tTemplateF eatureNotE nabled = u nchecked(( int)0x8006 08c9); // -214708818 3 | |||||
| 6046 | publ ic const i nt WordTem plateFeatu reNotEnabl ed = unche cked((int) 0x800608db ); // -214 7088165 | |||||
| 6047 | publ ic const i nt MobileE xcelFeatur eNotEnable d = unchec ked((int)0 x800608ca) ; // -2147 088182 | |||||
| 6048 | publ ic const i nt Invalid DocumentTe mplate = u nchecked(( int)0x8006 08cb); // -214708818 1 | |||||
| 6049 | publ ic const i nt Invalid FileType = unchecked ((int)0x80 0608cc); / / -2147088 180 | |||||
| 6050 | publ ic const i nt DocxExp ortGenerat ingWordFai led = unch ecked((int )0x800608c d); // -21 47088179 | |||||
| 6051 | publ ic const i nt DocxVal idationFai led = unch ecked((int )0x800608c e); // -21 47088178 | |||||
| 6052 | publ ic const i nt LegacyX lsxFileNot Supported = unchecke d((int)0x8 00608cf); // -214708 8177 | |||||
| 6053 | publ ic const i nt Invalid WordFileTy pe = unche cked((int) 0x800608ee ); // -214 7088146 | |||||
| 6054 | publ ic const i nt Invalid WordDocume ntTemplate = uncheck ed((int)0x 800608ef); // -21470 88145 | |||||
| 6055 | publ ic const i nt Invalid WordTempla teContent = unchecke d((int)0x8 00608fb); // -214708 8133 | |||||
| 6056 | publ ic const i nt DataTab leNotAvail able = unc hecked((in t)0x800609 b0); // -2 147087952 | |||||
| 6057 | publ ic const i nt Invalid EntitySpec ified = un checked((i nt)0x80060 9b1); // - 2147087951 | |||||
| 6058 | publ ic const i nt Invalid TemplateCo ntent = un checked((i nt)0x80060 9b2); // - 2147087950 | |||||
| 6059 | publ ic const i nt Invalid ViewRefere nce = unch ecked((int )0x800609b 3); // -21 47087949 | |||||
| 6060 | publ ic const i nt FileTyp eNotSuppor ted = unch ecked((int )0x800609b 4); // -21 47087948 | |||||
| 6061 | publ ic const i nt Datashe etNotAvail able = unc hecked((in t)0x800609 b5); // -2 147087947 | |||||
| 6062 | publ ic const i nt Hiddens heetNotAva ilable = u nchecked(( int)0x8006 09b6); // -214708794 6 | |||||
| 6063 | publ ic const i nt Corrupt edHiddensh eetData = unchecked( (int)0x800 609b7); // -21470879 45 | |||||
| 6064 | publ ic const i nt NoActiv eLocation = unchecke d((int)0x8 0060900); // -214708 8128 | |||||
| 6065 | publ ic const i nt FolderD oesNotExis t = unchec ked((int)0 x80060901) ; // -2147 088127 | |||||
| 6066 | publ ic const i nt OneNote CreationFa iled = unc hecked((in t)0x800609 02); // -2 147088126 | |||||
| 6067 | publ ic const i nt OneNote RenderFail ed = unche cked((int) 0x80060903 ); // -214 7088125 | |||||
| 6068 | publ ic const i nt AccessD eniedShare PointRecor d = unchec ked((int)0 x80060904) ; // -2147 088124 | |||||
| 6069 | publ ic const i nt CouldNo tSetLocati onTypeToOn eNote = un checked((i nt)0x80060 905); // - 2147088123 | |||||
| 6070 | publ ic const i nt OneNote LocationNo tCreated = unchecked ((int)0x80 060906); / / -2147088 122 | |||||
| 6071 | publ ic const i nt OneNote LocationDe activated = unchecke d((int)0x8 0060907); // -214708 8121 | |||||
| 6072 | publ ic const i nt Documen tManagemen tDisabledO nEntity = unchecked( (int)0x800 60908); // -21470881 20 | |||||
| 6073 | publ ic const i nt QuickCr eateInvali dEntityNam e = unchec ked((int)0 x80060910) ; // -2147 088112 | |||||
| 6074 | publ ic const i nt QuickCr eateDisabl edOnEntity = uncheck ed((int)0x 80060911); // -21470 88111 | |||||
| 6075 | publ ic const i nt Operati onCanceled = uncheck ed((int)0x 80060912); // -21470 88110 | |||||
| 6076 | publ ic const i nt SavePen ding = unc hecked((in t)0x800609 13); // -2 147088109 | |||||
| 6077 | publ ic const i nt Schedul ingFailedF orInvalidD ata = unch ecked((int )0x8006091 4); // -21 47088108 | |||||
| 6078 | publ ic const i nt Schedul ingFailedF orBookingV alidation = unchecke d((int)0x8 0060915); // -214708 8107 | |||||
| 6079 | publ ic const i nt Invalid SourceType Code = unc hecked((in t)0x800608 ea); // -2 147088150 | |||||
| 6080 | publ ic const i nt CannotD eleteChann elProperty = uncheck ed((int)0x 800608eb); // -21470 88149 | |||||
| 6081 | publ ic const i nt Channel PropertyGr oupAlready ExistsWith SameSource Type = unc hecked((in t)0x800608 ec); // -2 147088148 | |||||
| 6082 | publ ic const i nt CannotC learChanne lPropertyG roupFromCo nvertRule = unchecke d((int)0x8 00608ed); // -214708 8147 | |||||
| 6083 | publ ic const i nt Duplica teChannelP ropertyNam e = unchec ked((int)0 x800608f1) ; // -2147 088143 | |||||
| 6084 | publ ic const i nt Channel PropertyNa meInvalid = unchecke d((int)0x8 00608f2); // -214708 8142 | |||||
| 6085 | publ ic const i nt ImportC hannelProp ertyGroupE rror = unc hecked((in t)0x800608 f3); // -2 147088141 | |||||
| 6086 | publ ic const i nt CannotC hangeConve rtRuleStat e = unchec ked((int)0 x800608f4) ; // -2147 088140 | |||||
| 6087 | publ ic const i nt NoConve rsionRule = unchecke d((int)0x8 00608f5); // -214708 8139 | |||||
| 6088 | publ ic const i nt Invalid Conversion Rule = unc hecked((in t)0x800608 f6); // -2 147088138 | |||||
| 6089 | publ ic const i nt Invalid TimeZoneCo de = unche cked((int) 0x800608f7 ); // -214 7088137 | |||||
| 6090 | publ ic const i nt UserDoe sNotHavePr ivilegesTo RunTheTool = uncheck ed((int)0x 800608f8); // -21470 88136 | |||||
| 6091 | publ ic const i nt NoTimeZ oneCodeFor Conversion Rule = unc hecked((in t)0x800608 f9); // -2 147088135 | |||||
| 6092 | publ ic const i nt NoEntit ySpecified = uncheck ed((int)0x 800608fa); // -21470 88134 | |||||
| 6093 | publ ic const i nt Invalid OtherDataF ilterOptio ns = unche cked((int) 0x8006098d ); // -214 7087987 | |||||
| 6094 | publ ic const i nt Related EntityDoes NotExistIn ProfileIte m = unchec ked((int)0 x8006098e) ; // -2147 087986 | |||||
| 6095 | publ ic const i nt Downloa dAllEntity RecordsCha ngedOrCrea tedWithinT heseDays = unchecked ((int)0x80 06098f); / / -2147087 985 | |||||
| 6096 | publ ic const i nt MobileO fflineDays SinceRecor dLastModif iedZero = unchecked( (int)0x800 60990); // -21470879 84 | |||||
| 6097 | publ ic const i nt Increas ingDaysWil lResetMobi leOfflineD ata = unch ecked((int )0x8006099 1); // -21 47087983 | |||||
| 6098 | publ ic const i nt Decreas ingDaysWil lDeleteOld erData = u nchecked(( int)0x8006 0992); // -214708798 2 | |||||
| 6099 | publ ic const i nt Invalid DataFilter sForUnowne dEntities = unchecke d((int)0x8 0060993); // -214708 7981 | |||||
| 6100 | publ ic const i nt Invalid DataFilter sForBUOwne dEntities = unchecke d((int)0x8 0060994); // -214708 7980 | |||||
| 6101 | publ ic const i nt Invalid DataFilter sForOrgOwn edEntities = uncheck ed((int)0x 80060995); // -21470 87979 | |||||
| 6102 | publ ic const i nt Invalid CustomData DownloadFi lters = un checked((i nt)0x80060 996); // - 2147087978 | |||||
| 6103 | publ ic const i nt MOPIAss ociationNa meCannotBe EmptyOrSpa ce = unche cked((int) 0x80060997 ); // -214 7087977 | |||||
| 6104 | publ ic const i nt NoDefin edRelation shipsForMO PIAssociat ion = unch ecked((int )0x8006099 8); // -21 47087976 | |||||
| 6105 | publ ic const i nt Invalid Relationsh ipInMOPIAs sociation = unchecke d((int)0x8 0060999); // -214708 7975 | |||||
| 6106 | publ ic const i nt CannotD eleteDefau ltProfile = unchecke d((int)0x8 006099a); // -214708 7974 | |||||
| 6107 | publ ic const i nt CannotA ssociateIn validEntit yToProfile Item = unc hecked((in t)0x800609 9b); // -2 147087973 | |||||
| 6108 | publ ic const i nt CanAsso ciateOnlyM obileOffli neEnableEn tityToProf ileItem = unchecked( (int)0x800 6099c); // -21470879 72 | |||||
| 6109 | publ ic const i nt CanAsso ciateOnlyO neEntityPe rProfileIt em = unche cked((int) 0x8006099d ); // -214 7087971 | |||||
| 6110 | publ ic const i nt ImportM obileOffli neProfileE rror = unc hecked((in t)0x800609 9f); // -2 147087969 | |||||
| 6111 | publ ic const i nt SavedQu eryValidat ionError = unchecked ((int)0x80 0609a0); / / -2147087 968 | |||||
| 6112 | publ ic const i nt ChangeT rackingDis abledForMo bileOfflin eError = u nchecked(( int)0x8006 09a1); // -214708796 7 | |||||
| 6113 | publ ic const i nt EnableM obileOffli neDisableC hangeTrack ingError = unchecked ((int)0x80 0609a2); / / -2147087 966 | |||||
| 6114 | publ ic const i nt CannotD eleteUserP rofile = u nchecked(( int)0x8006 09a3); // -214708796 5 | |||||
| 6115 | publ ic const i nt CannotC hangeDaysS inceRecord LastModifi ed = unche cked((int) 0x800609a4 ); // -214 7087964 | |||||
| 6116 | publ ic const i nt CannotD isableMobi leOfflineF lagForEnti ty = unche cked((int) 0x800609a5 ); // -214 7087963 | |||||
| 6117 | publ ic const i nt CannotA ddUserToMo bileOfflin eProfile = unchecked ((int)0x80 0609a6); / / -2147087 962 | |||||
| 6118 | publ ic const i nt MobileO fflineProf ileNameAlr eadyExists = uncheck ed((int)0x 800609a7); // -21470 87961 | |||||
| 6119 | publ ic const i nt MobileO fflineProf ileItemNam eAlreadyEx ists = unc hecked((in t)0x800609 a8); // -2 147087960 | |||||
| 6120 | publ ic const i nt MobileO fflineProf ileNameCan NotBeNullO rEmpty = u nchecked(( int)0x8006 09a9); // -214708795 9 | |||||
| 6121 | publ ic const i nt MobileO fflineProf ileItemNam eCanNotBeN ullOrEmpty = uncheck ed((int)0x 800609aa); // -21470 87958 | |||||
| 6122 | publ ic const i nt CannotA ddIntersec tEntityToM obileOffli neProfileI tem = unch ecked((int )0x800609a b); // -21 47087957 | |||||
| 6123 | publ ic const i nt CannotA ddBusiness DataLocali zedLabelEn tityToMobi leOfflineP rofileItem = uncheck ed((int)0x 800609ac); // -21470 87956 | |||||
| 6124 | publ ic const i nt CannotA ddActivity PartyEntit yToMobileO fflineProf ileItem = unchecked( (int)0x800 609ad); // -21470879 55 | |||||
| 6125 | publ ic const i nt Invalid Associated SavedQuery = uncheck ed((int)0x 800609ae); // -21470 87954 | |||||
| 6126 | publ ic const i nt CannotD isableMobi leOfflineF lagForImpo rtEntity = unchecked ((int)0x80 071111); / / -2147020 527 | |||||
| 6127 | publ ic const i nt CloneTi tleTooLong = uncheck ed((int)0x 80071112); // -21470 20526 | |||||
| 6128 | publ ic const i nt Invalid MobileOffl ineFilters FetchXml = unchecked ((int)0x80 071113); / / -2147020 525 | |||||
| 6129 | publ ic const i nt MaxCond itionsMobi leOfflineF ilters = u nchecked(( int)0x8007 1114); // -214702052 4 | |||||
| 6130 | publ ic const i nt Unsuppo rtedAttrib uteOrOpera torMobileO fflineFilt ers = unch ecked((int )0x8007111 5); // -21 47020523 | |||||
| 6131 | publ ic const i nt Maxprof ileItemFil terConditi onsAllowed = uncheck ed((int)0x 80071116); // -21470 20522 | |||||
| 6132 | publ ic const i nt MobileO fflineRule Enhancemen tFeatureNo tAvailaibl e = unchec ked((int)0 x80071117) ; // -2147 020521 | |||||
| 6133 | publ ic const i nt EmptyEn tityFilter Xml = unch ecked((int )0x8007111 8); // -21 47020520 | |||||
| 6134 | publ ic const i nt QueryFi lterCondit ionAttribu teNotPrese ntInExpres sionEntity = uncheck ed((int)0x 80071119); // -21470 20519 | |||||
| 6135 | publ ic const i nt LinkedE ntitiesAre NotAllowed = uncheck ed((int)0x 80071120); // -21470 20512 | |||||
| 6136 | publ ic const i nt Unsuppo rtedOperat orForAttri buteInProf ileItemEnt ityFilters = uncheck ed((int)0x 80071121); // -21470 20511 | |||||
| 6137 | publ ic const i nt Invalid OrEmptyRel ationshipI d = unchec ked((int)0 x80071122) ; // -2147 020510 | |||||
| 6138 | publ ic const i nt Unsuppo rtedAttrib uteInInPro fileItemEn tityFilter s = unchec ked((int)0 x80071123) ; // -2147 020509 | |||||
| 6139 | publ ic const i nt OfficeG roupsFeatu reNotEnabl ed = unche cked((int) 0x800610ea ); // -214 7086102 | |||||
| 6140 | publ ic const i nt OfficeG roupsExcep tionRetrie veSetting = unchecke d((int)0x8 00610eb); // -214708 6101 | |||||
| 6141 | publ ic const i nt OfficeG roupsInval idSettingT ype = unch ecked((int )0x800610e c); // -21 47086100 | |||||
| 6142 | publ ic const i nt OfficeG roupsNotSu pportedCal l = unchec ked((int)0 x800610ed) ; // -2147 086099 | |||||
| 6143 | publ ic const i nt OfficeG roupsNoAut hServersFo und = unch ecked((int )0x800610e e); // -21 47086098 | |||||
| 6144 | publ ic const i nt Profile RuleMissin gRuleCrite ria = unch ecked((int )0x8006110 0); // -21 47086080 | |||||
| 6145 | publ ic const i nt Profile RuleWorkfl owAuthorGe nericError = uncheck ed((int)0x 80061101); // -21470 86079 | |||||
| 6146 | publ ic const i nt Profile RuleActiva teDeactiva teByNonOwn er = unche cked((int) 0x80061102 ); // -214 7086078 | |||||
| 6147 | publ ic const i nt Profile RulePublis hedByOwner = uncheck ed((int)0x 80061103); // -21470 86077 | |||||
| 6148 | publ ic const i nt CannotD eleteGuest Profile = unchecked( (int)0x800 61104); // -21470860 76 | |||||
| 6149 | publ ic const i nt CannotD eactivateG uestProfil e = unchec ked((int)0 x80061105) ; // -2147 086075 | |||||
| 6150 | publ ic const i nt CannotD eleteProfi leWithProf ileRules = unchecked ((int)0x80 061106); / / -2147086 074 | |||||
| 6151 | publ ic const i nt CannotD eleteProfi leWithExte rnalPartyI tem = unch ecked((int )0x8006110 7); // -21 47086073 | |||||
| 6152 | publ ic const i nt CannotD eleteChann elAccessPr ofileRule = unchecke d((int)0x8 0061108); // -214708 6072 | |||||
| 6153 | publ ic const i nt Insuffi cientRetri evePrivile ge = unche cked((int) 0x80061109 ); // -214 7086071 | |||||
| 6154 | publ ic const i nt Insuffi cientCreat ePrivilege = uncheck ed((int)0x 8006110a); // -21470 86070 | |||||
| 6155 | publ ic const i nt Insuffi cientUpdat ePrivilege = uncheck ed((int)0x 8006110b); // -21470 86069 | |||||
| 6156 | publ ic const i nt OwnerAt tributeMis sing = unc hecked((in t)0x800611 0c); // -2 147086068 | |||||
| 6157 | publ ic const i nt Invalid Organizati onSettings = uncheck ed((int)0x 8006110d); // -21470 86067 | |||||
| 6158 | publ ic const i nt Invalid RequestPar ameters = unchecked( (int)0x800 6110e); // -21470860 66 | |||||
| 6159 | publ ic const i nt Invalid ExternalPa rtyConfigu ration = u nchecked(( int)0x8006 110f); // -214708606 5 | |||||
| 6160 | publ ic const i nt Invalid ExternalPa rtyParent = unchecke d((int)0x8 0061110); // -214708 6064 | |||||
| 6161 | publ ic const i nt Invalid ExternalPa rtyOperati on = unche cked((int) 0x80061111 ); // -214 7086063 | |||||
| 6162 | publ ic const i nt CannotC reateExter nalPartyWi thSameCorr elationKey = uncheck ed((int)0x 80061112); // -21470 86062 | |||||
| 6163 | publ ic const i nt Feature NotEnabled = uncheck ed((int)0x 80061113); // -21470 86061 | |||||
| 6164 | publ ic const i nt CannotU pdateExter nalPartyWi thSameCorr elationKey = uncheck ed((int)0x 80061114); // -21470 86060 | |||||
| 6165 | publ ic const i nt Channel AccessProf ileRuleAlr eadyInDraf tState = u nchecked(( int)0x8006 1115); // -214708605 9 | |||||
| 6166 | publ ic const i nt CannotA ctOnBehalf OfExternal Party = un checked((i nt)0x80061 116); // - 2147086058 | |||||
| 6167 | publ ic const i nt CannotA ssociateEx ternalPart yItem = un checked((i nt)0x80061 117); // - 2147086057 | |||||
| 6168 | publ ic const i nt Duplica tePrivileg eInRolecon trol = unc hecked((in t)0x800611 18); // -2 147086056 | |||||
| 6169 | publ ic const i nt ErrorsI nProfileRu leWorkflow Activation = uncheck ed((int)0x 80061119); // -21470 86055 | |||||
| 6170 | publ ic const i nt CantSet IsGuestPro file = unc hecked((in t)0x800611 1a); // -2 147086054 | |||||
| 6171 | publ ic const i nt EntityI sNotEnable dForExtern alParty = unchecked( (int)0x800 6111b); // -21470860 53 | |||||
| 6172 | publ ic const i nt MailApp _Unsupport edDevice = unchecked ((int)0x80 061200); / / -2147085 824 | |||||
| 6173 | publ ic const i nt MailApp _Unsupport edBrowser = unchecke d((int)0x8 0061201); // -214708 5823 | |||||
| 6174 | publ ic const i nt MailApp _MailboxNo tConfigure dWithServe rSideSync = unchecke d((int)0x8 0061202); // -214708 5822 | |||||
| 6175 | publ ic const i nt MailApp _ReadWrite AccessRequ ired = unc hecked((in t)0x800612 03); // -2 147085821 | |||||
| 6176 | publ ic const i nt MailApp _FeatureCo ntrolBitDi sabled = u nchecked(( int)0x8006 1204); // -214708582 0 | |||||
| 6177 | publ ic const i nt MailApp _Permissio nToUseCrmF orOfficeAp psRequired = uncheck ed((int)0x 80061205); // -21470 85819 | |||||
| 6178 | publ ic const i nt MailApp _TrackingI sNotSuppor ted = unch ecked((int )0x8006120 7); // -21 47085817 | |||||
| 6179 | publ ic const i nt MailApp _MobileBro wserIsNotS upported = unchecked ((int)0x80 061208); / / -2147085 816 | |||||
| 6180 | publ ic const i nt MailApp _Different SecurityZo neError = unchecked( (int)0x800 61210); // -21470858 08 | |||||
| 6181 | publ ic const i nt MailApp _EmailAddr essMismatc h = unchec ked((int)0 x80061211) ; // -2147 085807 | |||||
| 6182 | publ ic const i nt MailApp _UserMailb oxInactive = uncheck ed((int)0x 80061216); // -21470 85802 | |||||
| 6183 | publ ic const i nt MailApp _MailboxNo tConfigure dWithServe rSideSyncF orACT = un checked((i nt)0x80061 217); // - 2147085801 | |||||
| 6184 | publ ic const i nt MailApp _Appointme ntFeatureN otEnabled = unchecke d((int)0x8 0061218); // -214708 5800 | |||||
| 6185 | publ ic const i nt Unsuppo rtedImport Component = unchecke d((int)0x8 0061302); // -214708 5566 | |||||
| 6186 | publ ic const i nt Invalid LocaleIdFo rKnowledge Article = unchecked( (int)0x800 61400); // -21470853 12 | |||||
| 6187 | publ ic const i nt Publish Article_Tr anslationW ithMoreTha nOneApprov edVersion = unchecke d((int)0x8 0061401); // -214708 5311 | |||||
| 6188 | publ ic const i nt Transla teArticle_ OnlyPrimar yArticlesC anBeTransl ated = unc hecked((in t)0x800614 02); // -2 147085310 | |||||
| 6189 | publ ic const i nt Transla teArticle_ Translatio nCanNotBeC reatedForT heSameLang uage = unc hecked((in t)0x800614 03); // -2 147085309 | |||||
| 6190 | publ ic const i nt ColorSt ripAttribu tesExceede d = unchec ked((int)0 x80061500) ; // -2147 085056 | |||||
| 6191 | publ ic const i nt Attribu tesExceede d = unchec ked((int)0 x80061501) ; // -2147 085055 | |||||
| 6192 | publ ic const i nt ColorSt ripAttribu tesInvalid = uncheck ed((int)0x 80061502); // -21470 85054 | |||||
| 6193 | publ ic const i nt Invalid ClassIdInR eferencePa nelSection = uncheck ed((int)0x 80061503); // -21470 85053 | |||||
| 6194 | publ ic const i nt Invalid NumberOfRe ferencePan elSections = uncheck ed((int)0x 80061504); // -21470 85052 | |||||
| 6195 | publ ic const i nt Invalid NumberOfCa rdFormSect ions = unc hecked((in t)0x800615 05); // -2 147085051 | |||||
| 6196 | publ ic const i nt EmptyCo mmandOrEnt ity = unch ecked((int )0x80154b5 1); // -21 46088111 | |||||
| 6197 | publ ic const i nt Command NotSupport ed = unche cked((int) 0x80154b52 ); // -214 6088110 | |||||
| 6198 | publ ic const i nt Operati onFailedTr yAgain = u nchecked(( int)0x8015 4b53); // -214608810 9 | |||||
| 6199 | publ ic const i nt NoUserP rivilege = unchecked ((int)0x80 154b50); / / -2146088 112 | |||||
| 6200 | publ ic const i nt XamlNot Found = un checked((i nt)0x80154 b4f); // - 2146088113 | |||||
| 6201 | publ ic const i nt CustomC ontrolsImp ortError = unchecked ((int)0x80 160000); / / -2146041 856 | |||||
| 6202 | publ ic const i nt Manifes tXsdValida tionError = unchecke d((int)0x8 0160001); // -214604 1855 | |||||
| 6203 | publ ic const i nt CustomC ontrolsDep endentProp ertyConfig uration = unchecked( (int)0x801 60002); // -21460418 54 | |||||
| 6204 | publ ic const i nt CustomC ontrolsPro pertySetCo nfiguratio n = unchec ked((int)0 x80160003) ; // -2146 041853 | |||||
| 6205 | publ ic const i nt Product Recommenda tionsFeatu reNotEnabl ed = unche cked((int) 0x80061600 ); // -214 7084800 | |||||
| 6206 | publ ic const i nt Recomme ndationMod elActiveVe rsionNotSe t = unchec ked((int)0 x80061601) ; // -2147 084799 | |||||
| 6207 | publ ic const i nt Recomme ndationMod elActiveVe rsionInval idStatus = unchecked ((int)0x80 061602); / / -2147084 798 | |||||
| 6208 | publ ic const i nt AzureRe commendati onModelNot Exist = un checked((i nt)0x80061 603); // - 2147084797 | |||||
| 6209 | publ ic const i nt AzureRe commendati onModelBui ldNotExist = uncheck ed((int)0x 80061604); // -21470 84796 | |||||
| 6210 | publ ic const i nt Recomme ndationsUn available = unchecke d((int)0x8 0061605); // -214708 4795 | |||||
| 6211 | publ ic const i nt Recomme ndationMod elBuildCon nectionMus tBeActive = unchecke d((int)0x8 0061606); // -214708 4794 | |||||
| 6212 | publ ic const i nt Recomme ndationMod elActivate Connection MustBeActi ve = unche cked((int) 0x80061607 ); // -214 7084793 | |||||
| 6213 | publ ic const i nt Recomme ndationMod elExpired = unchecke d((int)0x8 0061608); // -214708 4792 | |||||
| 6214 | publ ic const i nt Recomme ndationMod elMappingD uplicateRe cord = unc hecked((in t)0x800616 10); // -2 147084784 | |||||
| 6215 | publ ic const i nt Recomme ndationMod elMappingR eadOnly = unchecked( (int)0x800 61611); // -21470847 83 | |||||
| 6216 | publ ic const i nt CannotD eleteDueTo BasketEnti tyAssociat ion = unch ecked((int )0x8006161 2); // -21 47084782 | |||||
| 6217 | publ ic const i nt Recomme ndationMod elVersionA ctive = un checked((i nt)0x80061 620); // - 2147084768 | |||||
| 6218 | publ ic const i nt Recomme ndationMod elVersionB uildInProg ress = unc hecked((in t)0x800616 21); // -2 147084767 | |||||
| 6219 | publ ic const i nt Recomme ndationMod elVersionD uplicateNa me = unche cked((int) 0x80061622 ); // -214 7084766 | |||||
| 6220 | publ ic const i nt AzureSe rviceConne ctionInval idUri = un checked((i nt)0x80061 630); // - 2147084752 | |||||
| 6221 | publ ic const i nt Recomme ndationAzu reConnecti onFailed = unchecked ((int)0x80 061631); / / -2147084 751 | |||||
| 6222 | publ ic const i nt TextAna lyticsAzur eTestConne ctionFaile d = unchec ked((int)0 x80061632) ; // -2147 084750 | |||||
| 6223 | publ ic const i nt Recomme ndationAzu reConnecti onCascadeA ctivateFai led = unch ecked((int )0x8006163 3); // -21 47084749 | |||||
| 6224 | publ ic const i nt TextAna lyticsAzur eConnectio nCascadeAc tivateFail ed = unche cked((int) 0x80061634 ); // -214 7084748 | |||||
| 6225 | publ ic const i nt AzureOp erationRes ponseTimed Out = unch ecked((int )0x8006163 5); // -21 47084747 | |||||
| 6226 | publ ic const i nt AzureSe rviceConne ctionCasca deDeleteFa iled = unc hecked((in t)0x800616 36); // -2 147084746 | |||||
| 6227 | publ ic const i nt TextAna lyticsAzur eConnectio nFailed = unchecked( (int)0x800 61650); // -21470847 20 | |||||
| 6228 | publ ic const i nt TopicMo delSchedul eBuildSett ingsEmpty = unchecke d((int)0x8 0061651); // -214708 4719 | |||||
| 6229 | publ ic const i nt TextAna lyticsFeat ureNotEnab led = unch ecked((int )0x8006165 2); // -21 47084718 | |||||
| 6230 | publ ic const i nt TopicMo delConfigu rationUsed Empty = un checked((i nt)0x80061 653); // - 2147084717 | |||||
| 6231 | publ ic const i nt TopicMo delTestWit houtConfig uration = unchecked( (int)0x800 61654); // -21470847 16 | |||||
| 6232 | publ ic const i nt TextAna lyticsAzur eUnableToC onnectWith Build = un checked((i nt)0x80061 655); // - 2147084715 | |||||
| 6233 | publ ic const i nt TopicMo delActivat eWithInval idConfigur ation = un checked((i nt)0x80061 656); // - 2147084714 | |||||
| 6234 | publ ic const i nt TextAna lyticsMode lActivateC onnectionM ustBeActiv e = unchec ked((int)0 x80061657) ; // -2147 084713 | |||||
| 6235 | publ ic const i nt TextAna lyticsMapp ingUsedFor ActiveConf iguration = unchecke d((int)0x8 0061667); // -214708 4697 | |||||
| 6236 | publ ic const i nt TopicMo delConfigu rationAsso ciatedMode lAlreadyAc tive = unc hecked((in t)0x800616 70); // -2 147084688 | |||||
| 6237 | publ ic const i nt Knowled geSearchAc tiveModels AlreadyExi st = unche cked((int) 0x80061680 ); // -214 7084672 | |||||
| 6238 | publ ic const i nt TextAna lyticsAPIA ctiveConfi gurationDo esNotExist = uncheck ed((int)0x 80061690); // -21470 84656 | |||||
| 6239 | publ ic const i nt TextAna lyticsAPIA llowedOnly ForEnglish Language = unchecked ((int)0x80 061691); / / -2147084 655 | |||||
| 6240 | publ ic const i nt TextAna lyticsAPIA zureUnable ToConnectW ithBuild = unchecked ((int)0x80 061692); / / -2147084 654 | |||||
| 6241 | publ ic const i nt TextAna lyticsAzur eScheduler Error = un checked((i nt)0x80061 693); // - 2147084653 | |||||
| 6242 | publ ic const i nt TextAna lyticsMaxL imitForTop icModelRea ched = unc hecked((in t)0x800616 94); // -2 147084652 | |||||
| 6243 | publ ic const i nt TextAna lyticsAPIA ctiveSimil arityConfi gurationDo esNotExist = uncheck ed((int)0x 80061695); // -21470 84651 | |||||
| 6244 | publ ic const i nt Advance dSimilarit yAzureSear chUnexpect edError = unchecked( (int)0x800 61696); // -21470846 50 | |||||
| 6245 | publ ic const i nt TaskFlo wNameIsNot Unique = u nchecked(( int)0x8006 1710); // -214708452 8 | |||||
| 6246 | publ ic const i nt TaskFlo wInvalidCh aractersIn Name = unc hecked((in t)0x800617 11); // -2 147084527 | |||||
| 6247 | publ ic const i nt TaskFlo wEmptyName = uncheck ed((int)0x 80061712); // -21470 84526 | |||||
| 6248 | publ ic const i nt TaskFlo wFormXmlNo tFound = u nchecked(( int)0x8006 1713); // -214708452 5 | |||||
| 6249 | publ ic const i nt TaskFlo wPageMissi ngFormXmlT ab = unche cked((int) 0x80061714 ); // -214 7084524 | |||||
| 6250 | publ ic const i nt TaskFlo wUnsupport edEntities = uncheck ed((int)0x 80061715); // -21470 84523 | |||||
| 6251 | publ ic const i nt TaskFlo wEntityRel ationshipI sNotValid = unchecke d((int)0x8 0061716); // -214708 4522 | |||||
| 6252 | publ ic const i nt TaskFlo wEntityAtt ributeIsNo tValid = u nchecked(( int)0x8006 1717); // -214708452 1 | |||||
| 6253 | publ ic const i nt TaskFlo wMaxNumber Pages = un checked((i nt)0x80061 718); // - 2147084520 | |||||
| 6254 | publ ic const i nt TaskFlo wMaxNumber Controls = unchecked ((int)0x80 061719); / / -2147084 519 | |||||
| 6255 | publ ic const i nt TaskFlo wNotFound = unchecke d((int)0x8 0061720); // -214708 4512 | |||||
| 6256 | publ ic const i nt TaskFlo wNotValid = unchecke d((int)0x8 006172f); // -214708 4497 | |||||
| 6257 | publ ic const i nt Feedbac kFeatureNo tEnabled = unchecked ((int)0x80 061770); / / -2147084 432 | |||||
| 6258 | publ ic const i nt Feedbac kMinMaxReq uired = un checked((i nt)0x80061 772); // - 2147084430 | |||||
| 6259 | publ ic const i nt Feedbac kRatingVal ue = unche cked((int) 0x80061773 ); // -214 7084429 | |||||
| 6260 | publ ic const i nt Feedbac kMinRating Value = un checked((i nt)0x80061 774); // - 2147084428 | |||||
| 6261 | publ ic const i nt DelveAc tionHubDis abledError = uncheck ed((int)0x 80071000); // -21470 20800 | |||||
| 6262 | publ ic const i nt ErrorGe neratingAc tionHub = unchecked( (int)0x800 71001); // -21470207 99 | |||||
| 6263 | publ ic const i nt DelveAc tionHubAtt ributeMiss ingInRespo nseExcepti on = unche cked((int) 0x80071002 ); // -214 7020798 | |||||
| 6264 | publ ic const i nt DelveAc tionHubInv alidStateC odeExcepti on = unche cked((int) 0x80071003 ); // -214 7020797 | |||||
| 6265 | publ ic const i nt DelveAc tionHubInv alidRespon seFormatEx ception = unchecked( (int)0x800 71004); // -21470207 96 | |||||
| 6266 | publ ic const i nt DelveAc tionHubRes ponseRetie valFailure Exception = unchecke d((int)0x8 0071005); // -214702 0795 | |||||
| 6267 | publ ic const i nt EvoStsA uthorizati onServerRe cordCreati onFailureE xception = unchecked ((int)0x80 071006); / / -2147020 794 | |||||
| 6268 | publ ic const i nt DelveAc tionHubAut horization FailureExc eption = u nchecked(( int)0x8007 1007); // -214702079 3 | |||||
| 6269 | publ ic const i nt DelveAc tionHubS2S SetupFailu reExceptio n = unchec ked((int)0 x80071008) ; // -2147 020792 | |||||
| 6270 | publ ic const i nt ActionC ardDisable dError = u nchecked(( int)0x8007 1100); // -214702054 4 | |||||
| 6271 | publ ic const i nt Exchang eCardAttri buteMissin gInRespons eException = uncheck ed((int)0x 80071102); // -21470 20542 | |||||
| 6272 | publ ic const i nt ActionC ardInvalid StateCodeE xception = unchecked ((int)0x80 071103); / / -2147020 541 | |||||
| 6273 | publ ic const i nt Exchang eCardInval idResponse FormatExce ption = un checked((i nt)0x80071 104); // - 2147020540 | |||||
| 6274 | publ ic const i nt Exchang eCardS2SSe tupFailure Exception = unchecke d((int)0x8 0071105); // -214702 0539 | |||||
| 6275 | publ ic const i nt Documen tManagemen tIsDisable dOnEntity = unchecke d((int)0x8 0071011); // -214702 0783 | |||||
| 6276 | publ ic const i nt Regardi ngObjectVa luesRetrie valFailure = uncheck ed((int)0x 80071012); // -21470 20782 | |||||
| 6277 | publ ic const i nt Related RecordsFai lure = unc hecked((in t)0x800710 13); // -2 147020781 | |||||
| 6278 | publ ic const i nt SharePo intSiteNot Configured = uncheck ed((int)0x 80071014); // -21470 20780 | |||||
| 6279 | publ ic const i nt Recomme ndedDocume ntsRetriev alFailure = unchecke d((int)0x8 0071015); // -214702 0779 | |||||
| 6280 | publ ic const i nt Similar ityRuleDis abled = un checked((i nt)0x80071 016); // - 2147020778 | |||||
| 6281 | publ ic const i nt SharePo intS2SIsDi sabled = u nchecked(( int)0x8007 1017); // -214702077 7 | |||||
| 6282 | publ ic const i nt Similar ityRuleFCB Off = unch ecked((int )0x8007101 8); // -21 47020776 | |||||
| 6283 | publ ic const i nt Documen tRecommend ationsFCBO ff = unche cked((int) 0x80071019 ); // -214 7020775 | |||||
| 6284 | publ ic const i nt MaxProd uctsAllowe d = unchec ked((int)0 x80071020) ; // -2147 020768 | |||||
| 6285 | publ ic const i nt NoFiles Selected = unchecked ((int)0x80 071021); / / -2147020 767 | |||||
| 6286 | publ ic const i nt Destina tionFolder NotExists = unchecke d((int)0x8 0071022); // -214702 0766 | |||||
| 6287 | publ ic const i nt NoWrite Permission = uncheck ed((int)0x 80071023); // -21470 20765 | |||||
| 6288 | publ ic const i nt Connect ionTimeOut = uncheck ed((int)0x 80071024); // -21470 20764 | |||||
| 6289 | publ ic const i nt Selecte dFileNotFo und = unch ecked((int )0x8007102 5); // -21 47020763 | |||||
| 6290 | publ ic const i nt FileSiz eExceeded = unchecke d((int)0x8 0071026); // -214702 0762 | |||||
| 6291 | publ ic const i nt CopyGen ericError = unchecke d((int)0x8 0071027); // -214702 0761 | |||||
| 6292 | publ ic const i nt Recomme ndedDocume ntsRetriev alFailureW henSPSiteN otConfigur ed = unche cked((int) 0x80071028 ); // -214 7020760 | |||||
| 6293 | publ ic const i nt PluginS ecureStore KeyVaultCl ient = unc hecked((in t)0x800910 00); // -2 146889728 | |||||
| 6294 | publ ic const i nt PluginS ecureStore KeyVaultCl ientGetSec ret = unch ecked((int )0x8009100 1); // -21 46889727 | |||||
| 6295 | publ ic const i nt PluginS ecureStore KeyVaultCl ientSetSec ret = unch ecked((int )0x8009100 2); // -21 46889726 | |||||
| 6296 | publ ic const i nt PluginS ecureStore KeyVaultCl ientDecryp t = unchec ked((int)0 x80091003) ; // -2146 889725 | |||||
| 6297 | publ ic const i nt PluginS ecureStore KeyVaultCl ientEncryp t = unchec ked((int)0 x80091004) ; // -2146 889724 | |||||
| 6298 | publ ic const i nt PluginS ecureStore AdalAcquir eToken = u nchecked(( int)0x8009 1005); // -214688972 3 | |||||
| 6299 | publ ic const i nt PluginS ecureStore TPSKeyVaul tUnconfigu red = unch ecked((int )0x8009100 6); // -21 46889722 | |||||
| 6300 | publ ic const i nt PluginS ecureStore TPSAssembl yNotRegist ered = unc hecked((in t)0x800910 07); // -2 146889721 | |||||
| 6301 | publ ic const i nt PluginS ecureStore S2SMissing = uncheck ed((int)0x 80091008); // -21468 89720 | |||||
| 6302 | publ ic const i nt PluginS ecureStore TPSClient = unchecke d((int)0x8 0091009); // -214688 9719 | |||||
| 6303 | publ ic const i nt PluginS ecureStore LocalConfi gStoreGetD ata = unch ecked((int )0x8009100 a); // -21 46889718 | |||||
| 6304 | publ ic const i nt PluginS ecureStore LocalConfi gStoreSetD ata = unch ecked((int )0x8009100 b); // -21 46889717 | |||||
| 6305 | publ ic const i nt PluginS ecureStore KeyVaultSe rviceProvi derGetData = uncheck ed((int)0x 8009100c); // -21468 89716 | |||||
| 6306 | publ ic const i nt PluginS ecureStore KeyVaultSe rviceCertF ormat = un checked((i nt)0x80091 00d); // - 2146889715 | |||||
| 6307 | publ ic const i nt PluginS ecureStore NoFullySig ned = unch ecked((int )0x8009100 f); // -21 46889713 | |||||
| 6308 | publ ic const i nt Invalid ProcessIdO peration = unchecked ((int)0x80 092001); / / -2146885 631 | |||||
| 6309 | publ ic const i nt Invalid ChangeProc ess = unch ecked((int )0x8009200 2); // -21 46885630 | |||||
| 6310 | publ ic const i nt Invalid StageTrans ition = un checked((i nt)0x80092 003); // - 2146885629 | |||||
| 6311 | publ ic const i nt Invalid CrossEntit yOperation = uncheck ed((int)0x 80092004); // -21468 85628 | |||||
| 6312 | publ ic const i nt Invalid CrossEntit yTargetOpe ration = u nchecked(( int)0x8009 2005); // -214688562 7 | |||||
| 6313 | publ ic const i nt CrossEn tityRelati onshipInva lidOperati on = unche cked((int) 0x80092006 ); // -214 6885626 | |||||
| 6314 | publ ic const i nt Invalid TraversedP ath = unch ecked((int )0x8009200 7); // -21 46885625 | |||||
| 6315 | publ ic const i nt AutoDat aCaptureDi sabledErro r = unchec ked((int)0 x80091041) ; // -2146 889663 | |||||
| 6316 | publ ic const i nt AutoDat aCaptureAu thorizatio nFailureEx ception = unchecked( (int)0x800 91042); // -21468896 62 | |||||
| 6317 | publ ic const i nt AutoDat aCaptureRe sponseRetr ievalFailu reExceptio n = unchec ked((int)0 x80091043) ; // -2146 889661 | |||||
| 6318 | publ ic const i nt Provisi oningNotCo mpleted = unchecked( (int)0x800 91044); // -21468896 60 | |||||
| 6319 | publ ic const i nt PowerBI CannotBeSy stemDashbo ard = unch ecked((int )0x800608f c); // -21 47088132 | |||||
| 6320 | publ ic const i nt PowerBI DashboardC ontrolLimi tation = u nchecked(( int)0x8006 08fd); // -214708813 1 | |||||
| 6321 | publ ic const i nt CannotU pdateEmail StatisticF orEmailNot Sent = unc hecked((in t)0x800500 01); // -2 147155967 | |||||
| 6322 | publ ic const i nt CannotU pdateEmail StatisticF orEmailNot Followed = unchecked ((int)0x80 050002); / / -2147155 966 | |||||
| 6323 | publ ic const i nt EmailEn gagementFe atureDisab led = unch ecked((int )0x8005000 3); // -21 47155965 | |||||
| 6324 | publ ic const i nt OneDriv eForBusine ssDisabled = uncheck ed((int)0x 80050004); // -21471 55964 | |||||
| 6325 | publ ic const i nt Invalid ActivityMi meAttachme ntId = unc hecked((in t)0x800500 05); // -2 147155963 | |||||
| 6326 | publ ic const i nt Attachm entNotRela tedToEmail = uncheck ed((int)0x 80050006); // -21471 55962 | |||||
| 6327 | publ ic const i nt EmailDo esNotExist = uncheck ed((int)0x 80050007); // -21471 55961 | |||||
| 6328 | publ ic const i nt EmailNo tFollowed = unchecke d((int)0x8 0050008); // -214715 5960 | |||||
| 6329 | publ ic const i nt OneDriv eForBusine ssLocation NotFound = unchecked ((int)0x80 050009); / / -2147155 959 | |||||
| 6330 | publ ic const i nt Documen tManagemen tDisabledF orEmail = unchecked( (int)0x800 50010); // -21471559 52 | |||||
| 6331 | publ ic const i nt EmailMo nitoringNo tProvision ed = unche cked((int) 0x80050011 ); // -214 7155951 | |||||
| 6332 | publ ic const i nt EmailMo nitoringPr ovisionFai led = unch ecked((int )0x8005001 2); // -21 47155950 | |||||
| 6333 | publ ic const i nt ErrorIn FetchingEm ailEngagem entProvisi oningStatu s = unchec ked((int)0 x80050013) ; // -2147 155949 | |||||
| 6334 | publ ic const i nt EmailMo nitoringDe ProvisionF ailed = un checked((i nt)0x80050 014); // - 2147155948 | |||||
| 6335 | publ ic const i nt EmailEn gagementFe atureDisab ledForAtta chmentTrac king = unc hecked((in t)0x800500 15); // -2 147155947 | |||||
| 6336 | publ ic const i nt SiteMap Missing = unchecked( (int)0x800 50016); // -21471559 46 | |||||
| 6337 | publ ic const i nt CannotU pdateTempl ateIdForEm ailInNonDr aftState = unchecked ((int)0x80 050017); / / -2147155 945 | |||||
| 6338 | publ ic const i nt CannotU pdateEmail StatisticW henEEFeatu reNotEnabl ed = unche cked((int) 0x80050018 ); // -214 7155944 | |||||
| 6339 | publ ic const i nt Invalid TemplateId = uncheck ed((int)0x 80050019); // -21471 55943 | |||||
| 6340 | publ ic const i nt CannotU pdateDelay SendTimeFo rEmailWhen EmailIsNot InProperSt ate = unch ecked((int )0x8005002 0); // -21 47155936 | |||||
| 6341 | publ ic const i nt CannotU pdateDelay SendTimeWh enEEFeatur eNotEnable d = unchec ked((int)0 x80050021) ; // -2147 155935 | |||||
| 6342 | publ ic const i nt Designe rAccessDen ied = unch ecked((int )0x8005010 0); // -21 47155712 | |||||
| 6343 | publ ic const i nt Designe rInvalidPa rameter = unchecked( (int)0x800 50101); // -21471557 11 | |||||
| 6344 | publ ic const i nt ErrorTe mplate = u nchecked(( int)0x8005 0102); // -214715571 0 | |||||
| 6345 | publ ic const i nt Invalid AppModuleS iteMap = u nchecked(( int)0x8005 0110); // -214715569 6 | |||||
| 6346 | publ ic const i nt Invalid MultipleSi teMapRefer enceSingle AppModule = unchecke d((int)0x8 0050111); // -214715 5695 | |||||
| 6347 | publ ic const i nt Invalid AppModuleC omponentTy pe = unche cked((int) 0x80050112 ); // -214 7155694 | |||||
| 6348 | publ ic const i nt Invalid AppModuleC omponent = unchecked ((int)0x80 050113); / / -2147155 693 | |||||
| 6349 | publ ic const i nt CannotP ublishAppM odule = un checked((i nt)0x80050 114); // - 2147155692 | |||||
| 6350 | publ ic const i nt AppModu leComponen tEntityMus tHaveFormO rView = un checked((i nt)0x80050 115); // - 2147155691 | |||||
| 6351 | publ ic const i nt Invalid AppModuleI d = unchec ked((int)0 x80050116) ; // -2147 155690 | |||||
| 6352 | publ ic const i nt AppModu leFeatureN otEnabled = unchecke d((int)0x8 0050117); // -214715 5689 | |||||
| 6353 | publ ic const i nt AppModu leNotConta inMOCAEnab ledEntity = unchecke d((int)0x8 0050118); // -214715 5688 | |||||
| 6354 | publ ic const i nt CannotU pdateAppMo duleUnique Name = unc hecked((in t)0x800501 19); // -2 147155687 | |||||
| 6355 | publ ic const i nt Invalid AppModuleU rl = unche cked((int) 0x8005011a ); // -214 7155686 | |||||
| 6356 | publ ic const i nt NoAppMo duleCompon entReferre d = unchec ked((int)0 x8005011b) ; // -2147 155685 | |||||
| 6357 | publ ic const i nt NoSiteM apReferenc eInAppModu le = unche cked((int) 0x8005011c ); // -214 7155684 | |||||
| 6358 | publ ic const i nt AppModu leNotRefer Entity = u nchecked(( int)0x8005 011d); // -214715568 3 | |||||
| 6359 | publ ic const i nt Invalid AppModuleU niqueName = unchecke d((int)0x8 005011e); // -214715 5682 | |||||
| 6360 | publ ic const i nt Duplica teAppModul eUniqueNam e = unchec ked((int)0 x8005011f) ; // -2147 155681 | |||||
| 6361 | publ ic const i nt Multipl eSitemapsF ound = unc hecked((in t)0x800501 20); // -2 147155680 | |||||
| 6362 | publ ic const i nt Reffere dSolutionI sDifferent = uncheck ed((int)0x 80050122); // -21471 55678 | |||||
| 6363 | publ ic const i nt AppModu lesImportE rror = unc hecked((in t)0x800501 23); // -2 147155677 | |||||
| 6364 | ||||||
| 6365 | } | |||||
| 6366 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.