Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

FPM contains several parallel enabled processes to provide faster way of data copy between FIN General Ledger TB, FIN General Ledger and planning cubes. The processes are mainly part of roundtrip data processing.

Parallelization Mechanism Introduction

Parallel processing in FPM is initiated by the process itself from its main thread by spawning child threads and once the child threads are running, main thread is monitoring their status and waiting till all child threads finish. Once finished, the main thread continues. It’s important to note that all parallel enabled processes in FPM share common code for both the main thread and child threads. This means that both are implemented by a single TI process.

...

Parallelization Mechanism Details

Main Thread Role

Main thread serves two purposes. It spawns child threads and once spawned it starts to monitor the child threads and wait until all child threads have finished.

...