Which kind of report  to use ?

Hi Friends,
I have a scenario where i need to be able to expand the header so that it displays all the item below that header.
For Eg .
<u><b>Layout 1</b></u>
Place Name Vendor Description Cost1  Cost2  %
USA   Tom + 11223 Job1          1000    2000  100                                   
<u><b>Layout 2</b></u>
Place Name Vendor Description Cost1  Cost2  %
USA   Tom   11223    job1         1000 2000    100
             11223-1  Transport    400  500     25
             11223-2  Manufacture  400  1000    50
             11223-3  Labor        200  500     25
When the + sign is clicked it should expand to display details under 11223 . If clicked again it should hide the details . Can anyone please give me an example .
Thank you

Hi Hari,
x_keyinfo-header01 = 'VBELN'.
x_keyinfo-item01 = 'VBELN'.
x_keyinfo-header02 = 'MATNR'.
x_keyinfo-item02 = 'MATNR'.
x_keyinfo-header03 = 'DEL_ONCE'.
x_keyinfo-item03 = 'DEL_ONCE'.
x_layout-zebra = 'X'.
<b>
x_layout-EXPAND_FIELDNAME = 'EXPAND'.
x_layout-colwidth_optimize = 'X'.
</b>
I think this will help u if u have any questions plz let me know
Thanks
Vikanth Khimavath

Similar Messages

  • Which Kind of Report should be in BI system?

    Dear Expert,
      I faced the requirement to move R/3 reports onto the BI system. Most of them are customized reports which select data from a larget number of tables.
    Determine First Date and Last Date of the selected period.
    Read Material Master MARA and Material Plant MARC.
    Read Sales Order Stock MSKA and Sales Order Stock History MSKAH.
    Read Batch Stock MCHB and Batch Stock History MCHBH.
    Read Consignment Stock MSKU and Consignment Stock History MSKUH.
    Read material valuation from MBEW and material valuation history MBEWH.
    Read Sales order stock valuation EBEW and Sales order stock history valuation EBEWH.
    Read movement type classification (IN/OUT) from customer YZ table ZMM_MVT.
    Read Stock Movement from Material Document Item MSEG and Material Document Header MKPF.
    Read Incoming Invoice document Header RSEG and Incoming Invoice document Item RBKP of the corresponding material documents.
      It's easy for the abaper to write this kind of report on the R/3 side, but I think (as a beginner) it's a nightmare for the BI consultant to develop a model to support this report (T_T). Is there any suggestion for this kind of report (apart from converting the report program in R/3 into the extractor program and mapping it to the infoset and datasource)?
      Besides, I'm still not sure which kind of report should be moved onto the BI system and which kind of them should be still in the R/3 system. Can anyone provide the criteria to decide whether this report should be in BI or not?

    Hi,
    I think what ever you have been asked is related to stocks quantity movement and valuation.
    You have already got standard SAP extractors which pull records for the material valuation and movements and stocks.It contains information related to bacth stock movement ...and what ever you are asked for...if you are not able to get things here then only you go for generic data source.
    You can use them and ask tell the user that they can have a snapshot of the R/3 if they want or they can see the daily stock movement based on the movement type or stock for a plant or stock level on daily basis....
    See this link for inventroy management in BW and one point guide to set up the inventory scenarions in BW....try to explore the help link in BW for the related cubes you find in this document and business content queries based on them and by the time you have finshed reading it...you will have fair amouint of idea.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Search the forum for the cubes mantioned in the document and there will thousands of thread with all kind of questions.
    Would not suggest to go with the generic data sources on tables if already data sources areavaialable...will be too tough top manage the delta nad consolidate the values in BW after extraction.
    The rule is you should try to use the standard extractors as much as possible and go for generic data source only if no other option is left.
    hope it helps
    Thanks
    Ajeet

  • Which kind of navigation to use?

    Hi,
    my project / portal structure is as follows:
    - Role 1
      - Workset 1
        - Page 1
          - iView 1 (Web Dynpro)
    - Role 2
      - Workset 2
        - Page 2
          - iView 2 (Web Dynpro)
    Is it possible to navigate via absolute / relative navigation from "web dynpro iView 1" to "web dynpro iView 2" although they are part of different portal roles?
    Or do I object based navigation for such a navigation?
    Kind regards,
    Marc

    Hi,
    I tried with absolute navigation but without success so far! Nothing happens, when I trigger the navigation, i.e. the target window is not displayed. Unfortunately there is also no error displayed so I can only guess what is going wrong! I'm using the following code for navigation within an action handler method:
    String targetUrl = "ROLES://portal_content/administrator/super_admin/super_admin_role/com.sap.portal.system_administration/com.sap.portal.support/com.sap.portal.web_dynpro_test_tools/com.sap.portal.portal_navigation";
            WDPortalNavigation.navigateAbsolute(
                targetUrl,
                WDPortalNavigationMode.SHOW_INPLACE,
                (String) null,
                (String) null,
                WDPortalNavigationHistoryMode.NO_HISTORY,
                (String) null,
                (String) null,
                (String) null,
                true);
    The code should be executed when user clicks on the "Navigate to..." button.
    I have already checked the following prerequisites:
    - used user has both, the source and target portal role assigned
    - the navigation target url is equal to the iView id displayed in "portal content administration quick info"
    I expected to get an error when executing my application as standalone application (outside of the portal) and triggering the portal navigation but curiously no error is displayed.
    Could you please explain me why and what I'm doing wrong?
    Kind regards,
    Marc

  • How to know which report is using which view

    Hi all,
    is there any way to get the details of which discoverer report is using which view by using any sql query.
    Thanks in advance

    There is a trigger that update a table whenever a workbook is saved.
    You can start your query from
    select s.workbook_name,
    s.worksheet_name,
    s.sequence_order,
    s.sql_string
    from
    ams.ams_discoverer_sql s
    order by 1,2,3

  • Which kind of quadratic curves does TrueType use? B-Spline or Bézier curve?

    Hello,
    I'm writing a TrueType Font parser and I have already gotten the outline data with the GetGlyphOutline function. But now I am not sure which kind of quadratic curves TrueType uses, B-Spline or Bézier curve?
    The TrueType specification says "Contours are composed of straight lines and curves. Curves are defined by a series of points that describe second order Bezier-splines. "
    However when I search the Internet, I find some documents says it is B-Spline.
    http://support.microsoft.com/kb/243285/
    https://msdn.microsoft.com/en-us/library/windows/desktop/dd145113(v=vs.85).aspx
    http://www.truetype-typography.com/ttoutln.htm
    https://msdn.microsoft.com/en-us/library/windows/desktop/dd145157(v=vs.85).aspx
    Could somebody please tell which kind of quadratic curves Truetype uses?
    Thanks in advance!
    dyyang

    TrueType uses "Composite Bezier Curves" which are also called bezier splines or polybeziers, they are, as the spec says a second order (quadratic) curves. 
    The term "bezier spline" is confusing and should be avoided, some documents will use the name to mean regular bezier curves, while others mean composite bezier curves.
    Among others, Postscript, PDF, SVG, OpenType fonts, etc.  use Composite Bezier curves also.
    P.S.  cubic B splines is a synonym for C2 continuous composite
    cubic bezier curves.

  • Which kind of 3D glases can I use with my Toshiba 58L7363D?

    Hi @ all.
    Iam new here.
    Iam 33y old, married and have two kids.
    I did buy a Toshiba 58L7363D (not DG) last year.
    Now my kids wanna start with 3d BlueRays.
    I have a 3D BlueRay Player.
    Now my question.... Which kind of 3d Glases does I need??
    Shutter? Or just passiv?
    I can not rly find the correct answer here or on Thosiba Homepage.
    I hope you understand me... my english is not rly the best.. :(
    Thx for answers and have a nice day.
    Cu Funameise
    Message was edited by: funameise

    In users manuals on page 29 I found info that you need active 3D glasses with part number FPT-AG03.
    To be honest Im really wondering none of them was delivered with yor TV.
    Anyway, use this part number and you can order 3D glasses separately.
    Good luck and enjoy your 3D TV.

  • Which kind of printer should i use?

    my pc is power macintosh G3
    333MHZ 128MB .9GB 24X CD/6VR
    model no. M4405
    which kind of printers should i use?
    plz give me name , number and all the details about printer...
    can you send the answer of my qu. at ([email protected])
    thanks alot

    power horse,
    You are in the Powerbook Discussions. Please post your question here:
    http://discussions.apple.com/category.jspa?categoryID=105
    Select the appropriate Power Mac G3 Discussion.

  • Which kind of printers should i use?

    my pc is power macintosh G3
    333MHZ 128MB .9GB 24X CD/6VR
    model no. M4405
    which kind of printers should i use?
    plz give me name , number and all the details about printer...
    i have desk writer printer no.550c which kinds of pc
    can connect with??????
    can you send the answer of my qu. at ([email protected])
    thanks alot

    get a pci usb card and just find any newer printer that has drivers for os9

  • Which kind of software should I use?

     This morning, my Windows operating system suddenly crashed and can not boot normally. So, I tried to restart computer through
    restoring Windows with Ghost. However, after restoring Windows operating system, I found all non-system partitions are lost because of mistaken operations. I want to recover lost partitions.
    Which kind of software should I use?

    generally, different methods should be adopted in different situations. If users have made backup, they can restore lost
    partitions with the help of partition backup. Nevertheless, since many Windows users are not used to backing up common partitions,
    they should select partition recovery software if they want to recover lost partitions easily and safely. However, there
    is a large amount of partition recovery software which has serious defects in function. Once we use this kind of partition recovery software to recover lost partitions, we are very likely to suffer Windows partition recovery failure. More seriously, lost partition
    may be damaged heavily, bringing great trouble. In order to help users avoid downloading partition recovery software which
    has serious defects, we suggest usingMiniTool Partition Recovery.

  • Is it possible to find out for one universe in which reports is used?

    Hi,
    Can we find out for one universe in which reports is used?
    We have universes that we used to create different reports, InfoView reports. And we need to find out in which of them.
    Regards,

    Hi Valdete,
    You can run a query for the universe using QueryBuilder:
    http://servername:port/AdminTools
    You can find out the CUID of the universe by viewing its properties. Note this CUID down.
    CUID is the longer, alpha-numeric value.
    In query builder, run the following:
    select si_name, si_webi from ci_appobjects where si_cuid='Cuid of the Universe'
    OR
    select * from ci_appobjects where si_cuid='Cuid of the Universe' (then look for SI_WEBI.
    SI_WEBI stores the object IDs of all the reports that this universe points to.
    You can then query the table ci_infoobjects, using si_id to find details of the report.
    I would also recommend you to go through the links that Ajay has posted as this provides a better insight into QB.
    Hope this helps.
    -Sid

  • Which kind 3D format file can be used by LV

    I will try to make a 3D model and display it in labview, then make it can turn and mark.
    May I know which kind 3D format file can be used by LV, thanks.
    Solved!
    Go to Solution.

    I am not familiar with ASE, but can give you a little info on the other two file formats.
    STL is a simple, triangle based, file format used by many pieces of software.  All the major CAD programs can export it.  Examples are AutoCAD and SolidWorks.  Due to its simplicity, it is probably the best supported.  It is also the most commonly used file type for 3D modelling (e.g. stereolithography, selective laser sintering, 3D printing).  You can get instructions on how to convert from a .skp to a .stl here.  I have not tried them so cannot vouch for their accuracy.
    VRML format was invented for virtual reality simulations.  It has remained somewhat popular.
    A net search on any of these formats should get you a lot more information.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Drill down report without using heirarchies in OBIEE11g

    Hi,
    Can we create multiple column drill down report without using hierarchies in OBIEE11g?
    Kindly let me know the solution.
    Thank you!
    -Harshith

    Yes, It can be done, but for each drill level you will require one seperate report. Drilling can be achieved using OBIEE Report Navigation.
    For eg. If I have to create a drill report which starts from Year and goes to QTR and then to Month level. That means I have to create 3 reports.
    1. A year report which will have report data at year level (Consider Year, Product, Order_QTY and Order_Amt are the columns)
    2. A QTR report which will have report data at Qtr level. This report will have Year column in filter section as IS PROMPTED (Consider Qtr, Product, Order_QTY and Order_Amt are the columns).
    3. A Monthly report which will have report data at Month level. This report will have Year, Qtr column in filter section as IS PROMPTED (Consider Month, Product, Order_QTY and Order_Amt are the columns).
    Then we can go to Yearly report and put the OBIEE navigation on Year column and our target report will be QTR report. Similarly in Qtrly report put the OBIEE navigation on QTR column and our Target report will be Monthly report.
    This way you can impliment drilling without hierarchy.
    For step by step see below URL:
    http://www.askjohnobiee.com/2012/07/how-to-drill-through-guided-navigation.html
    Appriciate if you can mark Correct.
    Thanks,
    Kashi
    Edited by: K N Yadav on 4 Jun, 2013 10:27 PM

  • How to suppress extra form feed for character report printing using ORARRP?

    Dear All,
    We are using Oracle Application Server 10g (10.1.2.0.2) on Windows 2003 Server and most of our client PC's are Windows XP Professional machines. We are migrating our existing oracle application from 2-tier architecture to 3-tier architecture (6i to 10g). We have installed ORARRP utility for remote direct printing and to a limited extent we are successfull in getting the things work out for our system users, However, we are facing a problem using the ORARRP utility for which we are not able to find a solution till date.
    We have configured ORARRP utility on every user's PC and the printing of bitmap reports is working well. However, while printing CHARACTER reports using ORARRP utility, after the report gets printed, an EXTRA FORM FEED is issued by ORARRP to the printer and because of this the printer stationary skips one extra page and advances to the next page. Please note that this EXTRA FORM FEED happens only while printing a CHARACTER REPORT.
    Has anyone come across such a problem using ORARRP ? How can we avoid this extra FORM FEED from CHARACTER REPORT printing using ORARRP ? Is there any other tool which supports remote direct printing just like ORARRP?
    I shall be highly obliged if anyone could reply to my queries ASAP.
    Regards,
    KrishnaKumar S

    Please help ! I tried the "send_form_feed" and "postscript_dos_print" parameters without success. The extra form feed is always there. Thanks.

  • Report Generation using Citadel & Excel in VB

    I want to generate report using citadel sql server, i,am using excel for report viewing. I have written a Visual Basic code for fetching data from srq to excel. The problem is when i fetch all the fields from sql it generate report, but when i gave a single variable name like Mycomputername/process/pot1@value it give a error column:Mycomputer not exsist.
    Given below is the code wriiten to get the value.Please suggest ASAP
    '****** GET HEPTANE RECORDS ******
    Sub GetHEPTANERecords(ByVal rNumber As Integer, ByVal dDate As Date, ByVal sTime As Date, ByVal eTime As Date)
        Dim ReadHEPTANE As ADODB.Recordset
        Set ReadHEPTANE = GetConnection.Execute("SELECT TRANSTECH34/SRS/LVL_GALL_TK1  FROM IntData WHERE [LOCALTIME] BETWEEN '" &
    sTime & "' AND '" & eTime & "'")
    Thanks & regards
    Mantosh

    Mantosh,
    Have you seen this developer zone article which details accessing Citadel Data using COM+ and ADO?
    http://zone.ni.com/devzone/conceptd.nsf/webmain/725A6C3843F13C8786256EA600633724#6
    Also, this KB article provides more detail on how to access Citadel data using SQL commands and I think will help answer your question:
    http://digital.ni.com/public.nsf/websearch/C7D32F9A59D4637086256A7200692F30?OpenDocument
    --Paul Mandeltort
    Automotive and Industrial Communications Product Marketing

  • Help needed for report generation using java technologies

    May i get some idea about report generation api available. some report generation tools that can be downloadble. can you please suggest how to use scheduling the printers or report generation by scheduling.

    e.g. for one of my school project which generate reconciliation report (banking project) we add in a letterheader and the rest of the information presented below.
    but there is some problem here.
    either you "catch" no. x row where the printing will be trancated then prevented it from trancated by formatting your pages such that data will not be printed in that region.

Maybe you are looking for