Table of Contents

Web service get Related Records method


The getRelatedRecords() web service interface function permits us to retrieve the set of related records that belong to any given record. In other words, given an entity ID that represents one record in the application and the name of a module that is related to this entity, we will get the full set of records related to the ID.

For example, suppose we have a contact record with id 22. We know that one contact can have many invoices. So if we want to see the invoices related to the contact with id 22 we would execute something like this:

getRelatedRecords('4x22','Contacts','Invoice');

The profile of the function is:

getRelatedRecords($id, $module, $relatedModule, $productDiscriminator, $user) return records=array({records})

where

The method has been created with complete support in mind, but this is really hard to achieve due to the great variety of relations that exist and the different ways in which they are established. On top of that, there is no one place to turn to to get the information on how two entities are related.

Since we try to cover all the relations we have forced the method to return some non-standard relations that I will try to explain next.

Comments

With the introduction of the ModComments module we now have a standard way of applying comments to any module, but this module is not related in a normal way to it's parents as it has a special interface. The getRelatedRecords() method supports access to related comments on an entity as if it was related normally, so we just have to call it as if it were related and the function will do the work for us. For example, to get the comments of a contact we would execute:

getRelatedRecords('4x22','Contacts','ModComments');

Before we had ModComments, both HelpDesk (Trouble Tickets) and Faq had native support for comments. These comments are stored in a totally different way and directly related by code. The getRelatedRecords() method supports access to both these comments as if they belonged to ModComments (in the end I am sure that this is what is going to happen sooner or later and we will be able to eliminate the specific code I have created to cover this case). To get the comments of a HelpDesk record we would execute:

getRelatedRecords('9x114','HelpDesk','ModComments');

The result set will NOT be ModComments records because they aren't internally but I have tried to make the structure as similar to ModComments as possible for compatibility reasons.

The same approach can be used with Faq comments.

Products

The products module is a very related entity in the system, not only is it related with many other entities in many ways but it is also related with itself in product bundles and has special relations to accounts and contacts through the product lines in quotes, sales orders and invoices.

Thus, I have added a special parameter specifically to cater to this proliferation of relations: productDiscriminator

If we call the getRelatedRecords() function asking for the records related between Products and Products, for example:

getRelatedRecords('6x58','Products','Products');

we can be expecting one of two things:

Since the method has no way of knowing which relation you are asking for we need an additional parameter to decide. The parameter is productDiscriminator and can take two values ProductParent, to represent the first case and ProductBundle for the second.

For the relation of Accounts and Contacts with Products a similar, but more complex, scenario can be found. First we have a direct relation between the entities and then we have the products that a given account or contact has on his quotes, sales orders and invoices. The getRelatedRecords() function has support to retrieve all of these products in various ways, depending on the value of the productDiscriminator parameter.

The possible combinations are:

NOTES:

getRelatedRecordsThroughModule

In some use cases, it is useful to be able to get a list of records related at a second level. For example, we want to get a list of project tasks related to an account going through the Projects related to the account. For this sort of question, we construct upon the getRelatedRecords method to create getRelatedRecordsThroughModule.

Purpose:Returns a list of Object records related to the given record passing through another related module.
Profile:getRelatedRecordsThroughModule(id:string, module:string, relatedModule:string, bridgeModule:string, queryParameters:Map):Map
Send as:POST
Parameters: ⇒ id: web service ID of the main record
⇒ module: module of the record in ID
⇒ relatedModule:string: second level related module name we want to get the records from
⇒ direct related module name that connects the ID with the related module
⇒ queryParameters: additional parameters supported by the getRelatedRecords method
Response:list of related module records related to the ID record

Others

The rest of the relations are based on a great idea of Prasad from vtiger where we retrieve the query that represents the relation from the relation function used in the related list more information tab. This way we use the same information that is already in the application to relate the two entities.

The biggest limitation of this approach is that these functions are basically static in their column set as the columns present in the +info tab cannot be changed without coding so, in some cases, the query is limited to obtain only those columns, while we have made the getRelatedRecords function to return all the columns the current user has access to. So to get this working we have had to manipulate the SQL returned from the functions.

In general, this approaches permits the function to support any relationship established using the related list vtlib, which makes it very powerful and flexible.