Difference between revisions of "Gestione oggetto combinato"

From SageDev KB
Jump to navigation Jump to search
(Created page with "Azioni specifiche dell'oggetto combinato DEBUT_CRE A the beginning of the creation transaction (combined OBJect) DEBUT_MOD A the beginning of the modification transaction (...")
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
Azioni specifiche dell'oggetto combinato
 
Azioni specifiche dell'oggetto combinato
  
DEBUT_CRE A the beginning of the creation transaction (combined OBJect)
+
* DEBUT_CRE A the beginning of the creation transaction (combined OBJect)
DEBUT_MOD A the beginning of the modification transaction (combined OBJect)
+
* DEBUT_MOD A the beginning of the modification transaction (combined OBJect)
 +
* LIENS0  Before reading a group of records (grid and combined OBJect)
 +
* LIENS2 After reading a group of records (grid and combined OBJect)
 +
 
 +
<pre>
 +
$SETBOUT
 +
  #Negli oggetti di tipo combinato con chiave multipla, non si attiva il bottone Elimina.
 +
  #Per attivarlo aggiungere la seguente istruzione nella SETBOUT
 +
  If CLECUR & SUPPR : CHAINE+="A" : Endif #Per attivare il bottone elimina
 +
Return
 +
</pre>

Latest revision as of 08:10, 16 August 2022

Azioni specifiche dell'oggetto combinato

  • DEBUT_CRE A the beginning of the creation transaction (combined OBJect)
  • DEBUT_MOD A the beginning of the modification transaction (combined OBJect)
  • LIENS0 Before reading a group of records (grid and combined OBJect)
  • LIENS2 After reading a group of records (grid and combined OBJect)
$SETBOUT
  #Negli oggetti di tipo combinato con chiave multipla, non si attiva il bottone Elimina.
  #Per attivarlo aggiungere la seguente istruzione nella SETBOUT
  If CLECUR & SUPPR : CHAINE+="A" : Endif #Per attivare il bottone elimina
Return