Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

End of Load Process

802636Oct 6 2010 — edited Oct 7 2010
Hi,

I am writing a script and want to create a condition to evaluate when the BatchLoad process from FDM to HFM is complete. So for example, when the Batch Process has completed loading all the files to the target system, how can I know the Nth file has been loaded and use that "Completed" condition to kick off another part of the script?

How can you know when the Batch process has completed loading all files to the target system? So after the statement below has processed completely, what parameters or values can I retreive from FDM to know I can move forward?

BATCHENG.mFileCollectionProcessParallel BATCHENG.PcolFiles, CLng(lngProcessLevel), CLng(lngParallelProcessCount), CStr(strLoadBalanceServerName), , CBool(blnAutoMapCorrect)

THanks for the help!

- OutbackJack

Comments

bouye-JavaNet

Hi,

passing values from 1 class to another (or 1 part of your program to another) is just a basic Java issue and has little to do with JavaFX itself. You either pass them as parameters of the new class constructor or as parameters when you invoke setters or other methods, your choice. You know how to do that in regular / basic Java (or even in other programming languages)? Then it's exactly the same in JavaFX, no special trick involved...

As for switching scene, if that is needed (because frankly there's little point into switching the entire scene when you just can switch the scene's content), you just have to replace the scene reference in the stage with a new one by calling myStage.setScene(). That's it, there is nothing strange or complex when doing that.

You prefer to no use FXML, OK no worries, it works the same with or without FXML...

So I really do not see what are your issues here... Why not try to do small test programss by yourself to experience that. There is nothing special in the questions you've just asked.

1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Nov 4 2010
Added on Oct 6 2010
2 comments
167 views