Group boxes

I am new at jsp development and was wondering if there is group box type component.
I would like to add a collection of components grouped in a box called "group box name."
The closest I can get is a panel, but I cant seem to set a title to it.
Thanks for any help.

Hi Santoshini,
A group box for master data fields consists either of fields in a group box supplied by SAP, or of fields that are in a function group in a subscreen defined by the user, which is in an SAP enhancement for the given application.
The group boxes supplied by SAP are identified by an 'S' in the first position of their number, followed by the number of the group box.
Group boxes defined by the user are identified by a 'V' in the first position of their number, and the screen number within the function group.
Please check out transaction OITO and also maintain table TAMLAY2. Hope it helps,
Kind Regards
Christine

Similar Messages

  • Group box vs SQL Reporting Services Bookmark box

    <p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font face="Times New Roman" size="3">Hi,</font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font face="Times New Roman" size="3">My name is Peter Mead. I have started a job where they have a bunch of Reports written using SQL Reporting Services. My job is to convert these reports in to Crystal Reports to be used in an Enterprise Reporting methodology.</font></p><font face="Times New Roman" size="3"> </font> <p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font face="Times New Roman" size="3">The first problem I have is that SQL Reporting Services viewer has a Bookmark box down the left hand side. This Bookmark box looks like a Group box but does not function in the same way. SQL Reporting Services designer allows for the creation of any definable bookmark to be placed in this Bookmark box. </font></p><font face="Times New Roman" size="3"> </font> <p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font face="Times New Roman" size="3">How can I replicate or emulate this Bookmark box?</font></p><font face="Times New Roman" size="3"> </font> <p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font face="Times New Roman" size="3">Thanks in Advance,</font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font face="Times New Roman" size="3">Peter Mead</font></p>

    In the grouping dialog, there is an option to create "Specified Groups". This should allow you to emulate that bookmark idea.Â
         - Kathryn Webster (Report Design Consultant)
               Kat&#39;s News: http://diamond.businessobjects.com/blog/279

  • Group box in asset master record's tab overlap each other

    Hi Gurus,
    I was wondering anyone has seen the same issue that I'm experiencing. I'm on EHP6 and have logged the issue with SAP but wondering if you've faced the same problem.
    I basically designed a new tab layout with 2 tabs and assigned the following group box to the 1st tab
    S0001     General
    S0003     Time-Dependent Data
    S0002     Posting Information
    S0013     Equipment
    to the 2nd tab I only assigned
    S0009     Origin
    S0100     Depreciation Areas
    Then I assigned the new tab to the asset class.
    Now when I create the asset through AS01, the tab and group boxes appear however the time-dependent group box overlaps with posting information (please see below). Have you experienced the same issue in your environment?
    Thank you.

    Dear Minab,
    This is definitively the problem of overlapping of the layouts.
    The asset master data transactions AS01, AS02 and AS03 uses a generic tool to define the screen layout. Unfortunately there are some restrictions on that tool which are based on basis functionality.
    The problem is caused by compression and resizing (note 203023)
    Since Release Enterprise there are more fields on that screen in Release Enterprise than before.
    Hence, the problem is caused by the definition of your asset layout the solution in your case could be to move the screen to an own subscreen or to move this screen to the end of the tab.
    Please go the customizing (transaction SPRO) and follow these steps:
       Financial Accounting -> Asset Accounting -> Master Data -> Screen
       Layout -> Specify Tab Layout for Asset Master Record -> Define Tab
       Layout for Asset Master Data
    Select in your layout the relevant tab page.
    Here you may need to change positions and group boxes around. Unfortunately there's no other solution possible due to technical restrictions.
    best regards Bernhard

  • My group box is causing problems when searching for a text line in a text file.

    I am developing a booking system, so for this I need to ensure that no two clients can book the same appointment slot. So, on testing my code which prevents double booking, the system doesn't seem to find the text line being searched for in the text file
    when it (purposefully) should.
    I have tried isolating the problem using breakpoints, and I've found that when the 'SearchLine' (referring to my code below) does not include the 'TimeComboBox.text' piece and instead this value is written into the code, the system is able to find the SearchLine
    without any problems. But, when assigning the group box's value to a variable and using this in the SearchLine instead, or without even using a loop and just doing a simple line by line search, the program can't find this line of text in the file.
    I'm lost for ideas. I have tried everything I can think of. Could anyone make any suggestions as for what is the problem with my group box? (I'll explain the code beneath it).
    'Setting the value of the SearchLine (which is a String)
    SearchLine = String.Concat(DateTimePicker1.Value.Date & " " & TimeComboBox.text)
    Dim FoundApp As Boolean
    Dim objReader As New System.IO.StreamReader(basicfilepath & "Text Files\Client Booked Appointment DatesTimes.txt")
    FoundApp = False
    'Reading the file's contents and checking for the SearchLine
    Do While (objReader.Peek() <> -1) or (FoundApp = True)
    If (TextLine = SearchLine) Then
    'Line contains SearchLine. Appointment already exists.
    FoundApp = True
    Else
    'Line doesn't contain SearchLine. Carry on searching.
    Msgbox("Line not found.")
    End if
    Loop
    Explanation
    When the line is searched for, the 'FoundApp' value must be set to 'True' when it is found. If it is not found, it remains false.
    To isolate the problem, I've displayed the SearchLine in a message box in the past to make sure that the correct line of text is being searched for.
    In basic terms, my program is searching for the exact line of text which exists in the text file, but for some reason it is not coming up as 'Found'. The error occurs when the group box's value is used. The text file which is being read is
    definitely correct. Please help, any suggestions would be appreciated.
    Thank you

    Hi
    It would appear that your snippet doesn't actually read the file at all.
    Here is my test which works fine.
    Option Strict On
    Option Infer Off
    Option Explicit On
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load
    Dim SearchLine As String = "18:09:38 : XTaskSettings.Load PARAMS: begin"
    Dim FoundApp As Boolean = False
    Dim TextLine As String = Nothing
    Dim objReader As New IO.StreamReader(Application.StartupPath & "\Data\Report Q1.txt")
    FoundApp = False
    Do While (objReader.Peek() <> -1) Or (FoundApp = True)
    ' this was missing
    TextLine = objReader.ReadLine
    If (TextLine = SearchLine) Then
    'Line contains SearchLine. Appointment already exists.
    FoundApp = True
    MsgBox("Line found.")
    Else
    'Line doesn't contain SearchLine. Carry on searching.
    MsgBox("Line not found.")
    End If
    Loop
    End Sub
    End Class
    Regards Les, Livingston, Scotland

  • Group Boxes and Validation in BSP

    Hi Seniors,
    We have a requirement where in:
    1.  we need to create two group boxes side by side on the page. I am using page fragments in the application. I have created the fields and made the row alignment look like the fields are of two different boxes (no box separation, it is only the row & column alignment). How to attain two boxes side by side in BSP.
    2. There is a check box above the two group boxes which if checked, should leave the group boxes input enabled. Else if not checked, one group box should be disabled for input. How to attain this validation.
    I have searched through sdn but not any with such or similar requirement on group boxes. Your help is highly appreciated.
    Thank you in advance,
    Chaitanya

    along with type=date use doValidate="TRUE" this will enable a javascript validation for the input. The users will not be able to submit the form without correct date type.
    Regards
    Raja

  • Main Calendar and Contacts wont show in thier respective selected group boxes under sync with outlook

    Main Calendar and Contacts wont show in thier respective selected group boxes under "sync with outlook".

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?
    Also
    Advanced troubleshooting for Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010

  • Change/ Add screen in Group Box specify tab layout for Asset master Record

    Hi All,
    I need to add or change group box in specify tab layout for Asset Master Record. Please advice where i can change or create new Group Box.
    Thanks & Regards,
    Pankaj

    Hi,
    Try at below path:
    Financial Accounting (New)>>Asset Accounting>>Master Data>>Screen Layout>>Define Screen Layout for Asset Master Data.
    here you can change the layout for the same.
    Kind Regards,
    Mehul

  • GL Group Box

    Dear All
    We want add to add some custom fields to the GL master data.
    There is a facility available under G/L Accounts - Preparations - Additional Activities - Layouts for Individual Processing - Define Layout
    Group Box is field which populates the field in the  master data.
    Can someone tell, how to define your own Group Box with custom fields?
    Thanks
    Kapil

    dear friend,
    you would copy the existing layoutinto your z-one, assign it to chart of accounts and acc. group
    maintain your own group box in your new z-layout
    regards,
    p.s. the palce you mentioned is t-code OB_GLACC21

  • What kind of contorl in Mac works as group box in Windows?

    We often use group box in Windows to group controls which have similar functions. But in Mac, it seems there is no group box. Then what kind of control works as group function in Mac? Thanks!

    Editing HD-Video is one of the most intensive applications you can run.
    Generally maxing out CPU und RAM should be a priority (Especially RAM since its not that expensive).
    The SSD-Drive might be a good idea (speedwise) to, but it´s very expensive
    Keep in mind that any MBP config should be able to handle the HD-Video. They just take longer on slower models.
    If you are a professional and work wih video all day long you might want to consider an Mac Pro instead of a MacBook Pro.

  • QP01 Group Box is missing

    When I lauch into the SAP GUI and enter QP01 or QP02, I do not get the GROUP ___  box to enter a group name.
    Any ideas as to why this is happening?
    I would like to see the GROUP box to establish a new GROUP name  or call up and existing GROUP name when creating or updating Inspection plans

    Sign in to your Adobe account. You should find the serial number there.  You shouldn't need it to just download it, however.
    What version and operating system?
    Where are you downloading from?

  • Save Group Box As Image

    Hello,
    I am having Four charts in one group box and i want to save all four charts as single image.So is it possible to directly save groupbox as an image so that all my charts present in group box gets saved.
    Help me....

    Use the Control.DrawToBitmap method.  You can adjust the Save method to save it to jpg, bmp, or another format if you want.
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Using bm As New Bitmap(GroupBox1.Width, GroupBox1.Height)
    GroupBox1.DrawToBitmap(bm, New Rectangle(0, 0, bm.Width, bm.Height))
    bm.Save("C:\TestFolder\GroupBoxImage.png", Imaging.ImageFormat.Png)
    End Using
    End Sub
    If you say it can`t be done then i`ll try it

  • CONTACT GROUPS BOX is EMPTY in Sync Window for iPhone

    Hi,
    I go to the Info tab for my iPhone in iTunes to select what I want to sync.
    In the Sync Contacts section I have two choices: All Contacts or Selected Groups. But Selected Groups is greyed-out and the box is empty.
    I have 6 Contact folders in Outlook but none of them appear in the box so I can't select one.
    How do I get them to appear in the box so I can select just one of them?
    Thanks!!
    -Lisa

    Hmmm. If you upgraded in the course of an itunes reinstall, that can sometimes set off a security software interaction. The security software has to update its rules for the new version of iTunes and so forth, and so there's an opportunity for something to start going wrong along those lines after an update.
    I'd quickly check through your Norton firewall rules. Quit iTunes before doing the checking.
    Is there a rule for iTunes in your Norton at the moment? If not, I'd create one, allowing full access to the internet.
    If there is a rule, but it isn't allowing full access, I'd change it so that it does have full access.
    If there is a rule allowing full access, I'd delete the rule and add a new one (allowing full access).
    After creating and/or amending the rules, try rebooting the PC and then launching iTunes. Are you still getting the same error messages and problems?

  • What's the name of that group box thingamajig

    Hello,
    This question should be a simple one: What the name of that box you put around swing components that shows that they belong together in a group. In C++'s QT. it's called a QGroupBox.

    [url http://java.sun.com/docs/books/tutorial/uiswing/misc/border.html]How To Use Borders

  • How to create a group box in Labview

    I want to make a Group on Items in single window. How to make that one. For ex: In QT this feature is called Groupbox. In Labview I searched this word its not available.
         Please help me
       Thanks in Advance,
    Thanks & Regards,
    Harish. G.
    Solved!
    Go to Solution.

    Hi Harish,
    search the LabVIEW help for "cluster".
    Or do you speak of "simple" decorations and grouping items using the menu button on the front panel?
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • I have 9 tabs, but when I try to make a tab group, only the current page shows up as a thumbnail, not all the tabs. I can't get them to work for me. All the tabs are listed on the right side of the tab groups box. What am I doing wrong?

    There's no thumbnails to drag around except one on the left side of the page (the one that's open). The right side of the page lists every tab I have created.

    Perhaps your problem is that '''you must save your browsing history''' in order to use app-tabs that would apply to groups as well but I did not test.
    * http://img232.imageshack.us/img232/4928/clearcachew.png
    I would suggest that if you do not save that stuff in bookmarks, that you will probably have a serious problem soon and lose your tabs, so if you count on them you could lose them. They should stand up to repeated restarts but I would not count of them as app-tabs myself, for one thing it is new, the other is I have to frequently wipe them out and restart, because I actively open new content into them and go back to the beginning of the tab history, and sometimes I can't, and sometimes I lose them by accidentally closing them -- and I must be able to close them in all manners that I close other tabs or I wouldn't be using them.
    There are people who keep 200 tabs open through restarting, that is not for me, I try to clear out the tabs frequently.
    That is what app-tabs are for as opposed to home pages, but I did have a problem when I tested with 120 since as app-tabs only about 65 can be seen at once even though I did reduce the width of app-tabs to about 2/3 the size that they were.. Problem I had when I restarted was that the window enlarged a bit beyond the screen, and my tab counter disappeared until I reduced the count to about 65. I do not allow tabs to scroll so you probably wouldn't have that problem.
    I forgot to test home page with 60 tabs. I do have something set to 75 though have to check that. I tested with 60 pages as home page. Brought firefox down and backup with the 1 app-tab and 60 home pages the app-tab is the same size as the 60 normal tabs from home page.
    Never used group-tabs by choice, since they messed me up I stay clear of them, I don't like them or anything large panoramic type of large thumbnails.

Maybe you are looking for

  • How can I create a working link from the home page to other pages?

    Using iWeb, I created links on the Home page directed to other pages within my web site. The links are located in the main body of the Home page (on the right side) and are not included in the Navigation Menu. The links function correctly when I test

  • Xpressmusic 5800 will no longer connect to the int...

    I have an xpressmusic 5800 and have been using wireless through my home router (and others access points) with no problems for months. I cleared my page history a few days ago and since then (not sure if it related or not) I have been unable to conne

  • From one user, how to get tables names of other user.

    hi all, now i connected to Oracle with one user let us assume 'pavan/pavan'. and i need to get the table names that are in user: pavan and in user: gupta (gupta/gupta). one way is, from Java, first get connection to pavan user, execute the query and

  • [SOLVED ]conky does not start??

    i hav conky in my startup apps in gnome with this command: sleep 10 && conky -c ~/path...../..../.... then i log out and log in again and it doesn't appear.. what can i do?? thanks everybody, i got it fixed by making a simple script. Last edited by i

  • Adding another domain users in a dynamic dl

    Hello, We have many accepted domains and have a dynamic dl which has users of domain A. Now we want to add the members of domain b (users of domain b) in this dl. Regards Regards, Ajit