P
pliscki
Guest
You don't need to create two links for UpdateBIC. Moreover it can cause a deadlock. Everytime you use a link you need to specify wheter it is the Source or the Target. I'll show some examples that might be handy. Considering you only have the following link: h_v-adr_1 UpdateBIC h_v-adr_2 To execute a procedure in another object : run notify ('proc-name', 'link-type'). eg: run notify ('some-proc', 'UpdateBIC-target'). (it will execute 'some-proc' inside h_v-adr_2). To send parameters to another object: run set-link-attribute in adm-broker-hdl ( 'source-proc-handle' , 'link-type', 'att=val, att=val'). e.g inside h_v-adr_1 run set-link-attribute in adm-brojer-hdl (THIS-PROCEDURE, 'UpdateBIC-targe', 'att=value,att=value,...'). to get the value of the attribute inside h_v-adr_1 RUN GET-ATTRIBUTE (INPUT 'att'). char-var = RETURN-VALUE.
Continue reading...
Continue reading...