utilisation d’acl chez tc transcontinental

21
Utilisation d’ACL chez TC Transcontinental VERIFICATION INTERNE

Upload: todd-moore

Post on 15-Mar-2016

39 views

Category:

Documents


2 download

DESCRIPTION

VERIFICATION INTERNE. Utilisation d’ACL chez TC Transcontinental. Sommaire. Envoi automatique par courriel de rapports ACL Recherche d’employés dans le registre des fournisseurs Conclusion. 1. Envoi automatique par courriel de rapports ACL. Envoi automatique par courriel de rapports ACL. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Utilisation d’ACL chez  TC  Transcontinental

Utilisation d’ACL chez TC Transcontinental

V E R I F I C AT I O N I N T E R N E

Page 2: Utilisation d’ACL chez  TC  Transcontinental

2

Sommaire

1.Envoi automatique par courriel de rapports ACL

2.Recherche d’employés dans le registre des fournisseurs

3.Conclusion

Page 3: Utilisation d’ACL chez  TC  Transcontinental

3

S E C T I O N

1Envoi automatique par courriel de

rapports ACL

Page 4: Utilisation d’ACL chez  TC  Transcontinental

4

Envoi automatique par courriel de rapports ACL

Qu’est-ce qu’un rapport automatique ACL?

Page 5: Utilisation d’ACL chez  TC  Transcontinental

5

Envoi automatique par courriel de rapports ACL

Selon vous, quel est l’utilité des envois automatiques de rapports ACL?

Page 6: Utilisation d’ACL chez  TC  Transcontinental

6

Envoi automatique par courriel de rapports ACL

Aspects avantageux :

• Gain de temps

• Vérification interne en continue

• Prévention de la fraude

• Implication d’intervenants externes

• Visibilité de la vérification interne

Page 7: Utilisation d’ACL chez  TC  Transcontinental

7

Envoi automatique par courriel de rapports ACL

Comment cela fonctionne

• Fonction EXPORT

EXPORT FIELDS BUSINESS_UNIT OPERATING_UNIT JOURNAL_ID ACCOUNT MONETARY_AMOUNT DTTM_STAMP_SEC

JOURNAL_DATE FISCAL_YEAR OPRID REVERSAL_CD CURRENCY_CD JRNL_CREATE_DTTM LINE_DESCR

ACCOUNTING_PERIOD JOURNAL_LINE DESCR254 XLS21 TO "JE_LAST_WEEK_OVER_500K"

Page 8: Utilisation d’ACL chez  TC  Transcontinental

8

Envoi automatique par courriel de rapports ACL

• Fonction NOTIFY USER

• Mettre l’adresse d’envoi

• Configurer le MAILBOX

• L’adresse courriel à qui le rapport est envoyé

• Le sujet

• Le message

• Les pièces jointes

Page 9: Utilisation d’ACL chez  TC  Transcontinental

9

Envoi automatique par courriel de rapports ACL

NOTIFY USER "[email protected]"

MAILBOX "Relais.transcontinental.ca"

ADDRESS "%verif%" SUBJECT "FINANCIAL HIGHLIGHTS 9.1"

MESSAGE "----DONNEES POUR PEOPLESOFT 9.1------Bonjour equipe de la verification interne,  …… un meme numero de compte de banque."

ATTACHMENT "JE_LAST_WEEK_OVER_500K.xls,NEW_EMPLOYEES.xls,DUPLICATES_EMP_VENDOR.xls,DOUBLONS_NUMEROS_FACTURE.xls,VENDOR_CREATION_DATE.xls,DUPLICATE_BANK_ACCOUNT.xls« 

Page 10: Utilisation d’ACL chez  TC  Transcontinental

10

Envoi automatique par courriel de rapports ACL

Le sujet du courriel ne traduit pas les apostrophes et les accents

Vous pouvez mettre l’adresse d’envoi de votre choix

Utiliser des variables pour définir vos adresses; vous n’avez qu’à les identifier au début de votre script

Page 11: Utilisation d’ACL chez  TC  Transcontinental

11

S E C T I O N

Recherche d’employés dans le

registre des fournisseurs2

Page 12: Utilisation d’ACL chez  TC  Transcontinental

12

Recherche d’employés dans le registre des fournisseurs

Quel est l’utilité de ce type de rapport ?

• Prévention de la fraude d’employés

• Rapport envoyé au service des payables chaque semaine

• Faciliter les sélections lors de mandat de vérification

Page 13: Utilisation d’ACL chez  TC  Transcontinental

13

Recherche d’employés dans le registre des fournisseurs

Sur quelles variables peut-on comparer les fournisseurs et les employés ?• Codes postaux• Comptes de banque• Adresses• Téléphones• Etc.

• Encore une fois, attention aux « faux positifs »

Page 14: Utilisation d’ACL chez  TC  Transcontinental

14

Recherche d’employés dans le registre des fournisseurs

Attention :

Vous devez vous assurer que vos champs sont sous le même format, ont la même longueur et inclus des composantes similaires

Utilisez la fonction suivante :

DEFINE FIELD C_POSTAL_VEND COMPUTED SUBSTR( INCLUDE( UPPER( POSTAL), "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"), 1, 30)

Page 15: Utilisation d’ACL chez  TC  Transcontinental

15

Recherche d’employés dans le registre des fournisseurs

UTILISEZ LA FONCTION JOIN :

JOIN PKEY C_BANKACCOUNT_EMP FIELDS

SKEY

TO "STEP3_JOIN_BANK_ACCOUNT" OPEN PRESORT MANY SECSORT

Page 16: Utilisation d’ACL chez  TC  Transcontinental

16

Recherche d’employés dans le registre des fournisseurs

UTILISEZ LA FONCTION APPEND DE LA FONCTION EXTRACT :

APPEND

Optional. Specifies that command output should be appended to the end of an existing file instead of overwriting the existing file. You must ensure that the structure of the two files is identical when using this parameter, if maintaining a consistent file structure is important (e.g., when you are appending data to an existing ACL table), because ACL appends output to an existing file regardless of its structure.

Page 17: Utilisation d’ACL chez  TC  Transcontinental

17

Recherche d’employés dans le registre des fournisseurs

Utiliser l’aide ACL pour mieux comprendre les fonctions. Par exemple, pour « many secsort » de

la fonction JOIN:

MANY :

Includes matched records from the primary table and matched records from the secondary table in the output table. If there is more than one key field match in the secondary table, ACL includes all of the matched records it finds. This parameter corresponds to the “Many-to-Many Matched Records” option in the Join dialog box.

Page 18: Utilisation d’ACL chez  TC  Transcontinental

18

Recherche d’employés dans le registre des fournisseurs

SECSORT :

Sorts the secondary table on the primary key before joining the tables. This option cannot be used in a group.

Page 19: Utilisation d’ACL chez  TC  Transcontinental

19

Recherche d’employés dans le registre des fournisseurs

VOIR EXEMPLE DU SCRIPT UTILISÉ

Page 20: Utilisation d’ACL chez  TC  Transcontinental

20

Recherche d’employés dans le registre des fournisseurs

Autres scripts utilisés par TC Transcontinental, équipe de la vérification interne

• Dédoublement de comptes de banque à l’intérieur des employés

• Dédoublement de compte de banques entre des fournisseurs

• Comparaison entre les paiements des clients et le montant des factures

• Création de nouveaux vendeurs et de nouvelles factures

• Dédoublement au niveau des factures et des paiements