Quantcast
Channel: Instantiating an Excel Object from Peoplesoft page
Browsing latest articles
Browse All 62 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

(no title)

We recently upgraded tools from 8.49.19 to 8.49.33. The app engine is showing exact same error as above. First operand of . is NULL, so cannot access member DisplayAlerts. (180,236)...

View Article


(no title)

Possibly, might be worth checking out Oracle Support for the error.

View Article


(no title)

Additional information to above is, earlier server had Excel 2003 and after upgrade, it is Excel 2008

View Article

(no title)

Has anybody seen any type of on-line documentation that covers standard Excel COM object references within PeopleCode? I'm looking for something that provides me with a mapping on how to reference...

View Article

(no title)

Hi, We have an application engine which populates the data from the output of a SQR to an excel template saved in the process scheduler server. When the application engine gets initiated, it fails...

View Article


(no title)

Did you ever find any on-line documentation that covers standard Excel COM object references within PeopleCode? I'm trying to translate Excel VBA to PeopleCode.

View Article

(no title)

1. Set the properties with ObjectSetProperty( &oWorkApp, "DisplayAlerts ", True ) and see what that gets you. 2. If you have access to that server you can login and use the property...

View Article

(no title)

I have an App engine peoplecode that reads a table and write in excel. If there is any reason the AE errors out, we have some instances of excel left open on the server. Is there a sureshot way of...

View Article

Issues Instantiating Excel from PeopleCode

In addition to the previously mentioned solutions: 1) Excel Not Installed proper server… AppServer (Online PeopleCode) or ProcSched (Batch / AppEngine PeopleCode) 2) Wrong version of Excel (64 bit vs...

View Article



(no title)

Can you read an .xlsx file using this application? If so, what would the code look like? Thank you.

View Article

(no title)

Hi. Is there anyway to change the worksheet's name? I tried the following but got error: &oWorkSheet.Name = "test"; OLE Automation error in Excel.Application.Worksheets: ObjectDoMethod: Bad index....

View Article
Browsing latest articles
Browse All 62 View Live