Quantcast
Channel: Instantiating an Excel Object from Peoplesoft page
Browsing all 62 articles
Browse latest View live

Instantiating an Excel Object from Peoplesoft page

Using the example from PeopleBooks returns an error on the ObjectGetProperty statement and I don't know what is wrong with it. The code used is as follows: Local object &WorkApp, &WorkBook;...

View Article


Re: Instantiating an Excel Object from Peoplesoft page

Should the variable &WorkBook be delcared as an object? If you change the delcaration line to: Local object &WorkApp; And remove, &WorkBook, does that make any difference?

View Article


Manipulating Excel Object in PeopleCode

Hi, I have instantiated Excel Object in AE Peoplecode and have been successfully manipulating data cells in each worksheet tab of my workbook. Now I want to copy a range of cells from one worksheet to...

View Article

Re: Instantiating an Excel Object from Peoplesoft page

Hi Susan, I use the same code and it works fine. Only thing I notice in your code is that you have space between createObject and the parenthesis Heres our code compare side by side &WorkApp =...

View Article

Re: Instantiating an Excel Object from Peoplesoft page

Yes its should be declare as Object when instantiating workbook, worksheet, range or cell objects in Excel heres my declaration and it works fine; Local object &oWorkApp, &oWorkSheet,...

View Article


Re: Manipulating Excel Object in PeopleCode

Hi - I have sqr process to read the .dat file as input file. But I am getting the file in excel format. I want to convert this XLS file into .dat format. I am unable to do this through the SQR. One of...

View Article

Re: Instantiating an Excel Object from Peoplesoft page

Hello Susan, Are you still having the same error "Invalid parameter: CreateObject Excel.Application invalid class string for function ObjectGetProperty." ? What have you done to correct this error? I...

View Article

Re: Manipulating Excel Object in PeopleCode

http://peoplesoft.wikidot.com/generating-a-csv-file-from-sqr

View Article


(no title)

Hi, I want to use this piece of code on my page on the hyperlink. Local object &oWorkApp, &oWorkBook; &oWorkApp = CreateObject("COM", "Excel.Application"); &oWorkApp.DisplayAlerts =...

View Article


(no title)

Hi, I need to create more than one sheet on excel, anyone can help me?

View Article

(no title)

I am facing the same issue. Can you please guide me what was done to fix this issue? for the below metioned code I m getting the following error when the AE program is run in 2 tier mode: try...

View Article

(no title)

Looks like the &oWorkApp object is not being instantiated properly, has that object been declared in your code?

View Article

(no title)

I tried your code, and it works fine for me - for some reason it isn't picking up the Excel.Application COM object. Which version of PeopleTools are you on?

View Article


(no title)

When i executing Appengine i got following error First operand of . is NULL, so cannot access member DispalyAlerts. (180,236) DS_PC_APP.MAIN.GBL.default.1900-01-01.Step02.OnExecute PCPC:188...

View Article

(no title)

As per other posts, looks like the following line: &oWorkApp = CreateObject("COM", "Excel.Application"); Is not working, which PeopleTools version are you running?

View Article


(no title)

may be you don't have microsoft excel installed on your server that running this app engine. i got the same error, before i install the ms excel in my server. CMIIW ^^

View Article

(no title)

Hi, The pre/requisite to use Excel API class is are: 1) Should be run in a windows env. Hence the batch server should be windows, in Unix these commands will not work 2) MS Excel should be installed...

View Article


(no title)

Thanks for those tips.

View Article

(no title)

Thanks in advance anybody please reply to my requirements-— 1)i am giving user to upload a xls file 2)then i want to populate xl file data in grid please advice me…….

View Article

(no title)

Hi Dave, Just wondering if you managed to get this working and if so, share any tips on how to do it? Praj

View Article
Browsing all 62 articles
Browse latest View live