Introduzione di nuove voci nella gestione dei teli mancati
Con UDF skrpps_02.addd_defective_part_data(…) è possibile aggiungere nuove voci nella gestione dei teli mancati.
Più voci possono essere inserite richiamandole una sola volta.
Parametri | Tipo | Descrizione |
---|---|---|
_iStateMode | smallint | Azioni:
|
_iTicketUid | bigint | Ticket UID |
_tT imeS | imestamp without time zone | Marcatura oraria della voce |
_sUserName | text | L'utente che ha inserito la voce |
_iSkrMcId | integer | SKR Maschine ID |
_sMcGuid | text | PPS Maschinen ID |
_sComment | text | Commento qualsiasi |
_iFlags | integer | Contrassegni (utilizzabili liberamente) |
_sTicketProductionId | text | ID produzione ticket |
_sTicketProductionSub1Id | text | Sub1 ID produzione ticket |
_sTicketProductionSub2Id | text | Sub2 ID produzione ticket |
_sTicketArticleId | text | ID articolo ticket |
_sTicketCustomerId | text | ID cliente ticket |
_sSeqName | text | Sequenza |
_asPatternName | text[] | Nomi del disegno |
_aiPosInSeq | smallint[] | Posizioni del disegno nella sequenza |
_aiCount | integer[] | Numero di teli mancati |
Codice a titolo di esempio skrpps_02.add_defective_part_data (…)
select skrpps_02.add_defective_part_data
(
0::smallint – Action of missing fabric pieces
, 12345678 -- Ticket UID
, now()::timestamp without time zone – Time and date of the message
, 'armes_wuerstchen'-- User
, NULL -- SKR Machine ID (*1)
,'42.43.44.45.46' -- PPS Machine ID
,'BlaBla...' – any desired comment
,42 -- any desired flags
,'Prod_Id-1321' -- Ticket Production ID
,'sub_1-32' -- Ticket Production Sub1 ID
,'sub_2_53425' -- Ticket Production Sub2 ID
,'artId-322143' -- Ticket Item ID
,'CustomerId-4343' -- Ticket Customer ID
,'My-Seq' -- Sequence
,ARRAY['Pattern1','Pattern2','PatternX'] – pattern name
,ARRAY[1::smallint,2::smallint,5::smallint] – Positions of the pattern within the sequence
,ARRAY[20,11,2] – Quantity of missing fabric pieces
);
Il contenuto delle matrici presenta il significato seguente:
- Disegno 'Pattern1': 20 teli mancati
risulta su posizione 1 nella sequenza ‘My-Seq‘ - Disegno 'Pattern2': 11 teli mancati
risulta su posizione 2 nella sequenza ‘My-Seq‘ - Disegno 'PatternX': 2 teli mancati
risulta su posizione 5 nella sequenza ‘My-Seq‘
Codice a titolo di esempio analisi su “skrpps_02.v_defective_parts”
Todo