How to make static when scrolling a gantt chart

Hi everybody
In my Gantt chart I have names in category axis and time in x-axis(series). Now  when I scroll horizontally or vertically I want those two axis remained fixed only plot area will move. Is there any solution for that?

Kam,
Please visit this Link,
http://help.sap.com/saphelp_nw04/helpdata/en/a8/1cd93f5e0f9015e10000000a155106/frameset.htm
Regards,
Ram.

Similar Messages

  • How to make the Smooth Scrolling work even H Swipe is tick?

    In my article, if I tick the H Swipe only and the Smooth Scrolling is Both direction, Why is it in previewing it in my iPad the Scrolling seems Off because it's snapping into the pages.
    Smooth scrolling is not working if H Swipe only is tick.
    How to make the Smooth Scrolling work even H Swipe is tick?

    Horizontal scrolling is only for 1024x768 or 768x1024 pages. That’s it.
    You cannot combine horizontal only with smooth scrolling.
    Bob

  • How to make view automatically scroll when keyboard show up

    Hi all
    I'm like a totally noob for objective-c coding, let alone the iPhone programing. :P
    Anyway, I somehow manage to create a simple application that receive input via UITextField, do some simple math, then display the result in other UITextFields (which can act as a input vice versa).
    Problem is, when I use the UITextField at the buttom of the screen as an input, the keyboard will block that text field out of my view, so I could not see what I'm typing at all.
    That's the question. How to make my view scrollable, and make it simply scroll itself out of the way when the keyboard is shown? I already inherit my view from UIScrollView, but don't know what to do next. Can you guys help enlighten me, please?
    Thanx

    Of course, if you're dealing with textFields, you should change a few things try something like that in your .m file :
    - (void)textFieldDidBeginEditing:(UITextField *)theTextField
    if ([theTextField isEqual:yourTextField])
    // Restore the position of the main view if it was animated to make room for the keyboard.
    if (self.view.frame.origin.y >= 0)
    [self setViewMovedUp:YES];
    // Animate the entire view up or down, to prevent the keyboard from covering the author field.
    - (void)setViewMovedUp:(BOOL)movedUp
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3];
    // Make changes to the view's frame inside the animation block. They will be animated instead
    // of taking place immediately.
    CGRect rect = self.view.frame;
    if (movedUp)
    // If moving up, not only decrease the origin but increase the height so the view
    // covers the entire screen behind the keyboard.
    rect.origin.y -= kOFFSETFORKEYBOARD;
    rect.size.height += kOFFSETFORKEYBOARD;
    else
    // If moving down, not only increase the origin but decrease the height.
    rect.origin.y += kOFFSETFORKEYBOARD;
    rect.size.height -= kOFFSETFORKEYBOARD;
    self.view.frame = rect;
    [UIView commitAnimations];
    - (void)keyboardWillShow:(NSNotification *)notif
    // The keyboard will be shown. If the user is editing the author, adjust the display so that the
    // author field will not be covered by the keyboard.
    if ([yourTextField isFirstResponder] && self.view.frame.origin.y >= 0)
    [self setViewMovedUp:YES];
    else if (![yourTextField isFirstResponder] && self.view.frame.origin.y < 0)
    [self setViewMovedUp:NO];
    #pragma mark - UIViewController delegate methods
    - (void)viewWillAppear:(BOOL)animated
    // watch the keyboard so we can adjust the user interface if necessary.
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:)
    name:UIKeyboardWillShowNotification object:self.view.window];
    - (void)viewWillDisappear:(BOOL)animated
    [self setEditing:NO animated:YES];
    // unregister for keyboard notifications while not visible.
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
    be sure to invoke the method when you dismiss the keyboard, so that the view "falls back" to its normal state:
    if (self.view.frame.origin.y < 0)
    [self setViewMovedUp:NO];
    Of course, declare the method
    (void)setViewMovedUp:(BOOL)movedUp;
    in the .h file
    and the #define you will use in you .m file :
    // the amount of vertical shift upwards keep the text field in view as the keyboard appears
    #define kOFFSETFORKEYBOARD 50.0
    // the duration of the animation for the view shift
    #define kVerticalOffsetAnimationDuration 0.30
    good luck !

  • Help:How to make static text in JTextField??

    How to make a text to be displayed initially on a JTextField, yet we can not change the text (so the text
    is static)?
    The other question:
    How to make an input mask so that a JTextField
    has input pattern of XXX.XXX.XXX.XXX
    (which is the mask of IP Address) ??
    What I know that limiting input in JTextField can be done
    by extending PlainDocument....what about the cases above??
    Please reply if you know.
    Thanks a lot,
    Ted.

    For the first question, just call setEditable(false).

  • How to make finder side scroll?

    i did it once, but when i deleted the pref file( in a bad finder situation), so now i forgot how i made it to scroll side. Anyone, thanks in advance!

    I'm afraid I don't understand what you are talking about. Can you post a picture on a .me or flickr account and give us a URL to the image to point to us what you are talking about? Screen captures are done as described here:
    http://www.zimbio.com/MacOS+X+version+10.5+Leopard/articles/13/Mac+OS+X+screen+capturetips

  • How to show dependency Arrrow in Project Gantt chart ?

    Hi,
    I have a requirement in which I need to show a Gantt chart showing Project and corresponding task of it. If Say Task2 is dependent on Task1 then I need to show an arrrow between these two tasks showing the dependency direction. But in my prototype project I am not able to show these arrow. I have attached my sample project. In this (Project2) I have a Task table having taskId, startTime, endTime and dependentTask coulmn, After I created EO, VO, AM and run the AM, I can see the Task2 is dependent on Task1, using the viewlink accessor window
    But when I drag and drop this on a page as Project Gantt chart I can not see the dependency arrows. while creating gantt chart, in the dependency tab of Gantt chart I have provided fromTaskId -> taskId and To task Id -> dependentTask.
    Still the arrows are not coming, Please help.
    The table creation script is below
    create table task_data (     
    name varchar2(30),
    taskId varchar2(30) primary key,
    startTime date,
    endTime date,
    dependentTask varchar2(30),
    type varchar2(30)
    insert into task_data values ('Project1', '1', '01-JAN-2012', '30-JAN-2012', null, 'PROJECT');
    insert into task_data values ('Task1', '2', '01-JAN-2012', '10-JAN-2012', null, 'TASK');
    insert into task_data values ('Task2', '3', '10-JAN-2012', '20-JAN-2012', '2', 'TASK');
    insert into task_data values ('Task3', '4', '20-JAN-2012', '30-JAN-2012', '3', 'TASK');
    commit;

    Publish your prototype somewhere where we can download it.

  • Error when using Project Gantt Chart in Production Weblogic Server 10.3.5

    Dear All,
    I have an application utilizing <dvt:projectGantt> Project Gantt Chart. I have tested it in intergrated weblogic server and it is working correctly but when I deploy it in Production Weblogic server, error occurred with NullPointerException on the ViewObjImpl -- class not found exception. I have look into each library used in the ADF runtime on the production server, all the library used are installed and deploy to each server target.
    Below is the log:
    [2012-07-31T15:16:53.004+08:00] [ifms_server1] [WARNING] [] [oracle.adf.controller.faces.lifecycle.Utils] [host: ifmsbi01] [nwaddr: 10.23.60.85] [tid: [ACTIVE].ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 74ddce286346267c:-69fcf19:138d71e59c7:-8000-00000000000026ca,0] [APP: IFMSGanttChart] ADF: Adding the following JSF error message: oracle/jbo/server/ViewObjectImpl[[
    java.lang.NoClassDefFoundError: oracle/jbo/server/ViewObjectImpl
         at oracle.jbo.server.ViewDefImpl.getBaseComponentClass(ViewDefImpl.java:2472)
         at oracle.jbo.server.RemotableCompDef.loadFromXML(RemotableCompDef.java:145)
         at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:3996)
         at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:3789)
         at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:3737)
         at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:552)
         at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:1133)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:592)
    I really am in need of assistance on these matter. I have read several article on the web about clearing cache on weblogic server, bundling the required ADF library with application and not mixing JDeveloper version with Weblogic server version, but it still not working in production weblogic.
    Best Regards
    Faizul
    Edited by: 951976 on Aug 10, 2012 12:15 AM

    Dear Arun,
    The WLS server is the same for (integrated WLS and Production) . For JRF template I'm sure it is the same. I have deploy another application that used BC, and it work fine in production.
    Regards
    Faizul

  • How to show a Milestone in a Gantt Chart?

    Hi All,
    I have made a Gantt Chart and want to show a milestone for a particular date.
    I am trying the following code in my BSP Page and I can see the text i.e (Test) in the UI but can not see the milestone icon.
    <i><phtmlb:ganttChartActivity row       = "5"
                                         startDate = "20070604"
                                         endDate   = "20070604"
                                         text        = "Test"
                                         color     = "BLACK"                                    
                                         type      = "MILESTONE"
                                         shading   = "SOLID"
                                         textInsideActivity = "false" /></i>
    Can anyone please help me.
    <b>Regards,</b>
    Abhinav

    Hi Patrick,
    I have gone through the thread and the note provided in the thread, It is useful.
    But for some reason even after following everything properly the Milestone symbol does not appear in my ganttChart but the text which I have provided for the Milestone appears on my ganttChart.
    I have even gone through "ganttChartSample.htm" in BSP Application
    "bspext_phtmlb" and followed the same thing still the milestone symbol does not apear at all.
    Regards,
    Abhinav

  • How to make my game scroll more smoothly ?

    Hello! I'm new at Java, however I have some programming experience.
    I would like to make a tile engine. On the following link is an example of what I have so far:
    [link-->|http://members.home.nl/bramdenhond/testjava/]
    If you move your mouse over the area, the world scrolls.
    However, I don't think it scrolls smoothly enough.
    In the tutorial I was following, this technique was recommended for double-buffering:
            //** Update - Method, implements double buffering */
            public void update (Graphics g)
                  // initialize buffer
                  if (dbImage == null)
                        dbImage = createImage (this.getSize().width, this.getSize().height);
                        dbg = dbImage.getGraphics ();
                  // clear screen in background
                  dbg.setColor (getBackground ());
                  dbg.clearRect(0, 0, this.getSize().width, this.getSize().height);
                  //dbg.fillRect (0, 0, this.getSize().width, this.getSize().height);
                  // draw elements in background
                  dbg.setColor (getForeground());
                  paint (dbg);
                  // draw image on the screen
                  g.drawImage (dbImage, 0, 0, this);
            }For the timing, I'm using a Thread, as recommended in the tutorial:
             public void start ()
                  // define a new thread
                  Thread th = new Thread (this);
                  // start this thread
                  th.start ();
              public void run ()
                  // lower ThreadPriority
                  Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
                  // run a long while (true) this means in our case "always"
                  while (true)
                        // repaint the applet
                        repaint();
                        try
                              // Stop thread for 20 milliseconds
                              Thread.sleep (2);
                        catch (InterruptedException ex)
                              // do nothing
                        // set ThreadPriority to maximum value
                        Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
               }I was wondering if someone if this is indeed the best approach, and if there are
    any alternatives.
    Thanks!

    Hi all,
    I've changed this source code so I can move the character from bottom to up but scrolling background is up to bottom. How I can change this class for scrolling background from up to down and not viceversa?
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import java.awt.Image;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.MediaTracker;
    import java.awt.Toolkit;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.Timer;
    public class JAniDemo {
      private BufferedImage biBackground = null;
      private Toolkit tk;
      private JFrame f;
      JAniDemo(){
        tk = Toolkit.getDefaultToolkit();
        f = new JFrame("AniDemo 1.0");
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        loadBackground("C:\\image.png");
        myPanel p = new myPanel(biBackground);
        f.add(p);
        f.pack();
        f.setVisible(true);
      private void loadBackground(String fn){
        Image im = tk.getImage(fn);
        MediaTracker mt = new MediaTracker(f);
        mt.addImage(im,0);
        try{
          mt.waitForID(0);
          biBackground = new BufferedImage(800, 641, BufferedImage.TYPE_INT_RGB);
          Graphics2D g2 = biBackground.createGraphics();
          g2.drawImage(im, 0, 0, null);
          g2.dispose();
        }catch(InterruptedException e){
          System.out.println(e.toString());
      public static void main(String[] args) {
        new JAniDemo();
      class myPanel extends JPanel implements ActionListener{
        private BufferedImage background;
        private BufferedImage bi = null;
        private int upperCorner = 0;
        int width;
        int height;
        myPanel(BufferedImage bg){
          super();
          background = bg;
          width = background.getWidth()/2;
          height = background.getHeight();
          bi = background.getSubimage(0,upperCorner,width,height);
          setPreferredSize(new Dimension(width, height));
          Timer t = new Timer(25, this);
          t.start();
        public void actionPerformed(ActionEvent e){ 
          upperCorner -= 1;
          if(UpperCorner >= height) UpperCorner = 38;  // adjust to make rollover seemless
          bi = background.getSubimage(0,UpperCorner,width,height);
          repaint();
        public void paintComponent(Graphics g){
          g.drawImage(bi, 0, 0, this);
    }Please see this changes of original source code:
    bi = background.getSubimage(0,upperCorner,width,height);
    width = background.getWidth()/2;
    if(UpperCorner >= height) // for vertical
    upperCorner -= 1; // for up to down scrolling
    Can you help me? Thanks.
    Regards.
    Edited by: Rapworld on Jun 9, 2010 11:19 AM

  • How to make a JDialog scrolling from one position to the other.

    Hi all,
    I want to move a JDialog from one position to the other(actually I want to scrolling/moving as messenger notification appear on top of the system tray) on the desktop.
    Anyone of you can give me a clue.
    Thanks

    Ok here what I have try up to now. First make the initial position of the JFrame as follows.
        private void SetWindowLocation()
            final int screenHeight = Toolkit.getDefaultToolkit().getScreenSize().height;
            final int screenWidth = Toolkit.getDefaultToolkit().getScreenSize().width;
            final int frameHeight = this.getHeight();
            final int frameWidth = this.getWidth();
            int _y = (screenHeight - frameHeight - 32);
            int _x = (screenWidth - frameWidth);
    // Initial location
            this.setLocation(_x, _y); 
    }This code place my Frame in the lower-right corner on top of the system-tray.
    Then as you guys says, try to work on a Timer. Now I'm stuck with the action listener. I try to move the frame to upper-right corner.
        private void SetWindowLocation()
            final int screenHeight = Toolkit.getDefaultToolkit().getScreenSize().height;
            final int screenWidth = Toolkit.getDefaultToolkit().getScreenSize().width;
            final int frameHeight = this.getHeight();
            final int frameWidth = this.getWidth();
            int _y = (screenHeight - frameHeight - 32);
            int _x = (screenWidth - frameWidth);
    // Initial location
            this.setLocation(_x, _y); 
            _timer = new javax.swing.Timer(100, incrementYPosition);
    ActionListener incrementYPosition = new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                       while(_y > 0){
                            // do the processing here.
                            // reduce the _y value and set the new location with _x
                    };I'm stuck with that how to involve with the ActionListener here. :(:( After set the initial location how to deal with the ActionListener.
    Any help.

  • How to make static element in parallax animation?

    How can i create a static object, which is on the same position during the parallax animation?
    Like a browser bar. Any suggestions?

    Hi Conny ,
    You can take a look at Exploring parallax scrolling, animation, and text effects in Adobe Edge Animate CC | Adobe Inspire Magazine. Download the samples available here and check them out.
    Attaching one for your reference.
    Thanks and Regards,
    Sudeshna Sarkar

  • Need help on how to make my website scroll!

    I'm really stuck on how to create a scroll effect in Flash CS4 for a simple websie. I need the screen to movw up and down to view all the content. What is the best way to proceed and where can I get the script, all help will be much appreciated.
    Thanks!

    If the that represents the dimensions of your swf file and the bowser does not produce scrollbars then look for and remove the following from the html file code or from the css file that supports it (likely tied to the bpdy tag styling)...
    overflow: hidden;

  • How to make room when startup disc full?

    I have been getting pop-up warnings that my startup disc is almost full or full. It says to delete files but I don't know how to go about this nor do I know what is safe to delete. Would someone be able to help guide me through this?

    More info overload.....
    Quick fix How To Quickly Free Up Hard Drive Space on Mac OS
    http://www.youtube.com/watch?v=fO-mlLApEuk
    Empty the trash in the Dock as well as iPhoto’s trash!
    Open up your application folder & go through all your apps.  Trash all the apps you no longer want and/or use.
    An easier way to do this is to open the Application folder in list view & press the Command+j keys.
    In the the dialog that appears, click the "This Window Only" button & the "Calculate All Sizes" check box.
    Wait a bit until your file & folder sizes have all been calculated, then click the "Size" column to sort your apps from the fattest to the most anorexic.
    Get rid of all your photo files you don't want and/or need.  Same goes for those pics off the websites you downloaded (gifs, jpegs, etc.).  Or transfer/move them all to a photo/movie storage site like ImageShack and Photobucket, 2 of the most popular  FREE  storage sites.
    Get rid of all your video & music files you no longer view and/or listen too.  Especially, if you already have the actual CD/DVDs or you can later redownload from a website.  Or transfer them all to a FREE video/movies and/or music storage site.
    Use Spotlight to make sure you got rid of everything.  You can even trash directly from Spotlight!  Better yet, download this FREE software called Find File.  This app puts Spotlight to shame (works w/Mountain Lion).
    Drag what you don't want and/or need to the trash.  Better yet, download this neat little shareware app *demo* called AppZapper.  It basically does all the work for you by not only trashing the apps but the apps preference files, caches & all its associated files.
    Another software that does the above is AppDelete.  Best of all this software is free!
    Burn what you want and/or need onto CDs or DVDs. Not everyone has the  luxury of purchasing an external HD and/or the system requirements for iCloud to store their "stuff.”
    Dropbox is a free storage utility to check out.
    You can check with your ISP to see if they offer *free* storage space.  Most if not all do now-a-days.   There are thousands if not millions of *free* storage facilities on the web also.  Use your favorite search engine to search them out as they come in different storage sizes to fit your needs & wants.
    Check for duplicate fonts.
    Applications>Font Book
    Select “All Fonts”
    If you see any “black dots” next to any fonts this mean you have duplicates and/or multiple versions of these fonts.
    To clean this up, select a “black dotted” font or the Apple + *click* to select multiple dotted fonts;
    Edit>Resolve>Duplicates.
    What the above does is turns off the duplicates & multiple version fonts.  Not delete them.
    More than likely the “extras” were installed by other programs and/or other users.
    Clear out font caches
    Use FontNuke.  It does all the work for you.  And, best of all it’s *FREE*.
    Printer Drivers
    Get rid of all the printer drivers you don’t need & use except the ones for your *current* printer(s)/scanner(s).
    HD>Library>Printers Folder
    If you accidently threw something out that you needed for your printer/scanner it can be easily obtained from the manufacturer’s website and/or from the CD that came w/the printer/scanner.
    Garage Band
    Has about 1GB of loops stored.  Get rid of some some them.  You surely don’t use, like and/or need them all.
    HD>Library>Audio/Apple Loops>Apple>Apple Loops For GarageBand
    Or just get rid of the Garage Band app altogether if you don’t use it.
    Get rid of extra languages
    Strip your computer down to your “native” tongue.
    You can do this with a *FREE* utility called Monolingual.  Another app that apparently does all the work for you.  I’ve never used it.  However, a lot of users here swear by & recommend it highly.
    However, there is a warning for *native English speakers*. Make sure you keep BOTH English and English (United States).
    Other Resources:
    HD Space Checkers:
    Disk Inventory X (FREE)
    WhatSize (SHAREWARE)
    OmniDiskSweeper (FREE)
    GrandPerspective (FREE - donation)
    ==================
    Mac Performance Guide
    Slimming your hard drive
    Rule of thumb: You should never let your hard drive get to where you have only 10-15% of space left.

  • How to make subtotal when first displaying ALV report

    Hi friends,
    I develop a report need to subtotalize some column, for example Goods Receipt Qty and DN quantity by Purchase order or PO line item. My parts of ABAP coding are below:
    ******fieldcat coding
    CLEAR fieldcat_in.
    fieldcat_ln-fieldname = 'EBELN'.
    fieldcat_ln-tabname = 'I_OUTPUT'.
    fieldcat_ln-key = 'X'.
    fieldcat_ln-no_out = ' '.
    fieldcat_ln-seltext_l = 'Purchase Order'.
    APPEND fieldcat_ln TO gt_fieldcat.
    CLEAR fieldcat_in.
    fieldcat_ln-fieldname = 'EBELP'.
    fieldcat_ln-key = ''.
    fieldcat_ln-tabname = 'I_OUTPUT'.
    fieldcat_ln-no_out = ' '.
    fieldcat_ln-seltext_l = 'PO item'.
    APPEND fieldcat_ln TO gt_fieldcat.
    CLEAR fieldcat_in.
    fieldcat_ln-fieldname = 'GR_QTY'.
    fieldcat_ln-tabname = 'I_OUTPUT'.
    fieldcat_ln-key = ' '.
    fieldcat_ln-no_out = ' '.
    fieldcat_in-do_sum = 'X'.
    fieldcat_ln-seltext_l = 'GR Quantity'.
    APPEND fieldcat_ln TO gt_fieldcat.
    CLEAR fieldcat_in.
    fieldcat_ln-fieldname = 'DNQTY'.
    fieldcat_ln-tabname = 'I_OUTPUT'.
    fieldcat_ln-key = ' '.
    fieldcat_ln-no_out = ' '.
    fieldcat_ln-seltext_l = 'DN Qty'.
    fieldcat_in-do_sum = 'X'.
    APPEND fieldcat_ln TO gt_fieldcat.
    *****sorting coding
    data spos type i.
    spos = spos + 1.
    CLEAR gs_sort.
    gs_sort-fieldname = 'EBELN'.
    gs_sort-tabname = 'I_OUTPUT'.
    gs_sort-spos = spos.
    gs_sort-up = 'X'.
    gs_sort-subtot = 'X'.
    gs_sort-expa = 'X'.
    APPEND gs_sort TO gt_sort.
    spos = spos + 1.
    CLEAR gs_sort.
    gs_sort-fieldname = 'EBELP'.
    gs_sort-tabname = 'I_OUTPUT'.
    gs_sort-spos = spos.
    gs_sort-up = 'X'.
    gs_sort-subtot = 'X'.
    gs_sort-expa = 'X'.
    APPEND gs_sort TO gt_sort.
    But it does not work. I chekc my report and fuond that the Subtotal button is not existed in application toolbar when first displaying it. I do the subtotal manually and it can subtotalize my desired column. Any have suggestion/solution on this case. Thanks very much in advance.

    hi,
    pls chk this.
    In order to do the sub-total the main total has to be calculated and then the sub-total process can be performed.
    In the main fieldcat mark this field
    wa_line_fieldcat-fieldname = 'VALUE'.
    wa_line_fieldcat-tabname = 'I_OUTPUT'.
    wa_line_fieldcat-reptext = text-021.
    wa_line_fieldcat-do_sum = 'X'.
    APPEND wa_line_fieldcat TO i_fieldcat.
    this will do the main total part.
    Sub-total:
    you will have to create an internal table sort
    CLEAR struct_sort.
    struct_sort-spos = 1.
    struct_sort-fieldname = 'VALUE'.
    struct_sort-up = 'X'.
    struct_sort-subtot = 'X'.
    APPEND struct_sort TO i_sort.
    Now pass these two internal tables to the display
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    IT_SORT = i_sort
    TABLES
    t_outtab = I_OUTPUT
    Hope this solves ur issue.
    Reward if helpful.
    Regards,
    anver

  • How to make TreeByNestingTableColumn when data is coming by RFC

    Hi ,
    I have a requirement in my project that i need to populate the TreeByNestingTable from the data that is coming from backend( importing Adaptive RFCs).
    Also, on selection of a row having a node , i need to open some view & on selection of row having leaf, i need to open some other view.
    Can anyone guide me, so as how to do this...?
    thanks,
    ankur

    Hi valery,
    Thanks a lot for your instant reply on SDN.
    But i didn't get what you explained me as I am new to WebDynpro Java
    If you could explain me this in step by step process & coding involved.
    i have created a new value node in component controller to bind it with table & initially having RFCNAME_Input in component controller.I have added attributes required for treetable to this new value node & also placed a recursive node in it.
    Then, i have placed elements of RFCNAME_Input->Output->Lt_org_unit node to an arraylist.
    After this i am not able to proceed.
    I would be very greatful to you if you can spare some time & help me.
    Thanks & Regards,
    Ankur
    <b>
    code i wrote for populating arraylist.:</b>
    IWDNode tnode = wdContext.nodeTest_Org_Unit_Input().nodeOutput().nodeLt_Org_Unit();
    int size = tnode.size();
    final Collection modelObjects = new ArrayList(size);
    for(int i = 0;i<size;i++)
    final IWDNodeElement tele = tnode.getElementAt(i);
    final Object model = tele.model();
    modelObjects.add(model);

Maybe you are looking for

  • How to make one thread to wait for others in this situation?

    i am simulating a 2 phase locking system (shared and exclusive locks). multiple clients connects and requests for lock to a single server. at the server end, we have a class Server which implements Runnable interface. for each connection, a new Serve

  • Area MSS_HCM_AREA_RELATEDACTIVITY does not exist

    Hi, Our customer is implementing XSS on SAP ERP 6.0 EHP5 and SAP Portal 7.02 SP8. All Business Packages are deployed and the funcionalities (ESS and MSS) running on WD4A are fine and most of WD4J funcionalities as well. At the moment we are facing a

  • Time machine backup from 10.6 server to Lion

    Hi I am running a Mac mini Server with SL Server, but I do not use the server features, it's pretty much a regular workstation. Now I want to upgrade to Lion (workstation) by formatting the hard drive and do a clean install. My question is if it is p

  • Cant get my mini to update to 10.5.7

    my install stops almost immediately, and has the big yellow exclamation point with "install failed". underneath it says "the following install step failed: run prininstall script for MacOSXUpdCombo10.5.7. Contact the software manufacturer for assista

  • I'm having difficulties upgrading my software

    I just recently wiped out my MacBook Pro to start fresh but after a few 'software upgrades', until it no longer allow me to upgrade.  I realized that I couldn't hook my Iphone to my itunes.  I upgraded my itunes but it says that my Quicktime is outda