Where to find the source code for MenuTreeListPreviewLayoutController

Dear All!
I am desparately searching for the source code of the MenuTreeListPreviewLayoutController. I would like to
implement a similar Layout Controller than the above mentioned one, but cannot find the code.
Is anybody able to help me?
Cheers and thanks in advance
Ingo

Hi Ingo,
you should be able to find and decompile the class com.sapportals.wcm.rendering.layout.cm.MenuTreeListPreviewLayoutController in the JAR km.appl.ui.flex.control_core.jar. This JAR is located under ...<irj-root>\WEB-INF\portal\portalapps\com.sap.km.cm.ui.flex\private\lib
Hope this helps,
Robert
PS: If you have problems to find it, gimme a mail and I'll send you the decompiled version.

Similar Messages

  • OIC: Need to find the Source Code for the YTDSummary.java file

    Hi All,
    We have 11.5.10 implemention and we are using the OIC(Incentive Compensation) Application. In the Report Module for the Year-To-Date Summary we need look for the Java Source Code.The cnytdsum.jsp file call the YTDSummary.java file. We have teh following question
    1. How we can get the Java Source Code and where and which directory we need to look into?
    2. Let say if we need to customize the java file how we can do that?
    3. where and which directory we have to complie the java file?
    Highly appreciate for any pointers
    Thanks,
    Johnson.

    But those must be platform dependant, not really that
    interesting to look at. I have never felt any need to
    look at those at least.Wake up and smell the coffee, abbie! I read the source code all the time and constantly tell my students to do that, too.
    1. Java source code is not platform dependent. The original poster wanted to look at linked list code, how could that be platform dependent?
    2. It is the implementation of the SDK APIs, so by definition it is implementation dependent code, liable to change in a later version. So don't assume anything beyond what is claimed in the API documentation. However, sometimes the documentation is incomplete or ambiguous to you, and reading the source can provide some insight, however implementation dependent. (Light a candle or curse the darkness.)
    3. Why read source code? It's a good way to learn how to program. You see something in the API and ask: how'd they do that? Or you realize you want to do something broadly similar, but you can't reuse the source code.
    For example, Images are not Serializable, but suppose you want a small image that is part of an object to be serialized with the rest of the object without too much fuss (ie, without using javax.imageio). You notice ImageIcon is serializable, so you use it. (An ImageIcon has-an Image.) Then you wonder: how'd they do that? You read the source and then you know.
    You live, you learn,
    Nax

  • Need to find the source code for java.util.LinkedList

    Hello all,
    I'm new to the forums and I actually need the LinkedList source file as well as all the source files for all Java packages and libraries. Please post a link here if you can, or email me at [email protected]
    Thanks again!
    copter_man

    But those must be platform dependant, not really that
    interesting to look at. I have never felt any need to
    look at those at least.Wake up and smell the coffee, abbie! I read the source code all the time and constantly tell my students to do that, too.
    1. Java source code is not platform dependent. The original poster wanted to look at linked list code, how could that be platform dependent?
    2. It is the implementation of the SDK APIs, so by definition it is implementation dependent code, liable to change in a later version. So don't assume anything beyond what is claimed in the API documentation. However, sometimes the documentation is incomplete or ambiguous to you, and reading the source can provide some insight, however implementation dependent. (Light a candle or curse the darkness.)
    3. Why read source code? It's a good way to learn how to program. You see something in the API and ask: how'd they do that? Or you realize you want to do something broadly similar, but you can't reuse the source code.
    For example, Images are not Serializable, but suppose you want a small image that is part of an object to be serialized with the rest of the object without too much fuss (ie, without using javax.imageio). You notice ImageIcon is serializable, so you use it. (An ImageIcon has-an Image.) Then you wonder: how'd they do that? You read the source and then you know.
    You live, you learn,
    Nax

  • Where to find the source code examples for a carousel JavaFX

    All references to the HOW-TO JavaFX lead to www.javafx.com
    and forwarded to the
    http://www.oracle.com/technetwork/java/javafx/overview/index.html,
    and there is no such examples. Who knows where they are

    Download Samples from
    => http://www.oracle.com/technetwork/java/javafx/downloads/index.html
    The Display Shelf example is a inside the Ensemble sample and is what you are looking for.
    Build and run from the downloaded sample source or run online from
    => http://www.oracle.com/technetwork/java/javafx/samples/index.html
    Choose Samples | Graphics | Display Shelf
    From there you can either Save Netbeans Project or Copy Source.
    If there are broken or misleading documentation references, email the list of pages containing the broken links and what they link to: [email protected]

  • Where to see the source code for Java library?

    I need to know how the defaultWriteObject() of Hashtable is written. Anybody has any clue? Thanks a lot.
    Soccer

    If you have no tool, you can write your own tool:
    import java.util.zip.*;
    import java.io.*;
    public class ZipTest {
         public static void main(String[] args) {
              if(args.length != 2) {
                   System.err.println("using: java ZipTest [zip file] [target directory]");
                   System.exit(1);
              String sourceFilename  = args[0];
              String targetDirectory = args[1];
              new ZipTest().unzip(sourceFilename, targetDirectory);
         public void unzip(String sourceFilename, String targetDirectory) {
              String fileSeparator = System.getProperty("file.separator");
              if(! targetDirectory.endsWith(fileSeparator)) {
                   targetDirectory += fileSeparator;
              try {
                   ZipFile zipFile = new ZipFile(sourceFilename);
                   java.util.Enumeration entries = zipFile.entries();
                   while(entries.hasMoreElements()) {
                        ZipEntry entry = (ZipEntry)entries.nextElement();
                        if(entry.isDirectory()) {
                             continue;
                        String name = entry.getName();
                        name = targetDirectory + name;
                        System.out.println(name);
                        File file = new File(name);
                        File directory = file.getParentFile();
                        if(! directory.exists()) {
                             directory.mkdirs();
                        BufferedInputStream bis = new BufferedInputStream(
                             zipFile.getInputStream(entry));
                        BufferedOutputStream bos = new BufferedOutputStream(
                             new FileOutputStream(file));
                        byte[] b = new byte[1024];
                        int count = 0;
                        while((count = bis.read(b, 0, 1024)) != -1) {
                             bos.write(b, 0, count);
                        bis.close();
                        bos.close();
                   zipFile.close();
              } catch(java.io.IOException e) {
                   System.err.println(e);
    }

  • Where can I get the source code for sun classes?

    Hello,
    When ever you download sun's j2sdk, the archive always contains the source code for the entire sdk in a zip file called src.zip except the sun.xxx classes like sun.awt.print.PrintDialog or sun.awt.font.FontResolver.
    For debugging purposes I need, if availabe, the source code of these classes which are not present in the src.zip.
    Please can someone tell me if theses classes are available as source and can point me where I can find it cause I am searching for it but can't find it on the net.
    Thank you
    Carolin

    Hey ChuckBing
    And your way is the only way, right? No.What on earth is eating you? Highly sensitive today?
    Where is the problem? There are two solutions of the question.
    The one link I posted points directly to the sun source download link. The "readme" explains, yippie, the sun sources are contained. Easy, isn't it?
    With the other one, you have to navigate at least through two other pages before you might find the link and only if you recognize that "Download JDK 5.0 source via SCSL/JRL" means the sun source code and not the sources contained in the JDK download. This is what I thought as I've seen this link the first time. Unfortunately there is no "readme".
    I prefer the easy way, I dont want to earn a doctorate. Ok, you can say dont "play the woman", but I'm a woman and a blonde too;-)
    But, let us stop the idle discussion here, please!
    Nevertheless, thanks to you and [email protected] for answering.

  • Where can I find the original code for class in Java API

    I am learning Java programming and wanted to see how professionals handel all cases. Can anyone tell me where I can find the original implementation code for classes in Java API? It would be a great help for me.

    the basic source is where you installed java in a file called java.src, its either in the main dir of one of the sub dirs ( mmm ), contains all the source code for all the classes in the api.

  • Where's the source code for the JavaFX 8 Samples?

    Hi,
    I just downloaded the samples for JavaFX 8 and the menu popup on the top left really caught my attention.
    I'd like to study the source code for it. Does anyone know where I can find it?
    I expected it here http://hg.openjdk.java.net/openjfx/8/master/rt/file but it seems it's not there.
    Alternatively: Jasper Potts presented a Kiosk App at Devoxx 2012 (Antwerp), which was also used at JavaOne. I think this app uses the same Menu. And he said sources are available. But I can't remember the link.

    Oh, too obvious. They are directly included into the zip. My bad I didn't notice them. I had expected them to be online somewhere. Thanks!

  • How do I see the source code for 'NI Example Finder'?

    At the LabView Express demo, the rep showed us how to view the source code for 'NI Example Finder' (started with Help, Find Examples...). Please refresh my memory.
    --todd

    There are a couple of VI's that shipped with LabView 7.0, but you can't see the diagrams.
    C:\Program Files\National Instruments\LabVIEW 7.0\resource\system\HelpServer.llb\Run Example Finder__NATIONAL INSTRUMENTS.vi
    Press Ctrl-E on this VI and it prompts you for a password.
    This VI is run by C:\Program Files\National Instruments\LabVIEW 7.0\resource\system\HelpServer.llb\HelpServer__NAT​IONAL INSTRUMENTS.vi
    There's also C:\Program Files\National Instruments\LabVIEW 7.0\help\_exfinder.llb\Example Finder Launcher.vi.
    Tyring to open this VI starts the NI Example Finder. Note the taskbar icon which is different from the normal VI icon.
    It seems like NI is trying to keep us out, even if it used LabView to develop the Example Finder.

  • Where can I find the source code of the sshr workflow source file?

    Dear all:
    Where can I find the source code of the sshr workflow?
    Regards
    Terry

    Dear all:
    I found the answer, usually the workflow of the self-service 4.1 is HRSSA
    Regards
    Terry

  • Where's the source code for the MIDP 2.0

    Hi
    does anybody know if the source code for the MIDP 2.0 is available anywhere, if so please give me the link, I've searched for it but couldn't find. I need it to create a custom class based on the Command class, but need to have a look at the source code of the "Command" to make the appropriate changes to my extending class, so I can't do it without a look under the hood.
    Any help would be greatly appreciated

    You can find reference implementations at http://java.sun.com/products/midp/index.jsp
    But they are only to assist manufacturers in implementing their own versions, and do not necessarily reflect the code running on a given device. All you can assume is what is stated in the MIDP specification. However, reading the RI code may help you better understand the spec.

  • Where do i find the activation code for a trial download

    where do I find the activation code for a trial download

    There is no activation code or serial number for trial. You can download, install and use the application for 30 days after which you need to license it.

  • Where can I find the source code of Java web start demos program?

    When I watch these demos, I think this program is very good to start to learn Java. Is there anywhere to find the source code?

    By trawling the approprite forum
    http://forum.java.sun.com/forum.jsp?forum=38

  • Where to find java source code on tiger?

    I'm taking a class on java, and i need to open up some of the java source code for classes like Abstractcollections and Abstractlist to see how their implementations work. Does anyone know where the java folder is located and how to open up the source on a mac? I've seen it done on windows( applications-java-java-sdk - unzip, or something like that), but it is not in the same place place on mac.
    I've searched through the folders named java but could not figure out which folder to open and how.

    Hmmm, are you trying to view the Source Code for Abstractcollections and Abstractlist, or find it, or compile it, or what exactly?
    Source code can be viewed in any text editor, but BBEdit, TextWrangler, & jEdit are really good...
    http://www.barebones.com/products/bbedit/threeway.html
    http://www.barebones.com/products/textwrangler/index.html
    http://www.jedit.org/index.php?page=download

  • Find the source code of Portal

    I need to customise the portal. I need to find the source code of the portal.
    Please give the path where i can find the source code.
    Thanks in advance
    Arun

    Hi Hexaware Consultants,
    To change the look and feel of MastHead iView ...
    -The three main files in the masthead are HeaderiView.jsp,LogInRedirect.jsp and LogOffConfirmMsg.jsp
    -The HeaderiView contains the masthead users see when they are in the portal.
    -Once you added your link to the HeaderiView.jsp,upload the par file.
    -Once the par file is uploaded to the portal,you need to create a masthead iview based on this par file.
    -Then this iView will be used for masthead on the framework page.
    -create a folder in portal catalog-right click the folder->create a iView from par->select your own masthead iView->choose next->choose default component and click next->Enter the properties like-iView name,iView ID,prefix,Save as -iView and click next>save.
    Here is the important step :
    Add the iView to the framework page,then only it will be visible to the end users.
    Browse the ramework page being used by the portal in the portal catalog
    Right click on he page->edit->Page Layout->Select masthead iView on the framework page and click remove.
    now iViews(Right click)->Widgets_masthead->Add iView to page->Delta Link->Position the masthead.->Logoff and logon to the portal.
    It should work fine for you now I guess.
    Thank you.
    I was also working in Hexaware 2 years back
    Regards,
    Karthick

Maybe you are looking for

  • Earning cash back rewards on child support!

    My DBF recently lost his job, so he will start making child support payments manually instead of having them withdrawn from his paycheck. I have read on here that credit cards can't be used for child support payments; at least not without fees that w

  • HT1904 Apple ID I can't use in iTunes store

    What I can?  If I haven't master card for support apple ID

  • Custom version assignment

    Hi all. I'm configuring some Document Types into DMS and the customer did a special requirement to me: He wants that the version number sequence for documents created by the BAPI: BAPI_DOCUMENT_CREATE2 be XX, 00...99 and for documents created by T-CV

  • Regarding validation of Inputfield

    Dear Experts I want to allow the user to enter only the digits.(Actually this inputfield is for "Year") Please give me the sugeestions. Urgent Thanks Hazrath.G

  • Allow movement of split location in before/after comparison

    It would save me a lot of time if the before/after split location was movable. If I'm developing a portrait of two people, the split usually goes right between the two people, so I can't get a good feel for how the after affect "the other" person. Al