1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| Function ImportROCPTA()
Datesel = F_Utilitaires_DonneDate("Date_jour")
DatRes = Mid(Datesel, 7, 4) & Mid(Datesel, 4, 2) & Mid(Datesel, 1, 2)
MsgBox (DatRes)
DoCmd.TransferText acImportDelim, "ROCPTA", "Base 10260", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_10260_CPTA.csv"
DoCmd.TransferText acImportDelim, "ROCPTA", "Base 10117", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_10117_CPTA.csv"
DoCmd.TransferText acImportDelim, "ROCPTA", "Base 10002", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_10002_CPTA.csv"
DoCmd.TransferText acImportDelim, "ROCPTA", "Base 10115", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_10115_CPTA.csv"
DoCmd.TransferText acImportDelim, "ROCPTA", "Base TRESO", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_TRESO_CPTA.csv"
DoCmd.TransferText acImportDelim, "ROCPTA", "Base TAUX", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_TAUX_CPTA.csv"
DoCmd.TransferText acImportDelim, "ROCPTA", "Base LA", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_LA_CPTA.csv"
DoCmd.TransferText acImportDelim, "ROCPTA", "Base ACTION", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_ACT_CPTA.csv"
DoCmd.TransferText acImportDelim, "ROCPTA", "Base LS CIGOGNE", _
"\\Umilp-p2.cdm.cm-cic.fr\CIC-Ctrlint$\Controle_des_resultats\Rapprochement_de_resultat\Reporting_2014\Report_mensuel\Rappro ROCPTA\Fichiers ROCPTA\ROCPTADetailc_M_" & DatRes & "_LS_CI_CPTA.csv"
End Function |
Partager