As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
On a "After Save" on a datasource, i wanna manipulate a value in another collection. Thus i'm new to the business collection stuff - can someone give me a statring point to do this? After reading all Documents for the business logic API it's not 100% clear to me...
my code so far:
// To get the entity id of the object in the "other" collection, i want to manipulate. - works finde :)
function onPostSave(request, response, modules){
var eventID = request.body.event_id;
//What's not clear to me is - how i can achieve the saving (update) the value in this other collection. Any starting pont/hint/Code //Example would be great to save us time experimenting :)
Nico Barelmann
following case:
On a "After Save" on a datasource, i wanna manipulate a value in another collection. Thus i'm new to the business collection stuff - can someone give me a statring point to do this? After reading all Documents for the business logic API it's not 100% clear to me...
my code so far:
// To get the entity id of the object in the "other" collection, i want to manipulate. - works finde :)
function onPostSave(request, response, modules){
var eventID = request.body.event_id;
//What's not clear to me is - how i can achieve the saving (update) the value in this other collection. Any starting pont/hint/Code //Example would be great to save us time experimenting :)
response.complete(200);
}
Best,
Nico