If anyone can point me to the documentation for SL, which address the field length limits, right now i need to know about the length limit of invoice number.
Dynamics SL Field Length limit / Invoice Number length
476 Views Asked by devkhalid At
1
There are 1 best solutions below
Related Questions in MICROSOFT-DYNAMICS
- D365 F&O - Cannot post addresses with OData
- How to give access to RAPIDSTART in Business Central to SUPER user?
- Handling Success and Error API responses in Logic Apps workflow part 2
- getting errors while installing ISV licence using AXUpdateInstaller.exe devinstall for D365FO
- Microsoft Dynamics Add-in Excel - Filtering multiple values
- How to call OriginalDocuments form by code D365fo
- How to update custom reports in Dynamics 365 Field services
- Concat strings using fx formular
- Dynamics 365: Where does the "Party Number" field in the Contacts table come from?
- Can you reference a class from another solution in Dynamics 365 Cloud?
- Getting rid of "body" from an array content when appending it to a JSON API request payload in Logic Apps
- How to add customization in Knowledge article expiration View in Dynamics CRM
- Is EasyRepro still being maintained?
- How to use/find a customer's MS Dynamics Dataverse tentant resource?
- How to add OffsetLedgerDimension to Fixed Asset Journal by x++?
Related Questions in DYNAMICS-SL
- Inconsistent Results from Cross-Server Query
- Microsft Dynamics SL SoHeader And SalesPerson relationship- Not able to link
- How can I fix Run-time error 430 from importing custom DLL in VBA project
- VBA how to replace "As Any" in function
- How to jump to a tab using VBA code
- VBA: Only user-defined types defined in public object modules can be coerced to or from a variant or passed to a late-bound functions
- Dynamics SL Field Length limit / Invoice Number length
- Need SQL data structure information
- Microsoft Dynamics SL window opens minimized. Must hit ALT + Spacebar and then maximize
- MS Dynamics - permissions on modules
- Do synonyms work in Dynamics SL (Solomon)?
- Dynamics Solomon Customization
- Good online resources for Microsoft Dynamics SL?
- Discovering Dynamics SL (Solomon) Customizations
- intelligent database search
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I'm not quite sure where the documentation is, but the way I figure out the field length limits is with SQL Server Management Studio (SSMS). You can look at the databases and various tables/fields and figure out how big each field is as well as myriad of other information.
To find out the invoice number field length with SSMS I would connect to the Dynamics SL Company database (not the system database). The invoice number is a part of the accounts payable (AP) screens, so I would expand the
APDOCtable. Once you've done that you will see a few folders, one of which is theColumnsfolder. Expand theColumnsfolder and you will be presented with a list of fields. Within the parenthesis next to each of those fields you will find the length. In your case you will want to look at theInvcNbrfield which is 15 characters for me, which I believe is the out of the box length.An alternative method is to use customize mode within Dynamics SL. If you open up any screen that has the invoice number field, like
Voucher and Adjustment Entryyou can open up customize mode using the menu at the top of the screen. Next, open up theProperty Windoweither by using the customize menu or hittingF4. Next, select the field you want to know the length for. For all character fields there will be a property calledMaskthat will be filled with several Xs. To figure out the field length, you simply need to count the number of Xs.These 2 methods should be fairly future proof and will allow you to not have to search for the documentation for whatever version of Dynamics SL you might be on.