Scriptcase uses a "Grid" and "Form" based philosophy. When you create a new application, you generally choose from these types:
Because the Full Link is a standard HTTP GET request, you can call Scriptcase applications from any external system (Java, Python, PowerApps, Zapier).
Example: Calling a Scriptcase report from a Python script:
import requests
# The Scriptcase Full Link
url = "http://myserver.com/scriptcase/apps/api/report_grid.php?report_id=5&format=json"
response = requests.get(url)
print(response.json())
Error 1: White Screen or "Application Not Found" scriptcase full link
Error 2: Parameters are not being captured
Error 3: Security Block (Redirect Loop)
A common misconception about RAD tools is that they lock you into a proprietary runtime. Scriptcase, however, generates pure PHP code. Scriptcase uses a "Grid" and "Form" based philosophy
Scenario: Open an ERP page with current order ID.
Full Link:
https://erp.company.com/order.aspx?id=order_number
Security Note: Use [token] for authentication if required. Error 1: White Screen or "Application Not Found"
You can combine the Full Link with Scriptcase’s modal components.
When a project is ready, you use the Deployment Wizard. This feature packages all the generated PHP files, assets, and configuration files into a ZIP file.
This ensures that your application is portable and scalable.