Number of Region Columns

Hi all,
I have to arrange my regions in 14columns...
but i am seeing that the maximum columns available as "9".....
is it possible to increase the number of columns.....
I also have a small issue in arranging my regions across columns....
sample application is at:
workspace: bi_development
UN and pwd: apexforum
appl : test
Thanks
you guys are really healpful.

Hi,
Firstly, you can't go higher than 9 columns. You would need to adjust the page template somehow to put two regions side-by-side and then use columns 1 to 9 in the first one and 1 to 5 in the second to get all 14 columns in. It may be possible with styling
For you 2x2 reports - you can do this by adding in a DIV tag around the report contents. In the region's Region Header add in something like:
<div style="height:100px;">and then close the DIV in the region's Region Footer:
</div>I have created a new page in your app that does this. But, here's another example doing the same thing (but using a height of 300px): [http://apex.oracle.com/pls/otn/f?p=267:28]
Andy

Similar Messages

  • Report region columns constrained to 4000 chars?   Hitting LOV problems.

    Hi all,
    I've hit a problem that I'm hoping will have a simple answer.
    Quick overview of issue:
    APEX 3.01 application running against a 10gR2 DB.
    We have an LOV defined that works just fine on various forms but in report regions where the LOV is available via a drop down column value in the report region HTML table we are hitting the error:
    report error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    Some judicious debugging reveals that this seems to be because we are trying to load in more than 4000 characters into the LOV drop down in the report regions HTML table column (it's a moderately large LOV)..
    This suggests that the default column type in a report region HTML table is VARCHAR2 and thus that there is a default 4000 character limit on any such column values, would that be a fair assumption? I know that the actual report row size always used to be limited to a total of 32k but this limit is a new one to me.
    If there is such a limit, does anyone have any suggestions on how to work-around it i.e. is it possible to redefine report region column values to be other datatypes/dimensions or should we be looking at using an alternative such as a pop-up instead?
    Many thanks.

    Hi Scott,
    Okay, what we have is a fairly simple Dynamic Page with two report regions (both standard type of 'SQL Query'). The second report region is the one causing us the headache. The column headings are set to 'Custom' but apart from that everything seems as it should be.
    The following query populates an HTML table being generated in the second report region (problem line in bold):
    SELECT apex_item.hidden(7,task_id)||
    apex_item.select_list_from_lov(1, estimate_type, 'TASKSMK', NULL, 'YES', 0,'** Select Task **',NULL, NULL) as "Task Type",
    '<img src="/i/themes/aqa/required.gif" alt="Required Field" tabindex="999" />'||apex_item.text(2, description,30,4000,'required="true"') as "Work Item(s)",
    dbms_lob.substr(apex_item.select_list_from_lov_xl(3, username, 'PEOPLE', NULL, 'YES', 0, '** Select Resource **', NULL, NULL),4000) as "Resource",
    apex_item.text(4, days,5,5) as "Days",
    apex_item.text(5, start_date,11,11) as "target Start (dd-mon-yyyy)",
    apex_item.text(6, NVL(end_date,ADD_MONTHS(start_date,1)),11,11) as "Target End (DD-MON-YYYY)",
    rownum link
    FROM
    (SELECT t.task_id,
    e.estimate_type,
    t.description,
    t.username ,
    t.days,
    t.start_date,
    t.end_date
    FROM estimate e, task t
    WHERE e.project_project_id = TO_NUMBER(:F172_PROJECT_ID)
    AND e.active_yn = 'Y'
    -- and t.days > 0
    AND t.ese_id = e.id
    --AND e.creation_date = (SELECT MAX(ei.creation_date) FROM estimate ei WHERE ei.project_project_id = e.project_project_id AND ei.active_yn = 'N')
    UNION ALL
    SELECT 0 task_id,
    0 estimate_type,
    NULL description,
    '0' username,
    NULL days,
    sysdate start_date,
    ADD_MONTHS(sysdate,1) end_date
    FROM dual
    CONNECT BY LEVEL < = TO_NUMBER(:P19_ROWS_CNT))
    All appears well until the number of values being returned in the second LOV (retrieved by the apex_item.select_list_from_lov_xl) exceeds 4000 characters and then we get the error first detailed. The substr around the function isn't usually present, it was added during the debugging, if I allow one more character than the 4000 or remove the substr completely then I get the error again. If the same function is used to retrieve the LOV on a normal Dynamic Form field then all is well, it only seems to have a problem when present in the HTML table being generated.
    Are we doing something silly here?
    Thanks.
    Message was edited by:
    jac

  • How do I change the number of picture columns in a folder

    how do I change the number of picture columns in a folder

    Never mind.  I found the answer.  For those who may wonder: you slide the cursor on the bottom right.  I looked in IPhoto help but there was nothing there.

  • How to update the null values to some number on the NUMBER type of column

    Hello All,
    I have one NUMBER type of column in DB table. It has some (null) values. I want to update with value 1. I tried to run the Update statement , It gives 0 rows updated.
    SELECT objectid,attr20 FROM table;
    object id attr20
    ====== ====
    fff70b67-8d54-4ad7-bc57-7b40a0d8b219     (null)
    cac5264a-b363-487b-bfe6-6b84d60064e9     (null)
    2fc2a626-51d8-401c-9495-18aacd4c35c8     (null)
    1b60bfa4-ff68-4488-adf6-2a83528c0e20     (null)
    1c662829-24c1-4b3c-9289-0128e170c043     5
    74f11331-545b-435f-bf4b-f57c7a6b4500     2
    c941c1ac-a18e-47ec-843c-dbe2a5b51001     0
    d7eba203-93c0-48ea-a109-9b06015ef387     0
    eba72fa3-21d8-4489-bb93-917ebbd67de2     0
    I ran following query but no success.
    UPDATE eb_tcsservfnadoc SET attr20 = 1 WHERE attr20 = NULL
    0 rows updated
    UPDATE eb_tcsservfnadoc SET attr20 = 1 WHERE attr20 = null
    0 rows updated
    UPDATE eb_tcsservfnadoc SET attr20 = 1 WHERE attr20 = ''
    0 rows updated
    UPDATE eb_tcsservfnadoc SET attr20 = 1 WHERE attr20 =' '
    Error starting at line 1 in command:
    UPDATE eb_tcsservfnadoc SET attr20 = 1 WHERE attr20 =' '
    Error report:
    SQL Error: ORA-01722: invalid number
    01722. 00000 - "invalid number"
    *Cause:   
    *Action:
    can some one help me out to update such values ????

    Hi,
    "=" will not work for NULL values. Please remeber two NULL values are NOT same. Try IS operator.
    UPDATE eb_tcsservfnadoc SET attr20 = 1 WHERE attr20 IS NULLRegards,
    Avinash

  • How to get payment document number from paid column in monthly invoice

    Dear experts
    I use SBO japan version and i need to know how to get payment document number from paid column in monthly invoice ?
    in table MIN1, only contain invoice and credit note document number, there is no payment document number
    thank you for your help
    Best Regards
    JeiMing

    Dear Gordon
    Yeah, you are right, i can use field MIentry in RCT2
    thank you
    Best regards
    jeiming

  • I cannot sort my songs using the "plays" column (also known as the number of plays column). The number of "plays" is not increasing as a song finishes.

    The "plays" column (also known as the number of plays column) is not saving not saving the number of plays (v 11.0).

    My number of 'Plays' was not increasing anymore at some point after updating to Version 11.  I had iTunes rev 11.0.1.12.  Today I updated to the latest rev 11.0.2.26, and now the numer of plays is increasing, so they must have fixed the bug!

  • Unable to setup fixed number of report columns based on a dynamic query

    Hi guys, I need to find a way to replicate below output. Unfortunately it cannot be done using the column group feature due the fact it will create not so many rows as I need. In the below case it would create
    only four columns. I need 10 columns. Basically for 100 m 6 columns would remain blank . 8 for 200 m .I'm using SRSS 2008R2
    Query results:
    Race Name Ranking
    100m Andrew 1
    100m Rachel 2
    100m Chris  3
    100m  Drew 4
    200m John 1
    200m  Billy 2
    Report output should look like:
    Race    1 2    3 4 5 6 7 8 9  10
    100m  Andrew Rachel Chris Drew
    200m John Billy
    Any suggestions?

    As I understand, you want a fixed number (10) of columns and you want them whether or not there are 10 rows returned by your dataset for a given race.
    What is your dataset?
    What if your dataset returns 15 races of a given type? Do you want 15 columns then?
    Assuming your dataset is TSQL, you can use a matrix in your report if you tweak your dataset query. First, you need to add a "default" set of data that guarantees your 10 columns. This can be done with a set of UNION statements:
    UNION
    SELECT '100m' AS Race, '' AS Name, 1 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 2 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 3 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 4 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 5 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 6 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 7 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 8 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 9 AS Ranking
    UNION
    SELECT '100m' AS Race, '' AS Name, 10 AS Ranking
    This gives you the 10 columns. In the matrix, set row group to Race and column group to Ranking. Set the intersecting detail cell to:
    =Max(Fields!Name.Value)
    This will give you 10 columns unless you have more than 10 rows returned for a given race.
    "You will find a fortune, though it will not be the one you seek." -
    Blind Seer, O Brother Where Art Thou
    Please Mark posts as answers or helpful so that others may find the fortune they seek.

  • The number of display columns in the report reached the limit. Help!!!

    Hello Everyone,
    This might be dumb question. But why do get this error with a IR report? and what is the solution for this. Please help me with this.
    Error
    The number of display columns in the report reached the limit. Please click Select Columns under Actions menu to minimize the report display column list.
    Oh.. And also i have a blob column.. if the format is not given, then the table is fine.. but happen to get this error only when the blob download format is given.
    Thanks and regards
    John
    Edited by: JB on Mar 30, 2012 11:08 AM

    Hi,
    i have set up a small test case on apex.oracle.com and I receive the same error if I use download format.
    I have a table
    test_blob (id number, name varchar2(10), blobcont blob)
    If I create IR like
      select
        id,
        name,
        blobcont
      from test_bloband then I define download format I hit the error.
    If you want this to work you have to change your query to
      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blobAnd then again define download format for blob on blobcont column.
    Regards,
    Aljaz

  • Why is there a limit on the number of times a "DVD player region" can be changed, and can it be adjusted for more region changes, or an indefinite number of region changes?

    Why is there a limit on the number of times a "DVD player region" can be changed, and can this numbert be adjusted for more region changes, or an indefinite number of region changes?

    Region encoding is the mechanism that enables motion picture studios to control the worldwide release of their movies. It is required by the DVD Forum (http://www.dvdforum.org/forum.shtml) in all commercial hardware DVD players. Every DVD-Video disc contains one byte of data representing a region code, which limits where the disc can be played.
    http://support.apple.com/kb/HT2397
    Once you have set the region in DVD Player five times it cannot be changed.
    Instead, use VLC to view videos from different regions:
    http://www.videolan.org/vlc/download-macosx.html

  • The number of display columns in the report reached the limit" Interactive Report

    I get the error message of "The number of display columns in the report reached the limit" when trying to display less than 100 (100 is limit) columns when an aggregate has been created.   This does not happen when an aggregate has not been added to the IR report.  It seems to happen because I have a control break on as well.  When I turn off the control break it works but is not the result that we want.  Interesting enough, if I filter the results down to 500 rows it works just fine.  Does oracle treat aggregates as columns!?  This is a really odd issue that I really need to clear up.
    Oracle 11g
    apex 4.1.0.33
    Thanks in advance,
    Shawn.

    Hi,
    i have set up a small test case on apex.oracle.com and I receive the same error if I use download format.
    I have a table
    test_blob (id number, name varchar2(10), blobcont blob)
    If I create IR like
      select
        id,
        name,
        blobcont
      from test_bloband then I define download format I hit the error.
    If you want this to work you have to change your query to
      select
        id,
        name,
        dbms_lob.getlength(blobcont) blobcont
      from test_blobAnd then again define download format for blob on blobcont column.
    Regards,
    Aljaz

  • Dynamic region column for different user?

    Hi experts,
    I am developing a system for users with different privileges level corresponding to regions(state, city, country).
    National users could access states data within the nation, state users could access cities data within the
    state and so on for city users.
    I have a region hierarchies(state, city, country) and I was wondering if it can work:
    when  national users log on, they will see table like this: region column (hierarchies)+ data column
    state
    data
    For state users:
    city
    data
    Besides developing three separate tables for these type of user, how can I achieve this  with one table? Can the region column change dynamically corresponding to different users and also the column have drill down function ?
    Hope I make my question clear, any suggestion will be appreciated  . If this question had been asked, sorry about that and pls send me the link.
    regards,
    Jeff

    HI,
    You can done this by using "Data Level Security" and "Object Level Security".
    Step 1:
    Create the hierarchy as level1 Contains state and level 2 contains city.
    step:2
    Drag to presentation and right click on the hierarchy of level1 (State)
    Step3: Go to Permissions get the online user go to the particular user and give access to read for the state user and no access for city user.
    Step4: Right click on the level2 (City) and go to permission and set the user access to read for city user and no access for state user.
    Check inconsistency and save the RPD.
    Check in the report side.
    For more Ref:http://mkashu.blogspot.com
    Regards,
    VG

  • ORA-02256: number of referencing columns must match referenced columns

    Hi,
    I have the following script;:
    But when I execute the script, TOAD gives me in line "create table recipiente", (I have put in bold the line), the following error: ORA-02256: number of referencing columns must match referenced columns. But I don´t know where is the error.
    create table bodega
    ( nombrebodega varchar2(50) primary key,
    localidad varchar2(50),
    nombredueño varchar2(50),
    telefono varchar2(50),
    museo char(1),
    logo blob
    create table vino
    ( tipovino varchar2(50),
    categoriavino varchar2(50),
    anovendimia number(4),
    nombrebodega varchar2(50),
    denominacionorigen varchar2(50),
    precio_lproduc number(5),
    litrosproduc number(10),
    precio_lpublico number(5),
    primary key (tipovino,categoriavino,anovendimia,nombrebodega),
    foreign key (nombrebodega) references bodega on delete cascade
    create table recipiente <-- Here gives me the error
    ( idrecipiente number(2) primary key,
    capacidad number(10),
    clase varchar2(50),
    tipovino varchar2(50) not null,
    categoriavino varchar2(50) not null,
    anovendimia number(4) not null,
    nombrebodega varchar2(50) not null,
    foreign key (tipovino) references vino on delete cascade,
    foreign key (categoriavino) references vino on delete cascade,
    foreign key (anovendimia) references vino on delete cascade,
    foreign key (nombrebodega) references vino on delete cascade
    Anybody could help me?
    Thanks. Regards

    check:
    SQL> create table bodega
      2  ( nombrebodega varchar2(50) primary key,
      3  localidad varchar2(50),
      4  nombredueo varchar2(50),
      5  telefono varchar2(50),
      6  museo char(1),
      7  logo blob
      8  );
    Table created.
    SQL> create table vino
      2  ( tipovino varchar2(50),
      3  categoriavino varchar2(50),
      4  anovendimia number(4),
      5  nombrebodega varchar2(50),
      6  denominacionorigen varchar2(50),
      7  precio_lproduc number(5),
      8  litrosproduc number(10),
      9  precio_lpublico number(5),
    10  primary key (tipovino,categoriavino,anovendimia,nombrebodega),
    11  foreign key (nombrebodega) references bodega on delete cascade
    12  );
    Table created.
    SQL> create table recipiente
      2  ( idrecipiente number(2) primary key,
      3  capacidad number(10),
      4  clase varchar2(50),
      5  tipovino varchar2(50) not null,
      6  categoriavino varchar2(50) not null,
      7  anovendimia number(4) not null,
      8  nombrebodega varchar2(50) not null,
      9  foreign key (tipovino) references vino(tipovino) on delete cascade,
    10  foreign key (categoriavino) references vino(categoriavino) on delete cascad
    e,
    11  foreign key (anovendimia) references vino(anovendimia) on delete cascade,
    12  foreign key (nombrebodega) references vino(nombrebodega) on delete cascade
    13  );
    foreign key (tipovino) references vino(tipovino) on delete cascade,
    ERROR at line 9:
    ORA-02270: no matching unique or primary key for this column-list
    SQL> alter table vino add constraint vino_uk unique (tipovino);
    Table altered.
    SQL> alter table vino add constraint categoriavino_uk unique (categoriavino);
    Table altered.
    SQL> alter table vino add constraint anovendimia_uk unique (anovendimia);
    Table altered.
    SQL> alter table vino add constraint nombrebodega_uk unique (nombrebodega);
    Table altered.
    SQL> create table recipiente
      2  ( idrecipiente number(2) primary key,
      3  capacidad number(10),
      4  clase varchar2(50),
      5  tipovino varchar2(50) not null,
      6  categoriavino varchar2(50) not null,
      7  anovendimia number(4) not null,
      8  nombrebodega varchar2(50) not null,
      9  foreign key (tipovino) references vino(tipovino) on delete cascade,
    10  foreign key (categoriavino) references vino(categoriavino) on delete cascad
    e,
    11  foreign key (anovendimia) references vino(anovendimia) on delete cascade,
    12  foreign key (nombrebodega) references vino(nombrebodega) on delete cascade
    13  );
    Table created.Amiel

  • Query block has incorrect number of result columns

    can anyone edit my query to eliminate below error ??
    SELECT FLROOPENHEAD.RONBR RepairOrder,FLROOPENHEAD.DATEOPENED DateOpened,NULL DateClosed,
    (SELECT FLREPAIRSTAT.DESCRIPTION  FROM FLREPAIRSTAT
    WHERE FLREPAIRSTAT.REPAIRSTATID = FLROOPENHEAD.REPAIRSTATID) RepairOrderStatus,
      (SELECT flrt.DESCRIPTION FROM FLREPAIRTYPE flrt
      WHERE flrt.REPAIRTYPEID = FLROOPENHEAD.REPAIRTYPEID) RepairType,  FLROOPENHEAD.REPAIRCENTER  RepairCenter,
    FLROOPENHEAD.FLVEHICLEID , FLROOPENHEAD.FLATTACHID,'O'
    FROM FLROOPENHEAD   WHERE FLROOPENHEAD.LDEVNBR =2334
    AND ((extract(DAY FROM SYSTIMESTAMP - TIMEOPENED)*24)+(extract(HOUR FROM SYSTIMESTAMP - TIMEOPENED)) <= 72)
    UNION
    SELECT FLROHISTHEAD.RONBR RepairOrder,FLROHISTHEAD.DATEOPENED DateOpened, null, FLROHISTHEAD.DATECLOSED DateClosed,
    (SELECT FLREPAIRSTAT.DESCRIPTION  FROM FLREPAIRSTAT
    WHERE FLREPAIRSTAT.REPAIRSTATID =FLROHISTHEAD.REPAIRSTATID) RepairOrderStatus,
    (SELECT flrt.DESCRIPTION FROM FLREPAIRTYPE flrt
    WHERE flrt.REPAIRTYPEID = FLROHISTHEAD.REPAIRTYPEID) RepairType, FLROHISTHEAD.REPAIRCENTER  RepairCenter
    from FLROHISTHEAD WHERE FLROHISTHEAD.LDEVNBR =2334
    AND ((extract(DAY FROM SYSTIMESTAMP - FLROHISTHEAD.TIMECLOSED)*24) + (extract(HOUR FROM SYSTIMESTAMP - FLROHISTHEAD.TIMECLOSED)) <= 72)
    ORDER BY DateOpened, RepairOrder
    i think error was at second Where condition.
    Error at Command Line:1 Column:0
    Error report:
    SQL Error: ORA-01789: query block has incorrect number of result columns
    01789. 00000 -  "query block has incorrect number of result columns"
    *Cause:   
    *Action:

    Hi,
    On comparison with 1st query and 2nd query,it can be easily noticed that ,1st query is returning 4 columns and 2nd query returns 5 columns in select clause.
    In order to work union ,both of your queries should select equal no of columns.
    Hence replace your query
    Original query(1st ) :
    SELECT FLROOPENHEAD.RONBR RepairOrder,FLROOPENHEAD.DATEOPENED DateOpened,NULL DateClosed,
    (SELECT FLREPAIRSTAT.DESCRIPTION  FROM FLREPAIRSTAT
    WHERE FLREPAIRSTAT.REPAIRSTATID = FLROOPENHEAD.REPAIRSTATID) RepairOrderStatus,
    ....Relplace with :
    SELECT FLROOPENHEAD.RONBR RepairOrder,FLROOPENHEAD.DATEOPENED DateOpened,NULL,/*Here you need missed the comma */
    DateClosed,
    (SELECT FLREPAIRSTAT.DESCRIPTION  FROM FLREPAIRSTAT
    WHERE FLREPAIRSTAT.REPAIRSTATID = FLROOPENHEAD.REPAIRSTATID) RepairOrderStatus,
    ....Hope this helps
    Regards,
    Achyut

  • Sbwp: limited number of dynamic columns

    Hi together,
    We use dynamic columns in sbwp.
    Unfortunatelythe number of dynamic columns is limited to six.
    Is there a chance to use more than six dynamic columns?
    Thanks for any help.

    No,
    You could use 1 column for more than 1 piece of data.
    What is the weird business requirement that they need more than 6 dynamic columns?
    Kind regards, Rob Dielemans

  • Sorting a number in first column of matrix

    Hi All,
    I tried following code for sorting number of first column of matrix. But when i click on AddRow menu it gives error and when i use commented line code that time it adds one row but number shows in column last row number.
    And when i click on DeleteRow menu it delete only first time second time it is not working.
    Can anybody tell me where i am wrong ? Plz suggest me exact code.
    Public Sub SBO_Application_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean)
                Dim item As Matrix
                formd = SBO_Application.Forms.ActiveForm
                item = formd.Items.Item("2").Specific
                Dim i As Integer
                If pVal.MenuUID = "1292" Then
                    ' item.AddRow(1, 1)
                    item.Columns.cells.item(item.RowCount).specific.value = item.RowCount
                    BubbleEvent = False
                End If
                If pVal.MenuUID = "1293" Then
                    For i = 1 To item.VisualRowCount
                        item.Columns.Item("V_-1").Cells.Item(i).Specific.value = i
                    Next
                    item.FlushToDataSource()
                    BubbleEvent = False
                End If
            End Sub

    Hi...
             Copy the code and change ur matrix id...
    Private Sub SBO_Application_RightClickEvent(ByRef eventInfo As SAPbouiCOM.ContextMenuInfo, ByRef BubbleEvent As Boolean) Handles SBO_Application.RightClickEvent
            If eventInfo.FormUID = "Ur Form ID" Then
                If (eventInfo.BeforeAction = True) Then
                    Dim oMenuItem As SAPbouiCOM.MenuItem
                    Dim oMenus As SAPbouiCOM.Menus
                    Dim omat As SAPbouiCOM.Matrix
                    Dim GCols As SAPbouiCOM.Columns
                    oitem = OForm.Items.Item("Ur Matrix")
                    omat = oitem.Specific
                    GCols = omat.Columns
                    Try
                        selItem = eventInfo.ItemUID
                        Dim oCreationPackage As SAPbouiCOM.MenuCreationParams
                        oCreationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_MenuCreationParams)
                        oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
                        oCreationPackage.UniqueID = "OnlyOnRC"
                        oCreationPackage.String = "Delete Row"
                        oCreationPackage.Enabled = True
                        oMenuItem = SBO_Application.Menus.Item("1280") 'Data'
                        oMenus = oMenuItem.SubMenus
                        oMenus.AddEx(oCreationPackage)
                    Catch ex As Exception
                        MessageBox.Show(ex.Message)
                    End Try
                Else
                    Dim oMenuItem As SAPbouiCOM.MenuItem
                    Dim oMenus As SAPbouiCOM.Menus
                    Try
                        SBO_Application.Menus.RemoveEx("OnlyOnRC")
                    Catch ex As Exception
                        MessageBox.Show(ex.Message)
                    End Try
                End If
            End If
        End Sub
    Menu Event...
    If (pVal.MenuUID = "OnlyOnRC") And (pVal.BeforeAction = False) Then
                Try
                    Dim oMenuItem As SAPbouiCOM.MenuItem
                    Dim oMenus As SAPbouiCOM.Menus
                    Dim omat As SAPbouiCOM.Matrix
                    Dim GCols As SAPbouiCOM.Columns
                    Dim i As Integer
                    oitem = OForm.Items.Item("Ur Matrix")
                    omat = oitem.Specific
                    GCols = omat.Columns
                    omat = OForm.Items.Item(selItem).Specific
                    For i = 1 To omat.RowCount
                        If omat.IsRowSelected(i) = True Then
                            omat.DeleteRow(i)
                            Exit For
                        End If
                    Next
                Catch ex As Exception
                    SBO_Application.MessageBox(ex.Message)
                End Try
            End If
    It will work..
    Regards..
    Billa 2007

Maybe you are looking for

  • Reconver SSL private key?

    I have a bit of a dilemma since I tried to install an SSL certificate on my server that needs intermediate certs. Here's what I did: 1) In Server Admin, create a new key for my domain and use that key to create a CSR to send to a certificate authorit

  • How to get list of block identifiers in a empty table and an empty index

    We have an application that has issue with ITL waits: this application is running many INSERT statements on a table that has 2 NUMBER columns and one primary key index. The application is designed to run INSERT statements but they are never committed

  • Can't seem to track my order now?

    (I suppose this is about phones in a way so best I post it here) Anyway, I got a order which is due to get to me tomorrow for a BT6500 (The call blocker phone) order was placed over the phone (added to my bill) I was able to track it but mysteriously

  • Nokia lumia 510

    Why Skype, QQ isn't working in this phone. If anybody have solution please reply.

  • C5 still rebooting after firmware upgrade

    I recently upgraded to 032.010, but turning on the radio makes the phone reboot just as it did prior to upgrading. I had a theory that only certain frequencies provoked this reaction, but now I've started experiencing it on frequencies which previous