Vous êtes sur la page 1sur 9

Contents

1.1 Electronic Flight Bag Server (10.2.1.198) ........................................................................... 3


DESCRIPTION .................................................................................................................. 3
Source code........................................................................................................................ 3
DATA Source ..................................................................................................................... 3
Sample OUTput File ......................................................................................................... 3
Schedule.............................................................................................................................. 3
Frequent Issues / Fixes .................................................................................................. 3
RE-PROCESSING.............................................................................................................. 3
1.2 Flight Crew Details Server (10.2.1.198)............................................................................... 4
DESCRIPTION .................................................................................................................. 4
Source code........................................................................................................................ 4
DATA Source ..................................................................................................................... 4
Sample OUTPUT File ....................................................................................................... 4
Schedule.............................................................................................................................. 4
Frequent Issues / Fixes .................................................................................................. 4
RE-PROCESSING.............................................................................................................. 4
1.3 SkyAppTransfer OAG Server (10.2.1.198) ......................................................................... 5
DESCRIPTION .................................................................................................................. 5
Source code........................................................................................................................ 5
DATA Source ..................................................................................................................... 5
Sample OUTPUT File ....................................................................................................... 5
Schedule.............................................................................................................................. 5
Frequent Issues / Fixes .................................................................................................. 5
RE-PROCESSING.............................................................................................................. 5
1.4 Transfer Passenger Information(TPI) Server (10.2.1.198) ............................................ 6
DESCRIPTION .................................................................................................................. 6
Source code........................................................................................................................ 6
DATA Source ..................................................................................................................... 6
Sample OUTPUT FileS ..................................................................................................... 6
Schedule.............................................................................................................................. 6
Frequent Issues / Fixes .................................................................................................. 6
RE-PROCESSING.............................................................................................................. 7
1.5 Retro Accrual files Server (10.2.1.198) ............................................................................... 7
DESCRIPTION .................................................................................................................. 7
Source code........................................................................................................................ 7
DATA Source ..................................................................................................................... 7
Sample OUTput File ......................................................................................................... 8
Schedule.............................................................................................................................. 8
Frequent Issues / Fixes .................................................................................................. 8
RE-PROCESSING.............................................................................................................. 8
1.6 Retro Accrual files Server (10.2.1.198) ............................................................................... 8
DESCRIPTION .................................................................................................................. 8
Source code........................................................................................................................ 8
DATA Source ..................................................................................................................... 9
Sample INput File............................................................................................................. 9
Schedule.............................................................................................................................. 9
Frequent Issues / Fixes .................................................................................................. 9
RE-PROCESSING.............................................................................................................. 9
1.1 Electronic
Flight Bag
Server
(10.2.1.198)

DESCRIPTION
The Application sends flight Schedules to FlightMan Systems EFB, the data is used
by the FlightMan Electronic Flight Bag System in XML format. Runs as a scheduled
job in 10.2.1.198

SOURCE CODE
Download tortoise svn and check out the project with the link described as Repo link
in this document. This checks out the whole solution.

DATA SOURCE
 The system gets data from DWH/Sabre

SAMPLE OUTPUT FILE

-858701326560008752715662050-3c66-4e6b-9d21-3cf7c287f974.xml

SCHEDULE
The job is scheduled to execute every hour on windows scheduler.

FREQUENT ISSUES / FIXES


Issue:
 Failure mostly caused by hard disk space on the server both drive C and E
Fixes:
 Clear the space and run the job manually.

RE-PROCESSING
When re-processing is required, this is after flightman sends an automated email saying no
flights received in the last 24 hrs, kindly execute the executable in
E:\Efb\Schedules\FlightSchedules2\EfbConsoleFlightSchedules.exe. The application will
display the error since the try catch statement does that but mostly it’s db related.
1.2 Flight Crew
Details Server
(10.2.1.198)

DESCRIPTION
The Application sends Crew Information to FlightMan Systems EFB, the data is used
by the FlightMan Electronic Flight Bag System. It’s a scheduled job in 10.2.1.198

SOURCE CODE
Download tortoise svn and check out the project with the link described as Repo link
in this document. This checks out the whole solution.

DATA SOURCE
 The system gets data from Sabre.

SAMPLE OUTPUT FILE

-858663113433427605203361660-4254-4a5f-9664-9f7410b22465.xml

SCHEDULE
The job is scheduled to execute once a month on windows scheduler.

FREQUENT ISSUES / FIXES


Issue:
 Failure mostly caused by hard disk space on the server both drive C and E
Fixes:
 Clear the space and run the job manually.

RE-PROCESSING
When re-processing is required kindly execute the executable in
E:\Efb\Schedules\CREWnames \EfbConsoleFlightSchedules.exe.
1.3 SkyAppTransfer
OAG Server
(10.2.1.198)

DESCRIPTION
The Application sends flight status information to OAG systems, the data is used by
Skyteam Hub Excellence Dashboard for information to our reconnecting passengers
from one leg to another. Runs as a scheduled job on 10.2.1.198

SOURCE CODE
Download tortoise svn and check out the project with the link described as Repo link
in this document. This checks out the whole solution.

DATA SOURCE
 The system gets data from DWH/Sabre

SAMPLE OUTPUT FILE

KQ_100_2018-01-13-06-42-04-3030.xml

SCHEDULE
The job is scheduled to execute every hour on windows scheduler.

FREQUENT ISSUES / FIXES


Issue:
 Failure mostly caused by hard disk space on the server both drive C and E
Fixes:
 Clear the space and run the job manually.

RE-PROCESSING
When re-processing is required (OAG notifies KQ when no data is being sent), kindly execute
the executable in E:\Efb\Efb\SkyAppTransfer\SkyAppTransferV2.exe.
1.4 Transfer
Passenger
Information(TPI
) Server
(10.2.1.198)

DESCRIPTION
Send KQ Daily Passenger Information to Skylink hub. Runs as a windows application
scheduled on 10.2.1.198

SOURCE CODE
Download tortoise svn and check out the project with the link described as Repo link
in this document. This checks out the whole solution.

DATA SOURCE
 The system gets data from DWH/Customer Manifest job which Is
further processed to 3 tables: T_tci_summary1, T_tci_summary2,
T_tci_summary3 by a stored proc
DWH_FOUNDATION.load_t_tci_customers.

SAMPLE OUTPUT FILES

TPIKQ20180201.xml

SCHEDULE
 DB job used to run the stored procedure to write into the 3 tables in DWH.

Db job(361) that executes DWH_FOUNDATION.load_t_tci_customers executes


once daily at midday.

 Windows app job is used to generate the output file from the 3 tables and dumps it
into the skylink Hub FTP server.
Job (TPI data) executes one daily at 1500hrs.

FREQUENT ISSUES / FIXES


Issues:
CM job failures.
Hard disk space on disk C and E.
Fixes:
 Run cm job manually and adjust and execute
DWH_FOUNDATION.load_t_tci_customers_custom manually then execute the
windows job manually.
Adjusting the stored proc (DWH_FOUNDATION.load_t_tci_customers_custom)

-when you open it in an editor, there are 3 segments where it’s inserting into the 3
summary tables. Adjusting the date here the number of days back you want to process
plus three. E.g, if you need yesterday’s data, it’s 1+3=4 days therefore where clause looks
like this WHERE TO_DATE (scheduled_departdate, 'YYYYMMDD') =
TRUNC (SYSDATE) – 4.

 After running the job log into the remote location and modify the name of the
file accordingly to match the day it was being generated for. The credentials
are provided in the excel sheet.
 Clear space

RE-PROCESSING
When re-processing is required kindly Run cm job manually if it had failed and adjust and
execute DWH_FOUNDATION.load_t_tci_customers_custom manually then execute the
windows job manually

1.5 Retro Accrual


files Server
(10.2.1.198)

DESCRIPTION
Outbound:Sends Accrual Files to all Skyteam Partners via Skylink hub FTP. Runs as a
scheduled job in 10.2.1.198

SOURCE CODE
Download tortoise svn and check out the project with the link described as Repo link
in this document. This checks out the whole solution.

DATA SOURCE
 The system gets data from DWH/Customer Manifest job which Is further
processed to table f_cm_frequentflyer by 3 stored procs
DWH_FOUNDATION.LOAD_T_CM_PAXMANIFESTT();
DWH_FOUNDATION.LOAD_T_CM_FREQUENTFLYER();
DWH_FOUNDATION.load_f_cm_frequentflyer();

 There is a dbjob already scheduled for processing that data (301).

SAMPLE OUTPUT FILE

FFPKQCZ20180801000000000.TXT

SCHEDULE
The job is scheduled to execute once daily on windows scheduler.

FREQUENT ISSUES / FIXES


Issue:
 Failure mostly caused by hard disk space on the server both drive C and E
Fixes:
 Clear the space and run the job manually.

RE-PROCESSING
When re-processing is required there is a custom job which location on source control can be
found in the excel sheet. Open the job using visual studio, adjust the dates and compile. Then
run and produce a file for each of the missing dates.

1.6 Retro Accrual


files Server
(10.2.1.198)

DESCRIPTION
Inbound: Receives and Processes Accrual feedback files and Billing files. It inserts
the data into DWH. Runs as a scheduled job in 10.2.1.198

SOURCE CODE
Download tortoise svn and check out the project with the link described as Repo link
in this document. This checks out the whole solution.
DATA SOURCE
 Billing files which are basically text files dropped in 192.168.1.20 in the
directory /FTP/garuda/Retro_Files

SAMPLE INPUT FILE

FFBKEKQ20180801.T
XT

SCHEDULE
The job is scheduled to execute once daily on windows scheduler.

FREQUENT ISSUES / FIXES


Issue:
 Failure mostly caused by hard disk space on the server both drive C and E
 Inaccessibility of dwh.
Fixes:
 Clear the space and run the job manually.

RE-PROCESSING
When re-processing is required kindly execute the executable in
E:\Efb\Retro_App\Retro_Billing\Retro_Accrual_Feedback_App\Retro_Accrual_App\bin\Deb
ug.

Vous aimerez peut-être aussi