Final 4.6c release

where can I find info on when the final 4.6c patch will be release from SAP?
thanks for any leads.

Hello,
see [https://service.sap.com/sapidb/011000358700000623852006E|https://service.sap.com/sapidb/011000358700000623852006E] for details on the 4.6C maintenance.
Regards,
Thomas

Similar Messages

  • Will final cut pro X 10.0.8  still be available for purchase after the new final cut pro release for mavericks/new macpro in december?

    will final cut pro X 10.0.8  still be available for purchase after the new final cut pro release for mavericks/new macpro in december?

    10.0.8 is no longer available, except in the trial version. The current sale version is 10.0.9. Apple has never sold older versions of their software, only the current version. That's not going to change in the near future.

  • PO Final Close not releasing funds

    In 11.5.9; if we final close a PO using standard "po_actions.close_po" procedure, the PO used to get Finally Closed and corresponding Funds get released.
    However, the same does not work in 11.5.10.
    I would be glad if anyone can help me in this regard. Please note that we are using encumbrance feature; hence it is a very critical issue.
    Thanks,
    M. Geethanath
    [email protected]

    Final close will close once for all, you cannot make any transaction. If it's closed then you can make the transactions.
    Srini C

  • PO when Finally Closed not releasing funds

    In 11.5.9; if we final close a PO using standard "po_actions.close_po" procedure, the PO used to get Finally Closed and corresponding Funds get released.
    However, the same does not work in 11.5.10.
    I would be glad if anyone can help me in this regard. Please note that we are using encumbrance feature; hence it is a very critical issue.
    Thanks,
    M. Geethanath
    [email protected]

    In 11.5.10 PO Final Close process works well only when we invoke PO_ACTIONS.CLOSE_PO procedure by passing PO Header-ID, Line-ID and Line Location-ID.
    It is because of below code:
    PO_DOCUMENT_FUNDS_PVT.do_final_close(
    x_return_status => l_return_status
    , p_doc_type => p_doctyp
    , p_doc_subtype => p_docsubtyp
    , p_doc_level => PO_DOCUMENT_FUNDS_PVT.g_doc_level_SHIPMENT
    , p_doc_level_id => p_shipid
    , p_use_enc_gt_flag => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_use_gl_date => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_override_date => p_action_date
    , p_invoice_id => p_origin_doc_id
    , x_po_return_code => l_return_code
    , x_online_report_id => l_online_report_id
    If the above call was to decide on Document Level based on the values held by below variables, it would have been more appropriate.
    p_docid (PO Header ID)
    p_lineid (PO Line-ID)
    p_shipid (PO Line Location-ID)
    Example:
    IF p_shipid IS NOT NULL THEN
    PO_DOCUMENT_FUNDS_PVT.do_final_close(
    x_return_status => l_return_status
    , p_doc_type => p_doctyp
    , p_doc_subtype => p_docsubtyp
    , p_doc_level => PO_DOCUMENT_FUNDS_PVT.g_doc_level_SHIPMENT
    , p_doc_level_id => p_shipid
    , p_use_enc_gt_flag => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_use_gl_date => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_override_date => p_action_date
    , p_invoice_id => p_origin_doc_id
    , x_po_return_code => l_return_code
    , x_online_report_id => l_online_report_id
    ELSIF p_lineid IS NOT NULL THEN
    PO_DOCUMENT_FUNDS_PVT.do_final_close(
    x_return_status => l_return_status
    , p_doc_type => p_doctyp
    , p_doc_subtype => p_docsubtyp
    , p_doc_level => PO_DOCUMENT_FUNDS_PVT.g_doc_level_LINE
    , p_doc_level_id => p_lineid
    , p_use_enc_gt_flag => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_use_gl_date => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_override_date => p_action_date
    , p_invoice_id => p_origin_doc_id
    , x_po_return_code => l_return_code
    , x_online_report_id => l_online_report_id
    ELSIF p_docid IS NOT NULL THEN
    PO_DOCUMENT_FUNDS_PVT.do_final_close(
    x_return_status => l_return_status
    , p_doc_type => p_doctyp
    , p_doc_subtype => p_docsubtyp
    , p_doc_level => PO_DOCUMENT_FUNDS_PVT.g_doc_level_HEADER
    , p_doc_level_id => p_docid
    , p_use_enc_gt_flag => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_use_gl_date => PO_DOCUMENT_FUNDS_PVT.g_parameter_NO
    , p_override_date => p_action_date
    , p_invoice_id => p_origin_doc_id
    , x_po_return_code => l_return_code
    , x_online_report_id => l_online_report_id
    END IF;
    Anyways, it is not categorized as a Public API; so, no comments…
    Please find below sample procedure that can be re-used.
    PROCEDURE fclose_po (
    p_po_header_id NUMBER,
    p_po_line_id NUMBER DEFAULT NULL,
    p_reason VARCHAR2,
    p_close_date DATE
    IS
    CURSOR c_shipments
    IS
    SELECT po_header_id, po_line_id, line_location_id
    FROM po_line_locations_all
    WHERE po_header_id = p_po_header_id
    AND po_line_id = NVL (p_po_line_id, po_line_id);
    BEGIN
    FOR c1 IN c_shipments
    LOOP
    IF (NOT (po_actions.close_po (p_docid => p_po_header_id,
    p_doctyp => 'PO',
    p_docsubtyp => 'STANDARD',
    p_lineid => c1.po_line_id,
    p_shipid => c1.line_location_id,
    p_action => 'FINALLY CLOSE',
    p_reason => p_reason,
    p_calling_mode => 'PO',
    p_conc_flag => 'N',
    p_return_code => v_return_code,
    p_auto_close => 'N',
    p_action_date => p_close_date,
    p_origin_doc_id => NULL
    THEN
    l_status := 'ERROR';
    ELSE
    l_status := 'SUCCESS';
    END IF;
    END LOOP;
    END fclose_po;

  • Final Invoice not releasing purchase order commitments

    Hi Experts,
    We recently upgraded from 4.6C to ECC6 and have had reports of commitments not longer being released when the Final Invoice is flagged on Service purchase orders.  This is causing many issues since they can no longer flag the last service entry as "Final" because the invoice has already paid.
    Out User's have become dependent on this process so please help.  I have looked in OSS but cannot find anything referring to this issue.
    Any help is greatly appreciated.
    Thank you in advance,
    Stella Cook
    Tesoro Companies Inc.

    Hi Kiran,
    I think that there is some user exit getting called in place where you have issues. Ideally the final invoice should never check the order as the order can be in teco during invoicing.
    I suggest you to debug it using your ABAPer as the signs are of some code inconsistency. The results are different when you directly click the final invoice and click after once seeing the account assignment,
    Regards
    Vivek Singh

  • Final Cut Server release date?

    Hey guys
    Any ideas? The last press release in April 17 said Final Cut Server was going to be released in May... but there's been no press releases since?
    Does anyone have any insider info?
    We are being fed conflicting reports in Oz from the Resellers.
    Cheers
    Julie

    If you sign up for apple's news and events, you'll be emailed when it's released.
    http://www.apple.com/finalcutserver/signup/
    Jerry

  • So when is Apple finally going to release a new patch?

    It's been awhile since Airport Extreme Update 2007 - 002 (which broke my Airport's ability to connect with 3rd-party routers) was released. Has there been any indication as to when will 2007 - 003 be out? I wish my wireless connectivity would work again...

    There is a firmware update for the Airport Extreme
    802.11n. Go to Airport Utility, under preferences
    make sure you have checked for firmware updates
    automatically.
    Also if you go to the Apple Site/Support/Downloads
    you'll see it there.
    The firmware update that you reference is for Airport Extreme Base Station. The topic of this thread is Airport cards and how that has broken airport on Macbooks and Macbook Pros so that they are unable to connect to a variety of routers (particularly D-Link).
    As for the subject patch, after buying a new router at home so that my Macbook Pro could go wireless again, I had resigned myself to waiting until June when perhaps Leopard might have fixed the problem. That has turned into October. I filed a bug report with Apple Developer's Connection (ADC) a month ago and have only received a reply that they knew about the issue. Like many of us, I am still unable to connect to many wireless access points, including my office.

  • Data loading problem in dataGrid in final flex2.0 release

    hi all,
    here is the code which call init user defined function every
    time when creation complete event fire which bind array collection
    as dataprovider of DataGrid but problem is its not working means
    not load datain datagrid..
    [Bindable]
    public var MailList:ArrayCollection;
    [Bindable]
    public var MailListProcessed:ArrayCollection=new
    ArrayCollection();
    public var storeInfo:Array= new Array();
    public function initDG(event:Event) : void
    elementName=parentApplication.FlashMails.topInboxs.MailFolderLists.selectedItem.@post;
    try{
    MailList = new
    ArrayCollection(mx.utils.ArrayUtil.toArray(event.target.lastResult.response.mailMessageLi st.mailMessage));
    }catch(err:Error)
    storeInfo[elementName]="";
    MailListProcessed=new ArrayCollection();
    if((storeInfo[elementName])==undefined)
    storeInfo[elementName]=MailList;
    MailListProcessed=storeInfo[elementName];
    else if(parentApplication.FlashMails.topInboxs.blnFlag)
    storeInfo[elementName]=MailList;
    MailListProcessed=storeInfo[elementName];
    binding MailListProcessed as dataprovider to datagrid
    <mx:DataGrid tabEnabled="false" id="dgMailList"
    dragEnabled="true" dropEnabled="true" dragMoveEnabled="true"
    allowMultipleSelection="true"
    dataProvider="{MailListProcessed}" styleName="DataGrid"
    width="100%" height="100%" borderStyle="none"
    borderSides="none" cornerRadius="500" focusAlpha="0"
    textRollOverColor="#ffffff" >
    <mx:columns>
    <mx:Array>
    <mx:DataGridColumn labelFunction="getid" width="0.1"
    resizable="false" visible="false" />
    <mx:DataGridColumn dataField="contentType" width="0"
    resizable="false" visible="false"/>
    <mx:DataGridColumn labelFunction="getCCEmail" width="0"
    resizable="false" visible="false"/>
    <mx:DataGridColumn dataField="flag" headerText="Status"
    sortable="false" width="50" itemRenderer="mailIconCmp"
    resizable="false" />
    </mx:Array>
    </mx:columns>
    </mx:DataGrid>
    plz tell me what was exact solution for this...
    thanks in advance

    creationComplete only fires once when the application or
    components are created. Your code looks like it wants to be a
    result handler of a webservice. There's a chance that
    createionComplete gets fired before the network returns the
    data.

  • Finally Sweden Apple released Apple TV2 and movies.

    But, the movies didnot include subtitles. Even if we are in dvd region 2. That was dissapointing.
    Further Appletv2 worked for 15 minutes.
    I have iMac with updated Lion, an updated itune.
    Appletv updated.
    Time capsule
    iPhone and iPad with ios5.
    Found the streaming shut off depedent on time capsule. Had to enter port 123 at shsring on time capsule.
    This is crap....no data re This re appletv and itune 10.5.
    Films on swedish itune ...no subtitles...i am really dissapointed

    After having audio background noise so loud you cannot hear the audio on Apple TV using iTunes movies and Netflix television programs, but no noise problem on Netflix movies or on Apple TV iTunes movie previews, Apple Care solved the problem by telling me to go to "settings" in the menu, select "audio and video", then select "dolby".  Turn "dolby" to off.  For me, this not only solved all noise problems, but also enabled the closed captioning on the Netflix movies, which were not showing before!!!  You must be sure closed captioning is enabled in the "settings" section in the Apple TV menu, and the movie must be closed captioned (noted on the preview page for all movies, etc.) - for ITunes movies or Netflix.  Netflix is closed captioned just by turning off the dolby on the Apple TV.  Netflix doesn't seem to know this solution.  Apple Care is finding that the dolby fix also seems to fix a "no audio" problem.

  • Function module related to release transport request

    Hello experts,
    I am working on product management system hierarchy. The hierarchy is like
      PRODUCTSSUBPRODUCTVERSIONPACKAGE
    we can create transport for VERSION directly from CONTEXT MENU. Next step is download transport to client PC I have done with it. FInal stage to release transport directly from context menu. For this i am searching for appropriate function module. If anybody know which function module to be used for transport request release please share it with me.
    Thanks,
    Avadhut

    Hi,
    You can use TR_RELEASE_REQUEST to release a transport request directly.
    The class CL_CTS_REQUEST is also worth looking at.

  • Error while creating new release groups in PO release strategy

    Hi All
    I was creating a release procedure for PO and after completing steps, Create Characteristic and Create class & while creating new release grp with the class created i am not able to save it and the error message is (ME492) is" Only one release class should be used within the release groups for overall release...".
    But i am able to create from an already existing CLASS and able to proceed further.( Note: I am using the training module and in the learning stage.)
    Thanks for your support.
    Illan

    Dear,
    Please follow below mention path.
    *and check any things is missing, If you can go in bellow mention hints you cans create easily purchase release streatgy.*
    *- Follow below mention path.*
    *SPRO -> Material Management -> Purchasing -> Purchase Order -> Release Procedure for Purchase Orders.*
    *Three steps involved in release process of purchase order.*
    **Edit Characteristic     Create characteristic for release purchase order. If you want to release purchase order on purchasing group base. So you can create characteristic for purchasing group. Take reference of CEKKO structure and BKGRP field for purchasing group in additional data of characteristic. E.g :- Purchasing group - BKGRP**
    **Edit Class     After creation of characteristic, create class for release purchase order. In which you can take reference of Class Type: - 032,Status: - Release,Class group: - Release strategy class,And put reference of your characteristic, which are created by you in first step.E.g: - Class - REL_PO**
    *Define Release Procedure of purchase order     In this step four processes involved.o     Release Groupso     Release Codeso     Release indicatoro     Release Strategies*
    Now see each steps of Define release procedure of purchase order in briefly: -
    Release Group     In which you can define release strategy groupExa.: - Release group : - 01,Release object: - 01, Class: - REL_PO.
    Release code     In which you can define release code. Enter value as Release group: - 01,release code: -01 - Purchase Head,Release group: -01, release code: - 02 - Auditor
    Release indicator     In this step you have to define release indicator.Like X - Blocked, I - Under process, S - Release
    *Release Strategy     *This is the final step for release strategy.Assign release code 01, 02.Click on release prerequisites, select 02 - check box and click on continue.Click on release status button, enter release indicator X, I, S and click continueClick on classification button, enter values of purchasing group for which you want to created release strategy
    Than create purchase order for purchasing group, which you assign in classification of release strategy. Enter your values of purchase order and click on check button release strategy executed in your purchase order.
    Regards,
    Mahesh Wagh

  • Windows 8.1 Pro Final (6.3.9600)

    Have a clean installation of Windows 8.1 Pro final (volume) since released date. Meanwhile until now it still cannot activated via KMS server perhaps not injected yet, online activation also not work. Current license status is "notification". Is
    this will still available and if have expiry, until when? Any article mention this?
    As noticed that preview version will expired by 15th Jan 2014
    manggar77

    hi don,
    thanks. but what i wan't to know is before
    8.1 pro activated, how long it can be used?
    manggar77
    if it is a VL channel product, you are required by the terms of the license to activate it.
    For VL channel products, there are some functional limitations and informational warnings and reminders applied if the product is not activated, but there is no other impact.
    Evaluation channel product will periodically shut down. VL channel product will not shut down.
    Regardless of the channel (OEM, Retail, VL, Eval) the license terms require that you activate.
    MSDN and TechNet, which are for evaluation and/or development, generally the advice is not to activate if you will commence and conclude your evaluation/development in a short period.
    This aspect is not documented in any license terms that I've ever found.
    (edit: I found it documented here, as up to 120 days)
    http://technet.microsoft.com/en-us/library/dd981009.aspx
    (Note that this is written for Win7/WS2008R2, and Win8/WS2012 may be different)
    (there is also a description of the behaviour if not activated, and grace period expires)
    (Also note that this is a white paper, not a license agreement)
    So, if you are asking "what am I permitted to do?", the answer is, to comply with the license terms, you are required to activate.
    If you are asking "what is the technical or user experience if I do not activate?", this depends upon the channel of the media you used.
    Does this help? Or have I misunderstood your question?
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Deleted PO message reappearing in After PO release

    Here is the way to simulate my problem
    1) Call transaction ME21 Create new PO with high value so that it will go for release
    2) Call transaction ME22 u2013 Output -> messages -> Delete PO output u2013> Select and delete O/p message
    3) Go to ME 28 release PO
    4) Now go back to ME23 and you can see the PO output message
    My question : Why deleted PO output message is apeading again? Can some one help me here.
    Thanks you So much
    Best Regards
    Sunil

    Sunil,
    You are defying the whole purpose of Release Strategy.. Th Release inidcates final approval and release to the vendor. However you are deleting the O/p..
    In order to delete the o/p message is againtst the system process. If you still intend to do it and Your audit has no issues with that, you could code the requirement for the message and customize it to look at the trigger that causes the O/p to create upon release.. This way as soon as it is determined, You can modify the SY-SUBRC to 4 so the message is not showed any more.

  • ACR 8.7 has been released with support for the Nkon D750.  Why no Lightroom support yet?

    ACR 8.7 has been released with support for the Nkon D750.  Why no Lightroom support yet? Am I wrong or was support for the D810 available far more quickly?

    ACR 8.7 has not yet been released. The ACR 8.7RC has been released. It is a Release Candidate - and as such, is not a final version.  I wouldn't be concerned about a lack of Lightroom support until a final version is released.
    Adobe Photoshop Camera Raw 8.7 Release Candidate | digital camera raw file support - Adobe Labs

  • Flash Builder 4 for Mac: Unable to export a release build

    Hi
    I've been unable to export release builds of any AIR projects when using a Mac installation of Flash Builder 4. I can run the AIR apps within the IDE, but I keep getting the following error when exporting: "One or more errors were found while trying to build the release version. Unable to export."
    The weird thing is that I can export the exact same AIR projects using my Windows 7 copy of FB4 just fine, without any errors.
    Details of the Mac installation:
    OSX 10.5.8
    Flash Builder 4 plug-in version, v4.0.1, on Eclipse v3.4.2
    I performed a fresh install of FB4 today (before anyone suggests it ) but to no avail.
    The error log - I wasn't sure what to copy, so just took everything that had the right time entry:
    !ENTRY com.adobe.flexbuilder.project 4 43 2011-01-29 17:35:11.940
    !MESSAGE ExportReleaseVersionWizard: internal error occurred
    !STACK 0
    java.lang.reflect.InvocationTargetException
    at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:479)
    at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:372)
    at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:934)
    at com.adobe.flexbuilder.exportimport.releaseversion.ExportReleaseVersionManager.doExport(Ex portReleaseVersionManager.java:305)
    at com.adobe.flexbuilder.exportimport.releaseversion.ui.ExportReleaseVersionWizard.doBuild(E xportReleaseVersionWizard.java:152)
    at com.adobe.flexbuilder.exportimport.releaseversion.ui.ExportContentPage.setVisible(ExportC ontentPage.java:115)
    at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:1161)
    at org.eclipse.jface.wizard.WizardDialog.access$2(WizardDialog.java:1139)
    at org.eclipse.jface.wizard.WizardDialog$4.run(WizardDialog.java:1128)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
    at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:1126)
    at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:820)
    at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:369)
    at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:624)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570)
    at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3482)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3068)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
    at org.eclipse.jface.window.Window.open(Window.java:801)
    at org.eclipse.ui.internal.handlers.WizardHandler$Export.executeHandler(WizardHandler.java:9 7)
    at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:273)
    at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:281)
    at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
    at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.jav a:508)
    at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
    at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.j ava:247)
    at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:157)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:583)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:500)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :411)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570)
    at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3482)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3068)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    Caused by: java.lang.AbstractMethodError: org.apache.xerces.dom.DeferredElementImpl.getTextContent()Ljava/lang/String;
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.alterXmlTree(ApolloXMLBuilder.ja va:252)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.generateXmlFile(ApolloXMLBuilder .java:142)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.build(ApolloXMLBuilder.java:95)
    at com.adobe.flexbuilder.exportimport.releaseversion.ExportReleaseVersionManager$2.execute(E xportReleaseVersionManager.java:249)
    at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:104)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800)
    at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:116)
    at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:464)
    ... 61 more
    Root exception:
    java.lang.AbstractMethodError: org.apache.xerces.dom.DeferredElementImpl.getTextContent()Ljava/lang/String;
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.alterXmlTree(ApolloXMLBuilder.ja va:252)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.generateXmlFile(ApolloXMLBuilder .java:142)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.build(ApolloXMLBuilder.java:95)
    at com.adobe.flexbuilder.exportimport.releaseversion.ExportReleaseVersionManager$2.execute(E xportReleaseVersionManager.java:249)
    at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:104)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800)
    at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:116)
    at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:464)
    at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:372)
    at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:934)
    at com.adobe.flexbuilder.exportimport.releaseversion.ExportReleaseVersionManager.doExport(Ex portReleaseVersionManager.java:305)
    at com.adobe.flexbuilder.exportimport.releaseversion.ui.ExportReleaseVersionWizard.doBuild(E xportReleaseVersionWizard.java:152)
    at com.adobe.flexbuilder.exportimport.releaseversion.ui.ExportContentPage.setVisible(ExportC ontentPage.java:115)
    at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:1161)
    at org.eclipse.jface.wizard.WizardDialog.access$2(WizardDialog.java:1139)
    at org.eclipse.jface.wizard.WizardDialog$4.run(WizardDialog.java:1128)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
    at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:1126)
    at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:820)
    at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:369)
    at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:624)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570)
    at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3482)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3068)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
    at org.eclipse.jface.window.Window.open(Window.java:801)
    at org.eclipse.ui.internal.handlers.WizardHandler$Export.executeHandler(WizardHandler.java:9 7)
    at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:273)
    at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:281)
    at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476)
    at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.jav a:508)
    at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169)
    at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.j ava:247)
    at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:157)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:583)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:500)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :411)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570)
    at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3482)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3068)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200)
    at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:592)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    !ENTRY org.eclipse.core.resources 4 2 2011-01-29 17:35:12.026
    !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.resources".
    !STACK 0
    java.lang.AbstractMethodError: org.apache.xerces.dom.DeferredElementImpl.getTextContent()Ljava/lang/String;
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.alterXmlTree(ApolloXMLBuilder.ja va:252)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.generateXmlFile(ApolloXMLBuilder .java:142)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.build(ApolloXMLBuilder.java:95)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLIncrementalBuilder.build(ApolloXMLIncrem entalBuilder.java:74)
    at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:633)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:170)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:201)
    at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:253)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:256)
    at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:309)
    at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:341)
    at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:140)
    at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:238)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    !ENTRY org.eclipse.core.resources 2 75 2011-01-29 17:35:12.037
    !MESSAGE Errors during build.
    !SUBENTRY 1 com.adobe.flexbuilder.project 2 75 2011-01-29 17:35:12.037
    !MESSAGE Errors running builder 'AIR application.xml Builder' on project 'aqua'.
    !SUBENTRY 1 com.adobe.flexbuilder.project 2 75 2011-01-29 17:35:12.037
    !MESSAGE org.apache.xerces.dom.DeferredElementImpl.getTextContent()Ljava/lang/String;
    !STACK 0
    java.lang.AbstractMethodError: org.apache.xerces.dom.DeferredElementImpl.getTextContent()Ljava/lang/String;
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.alterXmlTree(ApolloXMLBuilder.ja va:252)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.generateXmlFile(ApolloXMLBuilder .java:142)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLBuilder.build(ApolloXMLBuilder.java:95)
    at com.adobe.flexbuilder.project.air.build.ApolloXMLIncrementalBuilder.build(ApolloXMLIncrem entalBuilder.java:74)
    at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:633)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:170)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:201)
    at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:253)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:256)
    at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:309)
    at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:341)
    at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:140)
    at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:238)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)

    Hi Chris
    Thanks for your reply.
    I had already seen that post, and the answers were not applicable to me. But thankfully I have found the solution now!
    I Googled the error message: "org.apache.xerces.dom.DeferredElementImpl.getTextContent()Ljava/lang/ String", and came across the following bug report:
    http://code.google.com/p/alkwarel/issues/detail?id=10
    As suggested in the link above, I deleted the xerces.jar  located in user.home/Library/Java/Extensions/. I then cleaned my project, and FB4 for Mac finally exported the release build!
    That bug has been annoying me for MONTHS. I'm so happy it's fixed now!
    All the best,
    Zabeen

Maybe you are looking for

  • Can anyone recommend a Hard Drive handycam?

    Apologies for reposting this, however my original post was misleading. I had put HD handycam (which in the real world means high def) when I meant HDD (hard disk drive). Here is my corrected post: Can anyone recommend a Hard Disk Drive handycam that

  • Unable to download new version of adobe flash player

    I recently installed Mac OS X and got a problem. I cannot update the new version of adobe flash player. It stopped at "initializing step" (as see in the image). Can anyone please help me fix it? Thank you very much!

  • My macbook pro won't charge due to an electric shock

    My macbook pro won't charge due to an electric shock that was caused from a charger that was in a bad condition, the computer didn't turn off when it happened but it stopped charging. When the battery died it refused to charge with any charger, I eve

  • Photoshop wants to install printer drivers

    Hello this issue has been bugging me for a few days now and i can't seem to find help on it anywhere. The firm I work for is an international design firm so we send .psd files back and forth from all of our offices. Recently i've encountered an issue

  • Video pauses and audio skips

    While watching any video in iTunes, the video will freeze and the audio will skip rapidly like a broken record for 5-10 seconds, the video will then speed forward and finally resume at normal speed but with the audio out of sync. Sometimes this happe