HI All,
I am working on a conversion. I have to pull the data from the staging tables into the sPro Application tables.I have large amount of data that has to be pulled.
Could you please tell me the approach that I have to go ahead with to pull the data successfully into sPro App tables.There are lot of validations to take place before the data gets loaded into PS App tables.I am thinking of loading the data from the staging table into a temporary table, do the manipulations in the temporary table and then load the data within the temporary table into the PS app tables
It would be great if you can let me know if there are any delivered PS programs in FSCM which does a similar type of functionality.
Thanks
Title | Under | Posted on |
---|---|---|
Component interface Error: no rows exist for the specified keys | PeopleSoft Technical | 03/15/2019 - 3:54am |
ADD 24 months starting from current month.(peoplesoft) | PeopleSoft Functional | 07/29/2018 - 8:44pm |
TRC values dropdown | PeopleSoft Technical | 04/04/2018 - 12:54am |
how to find missing sequence in GRID and print the mising sequence number while saving through peoplecode | PeopleSoft Technical | 09/11/2017 - 4:49am |
The Create Purchase Orders Application Engine (PO_POCREATE) looks at PO staging tables and create POs on the core tables. Take a look at it, it might help.
Good luck!
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
thanks for the input Lepa
Thanks,
Vamsi Krishna
Hi ,
I have to convert Accounts Payable data from peoplesoft 8.4 to 9.1.Can anypone guide me with the approach to follow on this.Just a guideline will do.
Thanks,
Achin
Can anyone tell me the approach to convert Accounts Payable from peoplesoft 8.4 to 9.1.
In the past I have done the Data conversion from legacy to PeopleSoft as part of an implementation project. Our approach:
1)Data from the legacy system was dumped into our PeopleSoft's Oracle database under a different schema.
2)Created temporary tables with record structure as that of the application tables with in the PeopleSoft database.
3)Created a component interface based on the Component where the data needs to be converted to. Eg: Items, POs, vouchers etc
4)Created an Applicaton Engine program. This program first gets the legacy data based on the required criteria and populates the PeopleSoft's temporary tables. Then reading each row from these temporary tables, loaded into PeopleSoft application tables using the component interface. We had two fields in each temporary table(Error Flag & Error Descr) to error track which rows were successfully converted. If any row fails, we are also trapping the error message as to why it failed.
Using this apporach we can make sure that all data is converted successfully. Comp Interface ensures that all the business rules & logic are applied on the data that is converted. In some scenarios it may not be possible to use CIs in which case you can use SQL inserts in its place.