Package Validation Failed in BC D365 SAAS: (1) In this blog, we will get to know about the mandatory step while publishing your extension in the production environment of Business Central D365. (2) If you develop new objects in the extension, you must do this step, otherwise Error PTE0004: Package Validation failed is pop up in …
Using DELSTR Function in BC D365: (1) In this blog, we will get to know about the use of the DELSTR function in BC D365. It removes a substring from a string. (2) Syntax of DELSTR: NewString := DELSTR(String, Position) (3) Now let’s take an example and see the result as shown. Message 1 is: Output …
Using INCSTR Function in BC D365: (1) In this blog, we will get to know about the use of the INCSTR function in BC D365. It increases a positive number or decreases a negative number inside a string by one (1). (2) Syntax of INCSTR: NewString := INCSTR(String) (3) Now let’s take an example and see …
Using UpperCase Function in BC D365: (1) In this blog, we will get to know about the use of the UPPERCASE function in BC D365. It converts all letters in a string to uppercase. (2) Syntax of UPPERCASE: NewString := UPPERCASE(String) (3) Now let’s take an example and see the result, as shown. Message 1 is: …
Using LOWERCASE Function in BC D365: (1) In this blog, we will get to know about the use of the LOWERCASE function in BC D365. It converts all letters in a string to lowercase. (2) Syntax of LOWERCASE: NewString := LOWERCASE(String) (3) Now let’s take an example and see the result, as shown. Message 1 is: …
Delete Characters and Space from String by using DELCHR Function: (1) In this blog, we will get to know about the use of the DELCHR function in BC D365. It is used to delete characters and spaces from the string. It is mainly used when removing a special character from the string. (2) Syntax of DELCHR: …
Replace Characters from String by using CONVERTSTR Function: (1) In this blog, we will get to know about the use of the CONVERTSTR function in BC D365. Replaces all characters in the source found in FromCharacters with the corresponding character in ToCharacters and returns the converted string. (2) Note: The length of the FromCharacters parameter and …
Get Substring from Comma-Separated String by using SELECTSTR Function: (1) In this blog, we will get to know about the use of the SELECTSTR function in D365 BC. It retrieves a substring from a comma-separated string. (2) Syntax of SELECTSTR: NewString := SELECTSTR(Number, CommaString) (3) Note: It only uses when the comma “,” is in a …