Questions tagged [peoplesoft-app-engine]

PeopleCode is an object-oriented proprietary language used by Oracle's PeopleSoft applications.

PeopleCode syntax closely resembles other object-oriented programming languages, such as Java.

See the PeopleCode Developer's Guide for more: http://docs.oracle.com/cd/E66686_01/pt855pbr1/eng/pt/tpcd/concept_PeopleCodeOverview-074b56.html

50 questions
1
vote
3 answers

how to set the current date field to previous Sunday in peoplesoft

I'm new to Peoplesoft and just trying to set the current date field to previous Sunday and for that I have used the 'weekday' function but this is returning an integer value. How can I convert the returned integer value to the date? Can anyone help…
sairam
  • 11
  • 5
1
vote
1 answer

Inserting values using Application Engine

I am trying to insert the values from my text file to a record using app engine. I know this could be done using file layout but my requirement suggests not to use file layout but needs to insert into record using app engine people code. I am…
desiretolearn
  • 25
  • 1
  • 1
  • 8
1
vote
1 answer

Filling 2 records inside of a rowset

I am trying to find out how to fill two seperate records in one rowset to be published to integration broker. I am filling both rowsets seperatly (RS1 for the Level 1 of record Names and RS for the Level 0 record of Person) &RS1 =…
Shawn
  • 2,355
  • 14
  • 48
  • 98
1
vote
0 answers

Execute Poplesoft services/code in parallel using multiple threads

I am consuming peoplesoft services via .net application written in C# language. The issue is when I am calling peoplesoft services parallely using Task Parallel Library functions, the peoplesoft service error out due to concurrency checks set in…
user2856028
  • 43
  • 1
  • 9
1
vote
1 answer

Zip Files using PeopleCode in Application Engine

I have a requirment to zip multiple folders inside parent folder and display the file in App Engine ouput. The folder structure in Unix File Server - Parent Folder - Folder1 (contains files) - Folder2 (contains files) How to zip the folders and…
Sandy
  • 27
  • 2
  • 8
1
vote
2 answers

changing background color in peoplesoft using stylesheet

I am trying to change the background of the tabs using stylesheet in peoplesoft. But it is not reflecting the changes. The color (dark blue) is not retaining on the pages. This has to be done in order to change the default background color (light…
user2238790
  • 33
  • 1
  • 3
  • 6
1
vote
1 answer

Writing Output Files using CreateJavaObject in Peoplesoft

I am trying to write an application engine program which would generate an output file. My goal is to write this file by using the PeopleSoft function 'CreateJavaObject'. I tried this: Local string &msg; Local JavaObject &jFile, &writeFile; &msg =…
vamosrafa
  • 685
  • 5
  • 11
  • 35
0
votes
1 answer

- ORA-01407: cannot update ("PSOWNER"."PS_VCHR_LINE_STG"."CLASS_FLD") to NULL Failed SQL stmt: UPDATE

Error Message:- ORA-01407: cannot update ("PSOWNER"."PS_VCHR_LINE_STG"."CLASS_FLD") to NULL Failed SQL stmt: UPDATE When I am generating the report it is saying NO Success in Peoplesoft. Below is the code for the Update statement. Please help me how…
KISHORE
  • 1
  • 1
0
votes
1 answer

Peoplecode Help Needed

I'm trying to write my first peoplecode step in an Application Engine and am lost. I have 2 tables. Table A is populated with results from several selects and updates in the engine. Table B has 1 row of data that I'm using to store results from a…
Ashley
  • 11
  • 2
0
votes
0 answers

How to setup up Creating Notifications, and Alerts for Contracts in FSCM?

Does anyone know or has setup Notification and Alerts for Contracts in FSCM? Accounding to PeopleBooks (https://docs.oracle.com/cd/F60972_01/fscm92pbr45/eng/fscm/fspr/CreatingSpendThresholds_Notifications_AndAlertsForContracts.html) it is setup…
0
votes
0 answers

How to generate PSSPREADSHEET from a record data(SQL Table)

as I am new to peoplesoft I am trying to write peoplecode in application engine to generate PSSpreadsheet from a record which is SQL Table but I am unable to get. It will be very helpful If anyone can help? I am expecting code if possible.
Ananya
  • 1
0
votes
3 answers

Component interface failure due to incorrect data

I have created a PeopleTools Application Engine program to insert/update employee National ID data in the PS_PERS_NID table. I am using a PeopleTools File Layout definition to insert data into a staging table and then using an Application Engine Do…
angel
  • 47
  • 8
0
votes
1 answer

Removing img tags from a bunch of tags, in a record field value, peoplecode.

I have a field value in peoplesoft which contains a long description. The description has lot of HTML tags. from those I only want to remove the img tags (//). How can I do it through peoplecode? And where to write the peoplecode. Thanks in advance
0
votes
1 answer

Use java.io.File in PeopleCode to list files in directory

I would like to be able to create a list ,array, of file names on a folder so that I can use PeopleCode to loop through them and delete files that match a pattern and are in a date range. I'm pretty sure I have the last half of that, matching a…
John
  • 11
  • 2
0
votes
1 answer

How to know the value of record and field in an app package when running app engine?

So I have this Application Engine that calls on this Application Package, this application package has a CreateSql(Select...) statement, and some of the records and fields are dynamic. My question is -- how can i possibly know what value does these…
Link
  • 171
  • 2
  • 19