233 SOAP services · 10 menu systems · 463 payload tables · 9,671 fields
Every SOAP / Connect web service in the standard vanilla Ross ERP 8.0 integration layer (the RS_* services). Each is registered in the dictionary procedures table and moves data as IAF <tables> documents. This is a catalog of the registration and payload schema — description, menu system, typed parameters, and the request / response tables with their fields. No wrapper source body is published.
Search matches service name, description, payload table and facility id. Narrow with the Inbound / Outbound direction chips, Has request table, and the menu system selector. Open a service to cross over to its backing Facility and Program.
A service is invoked as an IAF stored procedure over Connect. Two transports: the xpo.aspx runner — a plain HTTP call (GET for reads, POST of the IAF <tables><table name="…"><data><row>… request document for writes; procedure in pn=, by-value params in p1..pn) — and the sample ConnectService.asmx SOAP wrapper around the ExecuteXML method, which carries a <method name="…"> document of parameters and tables. The broker connection (host, port, application, user, password) is supplied by the client via IafConfig.xml / a resource bundle; xpo.aspx can override user/pass per call with secUN/secPW. There is no JSON/REST interface in vanilla Connect. XML_TAGS controls how much field metadata the response carries (0 = data only; +16 field names; +4096 descriptions — additive). Every service reports status through #ERROR_OCCURRED and the RS_SYS_MESSAGES table. The Postman buttons export the exact xpo.aspx call.
Services are read from the standard vanilla Ross ERP 8.0 dictionary (procedures + payload table definitions). Customer and site customizations are excluded, and custom columns grafted onto vanilla tables are scrubbed. Deep-link any service by name (#rs_wms_get_ship_note). Catalog metadata only — no proprietary source is included.