Excel and macro

Hello Everybody
I hope somebody can help me with the next problem.
I created a excel's macro that connects via ODBC a one table of Oracle(Oracle 9.2.0.1.0). When I execute this macro within excel, this works fine, but when I try execute this macro through a form (forms9i) at moment in that excel opens appear a screen that requests me that I select a ODBC connection and once that I selected the connection the macro shows an error (1004 error of the ODBC). all this happens of side of server.
the code of this form is te next:
PROCEDURE macroexcel IS
application OLE2.obj_type;
workbooks OLE2.obj_type;
workbook OLE2.obj_type;
worksheets OLE2.obj_type;
worksheet OLE2.obj_type;
cell OLE2.obj_type;
args OLE2.list_type;
mac OLE2.obj_type;
name_file varchar2(12) := to_char(sysdate);
local_cursor_record number:=:system.cursor_record;
old_cursor_style VARCHAR2(200);
errors_occured boolean:=false;
ole_error exception;
pragma exception_init(ole_error, -305500);
PROCEDURE OPEN_EXCEL IS
BEGIN
application := OLE2.CREATE_OBJ('Excel.Application');
OLE2.SET_PROPERTY(application,'Visible','True');
Workbooks := OLE2.GET_OBJ_PROPERTY(application,'Workbooks');
args := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args,'D:\excel_rh\macroxls.xls');
workbook := OLE2.GET_OBJ_PROPERTY(workbooks,'Open',args);
OLE2.DESTROY_ARGLIST(args);
end open_excel;
PROCEDURE OPEN_SHEET IS
BEGIN
args := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args,'respaldo');
worksheets := OLE2.GET_OBJ_PROPERTY(workbook,'Worksheets');
worksheet := OLE2.GET_OBJ_PROPERTY(workbook,'Worksheets',args);
OLE2.DESTROY_ARGLIST(args);
END OPEN_SHEET;
PROCEDURE MACRO IS
BEGIN
     args := OLE2.CREATE_ARGLIST;
     OLE2.ADD_ARG(args,'rcons');
     OLE2.invoke(application,'Run',args);
     OLE2.DESTROY_ARGLIST(args);
END MACRO;
procedure place_value_in_cell(rownum_in in number,colnum_in in number,value_in in varchar2) is
args OLE2.list_type;
BEGIN
args:=OLE2.create_arglist;
OLE2.add_arg(args,rownum_in);
OLE2.add_arg(args,colnum_in);
--cell:=OLE2.invoke_obj(worksheet,'Cells',args);
cell:=OLE2.get_obj_property(worksheet,'Cells',args);
OLE2.destroy_arglist(args);
OLE2.set_property(cell,'Value',value_in);
OLE2.release_obj(cell);
end place_value_in_cell;
PROCEDURE SAVE_SPREADSHEET IS
BEGIN
     select to_char(sysdate,'hh24miss')
     into :global.name_file
     from dual;
args := OLE2.create_arglist;
OLE2.add_arg(args,'D:\excel_rh\resp_sijag'||to_char(:resp_sijag.f_resp,'ddmmyyyy')||:global.name_file||'.xls');
OLE2.invoke(worksheet,'SaveAs',args);
OLE2.destroy_arglist(args);
OLE2.invoke(application,'Quit');
END SAVE_SPREADSHEET;
BEGIN
Begin
     old_cursor_style:=get_application_property(cursor_style);
     set_application_property(cursor_style,'BUSY');
     open_excel;
     OPEN_SHEET;
macro;
exception
     when form_trigger_failure then
     raise;
     when ole_error then
     message('error sending data to excel');
     message(' ');
     errors_occured:=true;
     raise form_trigger_failure;
end;
save_spreadsheet;
OLE2.release_obj(worksheet);
OLE2.release_obj(worksheets);
OLE2.release_obj(workbook);
OLE2.release_obj(workbooks);
OLE2.release_obj(application);
if not errors_occured then
     go_record(local_cursor_record);
end if;
set_application_property(cursor_style,old_cursor_style);
web.show_document('http://dcaoagsijag01.dca.ad.pemex.com:8888/forms90/excel_rh/resp_sijag'||to_char(:resp_sijag.f_resp,'ddmmyyyy')||:global.name_file||'.xls');
END;
I don't understand what happen with this application or maybe I'm forgetting put something in my code, for that this macro works fine
Thanks in advance
Regards

If anyone wants to help him, here is his code made much more readable.
Hello Everybody
I hope somebody can help me with the next problem.
I created a excel's macro that connects via ODBC a one table of Oracle(Oracle 9.2.0.1.0). When I execute this macro within excel, this works fine, but when I try execute this macro through a form (forms9i) at moment in that excel opens appear a screen that requests me that I select a ODBC connection and once that I selected the connection the macro shows an error (1004 error of the ODBC). all this happens of side of server.
the code of this form is te next:
PROCEDURE macroexcel IS
application OLE2.obj_type;
workbooks OLE2.obj_type;
workbook OLE2.obj_type;
worksheets OLE2.obj_type;
worksheet OLE2.obj_type;
cell OLE2.obj_type;
args OLE2.list_type;
mac OLE2.obj_type;
name_file varchar2(12) := to_char(sysdate);
local_cursor_record number:=:system.cursor_record;
old_cursor_style VARCHAR2(200);
errors_occured boolean:=false;
ole_error exception;
pragma exception_init(ole_error, -305500);
PROCEDURE OPEN_EXCEL IS
BEGIN
application := OLE2.CREATE_OBJ('Excel.Application');
OLE2.SET_PROPERTY(application,'Visible','True');
Workbooks := OLE2.GET_OBJ_PROPERTY(application,'Workbooks');
args := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args,'D:\excel_rh\macroxls.xls');
workbook := OLE2.GET_OBJ_PROPERTY(workbooks,'Open',args);
OLE2.DESTROY_ARGLIST(args);
end open_excel;
PROCEDURE OPEN_SHEET IS
BEGIN
args := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args,'respaldo');
worksheets := OLE2.GET_OBJ_PROPERTY(workbook,'Worksheets');
worksheet := OLE2.GET_OBJ_PROPERTY(workbook,'Worksheets',args);
OLE2.DESTROY_ARGLIST(args);
END OPEN_SHEET;
PROCEDURE MACRO IS
BEGIN
args := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(args,'rcons');
OLE2.invoke(application,'Run',args);
OLE2.DESTROY_ARGLIST(args);
END MACRO;
procedure place_value_in_cell(rownum_in in number,colnum_in in number,value_in in varchar2) is
args OLE2.list_type;
BEGIN
args:=OLE2.create_arglist;
OLE2.add_arg(args,rownum_in);
OLE2.add_arg(args,colnum_in);
--cell:=OLE2.invoke_obj(worksheet,'Cells',args);
cell:=OLE2.get_obj_property(worksheet,'Cells',args);
OLE2.destroy_arglist(args);
OLE2.set_property(cell,'Value',value_in);
OLE2.release_obj(cell);
end place_value_in_cell;
PROCEDURE SAVE_SPREADSHEET IS
BEGIN
select to_char(sysdate,'hh24miss')
into :global.name_file
from dual;
args := OLE2.create_arglist;
OLE2.add_arg(args,'D:\excel_rh\resp_sijag'||to_char(:resp_sijag.f_resp,'ddmmyyyy')||:global.name_file||'.xls');
OLE2.invoke(worksheet,'SaveAs',args);
OLE2.destroy_arglist(args);
OLE2.invoke(application,'Quit');
END SAVE_SPREADSHEET;
BEGIN
Begin
old_cursor_style:=get_application_property(cursor_style);
set_application_property(cursor_style,'BUSY');
open_excel;
OPEN_SHEET;
macro;
exception
when form_trigger_failure then
raise;
when ole_error then
message('error sending data to excel');
message(' ');
errors_occured:=true;
raise form_trigger_failure;
end;
save_spreadsheet;
OLE2.release_obj(worksheet);
OLE2.release_obj(worksheets);
OLE2.release_obj(workbook);
OLE2.release_obj(workbooks);
OLE2.release_obj(application);
if not errors_occured then
go_record(local_cursor_record);
end if;
set_application_property(cursor_style,old_cursor_style);
web.show_document('http://dcaoagsijag01.dca.ad.pemex.com:8888/forms90/excel_rh/resp_sijag'||to_char(:resp_sijag.f_resp,'ddmmyyyy')||:global.name_file||'.xls');
END;I don't understand what happen with this application or maybe I'm forgetting put something in my code, for that this macro works fine
Thanks in advance
Regards

Similar Messages

  • Excel and Macro with Labview

    Hello every body,
    I have to read to excels files int order to treat them and generate graphs ( 3 graphes) in another excel file. to do that, i want to use the Macro for Excel.
    How can i do, I want to write my basics codes VBA even in Labview.
    Tks for your help

    It also requires the Office Report Generation Toolkit.....
    So maybe i shorten this and tell you that the toolkit includes a VI called "Excel Run Macro.vi". Within this VI, an ActiveX call is done to the Excel Application class called "Run" taking many optional arguments.
    So working with ActiveX to interface with Excel will give you the needed toolsuite.
    Please refer to msdn.microsoft.com for specific help on Microsoft products (like Excel). You can use this link for an easier start.
    hope this helps,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Copying Graphs and Pie Charts generated in Analysis View to Email item using Excel VBA Macro Code

    Hi
    I am currently working on an exce VBA macro code that would help me take snapshots of the Graphs and Pie charts generated in QC for a particular application and copy the same to an email item using excel VBA macro code.
    I was able to write the code to create an email item. But I have no clue of how i can take snapshot of the graphs in Analysis View using excel VBA
    Any help would be highly appreciated.
    Thanks in Advance
    Regards
    Amit

    useramit,
    You are in the consumer end products forum.  You will also want to ask your question over at the Enterprise Business Community.
    Click the plus sign (+) next to Discussion Boards to drop down all the options for servers, networking and any other professionally related problems.
    http://h30499.www3.hp.com/

  • Integrated Excel and VB Macros...Problems

    Hi,
    We are running MAP transactions (RETAIL) that use integrated Excel for planning purposes. Once we open the transaction we have access to an excel application where we maintain data.
    The problem is that we are trying to use some complex VB macros to validate online entries, but we are facing problems if we call the Excel from SAP (The file runnning on its own works fine):
    - The events WORKBOOK.OPEN or AUTOOPEN do not seem to run. I need to run a macro when the workbook is started form SAP;
    - I've been getting runtime erros and some are related to this: ACTIVECELL = nothing (?).
    Have you found similar problems?
    Where can I find VB programing guidelines for Integrated Excel in SAP.
    Thanks
    Leonardo De Araujo

    Hi Tarun,
    you are in the wrong forum. You are using the R/3 based Retail solution, this is based on the CO Planningprocessor Excel integration, it is not based on SEM or
    BW-BPS. So you can not find the BPS predefined VBA macro exits.
    In the R/3 solution there exist no predefined VBA macro exits. But you can add your code more or less at the same 'events':
    - the backend triggers the SAP makros via Sub R3MacrosExecute() at each PAI, PBO cycle
    - Sub R3PutValuesEnd() is called when the system has filled Excel with data at the end of the PBO cycle; here you can do adjustments and add your macros
    - Sub R3GetRangesSingle is called at the beginning of the PAI cycle to the read the data from Excel and to do the transfer to the backend
    - active cell problem: SAP makros to not set a selection explicitly, you can do this in your makro, e.g. the first data cell or first input ready cell
    To implement a kind of 'validation' I suggest to trigger the check via Excel button; the problem is you can not control the PBO, PAI cycle from Excel, i.e. you can send error pop-up in Excel but you can not stop the PAI cycle. So you can not implement a real error handling.
    Regards,
    Gregor

  • Difference between bex user exit and macros in functionality?

    Hi all,
    I need to create a report on material master data. I created an infoset on 0material and 0mat_plant. In the requirem
    ent, I have a report containing different material numbers followed by attributes in each row. the final column in each
    row should be calculated using logic. the logic involves comparing different row values and arrive at final conclusion.
    the logic comprises of large number of if conditions. so should i use bex user exit or excel macros?
    what is the difference between user exit and macros in funcitonalilty?
    is there an issue transporting the macro to Prod for end users to use?
    any performance criteria?
    Any how to documents ..will be of a lot of help
    plz send them to [email protected]
    Message was edited by:
            ravi a

    Hi,
    Macros offer a powerful and flexible way to extend the features of MS Excel. You can either create a macro using VB code or Record a macro. Use Alt+F11 for creating macro using VB code.
    You can refer to Microsoft help site or this link for more details:
    http://www.taltech.com/support/sw_tricks/exmacros.htm
    User-exits are empty subroutines that SAP Developers have provided for you.You can fill them with your own source code.Technically this is a modification.Customer exits are nothing but a include in customer name space will be provided in the function module which starts with CALL CUSTOMER.You can fill them with your own source code.Technically this is an enhancement.
    look into following links for procedure to find and use user-exits transaction for finding user-exits is 'SMOD'
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/user_exits_tutorial.html
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

  • Edit .app file in excel and then open it in client tool?

    Dear Gurus,
    I am very new to HFM and would like to know what practice a HFM consultant will use in editing the metadata.
    My boss recommend me to edit metadata( .app file) in excel and save it into a format that can be read and opened by client tool.
    However, I find no way to achieve this.
    How can i edit metadata in excel and then open it in HFM client tool?

    Good morning,
    I think the best way to do it it's working with macros. You can work with an Excel file and then, convert it to the .txt format by using macros. A .txt is more suitable to be later worked as .app.
    However, you can also do it by using Copy/Paste.
    1. Open the .app in a Note Pad, so you can work with .txt file.
    2. Copy the .txt data in the Excel file.
    3. Then, it's just working with Data > Text to Columns to format the file. Then, you can work in Excel.
    Then, you will have to put the Excel file in a .txt, so you will have to follow the data files requirements. You still can do this manually, but you will have to pay attention to the format (FILE_FORMAT=11.1.2, !VERSION=11.1.3609, !CUSTOM_ORDER=Custom1;Custom2;Custom3;Custom4, !APPLICATION_SETTINGS, !CURRENCIES, etc., as it is the Admin Guide). It will also depend on the HFM version you're working with, specially when working with customs.
    I received a good document about a couple of months ago that can be helpful, so if you send me an email address, I'll forward it.
    Regards,
    Lu

  • Using BIA_RegisterCalcValidationProgram in Excel AUTO_OPEN macro

    The documentation for the Spreadsheet Addin, section 5.5, states:
    "You can include the BIA_RegisterCalcValidationProgram() macro in the auto_open procedure to automatically register the program for calculation and validation when a workbook is opened."
    I have created an AUTO_OPEN() procedure in Excel, and stored it in my personal.xls. I also have the Oracle BI add-in starting automatically.
    However, when I start Excel, I get a Microsoft Visual Basic Compile error: "Sub or Function not defined", and it's highlighting the BIA_RegisterCalcValidationProgram function in the debugger.
    I can use that function just fine by calling it from a button, but that happens after Excel has successfully started. I want to register the program when Excel opens, as the documentation says I can.
    Here is my AUTO_OPEN procedure, as stored in personal.xls:
    Sub AUTO_OPEN()
    Dim query_id As String
    Dim calc_id As String
    Dim s As String 'Generic string return value
    query_id = "Q.BUDGET.2" 'Query name in worksheet
    calc_id = "dai.daiprog!BUDGET.CALC"
    s = BIA_RegisterCalcValidationProgram(query_id, calc_id)
    End Sub
    Please note that this exact same code works just fine as a standalone macro. It's only when used in the Auto_Open that it fails.
    Am I missing a step somewhere?

    Incidentally, if I use this as the AUTO_OPEN macro in personal.xls, it works just fine, so I'm pretty sure AUTO_OPEN is the right place to be:
    Sub AUTO_OPEN()
    MsgBox ("Hello There")
    End Sub

  • Excel and Word 2011 crash on opening

    I'm not sure if this is a more common issue from earlier versions of office, but with the combination of Lion and Office 2011 I am having repeated issues. For reference I am using a new Mac Air i5 with plenty of disk space and memory.
    In summary, Excel and Word worked for a while, but once a file crashes for some reason then I cannot open either application at all - just stuck in the endless loop of crash on attempting open and then re-open to no effect.
    I have tried several solutions including:
    - complete office re-install (worked for a few days until the next crash)
    - holding "shift" (no effect)
    - deleting temp files and plist files following online forum advice (no effect)
    Note: I am not using complex excel files with macros (etc), just dropbox copies of simple spreadsheets.
    Can anyone else offer an alternative solution?

    Hi!
    I got this crash as well. followed the instructions to delete the plist file and holding the shiftkey did not work for me. The is the bit that bites...removed Office 2011 as per instructions and still only Excel does not work.
    Anyone know of a solution? Seems like the latest update on my machine was a Java update from Apple.
    Here is my error log.
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2012-09-10 18:00:44 +0800
    Application Name: Microsoft Excel
    Application Bundle ID: com.microsoft.Excel
    Application Signature: XCEL
    Application Version: 14.2.3.120616
    Crashed Module Name: CoreFoundation
    Crashed Module Version: 550.44
    Crashed Module Offset: 0x0001a2c3
    Blame Module Name: CoreFoundation
    Blame Module Version: 550.44
    Blame Module Offset: 0x0001a2c3
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0

  • Difference between ms excel and oo calc

    is there a big difference between ms excel and oo calc?
    have to learn excel, but have only linux.
    are the macros and and the handling similar?
    what are the differences?
    thanks in advance.

    From OpenOffice Help:
    With a few exceptions, Microsoft Office and OpenOffice.org cannot run the same macro code. Microsoft Office uses VBA (Visual Basic for Applications) code, and OpenOffice.org uses Basic code based on the OpenOffice.org API (Application Program Interface) environment. Although the programming language is the same, the objects and methods are different.
    The most recent versions of OpenOffice.org can run some Excel Visual Basic scripts if you enable this feature at Tools - Options - Load/Save - VBA Properties.
    If you use macros in one of the applications and want to use the same functionality in the other application, you must edit the macros. OpenOffice.org can load the macros that are contained within Microsoft Office files and you can then view and edit the macro code in the OpenOffice.org Basic IDE editor.
    The workflow is pretty much the same; a spreadsheet is a spreadsheet. Some keyboard shortcuts are different and annoy me.

  • Ghost Excel workbook opens each time I start excel and prevents formulas - tried all suggested solutions without luck

    Hi
    When I start excel and open any workbook a 'ghost' work book opens it doesn't contain cells and is just greyed out. When I am working on a document whenever I start to write a formula the ghost wbook opens and I cannot see the original document to complete
    the formula. If I open multiple workbooks I sometimes get a ghost workbook for each doc that is open - after a while I get error message to say not enough reources to do even simple tasks like save work or open a document.
    I have posted on several forums and tried all suggested solutions without luck - this is really preventing me from using excel which I need daily. Personally though I am only intermediate user I think it may have something to do with a workbook that I downloaded
    that had macros in it but I cant be sure
    Any help greatly appreciated
    Thanks
    Dave

    Hi Dave,
    First make sure have installed the latest update. Second, we can repair Office 2013 from Control Panel > Programs and Features. Third, open Excel 2013 in safe mode, if it works fine, disable some 3rd-party application add-ins.
    Could you please share a screenshot of this “ghost” workbook and upload it to OneDrive? I’ll analyze it in detail as soon as accessing it.
    If there is anything about this issue, don’t hesitate to tell me.
    Best regards,
    Greta Ge 
    TechNet Community Support
    It's recommended to download and install Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support
    teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office programs.

  • Exporting Design steps of Business Process Components from QC to excel using macro

    I want to export design steps from Business Process Components from QC to excel using macro. CAn anyone please help me with that.
    Thnx, Sanket

    Post Author: swat
    CA Forum: Exporting
    Hi,
    Of what i gather from ur scenario...this is what i did in one of my reports.
    I had to use two subreports and they had to occupy one cell each, in line with other fields.
    To obtain that,all the fields required in the subreport i put them into a text box.Therein restricting the fields to the txt box only...
    Then import that sub-report as it is.
    It worked for me....
    try out...
    All this only if've understood u right...

  • Problem with "Save as Adobe PDF format" in Excel and Word

    Hi
    When I use printing zone in Excel and make a «Save as Adobe PDF format» (menu File / Save as Adobe PDF), the first save is well done. But when I make it a second time, what's not in the printing zone is printing in the document.
    I have also problem with the «Save as Adobe PDF format» in Word. The images superposition are not well print.
    I'm using Windows 7 in french, Office 2010 french and Adobe Acrobat XI standard. All is in the latest version.
    Thanks

    The Save As PDF feature in Office2008 Call up a PDF  Creator similar to the AdobePDF Print Driver. whch OX.6 can't use.
    To create Pdf you have to use method used:
    http://indesignsecrets.com/acrobats-adobe-pdf-printer-replaced-in-snow-leopard.php
    Not before you attempt to use this method if  Rossetta is not installed. pop in your Systems DVD and install Rosetta. Then follow directions to install the Adobe Quality PDF Automator Script which will show up in the Print Menu. Click on Print > then click PDF. Then Click on Adobe quality PDF.  AS for setting up Job options and other details Supposedly your suppose to  have access. But I have no idea.
    First thing Rosetta should be installed out of the box. and Second Adobe should install this Script from their installer. So their should be no intervention from the user. it should just work. Early report when OSX.6 first came out almost no one was able to get this to work. and I see periodic reports that people still can't get it tork and they have to to resort to saving as .ps files then droping on distiller.
    Good luck.

  • Export to Excel and Save as Static File

    Hello all,
    When I export to excel from SharePoint 2013, and save the file, the data remains dynamic in that if I update the list in SharePoint it will update the data in Excel. This is great and I use it in a few places, but I also need to capture a point in time and
    save the exported Excel file as static data (i.e. Export to Excel, and Save as the Q3 Report). How can I save the file as static/remove the dynamic link so I just have the data at the time of export?
    Thanks!
    K.
    Personal Blog: http://thebitsthatbyte.com

    Hi Kelly,
    According to your description, my understanding is that you want to export to excel as a static file.
    In SharePoint, when you export list to excel, it works as a one-way sync. It can sync data from SharePoint to Excel. If you don’t want to sync the data from SharePoint, you can copy the data from the exported excel file to a new excel, then save the new
    excel file.
    Best Regards,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • WORD, EXCEL, and POWERPOINT now crashing when saving new file

    I have Microsoft Office 2004 WORD, EXCEL, and POWERPOINT, which were working just fine for several days on 10.5.1. (all updates are current). Now, every time I try to save a new document, all 3 apps crash, with the following thing in common in the crash log:
    0xb80ec881 gettimeofday_wrapper + 37593
    This doesn't happen when opening an existing file, and saving changes to it. Note: A few days ago, I ran Disk Utility to do a permissions repair for another issue - could this have caused this issue?
    Any ideas???
    Thanks,
    Below is the complete crash log from one of the EXCEL crashes:
    Process: Microsoft Excel [144]
    Path: /Applications/Microsoft Office 2004/Microsoft Excel
    Identifier: com.microsoft.Excel
    Version: 070724 (11.3.7)
    Code Type: PPC (Translated)
    Parent Process: launchd [69]
    Date/Time: 2007-11-26 18:33:08.466 -0500
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXC_CRASH (SIGILL)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ??? 0x801a194a 0 + 2149194058
    1 translate 0xb80ec881 gettimeofday_wrapper + 37593
    Thread 1:
    0 ??? 0x800bb8e6 0 + 2148251878
    1 ??? 0x800c30dc 0 + 2148282588
    2 translate 0xb818b69a CallPPCFunctionAtAddressInt + 202826
    3 ??? 0x800ec075 0 + 2148450421
    4 ??? 0x800ebf32 0 + 2148450098
    Thread 2:
    0 translate 0xb8152b0b spinlockwrapper + 92383
    1 translate 0xb817b5d8 CallPPCFunctionAtAddressInt + 137096
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813d2cf spinlockwrapper + 4259
    Thread 3:
    0 translate 0xb8152bc4 spinlockwrapper + 92568
    1 translate 0xb817b2ee CallPPCFunctionAtAddressInt + 136350
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813d2cf spinlockwrapper + 4259
    Thread 4:
    0 translate 0xb8152803 spinlockwrapper + 91607
    1 translate 0xb816e76d CallPPCFunctionAtAddressInt + 84253
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813c9e9 spinlockwrapper + 1981
    Thread 5:
    0 translate 0xb815298f spinlockwrapper + 92003
    1 translate 0xb8183603 CallPPCFunctionAtAddressInt + 169907
    2 translate 0xb8186194 CallPPCFunctionAtAddressInt + 181060
    3 translate 0xb80df67b 0xb8000000 + 915067
    Thread 6:
    0 translate 0xb815298f spinlockwrapper + 92003
    1 translate 0xb8183603 CallPPCFunctionAtAddressInt + 169907
    2 translate 0xb8186194 CallPPCFunctionAtAddressInt + 181060
    3 translate 0xb80df67b 0xb8000000 + 915067
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0xb813cb3c ecx: 0xb7fffa6c edx: 0x801a194a
    edi: 0xb81d8794 esi: 0x00000004 ebp: 0xb7fffa98 esp: 0xb7fffa6c
    ss: 0x0000001f efl: 0x00000246 eip: 0x801a194a cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xb8135118
    Binary Images:
    0xb8000000 - 0xb81d7fe7 translate ??? (???) /usr/libexec/oah/translate
    Translated Code Information:
    NO CRASH REPORT

    I just fixed my own issue, based on a posting I saw in one of the other discussions. I did the same thing, by downloading the standalone update and then installing. After the required restart, everything worked fine!!! It seems like there was definitely a problem with the version that was installed via Software Update.

  • Workflow for exporting xml from Excel and importing into table in InDesign

    Hello,
    I have worked out how to get data from a .xlsx into a table in InDesign. However, the workflow is still a little clunky and I am looking for way to automate the process further. My current workflow is as follows (files can be download here: http://visual360.co.uk/xml.zip)
    xml is exported from .xlsx by mapping the schema (see what_I_get.xml)
    assign tags to table and individual cells in InDesign
    This is the clunky bit: edit the what_I_get.xml to:
    remove the indentation (this seems necessary as otherwise when I get to stage 4, all the imported text is also indented)
    add tag for table in InDesign (p10_table)
    add tags for individual cells (p10_c11 etc.)
    import the produced what_I_want.xml in the structure panel of InDesign.
    Can anyone point me in the direction of how to automate step 3 above?
    Thanks in advance,
    Nick

    Hi Mike,
    Thanks very much for the reply. I am not at all familiar with XSL/XSLT. I have given it a quick google and it seems like it could be quite a steep learning curve to master. Maybe if I explain the whole context here, it may allow you to point me in the direction of a tutorial that provides a step by step approach to achieve my final goal. Alternatively, you may be able to suggest a whole new workflow.
    I am in the process of updating this document: http://www.ncl.ac.uk/students/insessional/assets/documents/IS_Brochure_2014-15.pdf
    The tables on pages 10-21 contain lots and lots of repeated information. We want the layout to in this format so that each group of students has all the information relevant to them on a single double spread. However, the challenge of using this approach is that it is very high maintenance to ensure the duplicated information is kept in sync - even using a copy / paste approach.
    I was hoping to overcome this by using a single source of data (eg. a spreadsheet) which would then feed into the InDesign. This workflow seems to be overcomplicated by the apparent need to use xml as the "middle-man".
    Ideally, I would like to press the export button in Excel and get this information into the the correct cells in the tables on pages 10-21 without a significant amount of manual labour - after all, my reasons for investigating an automated approach in the first place was to avoid the manual entering of data ie. the scope for error...
    An alternative approach maybe to skip Excel altogether and just use .xml. However, I am not sure that this is possible as Indesign only seems to allow you to import each element once. Maybe you could correct me here...
    I am happy to invest a certain amount of time in developing this approach as once it is in place, it will save a huge of proof-reading time year after year, especially as inconsistencies still persist despite our best efforts to weed them out.
    If you could let me know your thoughts on this and maybe identify a tutorial that would help me, I would be extremely grateful.
    Thanks again!
    Nick

Maybe you are looking for

  • HP Officejet Pro cannot install on laptop via wireless

    Trying to install a new HP8600 Pro Plus.  I have configured the wireless on the printer, and it is connected to my wireless network, has an IP address and good signal strength.  When I try to add this printer on my laptop (I have now tried several la

  • Simple problem with an alert

    I want to show an alert, then when it times out, display a menu of choices (the "main menu"). Problem is, the alert never displays; the menu immediately pops up so they never get a chance to see the alert message. How do I get the alert to wait it's

  • Is "Process scoped identity" the same thing as TopLink shared cache?

    Bumped into this thread on my investigation of ORM solutions: http://forum.hibernate.org/viewtopic.php?t=939623&highlight=toplink What I would like to know is whether "Process scoped identity" as Gavin King puts it, is the same as TopLink shared cach

  • DTW Error

    SAP 8.81. I imported the Business Partners. Now I want to import the BP Banks OCRB. When I run the DTW get error that the CardCode in the OCRB file is invalid. I try with just one record so I know that the CardCode is correct Any suggestions

  • Issues in using exchange partition

    Hi, I have some issues. Please give me a solution friends!!!! I have two tables. One table (name as 'A') is partitioned another one(like table name 'B') is not partitioned but have unique index. I am going to exchange the data from B to A. That time