Setting the ALV Hierarchy tree with grid line between the columns and rows

Hi Experts,
I would like to ask if there is any suggestion on setting the ALV hierarchy tree to be separated by grid line between the columns and rows just like how it is display the same way in normal ALV grid.
Thanks in advance.

Hi Lin,
The requirement which you have stated is not possible.
Lin,
Also i have a query regarding BADI ZME_PROCESS_REQ_CUST, which you had raised on SDN. You have marked the question as solved/answered.
Changing the data of a customize field in purchase requisition
Could you please let me know, the steps you did to update the screen fields through the BADI.
I would really appreciate your reply, because i am facing exactly the same problem which you have mentioned.
Thanks,
Best regards,
Prashant

Similar Messages

  • How to hide the grid lines between two rows in a ALv? Please help!

    Hi Experts,
             I have a ABAP ALV(reuse alv grid FM) report.
    The last field in the ALV is "Description" which can contain data of size more than 130 chars.
    Since the max field length in ALV grid is 130 chars hence I am splitting this field value whenever the field length is more than 130 chars.
    After splitting I am generating duplicate rows but with different "Description" field values ( each contains the splitted values".
    For example:
    Name| City | Description                             |
    Hari|HK    |Employee responsible for time management |
    Hari|HK    |and issue resolution                     |
    Now I want to hide the grid line between these two rows
    and just for Description field.
    In other words I want ALV to display like this:
    Name| City | Description                             |
    Hari|HK    |Employee responsible for time management |
    Hari|HK    |and issue resolution                     |
    How can I acheive this?
    Please provide some sample code.
    Please help. I will be really greatfull to your help.
    Thanks
    Gopal

    Hi Rich,
          If that is the case then atleast how can I hide the complete row grid line?
    Please give some sample code.
    Thanks
    Gopal

  • How to change a setting in the Java Control Panel with command line

    Hi,
    I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
    I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
    Edited by: 897133 on Nov 14, 2011 7:15 AM

    OK figured it out. This is for the next person seeking the same solution.
    When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
    Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
    __deployment.config__
    It should look like this inside:
    *#deployment.config*
    *#Mon Nov 14 13:06:38 AST 2011*
    *# The First line below specifies if this config is mandatory which is simple enough*
    *# The second line just tells Java where to the properties of your Java Configuration*
    *# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
    deployment.system.config.mandatory=True
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
    How?
    Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
    Add this line:
    deployment.security.SSLv2Hello=true
    Maybe you want to disable Java update (which is a big problem for enterprises)
    Add these lines:
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
    #NoTrayIcon
    #RequireAdmin
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Func _JavaConfig()
         $ConfigFile_1 = @TempDir & "\deployment.properties"
         $ConfigFile_2 = @TempDir & "\deployment.config"
         FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
    FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
         FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
         FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
         Sleep(10000)
         FileDelete(@TempDir & "\deployment.properties")
         FileDelete(@TempDir & "\deployment.config")
    EndFunc
    _JavaConfig()
    Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
    Edited by: 897133 on Nov 16, 2011 4:53 AM

  • Can we hide the lines between the columns and rows of an alv in wd abap

    HI all ,
      I know that we can colour cell/column/row in an alv in wd abap.
       but, can we hide the lines between the columns and rows of an alv in wd abap.
         i have checked this link [hiding lines b/n rows and columns of an  alv|http://help.sap.com/saphelp_nw04/helpdata/en/91/e7eb40c4f8712ae10000000a155106/content.htm]
         but didn't  understand, can please anybody provide some example or any material..? it will be very helpful.
                                                                         THANK  YOU.
    Edited by: arfat111 on Feb 15, 2010 7:05 AM

    Code some like this in the WDDOINIT method of your view which defines the ALV component as used component.
    instansiate the ALV component
    data lo_cmp_usage type ref to if_wd_component_usage.
    lo_cmp_usage = wd_this->wd_cpuse_usage_alv().
    if lo_cmp_usage->has_active_component() is initial.
       lo_cmp_usage->create_component().
    endif.
    data lo_interfacecontroller type ref to iwci_salv_wd_table.
    lo_interfacecontroller = wd_this->wd_cpifc_usage_alv().
    data lo_value type ref to cl_salv_wd_config_table.
    lo_value = lo_interfacecontroller->get_model().
    hide the grid lines
    lo_value->if_salv_wd_table_settings~SET_GRID_MODE( value = '01' ).
    Thanks,
    Abhishek

  • Move all fields and grid lines to the the right

    I have a report where I want to insert two new fields to the left of all the existing columns.  Can I move all of my fields and grid lines to the right at once?  I don't want to start at the right and drag each field out to the right two inches, etc.  Hoping there is an easy way to accomplish this at once.  Thanks.

    Thanks - that I know.  Really would like to see the grid lines move with it.  Kind of like when you adjust columns in a table in ms-word.  You can move a left most column and shift the others right of it in one motion.

  • DV export problems with grid line noise on export

    On exporting in Premier Pro CC I am seeing faint grid lines across the whole picture that are not in the project timeline or the source clips - in other words looks fine in the project but not when exported out. Looks a bit like moire pattern but much more regular dotted box pattern about 5-10 pixel regular box size across whole image in grid - very odd. The noise pattern is not on the source or from camera chip I don't think - although that's what it looks like when sharpness is too hard on camera settings or chip structure bleeds through.
    Have been using sharp filter and preset colour balances but as I say look OK in timeline but not after export. Tried using with and without high quality render  - no difference.
    I am using DV25 as the export format and I am working on a high end Mac Pro with the latest version of CC.
    Very frustrating issue as ruins quality of output - any thoughts gratefully received!

    Hi Jim,
    I have viewed in Quicktime 10 and in Final Cut 7 (where I sometimes go back to to use the Neat Video plug-in for noise reduction)

  • Help with grid lines please

    ive moved to numbers from excel recently and having some trouble getting used to it, id like to view the grid lines but i dont want them to print, i know how to show and remove them, but i want to see the lines and print without them, i dont want to manually do this, i have dozens of spreadsheets i work with.
    Thanks.

    Hello, s 2 tha b,
    Welcome to Numbers!
    The charm of Numbers is that it allows several small tables on a "canvas". For example, you could have a Work Table with cell borders (grid lines) and a Print Table with no cell borders (grid lines).
    The Print Table copies values from the Work Table with formulas such as =Work Table::A1
    You can move the Print Table to another sheet, and print only that sheet.
    Welcome to the Magic of Numbers!
    Regards,
    Ian.

  • The camera on my iphone4 opens up but seconds after the screen turns black with white line.

    Hi guys! Please help me I have iPhone 4 .the camera although opens up when I press the button, but seconds after the screen turns black with white line. Need I need it repaired or there is some trick which can set it right.?

  • When I open pages it scrolls through various numbers of blank pages with a line at the side, then stops at a document, but usually an old document. I have to  go to "open recent" to get on the page I want.

    Hi
    When I open Pages it scrolls through numerouss blank pages with a line at the side 1st, then settles on an old saved pages document.I then have to go to "open recent" to select the one I want. Why?

    No
    It's the 1st version of Pages I've had on my computer.
    Can't delete them as they scroll through them at a rapid pace. The longer I've had the problem the more blank pages it scrolls through.

  • When I take my phone off charge in the morning I get an info box on the front which has the sound trumpet icon with a line through it and the word Mute.  The only way to get rid of it is to reboot the phone any ideas as to how I can stop this happening?

    When I take my phone off charge in the morning I get an info box on the front which has the sound trumpet icon with a line through it and the word Mute.  The only way to get rid of it is to reboot the phone any ideas as to how I can stop this happening?

    Hello cor-el, thanks for your reply. I changed my settings for downloads to desktop and it has appeared on there. When I double click I am asked which program I want to open file. I click firefox and another box "opening install" says I have chosen to open the file which is an application and do I want to save it. This is the only real option so I press save file. I get a box saying this is an executable file which may contain viruses - do you want to run. I press ok and the final box showing C drive file name and desktop appears stating application not found.
    This happens the same whenever I try to install.
    To my untrained eye the application is not being recognised as an application and I cannot work out how to get it to do that.
    My plugin is still showing as out of date.
    Is there anything you could suggest. Thanks for your time.

  • How to download the ALV Hierchial Tree Data to an Excel sheet.

    Hi All,
    Can any body please let me ,if there is any possibility to know How to download the ALV Hierchial Tree Data to an Excel sheet.
    If yes, please let me know how could this can b acheived.
    Regards,
    Rohini.

    Hi Rohini
    There is no such functionality provided by SAP to download ALV Tree Hierarichal Tree into excel sheet .
    If you had this kind of senario then i can propose one solution create two radio buttons one is to display in ALV Tree Format and the other is classical report which you can download it for futher process
    Regards
    Hitesh Batra

  • Smartform main window with grid lines...

    Hi Gurus,
    I am printing the line items in the main window using grid lines of pattern. This main window can print 10 lines only. Here my requirement is i need to get the empty grid lines till the window ends after finishing the printing of all line items.
    for example if it has only 2 lines then i need 2 lines of data and remaining 8 lines should print empty grid lines.
    this table control have 14 columns. some times 2 lines of data occupies 3 lines. because any column value may be morethan of column width. for this type of example i have to print empty lines 7 only. because any item line occupied 2 lines.
    hope it is clear.
    Regards,
    Vijay

    Hello Vijay,
    In order to do this you could make a template(the outlines of your layout). This template must be in the main window, so if there are more than 11 lines the complete template will be printed in the second page.
    If you require a total box at the end of the template then make a new window fill only the value and the total will always be printed in the box..
    Let me know if the solution is not clear. I shall explain in more detail.

  • Is it possible to set up a jam session with a friend over the internet in Garageband on iPad?

    Is it possible to set up a jam session with a friend over the internet in Garageband on iPad?
    Or is there any other way to set up a communication session where we can do a musical jam session via the internet?

    Garageband has no network collaboration functions that I know of. Whether there's some other software that will do that I don't know; perhaps someone else here will have a suggestion.
    Regards.

  • Pages is sending my documents in docx format, but windows unable to open them. They arrive blank or can only be read as a single line at a time. When view prior to sending the document is divided with black lines after each sentence.

    Pages is sending my documents in docx format, but windows unable to open them. They arrive blank or can only be read as a single line at a time. When viewed prior to sending, the document is divided with black lines after each sentence.

    Windows will only be able to open these if you have Word 2007+. Older versions of Word, for example Word 2003 would require a compatibility pack.
    Perhaps you can try 'Saving As' a different file type instead?
    Regards,
    Steve

  • What does a gray icon with grid lines mean? It looks like a bullseye.

    What does a gray icon with grid lines mean? It looks like a bullseye.

    It's an app icon that didn't load properly .... If it looks like this.

Maybe you are looking for

  • HiDef TV Connection

    My new Hi Def LCD TV has a 15 pin d-sub connection on the back. Is there a cable w/the 15 pin connection on one end & either a USB or Fire Wire connection on the other for easy hook up to my MacBook? Thx Spike

  • [SOLVED] Gtk3 file open dialog Gio error

    When opening a file open dialog in a Gtk3 app after the update to 3.8, programs fail with the following error: GLib-GIO-ERROR **: attempting to create schema 'org.gtk.Settings.FileChooser' without a path I tried running gsettings-data-convert and gli

  • Regarding Maxl Script

    Hi Frnds, I have built an ASO cube and to automate it i have wrote the maxl script login 'essadmin' 'essadmin' on 'Mer1-essbaset02'; alter system load application dirsal12; alter application dirsal12 load database dirsal12; alter application dirsal12

  • Where does iweb store video clips

    I looked everywhere, but can't find the original copy. Thanks. T

  • Copy the PR header Text to RFQ header Text while Creating W.R.T

    Dear Guru's While Creating with reference I want to Copy the PR Header text into  RFQ Header Text.. Please do the needfulll Thanks in Advance. GSANA