DataTable in a grid make flicker in the first dataload

Hi experts,
I have a form with a Grid, in this grid i have a datatable (with query).
I open my form in create mode, if i click to the next button i have the following problem :
                                   - when i open the form for the first time, data are loaded 1 time,
                                   - when i open the form the second time, data are loaded 2 times
                                   - when i open the form the third time, data are loaded 3 times.....
After this first load, if i use next/previous, or change folder i have no problem, data are reloaded just 1 time..
Have you any solution to my problem ?
Regards

Hi gordon,
I put a part of my code because he is long.
this is parts regarding form load, next/previous event and dataload/update. (The datatable is creating in screenpainter as manual).
    Private Sub LoadForm()
        Dim creationPackage As SAPbouiCOM.FormCreationParams
        Dim oXML As Xml.XmlDocument = New Xml.XmlDocument
        Try
            'Create the FormCreationParams object
            creationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
            oXML.Load(". ormulaireGSN00002.srf")
            creationPackage.XmlData = oXML.InnerXml
            ' Add the form to the SBO application
            Dim oForm As SAPbouiCOM.Form
            oForm = SBO_Application.Forms.AddEx(creationPackage)
            oForm.Mode = SAPbouiCOM.BoFormMode.fm_ADD_MODE
            oForm.PaneLevel = 1
            oForm.DataSources.DBDataSources.Add("OPRJ")
            oForm.DataBrowser.BrowseBy = "PrjCode"
            AddReFin(oForm, 0)
            oForm.Visible = True
            oForm.Update()
        Catch
            SBO_Application.MessageBox(Err.Description)
        End Try
    End Sub
       Private Sub SBO_Application_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.MenuEvent
        If ((pVal.MenuUID = "1288") Or (pVal.MenuUID = "1289") Or (pVal.MenuUID = "1290") Or (pVal.MenuUID = "1291")) Then
            If SBO_Application.Forms.ActiveForm.TypeEx = "GSN00002" Then
                If (pVal.BeforeAction = False) Then
                    Dim cCode As SAPbouiCOM.EditText
                    Dim oForm As SAPbouiCOM.Form
                    Dim oPaneLevel As Integer
                    Dim oitemedit As SAPbouiCOM.EditText
                    Try
                        oForm = SBO_Application.Forms.ActiveForm
                        oPaneLevel = oForm.PaneLevel
                        cCode = oForm.Items.Item("EdPrC0").Specific
                        oitemedit = oForm.Items.Item("PrjCode").Specific
                        cpAndRes(cCode.Value, oForm)
                        Select Case oPaneLevel
                            Case "1"
                                 AddReFin(oForm, 1)
                            Case "2"
                                 AddOppor(oForm, 1)
                            Case "3"
                                 AddAchat(oForm, 1)
                            Case "4"
                                 AddVente(oForm, 1)
                        End Select
                        oForm.Freeze(False)
                    Catch
                        SBO_Application.MessageBox(Err.Description)
                    End Try
                Else
                    Dim oForm As SAPbouiCOM.Form
                    Try
                        oForm = SBO_Application.Forms.ActiveForm
                        oForm.Freeze(True)
                    Catch
                    End Try
                End If
            End If
        End If
    End Sub
      Private Sub AddReFin(ByVal oform As SAPbouiCOM.Form, ByVal oType As Integer)
        Dim oitem As SAPbouiCOM.Item
        Dim oitemSpeGr As SAPbouiCOM.Grid
        Dim oQuery As MyQueries
        Dim oitemedit As SAPbouiCOM.EditText
        Try
            oitemedit = oform.Items.Item("PrjCode").Specific
            oQuery = New MyQueries("Généralités", oitemedit.Value)
            oitem = oform.Items.Item("GdPrRf")
            oitemSpeGr = oitem.Specific
            oform.DataSources.DataTables.Item("RefFin").Clear()
            oform.DataSources.DataTables.Item("RefFin").ExecuteQuery(oQuery.oMyQuery)
            If oType = 0 Then
                'Affectation des données au grid
                oitemSpeGr.DataTable = oform.DataSources.DataTables.Item("RefFin")
            End If
        Catch
            SBO_Application.MessageBox("Erreur lors de l'ajout des données dans le tableau des résultats financiers" & Err.Description)
        End Try
    End Sub

Similar Messages

  • My mbp seems to "leak" current when connected to the power grid. Am I the first to notice?

    My mac book seems to "leak" current when connected to the power grid. Am I the first to notice?

    Grounded or not, this should not occur. Grounding is just for safety not to keep working on a leaking machine. What does Apple say about this. When I return from holiday I will contact them and find out. In the mean time thanks for the feedback.

  • Want to make Monday as the first day of the week in GregorianCalendar. how?

    hi
    I need to know what day is the first of the month is. for example the 1st of Nov 2004 is Moday and 1st of Dec 2004 is saturday.
    I am using the GregorianCalendar:
    1.  GregorianCalendar calendar = new GregorianCalendar(2004,11,1);    //set date to 1st Nov 2004
    2.  int firstDay = calendar.get(Calendar.DAY_OF_WEEK);now firstDay is 2. This is because the week starts from Sunday, so Monday is the 2nd day.
    But I am in Uk and my Uk Calendar shows monday as the first day (even in Windows 2000 Calendar).
    I would like the GregorianCalendar to have Monday as the first day of the week, so that the
    int firstDay = calendar.get(Calendar.DAY_OF_WEEK);
    returns 1 in the above case.
    I also tried adding
    calendar.setFirstDayOfWeek(Calendar.MONDAY); just between line 1 and line 2, but it did not help.
    This is because i don't want to manually subtract 1. If i manually subtract one, then the program might not work in other locale and timezones.
    Also if I subtract 1, then for 1 Feb 2004,
    int firstDay = calendar.get(Calendar.DAY_OF_WEEK);
    will return 1 as 1st Feb 2004 falls on Sunday. so if i subtract 1 it will be 0, so I have to do a extra checking for 0.
    Is there anyway to make the Calendar have Monday as the first day of the week??
    Tanveer

    hi
    I need to know what day is the first of the month is.Why does this matter? Since we know that 1 == Sunday and 2 == Monday... Why do you need Monday to be == 1? and couldn't you just subtract 1 if it's so important?
    for example the 1st of Nov 2004 is Moday and 1st of
    Dec 2004 is saturday.
    I am using the GregorianCalendar:
    1.  GregorianCalendar calendar = new
    GregorianCalendar(2004,11,1);    //set date to 1st Nov
    2004
    2.  int firstDay = calendar.get(Calendar.DAY_OF_WEEK);now firstDay is 2. This is because the week starts
    from Sunday, so Monday is the 2nd day.
    But I am in Uk and my Uk Calendar shows monday as the
    first day (even in Windows 2000 Calendar).
    I would like the GregorianCalendar to have Monday as
    the first day of the week, so that the
    int firstDay = calendar.get(Calendar.DAY_OF_WEEK);
    returns 1 in the above case.
    I also tried adding
    calendar.setFirstDayOfWeek(Calendar.MONDAY);[/cod
    ] just between line 1 and line 2, but it did not help.
    This is because i don't want to manually subtract 1.
    If i manually subtract one, then the program might not
    work in other locale and timezones.
    Also if I subtract 1, then for 1 Feb 2004,
    int firstDay = calendar.get(Calendar.DAY_OF_WEEK);
    will return 1 as 1st Feb 2004 falls on Sunday. so if i
    subtract 1 it will be 0, so I have to do a extra
    checking for 0.
    Is there anyway to make the Calendar have Monday as
    the first day of the week??
    Tanveer

  • Do I need a different apple id for each device? I have two iPads and an iPod but can only purchase things on the first one. When I go to verify the questions they say they are wrong.

    Do I need a different apple ID for each device I have? I have two iPads and an iPod but I can only make purchases with the first one I purchased. It tells me the security questions are wrong but I know they are not because I wrote them down. I have also reset them and my password once. Please help if you can

    You can not login into iTunes or the App Store using VPP credentials. You must purchase all apps/book/etc.  from the VPP website. Then you can redeem the codes thru itunes/app store or import the codes thru apple configurator. Here is the url for the VPP website: https://volume.itunes.apple.com/WebObjects/MZFinance.woa/wa/login?cc=us
    (It will not affect any of the apps you already have but the id can only be used for VPP.)
    Cheers,    
             Alec

  • Making a page the first page od the application

    Hello,
    I want to make a page, the first page of the application which shown before the login page ( page 101) how can I do that??

    Always include the following information when asking a question:
    <ul>
    <li>Full APEX version</li>
    <li>Full DB/version/edition/host OS</li>
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)</li>
    <li>Browser(s) and version(s) used</li>
    <li>Theme</li>
    <li>Template(s)</li>
    <li>Region/item type(s)</li>
    </ul>
    TomTom101 wrote:
    Hello,
    I want to make a page, the first page of the application which shown before the login page ( page 101) how can I do that??Create a page if you already don't have.
    Go to shared components > Security attributes > amend the home link to add your page number
    //replace <<PAGE_NO>> with your page number
    f?p=&APP_ID.:<<PAGE_NO>>:&SESSION.

  • How to enable capitalize the first letter?

    As the title said, is there a way to make mac capitalize the first letter universally in the system, in the textedit, mail, .....?? Just like what iphone and ipad can do. Any ideas are welcome. Thank you.

    Gavin Lawrie wrote:
    Once it had been established that the iWork rewrite had resulted in some features being lost and others broken, and once Apple had acknowledged the concerns* and suggested they are working on fixes**, I'm not sure what else there is to achieve.
    You are writing that in the perspective of having read about it here already. Repeated often enough that you encountered it somewhere in the posts.
    Users are flooding in here and don't know any of this. Of course we have to repeat everything endlessly.
    Because I like to give precise, understandable and workable answers to repeated questions, and Apple doesn't allow sticky posts here, I created a separate forum which users can consult to look up real answers, and contribute for themselves if they have something valuable to add:
    http://www.freeforum101.com/iworktipsntrick/
    There is a section purely devoted to Pages 5. Add whatever answers you feel will lighten the problems of Apple's 'upgrades'.
    Peter
    * Where have they acknowledged anything?
    ** They have barely anything listed, compared to the massive list of deleted features, and nothing but an extraordinarily long time frame considering they created the problems here and now. Apple has not said they will do anything at all about fixing the real issues, the biggest of which is that the new iWork apps break virtually all the work of existing users.

  • Why doesn't mail capitalize the first letter of a sentence?

    How do I make "mail" capitalize the first letter of a sentence? If not WHY not? If not WHY hasn't anyone from Apple addressed this annoying problem?

    Hi thank you you for contacting Apple
    Enable or disable the automatic capitalization feature on the Apple iPhone, iPad or iPod Touch.
    1. Select Settings from the Home screen.
    2. Select General.
    3. Select Keyboard.
    4. Turn Auto-Capitalization to on (green) or off (white).

  • Why can't I hear the first note until it loops around?

    Hello Everyone,
    I have a littlr problem. I have quantized a drum pattern so that the kick drum is on every fourth of a bar. The problem is....I can't hear the first kick until it loops around. Any ideas as to why this is?
    Many thanks,
    JV

    Look at the piano roll (or the event list) and make
    sure that the first hit is on or just inside the
    first beat of the measure. It might sound fine, but
    if it's even a single tick in front of the first beat
    of your sequence, then you won't hear it, since
    playback starts at measure 1, beat 1, tick 1.
    Most of the time when this problem occurs it is not because the note is behind the downbeat. And with note chase=on that shouldn't present a problem anyay.
    And moving the beat one tick later than intended? If the tempo was right up there, say, 170 or something, maybe you wouldn't perceive that. But at slower tempos, a tick is a huge amount of time, especially for drums, and personally I wouldn't recommend changing the intended timing of your notes to suit the sequencer's inability to play things correctly on the downbeat, whatever the cause may be.
    The easiest workaround for this (and it's not perfect, but still a workaround) is to start playback slightly before the downbeat.

  • How to make the first row  selected before the display of ALV grid

    Hello Experts,
    I created a ALV grid using custom container in a screen . Now i want do the follwing:
    1. i want that, the  <b>first line must be selected before the display of ALV.</b>
    2. I have selection buttons . But i dont want the multiselect button and the  
        standard  toolbar in the ALV grid.
    Could any one please help me regarding the above?
    Thanks & Regards
    Sudhansu

    can u pls explain in more details with an example?
    I am telling u the scenario.
    1. i have a screen(Modal dialog Box)  containing ALV grid with selection buttons for each row  (top part) and a subscreen(second part).
          Now when i click on a selection button, it will display the corresponding values in the subscreen.
        When this screen will display for the first time , then first row of the ALV grid should be selected and the corresponding values should be displayed in  the subscreen.
    i   wrote the following code in the PAI. But when i select a record its not triggering the PAI.
    DATA:
         gi_index_rows TYPE lvc_t_row, " Internal table for indexes of selected rows
         g_selected_row LIKE lvc_s_row, " Information about 1 row
         l_lines TYPE i.
      CLEAR g_wa_vdmeko.
    *get selected row
      CALL METHOD g_alv_grid->get_selected_rows
        IMPORTING
          et_index_rows = gi_index_rows.
      DESCRIBE TABLE gi_index_rows LINES l_lines.
      LOOP AT gi_index_rows INTO g_selected_row.
        READ TABLE g_int_vdmeko INDEX g_selected_row-index INTO g_wa_vdmeko.
        SELECT SINGLE  *
               FROM vdmepov
               WHERE bukrs = g_wa_vdmeko-bukrs AND
                     styp  = g_wa_vdmeko-styp  AND
                     sbez  = g_wa_vdmeko-sbez  AND
                     svym  = g_wa_vdmeko-svym  AND
                     svnr  = g_wa_vdmeko-svnr.
      ENDLOOP.
    I am displayinng the ALV using method "set_alv_for_first_display".
    Please help if u have any idea..................
    Thanks
    Sudhansu

  • My itunes account was disabled for some reason.  I changed password in iforgot and still didn't work.  I could log in but not make purchases from the store so I set up a new login/account .  Is there any way to move my music to the new account?

    My itunes account was disabled for some reason.  I changed password in iforgot and still didn't work.  I could log in and see my music but not make purchases from the store or even redeem an itunes gift card so I set up a new login/account with another email account of mine. On the new account I can redeem my gift card and download items onto my ipad2.  Is there any way to move my music to the new account?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Building fluid grid site - what's the best way to add a page?

    I've got  a one page fluid grid site going and I think I've learned enough to start adding pages. Do I use my primary css file as the file to be associated with subsequent pages? I tried to use a new css in a second page, and perhaps my mistake was that I used some classes and id's from the home page on the second page (which is to be expected as it inherits some of the design). For whatever reason, that led to the second page 'breaking' in a couple of places and I couldn't find the problem.
    So I deleted it!
    I'd like to begin again and start adding pages. In the creation stage, right after page definition, where it asks about css and copying over the two files (boilerplate and the js script), should I just use my existing css? When I copied over the two files, I was able to delete them and repoint the new page to the moved files (in a scripts folder and css folder).
    OR
    Should I create the page along with new css and just NOT use the same-named classes and id's?
    Last question, when bringing up code navigator on a design page, are the css pages listed in alphabetical order or by cascade? The new page seemed to have them in alpha order rather than cascade order. They were listed in alpha, despite the fact that they were defined in the page in order of cascade.
    Thanks all.

    Hi Toskey,
    My feelings about the Fluid Grid feature in Dreamweaver is far more
    negative than David's. First, let's look at the response.js script that
    simulates responsive behavior in old browsers. It can be destabilizing
    in IE8 and under (causing lockups) and is, in my opinion, a waste of
    time. Each month that goes by, IE8 and under become less and less
    relevant and giving them a traditional fixed-width or mini-width look is
    all one needs to do.
    The grid approach itself, at the core of the system, is flawed and, at
    best, a transitional approach as CSS has added a columns module. In
    about 2 years time, the concept of grids will be native to most browsers
    and how you deal with older browsers will become a matter of progressive
    enhancement. That is, allow older browsers to display a conventional
    type of layout while newer browsers use the newer features.
    Responsive design depends on designers being able to react and change as
    the CSS brainiacs of the world have regularly scheduled eureka moments
    about better ways to deploy media queries. So Adobe would need to be
    ready and willing (and able) to issue updates to the Fluid Grid system
    on a need-to-update basis. This will never happen.
    As for flexibility and practicality, and real-world application, get a
    Tablet, Smartphone, and desktop computer cranked up. Now load Adobe's
    home page and tell me how it reacts/responds:
    1. Smartphone portrait mode
    2. Smartphone landscape mode
    3. Tablet portrait mode
    4. Tablet landscape mode
    5. In a desktop browser as you make window narrow and wide
    Now load up the PVII home page (www.projectseven.com) and perform the
    same tests in the same devices. How much importance you place on certain
    things will dictate to you what kind of approach to take.
    We think our approach is currently the most bulletproof in the world and
    if something comes to our attention 2 weeks from now that indicates
    there is an even better way, or if another device takes the world by
    storm and needs a new query, we will issue an update ASAP.
    Good luck and happy hunting.
    Al Sparber - PVII

  • How to make one of the columns in my tabular an text item with popup lov

    Hello,
    I want to manually make one of the columns say for the deptno in my tabular form as on text item popup lov using apex_item package
    and whenever user clicks on the text item popup lov, it should open up an dept table report and from which he/she needs to select
    the deptno and this deptno should be returned into the text item popup lov column.
    like for example: say if i have an emp table tabular form with all the columns and deptno column as an popup lov and when user clicks on this column
    it should open up an new sql report(similar to popup lov window), the select statement for this would be
    select deptno,dname,loc from dept order by 1;
    And from this popup lov report whenever an user selects a particular deptno, the same deptno should be returned to my text item popup column in emp tabular form.
    something like this
    select
    "EMPNO",
    "EMPNO" EMPNO_DISPLAY,
    "ENAME",
    "JOB",
    "MGR",
    "HIREDATE",
    "SAL",
    "COMM",
    APEX_ITEM.TEXT(3,deptno,20,50,'readonly=true') || '<img height="16" align="middle" width="16" style="vertical-align: middle;" alt="Popup Lov" src="/i/lov_16x16.gif"/>' deptno
    from "#OWNER#"."EMP"
    like i made my column as an text item lov and now I want to write an onclick event for the text item lov so that an popup window is displayed which is a sql report of the table dept (select deptno,dname,loc from dept order by 1;) and in this report i want to make deptno as an link so that when ever an user clicks on it
    -- this value should be returned to my text item popup lov column deptno in the emp tabular form.
    can anyone help me out with this issue.
    thanks,

    Hi,
    Refer to the link for the detailed information on ALV Grid.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e8a1d690-0201-0010-b7ad-d9719a415907
    Hope it helps.
    Regards,
    Rajesh Kumar
    Edited by: Rajesh Kumar on May 25, 2009 9:13 AM

  • The screen on my macbook has malfunction. When I change the brightness to zero and return to the first level of brightness it works briefly but then the screen starts to flicker brightness and quickly extinguished.

    The screen on my macbook has malfunction. When I change the brightness to zero and return to the first level of brightness it works briefly but then the screen starts to flicker brightness and quickly extinguished. It seems to be a bad contact, it would not be normal for a quality product that should have, he has less than two years of use. Not because of the bad use or crash. Someone with the same problem or can help me? It's really a contact problem? I've done all the procedures recommended by the online support. Thanks.

    Hey everyone in Apple world!
    I figured out how to fix the flashing yellow screen problem that I've been having on my MBP!  Yessssss!!!
    I found this super handy website with the golden answer: http://support.apple.com/kb/HT1379
    I followed the instructions on this page and here's what I did:
    Resetting NVRAM / PRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    I went through the 6 steps above twice, just to make sure I got rid of whatever stuff was holding up my bootup process.  Since I did that, my MBP boots up just like normal.  No flashing yellow screen anymore!!   
    (Note that I arrived at this solution when I first saw this page: http://support.apple.com/kb/TS2570?viewlocale=en_US)
    Let me know if this works for you!
    Elaine

  • Is there any way to make copies of the maser image in LR3?

    Is there any way to make copies of the maser image in LR3?
    I do a lot of sports and dance photography and I need a way to make multiple copies of an image to drag into different folders in LR3.
    Example:  One dancer may be on several teams and I need to make copies of the team photos to put in each dancers folder before I upload them to my E Commerce site so each dancer see's their team photo with their individual photos in the same folder online.
    I know I can make virtual copies, but you cannot drag them to different folders as copies, it will move the virtual with the master.
    If they would just let us hold ALT or any key while dragging to "copy" instead of  "move", my problem would be solved.
    For now I have to go into Windows, make copies ,then synch the folders again. Pain in the rear to do that.
    Anyone have any experience here?
    Thanks
    ronchast

    Ron,
    I too need to make "Real Copies" of images and hate doing anything directly from the OS because of the chance that my LR catalog gets out of Sync with the actual images on the computer.  So I make the copies inside LR with an export routine and then move the copies inside of LR with the normal drag and drop.  Once the export preset is created it can be executed from the Library Grid by right-clicking on the image (or selected images) to make the copies.  My settings are as follows in case you are interested:
    This is the first time I have posted an image before and I am not sure if you will be able to read it or not.  The contents from the export preset in the image above are as follows if that helps:
    s = {
    id = "3AF0E3D2-BC6A-4D53-A7BE-B7A6C4D673AC",
    internalName = "Make Real File Copy",
    title = "Real File Copy",
    type = "Export",
    value = {
    collisionHandling = "overwrite",
    exportFilters = {
    exportServiceProvider = "com.adobe.ag.export.file",
    exportServiceProviderTitle = "Hard Drive",
    export_colorSpace = "sRGB",
    export_destinationPathSuffix = "",
    export_destinationType = "sourceFolder",
    export_useSubfolder = false,
    extensionCase = "lowercase",
    format = "ORIGINAL",
    includeVideoFiles = false,
    initialSequenceNumber = 1,
    jpeg_limitSize = 100,
    jpeg_useLimitSize = false,
    metadata_keywordOptions = "lightroomHierarchical",
    minimizeEmbeddedMetadata = false,
    outputSharpeningLevel = 2,
    outputSharpeningMedia = "matte",
    outputSharpeningOn = false,
    reimportExportedPhoto = true,
    reimport_stackWithOriginal = true,
    reimport_stackWithOriginal_position = "below",
    renamingTokensOn = true,
    size_doConstrain = false,
    size_resolution = 300,
    size_resolutionUnits = "inch",
    tokenCustomString = "RC",
    tokens = "{{image_name}}_{{custom_token}}",
    tokensArchivedToString2 = "{{image_name}}_{{custom_token}}",
    useWatermark = false,
    watermarking_id = "<simpleCopyrightWatermark>",
    version = 0,
    Let me know if you have any questions.
    Jeff

  • ALV Grid with size of the whole screen

    I need to create ALV Grid, that fits any screen. How can i do this?
    I tried cl_gui_docing_container, but in the constructor it's possible to make it to occupy only 95% of the screen.

    If you are using a custom control on the screen and then a custom container you can easily do this.
    Create a screen(Size 200 x 240), place a custom control on the screen and make it to the max size  200 x 240. Now in the attributes of the custom control, check the Resizing option for both horizontal and vertical, with some minimum numbers there.
    Now, your ALV grid automatically occupies all the space available on the screen irrespective of the size if the screen and you will have only one scroll bar.
    Regards,
    Ravi
    Note - Please mark all the helpful answers

Maybe you are looking for

  • ABAP DUMP IN DTP

    Hi All, i got a ABAP Dump in the DTP while i am loading the Text data stating " ASSIGN_TYPE_CONFLICT" . I had chked but unable to find any reason if any one is familiar abt this plz help me out. Regards KK

  • Ipod wont update songs from itunes after new update

    I downloaded the new itunes update 5.0 and now i cant update my ipod. it keeps telling me that there is not enough room on it. so i unchecked about 1000 songs and it keeps on saying the same thing. it also took about 3000 songs off my ipod. the only

  • Urgent...Please help with this HS

    INITHSODBC.ORA ============== HS_FDS_CONNECT_INFO = SPS_BusInt1 //this is the System DSN for Sybase HS_FDS_TRACE_LEVEL = ON HS_FDS_TRACE_FILE_NAME = HS_SPS.log LISTENER.ORA ============== SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (GLOBAL_DBNAME = O

  • Itunes 10.4 fails to install on lion

    After I installed Lion on my MacBook Pro, I tried to install itunes, Software updates, or iwork updates nothing works, any help is appreciated

  • Checking txt,accdb files rec cnt

    How to check the rec count of a file like .txt and .accdb, before loading the data I want to capture the rec count for these file, so that later can I compare it with the rec loaded in the sql table, to perform validation Thanks Neil