Using the GetSchemaForObject Web Method
2 min
retrieves an xml version of the metadata behind a business object in the process, it screens out properties not appropriate for end users, such as the recid request syntax string getschemaforobject(string sessionkey, string tenantid, string objectname) parameters sessionkey the session key from the connect web method tenantid the tenant for which the session key is authenticated objectname the name of the business object, in object reference notation (such as "incident#") return value a string value representing the schema for the specified business object, which is represented in xml example string schemadoc = frsvc getschemaforobject(authsessionkey, tenantid, "incident#");
