How to Verify that OData v4 is Working
How to quickly verify that OData is running and working correctly.
Requirements
A user login for the OdataV4 URL below that has the ODataV4 ROLE.
If the Acumatica Admin has set up permission restrictions by screen then the user will need the screen permissions AND the ODatav4 role.
Verification
In web browser enter
https://xxx.acumatica.com/odatav4/AB&C%20Corp/$metadata
Where:“
xxx
" is replaced with the customer's Acumatica site name“
AB&C%20Corp
" with replaced with the customer's Acumatica tenant name.
For more about%20
encoding see the URL Encoding section below.
Enter the user login
Evaluating Results
If the web page display a list of tables then Acumatica is working.
Work in ProgressRestart Acumatica
message.
What to do if you get a message like “Restart Acumatica” or some other error message.
Troubleshooting
See OData: Message OData[0100] "contents ... not available"
If there are spaces in the customer's tenant name, each space must be replaced with %20
. This is a example of URL Encoding.
URL Encoding replaces certain characters – mostly spaces and other special characters – with a %
followed by a 2 digit number.
AB&C Corp
is encoded asAB&C%20Corp
Benchmark Technology Group
is encoded asbenchmark%20technology%20group
For more see URL Encoding