Table View requirement - please help

Hello,
This is a sample of what we would want to see in the table view:
Position                           Name
- IT Manager                     R. Smith
  - Software Manager         X. Tacy
  - Network Manager          A. Busy
  - Hardware Manger          T. Moore
Then, when a user clicks on a line (e.g. IT Manager), the table view should collapsed/expand:
Position                           Name
+ IT Manager                    R. Smith
I'm new to BSP, so we would really appreciate if you could help us on this requirement.
Thanks.

Hi Ricky,
using client-side scripting does not prevent you from using the same look and feel in any way.
You can simply embed your own HTML and Javascript inside the BSP layout anywhere you want it. This is one of the great things about BSP - it is totally flexible in this way.
You could, for example, use SAP's BSP Extensions to render the display and just use scripting to manipulate it - for example to hide and display different parts of the layout.
You could also use inline HTML and explicitly use the SAP CSS classes so they pick up the look and feel you want.
Of course if you use Flex over BSP (FLOB) you will have a quite different looking user interface - but very cool to people who are just used to plain old web pages.
Anyway, when I am embedding client-side scripting in BSP pages I try and use as much of the SAP provided BSP Extensions as possible.
Look at the online help for the <htmlb:documentHead> tag for a useful piece of sample layout coding.
Cheers
Graham Robbo

Similar Messages

  • HT1657 Hi All. I am new to this forum but hoping I can find some answers from some of you apple guru's out there. I have downloaded a mvie onto my iphone (which took forevere but I cannot find it to view it.Please help

    Hi All. I am new to this forum but hoping I can find some answers from some of you apple guru's out there. I have downloaded a mvie onto my iphone (which took forevere but I cannot find it to view it.Please help

    It should be in the Videos App - if it's not in there then have you got a film age rating set in Settings > General > Resttrictions that is hiding it ?

  • Just updated itunes now menu bar has dissapeared no black and white box at top left and ctr b does not bring anything up. i need file view etc please help driving me crazy

    just updated itunes now menu bar has dissapeared no black and white box at top left and ctr b does not bring anything up. i need file view etc please help driving me crazy

    Is the iTunes window in FullScreen mode?
    If so, press esc key.

  • Hi, dragging jpeg files into i-movie - the selection of jpegs is repeating certain photos and not featuring others, making the entire sequence impossible to view. PLEASE HELP!

    Hi, I have been dragging jpeg files into i-movie all week without issue. Now all of a sudden, the selection of jpegs I'm dragging is repeating certain photos and not featuring others, making the entire sequence impossible to view.
    Please help, this is urgent for a funeral tomorrow! It didnt happen with any of the other family tributes, they all worked fine.
    Many thanks,
    Ruth

    It worked! Thank you! I finally just finished about 20 minutes ago! It took over 26 hours to complete the process you described, but I stuck with it and it worked. I am glad I didn't give up or "forget it" as some might have suggested. That would have set me back until tomorrow!
    Ultimately, it turned out there were 45,910 jpgs created. No wonder it took so many hours to render/display them all. It ended up being about 10 hours before it seemed they were all rendered but the process between them displaying and being able to start really deleting them took a few hours because partly I was asleep and also partly it took forever to do anything. Any action as simple as selecting and right-clicking to Get Info, or emptying the trash, would take 20-30 minutes, a couple times longer. The clock stopped many times for 20-30 minutes at a time, a few times over 30 minutes, before catching back up. My cursor never froze which is what really kept me going, although it was a spinning beach ball for most of the time. I was never so relieved to see my regular cursor as opposed to seeing a spinning beach ball as I was early this morning after about 10 hours!
    Once I was able to open a Finder window and select all 45,900 files (I had already deleted 10 in the previous couple hours during experimenting of trying to figure out what would work best), then right-click and select to move all the files to the trash, the process of moving them to the trash took 4.5 hours. Then deleting them from the trash took a couple minutes. There were 21.4 GB!!! No wonder the whole process took 26 hours!
    mende1, thank you so much!

  • Want to join three views..Please help me

    Dear Dude,
    I have created three views. I have to join these three views. Please help me in this regard.
    First view
    CREATE OR REPLACE FORCE VIEW KPR
    AS
    (SELECT distinct CUREPRESS,
    PRODUCTIONCODE,
    SUM(SCHEDULE1+SCHEDULE2+SCHEDULE3) AS QTY
    FROM ORGCURESCHEDULEDAY
    GROUP BY CUREPRESS,
    PRODUCTIONCODE
    second view
    create or replace view orgstartdt_vw as (
    SELECT distinct A.CUREPRESS, A.PRODUCTIONCODE, B.QTY,MIN(A.YYYYMMDD) AS STARTDATE,
    CASE
    WHEN A.SCHEDULE1 = 0 AND A.SCHEDULE2 = 0 AND A.SCHEDULE3 >0 AND ROUND(30-A.SCHEDULE3/A.CURECAPACITY*24,0)>24 THEN
              ROUND(30-(A.SCHEDULE3/A.CURECAPACITY*24),0)-24
    WHEN A.SCHEDULE1 = 0 AND A.SCHEDULE2 = 0 AND A.SCHEDULE3 >0 AND ROUND(30-A.SCHEDULE3/A.CURECAPACITY*24,0)<=24 THEN
              ROUND(30-A.SCHEDULE3/A.CURECAPACITY*24,0)
    WHEN A.SCHEDULE1 = 0 AND A.SCHEDULE2 >0 AND A.SCHEDULE3 >0 THEN
    ROUND(22-A.SCHEDULE2/A.CURECAPACITY*24,0)
    WHEN A.SCHEDULE1 > 0 AND A.SCHEDULE2 >0 AND A.SCHEDULE3 >0 THEN
    ROUND(14-A.SCHEDULE1/A.CURECAPACITY*24,0)
    END startdate1
    FROM ORGCURESCHEDULEDAY A,KPR B
    WHERE A.PRODUCTIONCODE=B.PRODUCTIONCODE
    AND A.CUREPRESS=B.CUREPRESS
    GROUP BY A.CUREPRESS,A.PRODUCTIONCODE,B.QTY,A.SCHEDULE1,A.SCHEDULE2,A.SCHEDULE3,A.CURECAPACITY)
    ORDER BY MIN(A.YYYYMMDD)
    Third view
    CREATE OR REPLACE VIEW ORGENDDT_VW AS (
    SELECT distinct A.CUREPRESS, A.PRODUCTIONCODE, B.QTY,MAX(A.YYYYMMDD) AS ENDDATE,
    CASE
    WHEN SCHEDULE1> 0 AND SCHEDULE2> 0 AND SCHEDULE3>0 AND ROUND(22+SCHEDULE3/CURECAPACITY*24,0)>24 THEN
              ROUND(22+(SCHEDULE3/CURECAPACITY*24)-24,0) --(INCREMENT DATE BY 1)
    WHEN SCHEDULE1 = 0 AND SCHEDULE2= 0 AND SCHEDULE3>0 AND ROUND(22+SCHEDULE3/CURECAPACITY*24,0)<=24 THEN
              ROUND(22+SCHEDULE3/CURECAPACITY*24,0)
    WHEN SCHEDULE1> 0 AND SCHEDULE2>0 AND SCHEDULE3=0 THEN
    ROUND(14+SCHEDULE2/CURECAPACITY*24,0)
    WHEN SCHEDULE1> 0 AND SCHEDULE2=0 AND SCHEDULE3=0 THEN
    ROUND(6+(SCHEDULE1/CURECAPACITY*24),0)
    END ENDDATE1
    FROM ORGCURESCHEDULEDAY A,KPR B
    WHERE A.PRODUCTIONCODE=B.PRODUCTIONCODE
    AND A.CUREPRESS=B.CUREPRESS
    GROUP BY A.CUREPRESS,A.PRODUCTIONCODE,B.QTY,A.SCHEDULE1,A.SCHEDULE2,A.SCHEDULE3,A.CURECAPACITY)
    ORDER BY MAX(A.YYYYMMDD) desc
    Please help me in this regard..!!
    Regards
    KPR

    Hi Balaji,
    Thanks for your prompt reply. The exact scenario is ..!!
    I have curepress, productioncode,date (in yyyymmdd format).
    1. I have to find out total qty for each productioncode,curepress. total qty means sch1 + sch2 + sch3. I have these columns also.
    2. I have to findout startdate (min. date) for every curepress,productioncode.
    3. I have to findout enddate (max. date) for every curepress,productioncode.
    Based on these scenarios, I have implemented three views. But I am not getting proper result. because, first view having 501 rows. So, I have to get 501 start date rows, 501 enddate rows also. but second and third views are giving more rows.
    please help me...!!
    regards
    KPR

  • HT4759 When I try to return to my last backup, it tells me the IOS7 required, please help.

    When I try to return to my last backup, it tells me the IOS7 required, please help.

    Did you install the beta version of iOS 7 on your phone? If so, and you are a developer, you must post in the developer forums. If you are not a developer, you are stuck and will not be able to get assistance on these forums.

  • Pivot table problem. Please help me create this report

    Hi friends..I'm new to OBIEE. We can create the grand total column in pivot table. I need grand total as well as Grand average. How can I create a new column in pivot table that is same as grand total but calculates average.
    My table structure is like this.
    Facility......Date........totaldays
    A..........01/01/08......210
    B..........01/01/08......215
    C..........01/01/08......917
    A..........02/01/08......211
    B..........02/01/08......211
    C..........02/01/08......911
    A..........03/01/08......210
    B..........03/01/08......215
    C..........03/01/08......917
    I need the report like this..
    Facility.....01/01/08......02/01/08....03/01/08...Total....AVG
    A...............210.............211............210.....631......210.3
    B...............215.............211............215.....641.....213.6
    C...............917.............911............917.....2745....915
    For this report..I created pivot table but I'm not able to calculate the average..
    Can you please help..I'm new to OBIEE...
    Thanks in advance

    Please change your username....
    Here is what you need to do...
    1) In the Pivot Table View, click on the Measures column and select New Calculated Item.
    2) In the pop-up window complete as follows:
    Name: type "Total Average"
    Function: Select "Average" from the drop-down window.
    Click on the values in the right pane that you wish OBI to calculate the average for.
    3) Click "OK."
    You now have another column that is the average of the values in each row.

  • I now get a blank (white) screen in the Viewer.  Can still drop video from the viewer into the canvas, but don't see it in the viewer.  Please help!

    It doesn't seem to matter what project I'm working on... the picture in the viewer is gone.  All I see is a blank (white) screen.  If I put the cursor over the viewer and drag to the timeline, the clip will appear on the time line (and in the canvas) but I don't see it in the viewer.  I usually edit my clips in the viewer and not on the canvas.  Can anyone explain why this might be happening and how I might fix.  I'm suspecting I must have messed up one of the settings but I'll be darned if I can figure out which one or how to fix.  Please help!

    David.  Thank you very much.   The problem was not with the canvas but rather the Viewer.  But the solution was the same.  Somehow, the Viewer window was re-set to Alpha.  I changed it back to RGB.... and the picture is back.   These issues are often very simple.... but they can drive you bats if you don't know the answer.   Very grateful.  Tim

  • How to have the check box fields in the table ...Please help me out.

    Hi
    can any one give me code save the checkbox field to save in the table.
    I have displayed the checkboxes using the loops from the table but when i am clicking the checkboxes and pressing the button save its not saving in the database table.
    please help me out. Its urgent .
    Thank you very much suneetha

    DOnt duplicate the thread...Reply to the below thread..
    Re: In the loop to display checkboxes.
    Raja T

  • Swings Urgent Requirement, Please Help me

    Hi ,
    I have a requirement like when a file dialog is displayed, I have to select only directories/folders. Now with using JFileChoser , I am able to choose file . Is there any possibility to choose only directories without file dialog or atleast by using filedialog?. If some solution Please help me as this is urgent requirement.
    Thanks and Regards,
    Rajeev L.

    JFileChooser has an instance method public void setFileSelectionMode(int mode)
    call when initialising the file chooser.
    chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY );

  • Stuck in IDCS4 Table H*ll--Please Help

    I'm working on updating a parts catalog for my company (800+ pages) and it's my first big project using IDCS4. We've separated each section into an individual document (most between 50-80 pages, but a couple of the sections are 100+ pages).
    Due to the nature of the project, I've attempted to make my documents as flexible as possible.  Over the next few years we will be inserting new information at different places in the catalog, as we begin to carry new items.  Because of this possibilty, the current information for each section is placed in an single table that overflows from the first page through the last page of that document.
    The problem I keep running into, is that the table rows for different parts of the same document have to be formatted differently to achieve a consistent appearance. There are a few parts that have additional information that requires splitting and/or merging table cells.
    Here are a few issues I've come across:
    * When I try to Shift + drag a cell border, ID will not allow me to drag it past the threshhold of another cell in a higher or lower row.  For example, I have a 3 inch cell in Row 2 of my document that begins at 0" and ends at 3".  Further down at row 7, I have divided the 3" row vertically.  The right half of the divided cell has been merged to the adjacent cell (to the right).  When I try to drag the left wall of this cell toward the left, ID won't let me drag it past the 3" mark on the ruler (in fact, it stops about 1/16" short).  Is there a way to override this and freely drag the cell wall to whatever size I want it to be?
    * My other issue is attempting to paste rows from one ID document to another.  Occasionally, ID allows me to do it, but it plays heck with my formatting when it does.  Most times, even when the rows seem to be right at or very close to the same dimensions, the Paste function is not available after I Cut or Copy the rows from the older document.
    Can anyone provide advice/solutions or even explain to me that I'm going about this all wrong, or have I come across an inherent weakness of InDesign's capabilities.  I understand that an application that does every single thing you'll ever want or need isn't out there, but it seems like it's those things I want or need most that ID refuses to do.
    Thanks in advance!
    RW

    Thanks for all of your help.  I checked out catalog plugins and downloaded a couple of the trial versions.  They seem to be a great tool and something I'll probably pursue in the future.  Unfortunately, their parameters weren't compatible with the amount of work I've already put into this project and in the interest of time-saving, I'm going to pursue another path for this version of the catalog so I can take my time working on the prep it would take make the most of the catalog plugins.
    I did some homework on the linked text frames solution and have proceeded down that path.  Due to some of the formatting (some of the pages were a lot more difficult than the sample I uploaded), I'm still using tables to preserve a consistent look, but I've broken down each product section into a separate table (of no more than 20-30 product listings per table).  I don't know why that didn't occur to me earlier, I guess I was in the dark about the reflow feature that keeps objects flowing consecutively.
    One other problem I'm having that I haven't found a suitable answer to:  When pasting rows from one table to another, most help databases I've seen praise the flexibility of InDesign to copy from one table and *as long as there are enough rows to add the new info*, pasting from one table to another is a snap.  However, I've found limited success with this feature.  I'm not sure if it has to do with my tables, some of which became very complex (through splitting and merging cells to preserve a consistent appearance throughout a section), but InDesign will allow me to cut rows from one table and insert them as a new table into a text frame; however, when I try to copy more rows from the first table (formatted the same as the first rows that I cut), the Paste feature is inactive.  Other than the first series of rows being cut from one table and pasted as a new table, their is no difference between them and the next section of rows I'm attempting to add to the end of the table.
    Any thoughts on the seeming inconsistency?
    RW

  • Expandable list - Table of Contents -  Please Help

    I used the code found on the following page to create an expandable list that worked great:        Expandable list :  at www.learningmovabletype.com
    I created a table of contents for our Policies and Procedures that showed the main topics and when clicked listed each policy subcategory.  The following link is for this page:http://bsacapheadstart.com/PoliciesandProcedures.html
    My company bought the Adobe CS4 package that included Dreamweaver several months ago and I am trying to create this same page using it.                          http://grantee.bsacapheadstart.com/Policies%20and%20Procedures.htm
    The problem as you will notice if you go to this page and click on the categories, is that only the first topic will expand and all the others will not.
    I have reviewed the code several times and do not see any differences between the first topic heading and the others; nor between the code that works on the first page and the page I am creating using Dreamweaver.
    I have thought about using the Spry Collapsible Panel or Accordian but it is not exactly what we want.  Besides everyone is already comfortable with this layout.
    If anyone could please help, it would be greatly appreciated! Thanks!

    Start with valid code.  It makes trouble shooting much simpler.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.grantee.bsacapheadstart.com%2 FPolicies%2520and%2520Procedures.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • HOST ROUTING TABLE IS EMPTY please HELP

    HELLO THERE PLEASE HELP ME , MY HOST ROUTING TABLE IS EMPTY
    WHAT DO I DO NOW?

    Hi and Welcome to the Community!!
    With a strong carrier network signal (not WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to arrive to your Messages app
    2) Resend Service Books
    KB02830 Send the service books for the BlackBerry Internet Service
    Please wait for "Activation" Messages, one per already configured email account, to arrive in your Messages. If you have no already configured email accounts, please wait 1 hour.
    3) Batt Pull Reboot
    With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should contact your mobile service provider for formal support...it is, after all, your carrier network that must populate these items to your BB.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • BDC - table control - experts please help

    Hi experts,
    Please help. I am in need of your help.
    I am working with BDC and I have a table control in one of the screen. Table control has a check box in the first column. While recording how I entered the data is : I select the check box in a row, enter two values in next two columns of that row and then hit enter then the other columns in that row turn from grey to white (initially these columns are greyed out).
    NOw in BDC when I run my session in foreground, I am able to check(select) the check box and enter the values in next two columns and then I have a Enter OKCODE. But when I hit enter it is not able to recognize the row and its unable to turn the greyed out columns in that particular row to white.
    Is there a way to specify in my program that I am hitting enter in one particular row.
    Please help. Let me know if something is not clear. Very urgent . Pleasee respond. Thanks

    Hi Rich,
    Thanks for the replies. I will try that. I got one more doubt. While manually creating the recipes using C201, there is a screen Recipe header. When I record this transaction, I see a different screen for the Recipe header. Fro example the screen numbers are like 4210(manual) and 4211(recording).
    But my problem is there are two fields which are missing in the screen which I am getting while recording C201. These two fields are present on the screen for manual creation. I need to enter those two fields while I record. But how can I do this.
    Please help.

  • Table Editing Problems--- Please Help!!!

    I have implemented a table model that adds an extra blank row . Now when
    i enter some value into the first row and press enter i find that the value is lost. (the row goes blank and a new row is not added).the table model stores the new value though.
    The table has 1 column and its header is set to null
    here is the code
    class ReportTableModel extends AbstractTableModel
         Object[][] data;
    Vector rows ;
         public ReportTableModel(Vector rows) {
         this.rows = rows;
         setTableData();
         public int getColumnCount() {
                   return 1;
         public int getRowCount() {
    return rows.size()+1;
         public String getColumnName(int col) {
                   return null;
         public boolean isCellEditable(int row,int col)
                   return true;
         public Object getValueAt(int row, int col) {
              if (row == 0)
                   return "";
              return data[row][col];
         public Class getColumnClass(int col) {
                   return "".getClass();
         public void setValueAt(Object value, int row, int col) {
                   data[row][col] = value.toString();
                   rows.add(value.toString());
                   setTableData();
         public void setTableData() {
    data = new Object[rows.size()+1][1];
         for (int i=0,k=1; i < rows.size(); k++,i++) {
                   data[k][0] = rows.get(i).toString();
                   this.fireTableDataChanged();
    Please help!!!!
    Thank you,
    Phani Kanuri

    Do you add the new table to the scrollpane? Generally, it is wise to use table in constructor of JScrollPane.
    JScrollPane jsp = new JScollPane(myTable);
    // assuming myTable has been instantiated already
    Cheers
    DB

Maybe you are looking for

  • Cam Image Push

    I just switched to using iWeb as my home page. I have a web cam that I use a PC to push the image (hourly) to a specific folder through FTP. Is there an iWeb FTP address that I can push an image to? Any other ideas on how to use an iWeb page to suppo

  • I cant open a document saved in Numbers

    Please help me! I cant open a document that I saved in Numbers as it says "could not be open" Why is this happening?

  • SU 2006-003

    Hi Earlybirds, How is it going. Piece of Cake or ???. I'll check out BBR/ATM and see if I find anything there.

  • Random background-image with PHP

    I would like to have random images as background-images on a page. So I made a rotate.php ("SELECT picsid, picsurl FROM pics WHERE picsite = 'home' ORDER BY MD5(RAND()) limit 1") with <img src="<?php echo $row_rsimages['picsurl']; ?>" alt="" /> Then

  • Navigable pie-chart

    Hi, I want to create a pie chart with navigation option. That mean if I click a particular region in the chart the control has to navigate to another page and at the same time has to pass some specific value. Please help me to do it. Thanks in advanc