Porting to CS5

I'm trying to port from CS4 to CS5. I managed to get my CS4 project up and running, but when I compile I get a couple of errors like shown below. I double checked all include directories and those seem to be OK, compared to the sampe projects provided in the CS5 SDK.
Error 1 error LNK2001: unresolved external symbol "__declspec(dllimport) public: class PMString & __thiscall PMString::operator=(class PMString const &)" (__imp_??4PMString@@QAEAAV0@ABV0@@Z) WPPagesPrinter.obj IDConnector
Error 11 error LNK2019: unresolved external symbol "__declspec(dllimport) public: class PMString & __thiscall PMString::operator=(class PMString const &)" (__imp_??4PMString@@QAEAAV0@ABV0@@Z) referenced in function "private: void __thiscall TPublisher::MakePages(class UIDRef const &,class XMLReference const &)" (?MakePages@TPublisher@@AAEXABVUIDRef@@ABVXMLReference@@@Z) Publisher.obj IDConnector

Pectora:
   If you are still having these problems, and if you have checked to ensure that all paths are pointing to the correct libraries (i.e. CS5 libraries being used in CS5 projects) then the only other possibility that I can think of is a corrupt library.  You are going to have to download and reinstall the SDK.
   If you are up to it, however, a second, less extreme option is to use DollyXs to recreate the project, leaving it pristine (I.e. don't add any changed code).  Build it first to ensure that the code as created by DollyXS will build without error.  Once that is established, carefully move all code from the old project into the new project.  You may want to compile/link after each new module is added, though this may not be practical because of dependencies.  Assuming all else is correct, that may fix your problem--and the solution is a little less extreme than reinstalling the SDK.
   If, however, this does not work, then it's a really good bet that you have some corruption somewhere.
HTH
John

Similar Messages

  • Problem porting CS5.5 to CS6

    Hello
    I run into a problem when I try to port a CS5.5 plugin to CS6. I get the following error message:
    >C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(108,5): error MSB3073: The command "merge_res.cmd "..\objR\ColormanLite\"  ColormanLite  & echo Deleting old resources... & del /f /s "C:\Users\Laidback\Documents\Adobe InDesign CS6 Plugin SDK\build\win\objR\ColormanLite\(ColormanLite Resources)\"*.idrc > ..\objR\ColormanLite\prevDeletedResources.txt & xcopy /Q /E "..\objR\ColormanLite\"*.idrc "C:\Users\Laidback\Documents\Adobe InDesign CS6 Plugin SDK\build\win\objR\ColormanLite\(ColormanLite Resources)\" /Y
    1>C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(108,5): error MSB3073: :VCEnd" exited with code 4.
    Does anyone know how to fix this problem.
    Best regards
    / Pontus

    Solved the problem:
    In the compiler settings under:
    General ->Output Directory set: ..\release\SDK\
    General ->Intermediate Directory set: .\..\objR\<projectname>\
    Compaire with the compiler settings for the samples.
    Best regards
    / Pontus

  • Error linking the CoreServices.Framework header files under CS5

    Hello All,
    I am porting my InDesign CS4 plugin into Indesign CS5. In this project I have used Soap connection services by using OpenTransport.h file and other files from the Coreservices framework headers.
    It works fine with CS4 if I give the Path to the framework folder from the SDKs. But same if I try to do while porting into CS5 with MacOs 10.5sdk it give error and does not include the file.
    I am using XCode 3.1.3 on Mac OS 10.5. Has anyone face this problem and resolved the same. If so please let me know.
    Thanks all in advance.
    Regards
    Farzana.

    the php in 10.5 uses extensions, you do not need to rebuild php to get mssql to work..
    Take a look at http://downloads.topicdesk.com/docs/AddingGD2_to_PHP_on_OS_X_Server_10_5Leopard.pdf
    as you can see in that example GD is built separately, mssql is the same.. do a google search on mssql.so and you will find a bunch of info (most of it is for linux but you should be able to get the info to work)

  • Are plug-ins developed for Indesign CS4 compatible with CS5?

    Will a plug-in developed for Indesgn CS4 work in CS5?

    No. CS4 plugin need to be ported to CS5 - basing on InDesign CS5 SDK
    Regards
    Bartek

  • Upgrade CS3 custom plugins to work with CS5

    Hello everyone,
    I have several InDesign plugins developed with CS3 SDK, and now we'd want to make them work with CS5.
    As the first step, I'd want to get some general idea regarding how large the scope of effort it would require.
    So I'm wondering if anyone knows whether we have any tools help with such upgrades. Or if anyone could help pointing me at some instructions that would be great.
    Thanks a ton!
    -Jeff

    Hi Jeff,
    You could look into the programming guide for a complete reference into what all are the changes you need to make into your plugin for porting into CS5.
    But i will mention some main points that hopefully will get you started.
    1. You need to seperate your plugin into two plugins that i.e. model and UI plugins. For that what i suggest is consider placing things like persistent interfaces and commands, maybe selection suites and the same into the model plugin and the rest into UI plugin.
    2. You could start by not linking against the WidgetBin.lib on the Windows proj and not using the "IndesignModelUI.framework" in the MAC project. The files giving compilation error would be a potential target to move to the UI plugin.
    3. Next is when you  have decided what all things are to be present in the model plugin, then use the CS5 SDK to compile this project, you will probably get some compilation errors which you can fix with the help of the Indesign SDK help.
    4. Once the model plugin is compiled you can place all the other files and features from the original plugin not included in the model plugin into a new plugin(UI). This project will link against the WidgetBin.lib on the Windows proj and the "IndesignModelUI.framework" in the MAC project.
    5. Once the UI plugin is ready and then you have made the appropriate API changes, you still might have some linking and compilation errors because of the code moved into the model plugin. For this you need to make a facade generally used for communication btw the model and UI plugin. Place all the functions of the model plugin that the UI plugin uses in the facade and replace the call of these function appropriately in the UI plugin.
    6. Lastly you will have to make some changes in the project  settings as well for CS5 to copy the resource files with the plugin as well, please refer CS5 porting guide.
    If you follow these steps, you would be able to load your CS3 plugin into CS5. And basically the effort in terms of porting the plugin mainly depends upon the quality of code to be ported. If the original code is written with good insight and using good practices of design patterns, porting is not a very time consuming task.
    Hope this helps.

  • CS5 Mac - memory error "double free"

    I ported out InDesign Plugin from CS4 to CS5 and now I have an error "malloc: *** error for object .....: double free" in the mac version.
    I started porting to CS5 with the Windows version, I made a new project file with dollyxs and added all source code files and libraries. I had to make a few changes in the code, but I had a working version for Windows very fast.
    After that I copied the source files to the Mac, created a new project for Xcode and added the source files. I can compile and link, but after starting I have this 'double free' error.
    I downloaded debug version of InDesign CS5 and now I have a debugger window with a thread list (many function names I don't know). And no idea how to continue.
    I have a screenshot of the debugger window here:
    The error message is visible in the debugger console. Any ideas what I can do to find the object that causes the error?
    Thanks
    Klaus

    "helpful" or "solved" points if it worked.
    I almost hate saying it, cause I really don't care if I get points for solving someone's problem, but I have realized the other benefit of giving these points. As I am searching for other problems with my system it is difficult to follow any advice from previous posts unless I can determine if the problem was solved within the duration of the thread.
    It's nice for others to be able to know if the problem was solved as well...
    Thanks.

  • Using a Mac Pro w / Apple Internal Hardware RAID Card?

    Anyone using a Mac Pro with a Apple Hardware RAID Card 2010?
    ( I have a 12 Core )
    Is it worth the $600-700 ?
    How much faster than the software RAID 0?
    I see Hamm's RAID tips chart .. but it doesn't include such options .. plus it is based on a PC system.
    Any tips would be great ..
    I find many areas where the application is slow / unresponsive .. and I'm not sure where the bottleneck is ... Maybe the hardware RAID will solve it?
    I'm really am impressed with CS5 .. it would be even better with some adjustments .. but I am absolutely disappointed with sluggish performance on my top-of-the-line Mac Pro 12 Core.
    This is not what I expected for a $8,000 machine.
    Some users says that the port of CS5 for the Mac has taken a back seat to the Windows version at Adobe.
    I can't imagine that Adobe would not put 100% effort into Mac products.
    Go Team!!!

    I have a 2009 Mac Pro 3.33GHz Quad core w/ Apple RAID card, 16GB RAM from OWC, and Apple's Radeon HD 5870 GPU.
    I have RAID 0 set across 3x1TB drives internally, and the standard 640GB drive for OSX and all program files. I set all video assets, renders, previews and such on the 3TB RAID.
    This seems to work wonderfully. I built this system specifically to edit a feature film shot on P2 DVCProHD, and I've been impressed with how it handles it. This was all built prior to CS5, which took me by surprise. Had I known nVidia would become such a problem for Apple, I would have built a PC, but that's another story.
    I just started a new project in CS5 on the same system, this time using H.264 video from my Nikon D7000, and so far, it seems to play just as nicely, despite not having hardware acceleration via CUDA technology. Yellow bars on top, even. I haven't had any problems with clips taking a long time to populate on the timeline or any of that, so perhaps the RAID card helps there.
    All this aside, I've already decided to upgrade my RAID for another reason. Right now, my backup is performed via an eSATA-connected external drive through a PCI eSATA card. After every edit session, I dump everything on the RAID onto the external drive, and it goes much faster than the old FW800 transfer used to. I'm about to replace my Apple RAID card with an Areca card and set up a 4-bay RAID 3 via an SAS connection. This will allow for excellent data throughput while offering more security than my current RAID 0 / manual backup system, and free up the internal drives for backups, exports and render files.
    I believe in hardware RAID, but I'm not as knowledgeable as Harm and others are about it. I had my Mac built to order with the Apple RAID card, so I have no experience using Premiere with a software RAID. Due to my smooth experience using it, I think it was worth it, but plenty of people say the Apple RAID card is rubbish, and to go with Areca or Atto cards. I didn't know about them until after I built my system, and even though it will cost a couple thousand to upgrade my RAID from this point, I expect to have an even better system than I already have.
    I hope this helps, and feel free to ask any questions I didn't address.

  • Exchange Forum not allowed to view

    Hello
    The Exchange Forum is unaccessible to my Adobe account.
    When I enter in the Exchange Forum link it shows this message:
    "Unauthorized
    It appears you're not allowed to view what you requested. You might contact your administrator if you think this is a mistake."
    Is there any special account permission needed to access Adobe Exchange Forum or it's an Exchange Forum problem?
    Thank You for answer!
    Massimo Novi

    Thank You Jochem, it works now!
    I have to say that there are already questions on that Exchange Forum about long acceptation times in Adobe Exchange area. Is probably a sensible problem and non always submitted material is accepted in short times.
    I will try to post my problem on that forum, however.
    Do You kindly know a more direct support help from Adobe on Exchange accepting workflow? Seems that others people with the same problem have had the same difficulty to contact Adobe for a direct response. There is no "Contact Adobe" link in Exchange area for my account, so I think does not exist. I would like to have mail address for some Adome support directly involved in Exchange acceptation workflow. My info panel has more than 500 downloads in CS4 release so I think the porting to CS5 should be useful.
    Thank You for You help!
    Massimo Novi
    [email protected]

  • Are non-Eve dialogs still supported in CC?

    I'm porting some CS5/55/6 plugins to CC and I run into issues with my fr files. Do I have to change them to use eve? or should it still be possible to leave the layouts as they are?
    thanks,
    bart

    Hi Bart
    I'm affraid you will need to port your resourceS (.fr) files as well as some classes connected to those widgets.
    It depends on complexity of your UI.
    Regards
    Bartek

  • CS6 - Does CS6 SDK provide a dialog box whose icon can be adjusted?

    I am porting a CS5 plug in to CS6.
    My plugin contains 1 main form and some alert dialogs which are independent to the main
    (e.g. a "Help" dialog box shows when users click at AI > Help > [My Plug-in Help] button).
    The main form which uses Flash UI is done.
    But the "Help" dialog has a problem.
    I want to use CS6 SDK to show a dialog with my specified icon, not the warning icon as default.
    # I tried the alerts in AIUserSuite but none of them is appropriated.
    Does CS6 SDK provide a dialog box whose icon can be adjusted?

    Thank you LeoTaro.
    But my implementation made AI crashed after PlugPlugLoadExtension is called.
    Please tell me the wrong points of my practice. Thank you!
    LeoTaro wrote:
    1. Create an mxml file for the About dialog in the same way as you did for your main panel.
    MainScreen.mxml
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    width="865" height="545"
                    horizontalScrollPolicy="off" verticalScrollPolicy="off"
                    layout="absolute"
                    creationComplete="init()" >
    --> Create new HelpScreen.mxml
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    width="865" height="545"
                    horizontalScrollPolicy="off" verticalScrollPolicy="off"
                    layout="absolute"
                    creationComplete="init()" >
    2. In your manifest.xml file add an Extension entry for the dialog in the ExtensionList and in the DispatchInfoList.
    3. In the Extension entry in the DispatchInfoList set AutoVisible to false
    I cannot edit manifest.xml by Flash Builder (it just does not allow me to type there)
    so I used Notepad++ to add HelpScreen extension as you mentioned.
    and don't include a Menu setting.
    I don't how to do this so I skipped it for temporary.
    Then, I rebuilt the project by Flash Builder.
    4. You can then use the PlugPlugLoadExtension and PlugPlugUnloadExtension functions in the PlugPlug shared library to show and hide the dialog from your plugin.
    Finally, since some conducted steps are incorrect, the AI is crashed after PlugPlugLoadExtension is called.

  • Porting from CS4 to CS5, save document failed.

    I am porting programes from CS4 to CS5, and meet a problem.
    In my program I need delete some page from a indesign document and then save it back.
    I open the document use the code below
    InterfacePtr<IK2ServiceRegistry>    serviceRegistry(Porting::GetPointerToSession(), UseDefaultIID());
            ASSERT(serviceRegistry);
            if (!serviceRegistry)
                break;
            InterfacePtr<IK2ServiceProvider> openManagerService(serviceRegistry->QueryDefaultServiceProvider(kOpenManagerService));
            ASSERT(openManagerService);
            if (!openManagerService)
                break;
            InterfacePtr<IOpenManager>  openManager(openManagerService, IID_IOPENMANAGER); // no kDefaultIID
            ASSERT(openManager);
            if (!openManager)
                break;
            UniFile fileDocument = fTemplateCopyFile;
            UIDRef DocumentRef = openManager->OpenDocFromFile(&fileDocument,kFullUI);
    and then delete some page
    for( int i = 0; i < fnPageCountOfCopy; ++i )
                UID idPage = fvPageUID[i];
                if ( fPageIDList.DoesNotContain(idPage) )
                    UIDRef refPageToDelete( fTemplateCopyUIDRef.GetDataBase(), idPage );
                    InterfacePtr<ICommand> deleteCmd(CmdUtils::CreateCommand(kDeletePageCmdBoss ));
                    if( deleteCmd )
                        UIDList tempList(refPageToDelete);
                        deleteCmd->SetItemList( tempList );
                        ErrorCode status = CmdHelper::ProcessCommand( deleteCmd );
    then save it back
    pOldHandler->SaveAs(fTemplateCopyUIDRef,
                &fTemplateCopyFile,
                K2::kSuppressUI,
                kFalse,
                kInDesignFileTypeInfoID);
    but save failed. The code works on CS4, but does not work on CS5.
    Does anybody know why? Any suggestion is appreciated.

    I found that delete operation will affect save operation, but I don't know why and how to solve it.
    Is it a threading problem?

  • Trouble porting CS3 script to CS5

    Hi:
    I'm having difficulty porting some of my CS3 scripts over to CS5. It seems I'm having problems placing graphics in rectangles.
    On the following script:
    tell application "Adobe InDesign CS5"
    activate
    set newDoc to make document
    tell newDoc
    tell document preferences
    set page width to 8.5
    set page height to 11
    end tell
    make rectangle with properties {geometric bounds:{1.75, 1.5, 3.5, 4.375}, fill color:swatch "Black", fill tint:0, stroke weight:0.5, stroke color:swatch "Black", stroke tint:0, label:"ImageBox"}
    set tempPDF to "Macintosh HD:Users:someuser:Desktop:temp.pdf"
    tell rectangle "ImageBox"
    place tempPDF
    end tell
    end tell
    end tell
    it draws the rectangle but I get an error saying it doesn't understand the "place" message.
    Has something changed in how you load a graphic into a rectangle?
    Thanks.
    --jon

    Hi jon,
    Instead of setting the label property, set the name property. Then your script should work.
    Thanks,
    Ole

  • Porting from CS4 to CS5

    Im trying to port some plugins from CS4 to CS5. During the process I encounter several errors. Once of them is listed below.
    Error 1 fatal error C1189: #error :  DEBUG and NDEBUG are out of sync!    // $$$ need to set NDEBUG in release builds c:\program files\adobe\cs5\indesign product sdk\source\public\includes\K2Debugging.h 53

    Pectora:
      Check the C++/Preprocessor/Preprocessing Definitions field in your Project Properties dialog.  Make sure that your Debug version has a "DEBUG" definition placed in there, and that your release version has an "NDEBUG" definition placed in there someplace.  My guess is that either you left one of them out, or that you have the DEBUG definition in your release properties.  Other possibilities are a failure to separate definitions properly or misspelling.
    HTH!
    P.S. I am assuming that you are working with VS8 on a Windows box.  This information should be included in your next submission just to make sure we are all working from the same starting point.

  • Prefix.pch error trying to port cs4 to cs5

    im trying to port cs4 plugin to cs5 but when i build my proyect then appears this error in the headers search.
    the error in spetial says that doesn't exist move.cp or some like that.
    who knows what is the best practice for port cs4 to cs5??
    i try:
    change the proyect settings
    create a new dollyxs and after link the files and change others
    but no, each time this error appears

    I think porting guide is quite helpful.

  • Porting CS4 Plugin to CS5

    Hello Guys,
    i'm trying to port a Plugin from CS4 to CS5 but after a lot of hard work i receive a last error that i cannot trace. The Event-Element cause a strange error:
    File /Adobe InDesign Products SDK/build/mac/prj/../../../source/sdksamples/JPEGExport.server/JPEGExport.fr; Line 141 # Error: Expression must be numeric.
    File /Adobe InDesign Products SDK/build/mac/prj/../../../source/sdksamples/JPEGExport.server/JPEGExport.fr; Line 152 # Error: Expected '}'.
    all I do is defining an Event-Element to supply a scripting method to the IDS scripting DOM:
    resource VersionedScriptElementInfo( 4010 )
        //Contexts
        kCobaltScriptVersion, kCoreScriptManagerBoss, kInDesignAllLanguagesFS, k_Wild,
        kCobaltScriptVersion, kCoreScriptManagerBoss, kInDesignServerAllLanguagesFS, k_Wild,
        //Elements
            Event
                kJPEGExportEventScriptElement,
                e_Quit,
                "get Jpg",
                "JPEGExport",
                BoolType, <<<<<<<<<<<<<<< here is line 141
                    c_Param1, "savePath", "JPEGExport", StringType, kRequired,
                    c_Param2, "pageIDList", "JPEGExport", StringType, kOptional,
                    c_Param3, "dpi", "JPEGExport", Int32Type, kOptional,
                    c_Param4, "spreads", "JPEGExport", BoolType, kOptional,
                    c_Param5, "imageName", "JPEGExport", StringType, kOptional, 
                    c_Param6, "quality", "JPEGExport", StringType, kOptional,
                    c_Param7, "bleed", "JPEGExport", BoolType, kOptional,
                    c_Param8, "guides", "JPEGExport", BoolType, kOptional,
                    c_Param9, "baselineGrid", "JPEGExport", BoolType, kOptional,
                } <<<<<<< here is line 152
            Event
                kAssetExportEventScriptElement,
                e_AssetData,
                "get Asset Jpg",
                "AssetExport",
                BoolType,
                    c_AssetParam1, "assetID", "AssetExport", Int32Type, kRequired,
                    c_AssetParam2, "savePath", "AssetExport", StringType, kRequired,
                    c_AssetParam3, "dpi", "AssetExport", Int32Type, kRequired,
                    c_AssetParam4, "quality", "AssetExport", StringType, kRequired,
                    c_AssetParam5, "imageName", "AssetExport", StringType, kRequired,
            Provider
                kJPEGExportScriptProviderBoss,
                    Object{ kDocumentObjectScriptElement },
                    Event{ kJPEGExportEventScriptElement }
            Provider
                kAssetExportScriptProviderBoss,
                    Object{ kApplicationObjectScriptElement },
                    Event{ kAssetExportEventScriptElement }
    when i remove both Event-elements the plugin compiles fine, so maybe someone could point me to the right direction?
    Btw, the Adobe InDesign CS5 Products Programming Guide describes the following structure for the Event-element:
    Event // See Note 1
    kQuitEventScriptElement, // See Note 2
    e_Quit, // See Note 3
    "quit", // See Note 4
    "Quit the application", // See Note 5
    VoidType, // See Note 6
    { // See Note 7
      en_SaveOptions, // See Note 8
      "saving", // See Note 9
      "Whether to save changes before closing open documents", // See Note 10
      EnumDefaultType( kSaveOptionsEnumScriptElement, en_No ), // See Note 11
      kOptional, // See Note 12
      // See Note 13
    and i think this is exactly what i am using in my code, isn't it?
    Thanks in advance!

    You were right, seems to be possible to use "Method" instead of "Event". But unfortunately another error occurs:
    File /Adobe InDesign Products SDK/build/mac/prj/../../../source/sdksamples/JPEGExport.server/JPEGExport.fr; Line 143 # Error: Expected string.
    the strange thing is, c_Param1 is a string containing "Par1". Maybe the parameters have changed for the Method-Element?
    resource VersionedScriptElementInfo( 4010 )
        //Contexts
        kCobaltScriptVersion, kCoreScriptManagerBoss, kInDesignAllLanguagesFS, k_Wild,
        kCobaltScriptVersion, kCoreScriptManagerBoss, kInDesignServerAllLanguagesFS, k_Wild,
        //Elements
            Method
                kJPEGExportMethodScriptElement,
                e_Quit,
                "get jpg",
                "exports a preview image for pages or spreads",
                BoolType,
                    c_Param1, "savePath", "the root save path for the exported image(s)", StringType, kRequired, <<<<<<<<<<< this is line 143
                    c_Param2, "pageIDList", "a comma separated list of ids that should be exported", StringType, kOptional,
                    c_Param3, "dpi", "the resolution in dpi", Int32Type, kOptional,
                    c_Param4, "spreads", "whether to export spread images or page images", BoolType, kOptional,
                    c_Param5, "imageName", "optional name for the exported image", StringType, kOptional, 
                    c_Param6, "quality", "the quality of the exported images (low, medium, high)", StringType, kOptional,
                    c_Param7, "bleed", "whether to texport bleed", BoolType, kOptional,
                    c_Param8, "guides", "whether to export guide lines", BoolType, kOptional,
                    c_Param9, "baselineGrid", "whether to export baseline grids", BoolType, kOptional,
            Method
                kAssetExportMethodScriptElement,
                e_AssetData,
                "get Asset Jpg",
                "exports a preview image for assets",
                BoolType,
                    c_AssetParam1, "assetID", "the id of the asset to export", Int32Type, kRequired,
                    c_AssetParam2, "savePath", "the root save path for the exported image", StringType, kRequired,
                    c_AssetParam3, "dpi", "the resolution in dpi", Int32Type, kRequired,
                    c_AssetParam4, "quality", "the quality of the exported image (low, medium, high)", StringType, kRequired,
                    c_AssetParam5, "imageName", "optional name for the exported image", StringType, kRequired,
            Provider
                kJPEGExportScriptProviderBoss,
                    Object{ kDocumentObjectScriptElement },
                    Method{ kJPEGExportMethodScriptElement }
            Provider
                kAssetExportScriptProviderBoss,
                    Object{ kApplicationObjectScriptElement },
                    Method{ kAssetExportMethodScriptElement }

Maybe you are looking for

  • Print Module - Is it possible to show the single pages in the custom package?

    Hello everyone, I'm using Lr4. I'd like to prepare a multiple pages package in the Print Module. I need to view each single page, as because every time I add new page the cells become smaller and it's hard to arrange the images well. Is it possible t

  • How can I use the WebDynpro tutorial  template in APAB workbench?

    Hi, I have downloaded the tutorial template zip file from sdn (https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/webdynpro/tutorial on creating trees in web dynpro - 12.htm), but I don't know how to use it in ABA

  • SetMnemonic doesn't show underscore until Alt pressed

    My "Overview" button doesn't show the underscore under the letter "O" until the user presses the Alt key once. How can I get it to show the underscore ahead of time? Here's some code: OverviewButton.setMnemonic(KeyEvent.VK_O); OverviewButton.setText(

  • Non Ferrous Metal Pricing (Copper) in MM

    We create PO for Copper procurement as per London Metal exchange rates for the day. The rate is decided at 8.00 PM daily, this price will be applicable when creating PO next day. We receive goods against PO and book the invoice at PO price. We adjust

  • Migrate page w/ Disco portlets from one 9iAS portal instance to another?

    Hi. Has anyone migrated pages with Discoverer portlets from one instance of 9iAS portal to another? We want to maintain development and production 9iAS setups, and need some mechanism to move pages wholesale from one app server to the other.