Summary-detail

In 10g ,i am using value interaction on the summary report which is in pivot view..But now the detailed report is also opening in pivot view. I want the detailed report to open in table view when user clicks on summary report .Can anyone suggest something

Duplicate post!!
Check this summary- detail

Similar Messages

  • How to display summary details at then end of a alv grid?

    Hi.
    i have a ALV grid with 4 columns.
    also i need to print summary details at the end of the grid..
    eg..
    Total material cost  15.111
    total labor cost        5.4444
    total material burden 267.88
    toal labor burden    253.66
    How do i prinbt these details at then eend of a grid?/

    Hi
    Populate event END_OF_LIST into IT_EVENTS tab and use in the fun module
    see the doc for population of different events to display the totals after grid
    REUSE_ALV_EVENTS_GET
    Description
    This table tells ALV which events are processed by the caller by CALLBACK.
    The table of possible events per list type can be initialized using the module REUSE_ALV_EVENTS_GET.
    You can display the names of the constants in the type pools SLIS which represent the individual events using the individual test function in the function module
    REUSE_ALV_EVENT_NAMES_GET. Only events with a form routine name are processed.
    The table structure contains the fields:
    •     IT_EVENTS-NAME
    Name of the Callback event.
    Possible Callback events:
    •     Action
    USER_COMMAND USING R_UCOMM LIKE SY-UCOMM RS_SELFIELD TYPE SLIS_SELFIELD
    Process actions on the list
    As this is a frequently-used Callback event, the form routine can also be passed directly in the interface in the IMPORTING parameter I_CALLBACK_USER_COMMAND.
    PF_STATUS_SET USING RT_EXTAB TYPE SLIS_T_EXTAB
    If a user list status is to be set, it must be done in the form routine assigned to this event. The ALV function codes, which must not be active, are in the Parameter RT_EXTAB. This table must be passed with the SET PF-STATUS command (with inactive user function codes as well, if necessary).
    The STANDARD status of the function group SALV should be used as a template for a user-specific status.
    As this is a frequently-used Callback event, its form routine can also be passed directly in the interface in the IMPORTING parameter I_CALLBACK_PF_STATUS_SET.
    ITEM_DATA_EXPAND USING RS_SELFIELD TYPE SLIS_SELFIELD RFLG_ALL TYPE C
    Only relevant for hierarchical-sequential lists using the layout parameter IS_LAYOUT-EXPAND_FIELDNAME of the structure IS_LAYOUT.
    Exit for passing item entries (ITEM table) for a header record which was expanded interactively by the user.
    RS_SELFIELD-TABINDEX contains the header table index for which the item entries are to be put in the global item output table (T_OUTTAB_SLAVE). The Callback is only called if ALV has no items for a header which is to be expanded.
    RFLG_ALL is passed with 'X' if the user shows all items. The application must ensure that entries are not repeated in the item table. RS_SELFIELD is initial in this case.
    CALLER_EXIT USING RS_DATA Is called at the beginning of the function module to make special settings. It is not usually used.
    •     List processing events
    IMPORTANT: The application Callback routine must not manipulate the internal output table and/or its header record. This restriction applies to all Callbacks which are called in the list output and run under the 'List processing events'.
    TOP_OF_LIST no USING parameter. Information output at the start of the list
    END_OF_LIST no USING parameter. Information output at the end of the list
    TOP_OF_PAGE no USING parameter
    Equivalent to the list processing TOP-OF-PAGE event
    END_OF_PAGE no USING parameter. Not available for hierarchical-sequential lists.
    Information output at the end of a page. This is only called for printing.
    TOP_OF_COVERPAGE no USING parameter
    The selection information and list status are output together (if they exist) on a separate page by default. See also the documentation of the parameters:
    IS_PRINT-NO_COVERPAGE
    IS_PRINT-NO_PRINT_SELINFOS
    IS_PRINT-NO_PRINT_LISTINFOS
    IS_LAYOUT-GET_SELINFOS
    The user can format the header area of the 'cover page' himself or herself by specifying a Callback routine for this event.
    END_OF_COVERPAGE no USING parameter
    Analogously to TOP_OF_COVERPAGE the user can add other information to the information output by ALV (selection information, list status) at this event.
    FOREIGN_TOP_OF_PAGE no USING parameter
    The Top-of-page event is always processed in ALV and is only passed to the caller via the Callback mechanism. This is still the case if the caller, e.g. by a user action, processes a branch list which was not formatted by ALV (e.g. a popup with additional information about the list record selected and displayed by ALV).
    In this case, top-of-page cannot be formatted by ALV analogously to the basic list, it must be handled completely by the caller. The event top-of-page still occurs in ALV. When ALV notices a top-of-page which was not caused by an ALV output, the form routine in FOREIGN_TOP_OF_PAGE is called.
    FOREIGN_END_OF_PAGE no USING parameter
    The event end-of-page is always processed in ALV and only passed to the caller via callback. This is still the case, e.g. when the caller processes a details list which was not formatted by ALV (e.g. a popup with further information about selected list records which were displayed by ALV).
    In this case, end-of-page cannot be formatted by ALV analogously to the basic list, it must be handled completely by the caller. The event end-of-page still occurs in ALV. When ALV notices an end-of-page that was not caused by an ALV output, the form routine in FOREIGN_END_OF_PAGE is called.
    BEFORE_LINE_OUTPUT USING RS_LINEINFO TYPE SLIS_LINEINFO
    Output information before each output line. Should only be used in justified cases because it costs a lot of performance.
    AFTER_LINE_OUTPUT USING RS_LINEINFO TYPE SLIS_LINEINFO
    Output information after each output line. Should only be used in justified cases because it costs a lot of performance.
    •     Internal use only
    LIST_MODIFY USING R_TABNAME TYPE SLIS_TABNAME
    R_INDEX LIKE SY-TABIX
    R_INDEX_ITEM LIKE SY-TABIX
    R_INDEX_SUM LIKE SY-TABIX
    •     IT_EVENTS-FORM
    Name of the form routine which should be called in the calling program at the event.
    Field_catalog:
    Field catalog with field descriptions
    2.7.1.     Description
    Field catalog containing descriptions of the list output fields (usually a subset of the internal output table fields). A field catalog is required for every ALV list output.
    The field catalog for the output table is built-up in the caller's coding. The build-up can be completely or partially automated by calling the REUSE_ALV_FIELDCATALOG_MERGE module
    See also the documentation of the function module REUSE_ALV_FIELDCATALOG_MERGE.
    The minimal field catalog is documented under 'default'. The caller can use the other optional parameters to assign output attributes to a field which differ from the default.
    A field catalog need not be built-up and passed explicitly only under the following conditions:
    •     The internal table to be output has the same structure as a Data Dictionary structure which is referred to in the internal table declaration using LIKE or INCLUDE STRUCTURE.
    •     all fields in this structure are to be output
    •     the structure name is passed to ALV in the parameter I_STRUCTURE_NAME.
    See also the documentation of the IMPORTING paramter I_STRUCTURE_NAME.
    Positioning
    •     row_pos (row position)
    value set: 0, 1 - 3
    Only relevant if the list output is to be multi-line (two or three lines) by default.
    A multi-line list can also be defined by the user interactively if the default list is one-line.
    The parameter specifies the relative output line of the column in a multi-line list.
    •     col_pos (column position)
    value set: 0, 1 - 60
    only relevant when the default relative column positions differ from the field catalog field sequence. The parameter specifies the relative column position of the field in the list output. The column order can be changed interactively by the user. If this parameter is initial for all field catalog entries, columns appear in the field catalog field sequence.
    Identification
    •     fieldname (field name)
    value set: internal output table field name (required parameter)
    Name of the internal output table field which is described by this field catalog entry
    •     tabname (internal output table)
    value set: SPACE, internal output table name
    This parameter is used in 'manual' field catalog build-up only for hierarchical-sequential lists.
    Name of the internal output table which contains the field FIELDCAT-FIELDNAME.
    Data Dictionary reference
    •     ref_fieldname (reference field name)
    value set: SPACE, Data Dictionary field name
    Name of the Data Dictionary field referred to.
    This parameter is only used when the internal output table field described by the current field catalog entry has a reference to the Data Dictionary (not a program field), and the field name in the internal output table is different from the name of the field in the Data Dictionary. If the field names are identical, naming the Data Dictionary structure or table in the FIELDCAT-REF_TABNAME parameter is sufficient.
    •     ref_tabname (reference table/structure field name)
    value set: SPACE, name of a Data Dictionary structure or table
    Structure or table name of the referred Data Dictionary field.
    This parameter is only used when the internal output table field described by the current field catalog entry has a Data Dictionary reference (not a program field).
    Reference to fields with currency/measurement unit
    Each internal output table sum or quantity field whose decimal places are to be formatted appropriately for the unit in the list must follow the convention:
    •     the field is of data type QUAN or CURR (internal type P) (the field must really have this physical data type. Overwriting the physical data type with the parameter FIELDCAT-DATATYPE has no effect)
    •     There is a field in the internal output table which contains the associated unit.
    •     There is also an entry in the field catalog for the unit field.
    (If the unit is not to appear as a column in the list, and cannot be interactively displayed as a column, e.g. because it is always unambiguous and is therefore explicitly output by the caller in the list header, the field catalog units field entry can take the parameter FIELDCAT-TECH = 'X'.
    The association of a value field to a unit affects the output as follows:
    •     appropriate decimal places display for the unit
    •     an initialized field with a link to a non-initial unit is output as '0' for the unit (if FIELDCAT-NO_ZERO is initial). When this field is summed, this unit affects whether the units are homogeneous.
    •     an initialized field with a link to an initial unit is output as SPACE. When this field is summed, the unit SPACE does not affect the homogeneity of the units.
    •     When non-initial fields with an initial unit are summed, the unit SPACE is considered to be a unit.
    Link to currency unit
    •     cfieldname (currency unit field name)
    value set: SPACE, output table field name
    Only relevant for amount columns with associated unit.
    Name of the internal output table field containing the currency unit associated with the amount field FIELDCAT-FIELDNAME. The field in FIELDCAT-CFIELDNAME must have its own field catalog entry.
    •     ctabname (internal currency unit field output table)
    value set: SPACE, output table field name
    only relevant for hierarchical-sequential lists
    Name of the internal output table containing the FIELDCAT-CFIELDNAME field.
    Link to measurement unit
    •     qfieldname (measurement unit field name)
    value set: SPACE, output table field name
    only relevant for quantity columns with unit link.
    Name of the internal output table field containing the measurement unit associated with the quantity field FIELDCAT-FIELDNAME.
    The field in FIELDCAT-QFIELDNAME must have its own field catalog entry.
    •     qtabname (internal measurement unit field output table)
    value set: SPACE, output table field name
    only relevant for hierarchical-sequential lists
    Name of the internal output table containing the FIELDCAT-QFIELDNAME field.
    Column output options
    •     outputlen (column width)
    value set: 0 (initial), n
    For fields with a Data Dictionary link this parameter can be left initial.
    For fields without a Data Dictionary link (program field) the parameter must be given the value of the desired field list output length (column width).
    initial = column width is the output length of the referred Data Dictionary field (domain).
    n = column width is n characters
    •     key (key column)
    value set: SPACE, 'X'           'X' = kex field (key field output in color)
    Key fields can not be interactively hidden. Parameter FIELDCAT-NO_OUT must be left initial.
    For exceptions see the documentation of the FIELDCAT-KEY_SEL parameter.
    •     key_sel (hideable key column)
    value set: SPACE, 'X'
    only relevant when FIELDCAT-KEY = 'X'
    Key field which can be hidden interactively.
    The key column sequence cannot be changed interactively by the user.
    The output is controlled by the FIELDCAT-NO_OUT parameter analogously to non-key fields.
    •     no_out (field in field list)
    value set: SPACE, 'X'          'X' = field is not displayed in the current list.
    The user can interactively choose the field for output from the field list.
    The user can display the contents of these fields at line level using the 'Detail' function.
    See also the 'Detail screen' documentation of the parameter IS_LAYOUT.
    •     tech (technical field)
    value set: SPACE, 'X'          'X' = technical field
    Field cannot be output in the list and cannot be displayed interactively.
    Field can only be used in the field catalog (not in IT_SORT, ...).
    •     emphasize (highlight columns in color)
    value set: SPACE, 'X' or 'Cxyz' (x:'1'-'9'; y,z: '0'=off '1'=on)
    'X' = column is colored with the default column highlight color.
    'Cxyz' = column is colored with a coded color:
    •     C: Color (coding must begin with C)
    •     x: color number
    •     y: bold
    •     z: inverse
    •     hotspot (column as hotspot)
    value set: SPACE, 'X'
    'X' = column cells are output as hotspots
    •     fix_column (fix column)
    value set: SPACE, 'X'
    Not relevant for block lists (output of several lists consecutively)
    'X' = column fixed (does not scroll horizontally)
    All columns to be fixed must have this flag, starting from the left. If a column without this flag is output, only the columns to the left of this column are fixed. The user can change the column fixing interactively. See also the documentation of the Layout parameter
    IS_LAYOUT-NO_KEYFIX of the IMPORTING paramter IS_LAYOUT.
    •     do_sum (sum over column)
    value set: SPACE, 'X'           'X' = a sum is to be calculated over this internal output table field.
    This function can also be called by the user interactively.
    •     no_sum (sums forbidden)
    value set: SPACE, 'X'          'X' = no sum can be calculated over this field, although the data type of the field would allow summing.
    •     input (column ready for input)
    Function not available
    Format column contents
    •     icon
    value set: SPACE, 'X'           'X' = column contents to be output as an icon.
    The caller must consider the printability of icons.
    •     symbol
    value set: SPACE, 'X'          'X' = column contents are to be output as a symbol.
    The internal output table column must be a valid symbol character.
    The caller must consider the printability of symbols.
    Symbols can usually be printed, but may not always be output correctly, depending on the printer configuration.
    •     just (justification)
    value set: SPACE, 'R', 'L', 'C'
    Only relevant for fields of data type CHAR or NUMC
    ' ' = default justification for this data type
    'R' = right-justified output
    'L' = left-justified output
    'C' = centered output
    The justification of the column header always follows the justification of the columns. Independent justification of the column neader is not possible.
    •     lzero (leading zeros)
    value set: SPACE, 'X'
    Only relevant for fields of data type NUMC
    ALV outputs NUMC fields right-justified without leading zeros by default.
    'X' = output with leading zeros
    Note: If a NUMC field is output left-justified or centered by FIELDCAT-JUST, leading zeros are output. If the output of leading zeros is suppressed by a Data Dictionary reference ALPHA conversion exit, the output is always left-justified.
    •     no_sign (no +/- sign)           Only relevant for value fields
    value set: SPACE, 'X'     'X' = value output without +/ sign
    •     no_zero (suppress zeros)           Only relevant for value fields
    value set: SPACE, 'X'          'X' = suppress zeros
    •     edit_mask (field formatting)
    value set: SPACE, template
    template = see documentation of WRITE formatting option USING EDIT MASK template
    The output conversion conv can be made by template = '== conv'.
    Texts
    The following text parameters should be specified for program fields without a Data Dictionary reference. The texts are taken from the Data Dictionary for fields with a Data Dictionary reference. If this is not desired, the text parameters can also be specified. The Data Dictionary texts are then ignored. If the user changes the column width interactively, the column header text with the appropriate length is always used. The interactive function 'Optimize column width' takes account of both the field contents and the column headers: if all field contents are shorter than the shortest column header, the column width depends on the column header.
    The 'long field label' is also used in display variant definition, sort, etc. popups.
    •     seltext_l (long field label)
    •     seltext_m (medium field label)
    •     seltext_s (short field label)
    •     reptext_ddic (header)
    analogous to the Data element maintenance 'Header'
    The specified text is not necessarily output in the list, an optimum among all texts is sought.
    •     ddictxt (specify text)
    value set: SPACE, 'L', 'M', 'S'
    You can specify with values 'L', 'M', and 'S', the keyword that should always be used as column header. If the column width changes, no attempt is made in this case to find an appropriate header for the new output width.
    Parameters for program fields without Data Dictionary reference
    see also 'Text' parameters
    •     datatype (data type)
    value set: SPACE, Data Dictionary data type (CHAR, NUMC,...)
    Only relevant for fields without Data Dictionary reference
    Program field data type
    •     ddic_outputlen (external output length)
    value set: 0 (initial), n
    Only relevant for fields without Data Dictionary reference whose output is nevertheless to be modified by a conversion exit.
    Prerequisites:
    •     FIELDCAT-EDIT_MASK = '==conv'
    see also the documentation of the parameter FIELDCAT-EDIT_MASK
    •     FIELDCAT-INTLEN = n
    see also the documentation of the parameter FIELDCAT-INTLEN
    n = external format field output length
    The column width FIELDCAT-OUTPUTLEN need not be the same as the external format output length (FIELDCAT-DDIC_OUTPUTLEN).
    •     intlen (internal output length)
    value set: 0 (initial), n
    Only relevant for fields without Data Dictionary reference whose output is nevertheless to be modified by a conversion exit.
    Prerequisites:
    •     FIELDCAT-EDIT_MASK = '==conv'
    see also the documentation of the parameter FIELDCAT-EDIT_MASK
    •     FIELDCAT-DDIC_OUTPUTLEN = n
    see also the documentation of the parameter FIELDCAT-DDIC_OUTPUTLEN
    n = internal format field output length
    •     rollname (data element)
    value set: SPACE, Data Dictionary data element name
    F1 help can be provided for a program field without a Data Dictionary reference, or F1 help which differs from the Data Dictionary help can be provided for a field with a Data Dictionary reference, using this parameter.
    When F1 help is called for this field, the documentation of the specified data element is displayed.
    If the FIELDCAT-ROLLNAME is initial for fields with a Data Dictionary reference, the documentation of the data element of the referred Data Dictionary field is output.
    Others
    •     sp_group (field group key)
    value set: SPACE, CHAR(1)
    Field group key.
    Keys are assigned to group names in the IT_SPECIAL_GROUPS parameter (see also the documentation of the parameter IT_SPECIAL_GROUPS).
    When such an assignment is made in the field catalog and in IT_SPECIAL_GROUPS, the fields are grouped correspondingly in the display variant popup.
    •     reprep (Report/Report interface selection criterion)
    value set: SPACE, 'X'
    Prerequisites:
    •     The system contains the Report/Report interface (function group RSTI, table TRSTI)
    •     Parameter LAYOUT-REPREP = 'X'
    (see also the documentation of the parameter LAYOUT-REPREP of the IMPORTING parameter IS_LAYOUT )
    'X' = When the Report/Report interface is called, the value of this field is passed in the selected interface start record as a selection criterion.
    2.7.2.     Default
    •     The following entries are usually sufficient for internal table fields with a reference to a field defined in the Data Dictionary :
    •     fieldname
    •     ref_tabname
    Notes:
    ALV gets the remaining information from the Data Dictionary.
    If no relative column position (COL_POS) is specified, the fields are output in the list in the order in which they were added to the field catalog.
    REF_FIELDNAME need only be specifid when the name of the internal table field differs from the name of the referred Data Dictionary field.
    Information which is explicitly entered in the field catalog is not overwritten by information from the Data Dictionary.
    Priority rule:
    Entries in the field catalog have priority over differing entries in the Data Dictionary.
    •     The following entries are usually sufficient for internal table fields without a reference to the Data Dictionary (program fields):
    •     fieldname
    •     outputlen
    •     datatype
    •     seltext_s
    •     seltext_m
    •     seltext_l
    Notes:
    F1 help can be provided for program fields by assigning a data element to the parameter ROLLNAME.
    If the parameters SELTEXT_S, SELTEXT_M, SELTEXT_L, and REPTEXT_DDIC contain appropriate field labels, the program field column headers are also adjusted appropriately when the column width changes.
    Reward points for useful Answers
    Regards
    Anji

  • Summary-Detail Report

    Hi Friends,
    I have a Summary-Detail report.
    The report has minimum 2 pages.
    First page is Summary and 2nd onwards detail...
    In the first page, i will print the summary of goods despatched along with the description of goods.
    eg:
    To
    company
    ..address
    Subject...
    Body....
    Package Type | Qty | Description
    Carton | 10 | Contains 100 packs in each carton
    ............................................ To be delivered as separate packs
    ..............................................Handle with care.
    Despatched date is 12-sep-2009
    Pallets | 250 | Despatched date is 12-sep-2009
    Tins | 2100 | Despatched date is 12-sep-2009
    Signatory..... Date...........................
    This is my report structure....Usually one id will have only one package type. But the description against
    that ID is stored in a separate table and the each letter in the description is precious. The length of the description
    can be 40 to 4000..User is allowed to enter the description as a multi -record or a single record.
    In the report, pkg_type and qty is one repeating frame and description is another repeating frame.
    I have to print as many characters in the first page can enclose and the remaining characters i need to print after the detail part.
    As the description column can contain any no.of characters, i cannot handle it using no.of records...Because if i set to print
    first 5 records in the first page and the remaining in last page using serial no.column, then there is a posssibility that the when it reached the third record, whole space is consumed and
    report will get extended to second page, this should not happen...summary cannot be given in 2 pages...
    Am new to reports..Kindly help me to solve this problem..
    Regards
    Dora
    Edited by: Dora on Sep 30, 2009 8:50 AM

    Thanks Lalitk,
    As u said...I created a db procedure...becoz i want to make several this kind of report using same table.
    For the proc. I gave max.no.of characters as parameter and it returns the two strings ,first with max. no of characters (concatenating the records if it does not reach the max.no) for first page and the other with remainging of the record(s) as string for second page...
    Regards
    Dora.

  • Report with Summary & Detail - Exporting to PDF in Crystal Report

    Hi,
    I am using Crystal Reports XI (release 2). I am trying out a report with Summary and Detail sections.
    Requirement:
    1.     Report should display both Summary and Detail Sections
    2.     Summary section should be displayed first followed by Detail Section
    3.     A field in summary section should have a hyperlink to Detail Section
    4.     On clicking the hyperlink the user should be navigated to the corresponding detail record
    5.     User should be able to download the whole report as a single PDF (i.e., both summary and detail together)
    Implementation in Crystal Report:
    This feature could be implemented using
    a.     Linked On Demand Sub report
    b.     Using Hide (Drill down ok) option
    c.     Hyperlinks
    Issue Faced:
    I used the on demand sub report option. When i clicked on the sub report (hyperlink), the details get displayed. But the details get displayed in separate viewer and hence when we export to PDF both summary and detail are not getting exported together. User has to select each detail report and export to PDF. Is this a limitation in CR XI? - proprietary Crystal Report features, such as drill-down and on-demand subreports, are supported only in the native Crystal Report format. These special features are ignored when exporting a report to a non-Crystal format like pdf.
    Is there any workaround for exporting both the summary and detail (in subreport) as a single PDF file?
    Any help will be greatly appreciated.
    Thanks,
    Viji.

    Hi
    Hyperlink would not be a solution to what you are asking for.
    If you want to see the records related to a particular employee id by clicking on emp id, you can try the below:
    - Apply a group on employee id on the main report.
    - Insert a subreport with the required fields and place it on the Employee id Group header. You can put a name of the subreport as "Check Employee details" or something else as per requirement and make it a on demand subreport.
    - Link the subreport on Employee id.
    Hope this helps!!!
    Regards
    Sourashree

  • Report painter - summary/ detail option

    Dear Experts,
    In report painter i have developed report.
    My user wants two reports one like summary (cost element group) detail(detail cost element) please advise how to get two different reports.  I have developed two reports but both are showing details costlement group.  I need one report should show cost element group.
    Thanks
    Balu

    Hi,
    if you use rows where the cost element groups are displayed, create a row with your header cost element group and mark this row as "expanded". This allows to display the whole group  values as well as the sub-levels of the group as well as the loewst level (which is the single cost element).
    Best regards, Christian

  • View Budget (Task Summary) details

    Hi,
    I was looking into View Budget (Task Summary) page. I created a view and selected
    Supplier Invoices Commited Cost, Purchase Orders Commited Cost, Other Commited Costs, Total Commited Costs columns. I wanted to know technical details about these four columns. Im trying to find the page, Controller , View objects.
    Thanks,
    Satya

    Hi,
    I found the Controller and View Object for Hgrid Task Summary which displays cost and effort information.
    VPBudgetTaskSumHgridVO.xml
    VPTaskHgridCO.class
    VPBudgetTaskSumAM.xml
    when I was looking into the committed cost logic, I noticed in VPBudgetTaskSumHgridVO.xml the query
    SUM(actual_mask * sup_inv_committed_cost) sup_inv_comm_cost, -- Supplier Invoices Commited Cost
    SUM(actual_mask * po_committed_cost) po_comm_cost, -- Purchase Orders Commited Cost
    SUM(actual_mask * pr_committed_cost) pr_comm_cost,
    SUM(actual_mask * oth_committed_cost) oth_comm_cost, -- Other Commited Costs
    SUM(actual_mask * (sup_inv_committed_cost + po_committed_cost + pr_committed_cost + oth_committed_cost)) tot_com_cost,  Total Commited Costs
    TO_NUMBER(NULL) tot_com_cost , -- Total Commited Costs
    though the total committed cost was hard coded to null and commented the actual logic here, in row class the logic was implemented as
    CommonUtils.divide(CommonUtils.add((Number)getAttributeInternal(112), CommonUtils.add((Number)getAttributeInternal(113), CommonUtils.add((Number)getAttributeInternal(111), (Number)getAttributeInternal(114)))), FACTOR);
    And calculation of committed cost depends on actual_mask
    as TO_NUMBER(DECODE(fct.plan_version_id, -1 , 1, NULL)) actual_mask
    I have couple of question,
    what this plan_version_id and why considering only -1 for actual_mask
    And, actually I was looking into task summary for Approved Budget Type but the plan_type_id is stored as -1 at the backed pji_fp_xbs_accum_f table for the project I was looking.
    And also in the same table pji_fp_xbs_accum_f the values for sup_inv_committed_cost, po_committed_cost and oth_committed_cost is null for the project.
    if anybody having any clue about this, please let me know.
    Thanks,
    Satya Nooker

  • Summary Detail Screens in one window using PanelSplitter

    Hi All,
    I'm using JDev 11, ADF BC, Windows XP(OS), IE 7.
    I would like to have a summary screen in first facet and detailed screen in the second facet.
    The dynamic search should be enabled in the summary screen. Onclick of a value in a options displayed in the summary,
    the detailed form for that screen should open in the second facet, that form should be editable.
    Assistance is appreciated...
    Thanks in advance...
    Jyothi

    hi,
    When i've used SelectOneCheckBox the concept of PPR works between facets(first and second).
    But when i used a table and try to show the values of one column in the selected row from the table it doesn't display the value.
    I've tried converting the value to String and then displaying it, but that doesn't work either.
    Now i would like to know is there a way to make a particular column variables as CommandLink and on click of
    that open the respective page in the Second facet.
    Jyothi

  • WLC 4404 - Not able to see the 802.11a/n AP summary details

    Hi Friends,
    I have a query related to wireless. I have multiple WLCs in my network. Recently I observed that in one WLC, in monitoring page while we checking the access point summary information, I can see in 802.11a/n Radios, 8 APs are down. And I tried to see those details by clicking the ‘detail’ option over there, but no result was displaying. Same I have checked in ‘Wireless’ tab as well but the result was same. We have total 69 APs associated with this WLC. AP Models which are associated with this WLC are AIR-LAP1231G-A-K9 & AIR-LAP1242AG-A-K9. Firmware version running in the WLC is 7.0.235.3 which is recently upgraded.
    Then I logged into multiple WLCs for checking the same. All these WLC are running with 7.0.116.0 code. In some APs I am able to see some AP information which is down for 802.11a/n Radios, for eg: if I have 18 APs down in a/n radio I can see 7 AP’s details. But can’t able to see all the AP information. For 802.11b/g/n Radios it is perfectly fine. And in these WLCs we have AIR-LAP1262N-N-K9 model also associated.
    And one thing I noticed here is the number of APs that I can see the details is exactly same as the number of AIR-LAP1262N-N-K9 model APs associated with that WLC.
    So can anyone confirm that the other 2 models won’t support a/n radios (hardware limitation) or is it any kind of bug in the firmware.
    My WLC models are AIR-WLC4404-100-K9 & WS-SVC-WISM-1-K9
    Thanks in advance for your time and response
    Regards,
    Anand

    Hi Leo,
    I am not able to identify the AP which are down for 802.11a/n radio :( (we are not using a/n radio in this location, that is why 8 out of 8 are showing down).

  • How to get the Summary details of jpg file like (title, subject, author)

    Hi All,
    Plz help me out of this Reading Windows file summary properties (title, subject, author) in Java.
    When select properties giing right click on the file after that window open with the three tabs containg General,Security,Summary.
    From the Summary tab i need to pull the data (title, subject, author) using Java api.
    Regards
    Ramesh

    I tried many ways using ImageIO, ImageReader
    ImageInputStream inStream = ImageIO.createImageInputStream(new File("E:\\Ramesh\\Blue hills.jpg"));
                   Iterator<ImageReader> imgItr = ImageIO.getImageReaders(inStream);
                   while (imgItr.hasNext())
                        ImageReader reader = imgItr.next();
                        reader.setInput(inStream, true);
                   String fm = reader.getFormatName();
                   System.out.println("format name : " + fm );
                   Raster raster = reader.readRaster(0, null);
                        IIOMetadata metadata = reader.getImageMetadata(0);
                        reader.getOriginatingProvider();
                        String[] names = metadata.getMetadataFormatNames();
                        int length = names.length;
                        for (int i = 0; i < length; i++)
                             System.out.println( "Format name: " + names[ i ] );
                        }

  • SAP Diagnostics Summary Details Issue

    Hi,
    I have Installed
    1. Loadrunner Controller 9.1
    2. SiteScope 9.0
    3. Diagnostics Server 7.0
    4. Diagnostics Collector 7.0
    on the Same Machine.
    I am doing performance testing for SAP R/3 Applications (ECC 6.0 to be precise)
    I am able to get data in SAP Diagnostics OS Monitor, Work Process and Average Response Time, but SAP Diagnostics Summary is not getting populated with any data. It is Empty.
    Please refer the attachment and kindly help me in resolving the issue.
    Thanks in advance,
    Regards,
    Chinnadurai R

    Hi Srinivasarao,
    Just now I had a chance to look into one ESS system and was able to figure out the SC name.
    The missing class:
    Caused by: java.lang.NoClassDefFoundError: com/sap/xss/per/model/mac/Hrxss_Per_Subtype_Info
    it belongs to ess~per, and this ess~per belongs to Software Component SAP_ESS.
    Please check the version of SAP_ESS.
    If the version is fine, please redeploy it.
    BR, Tom

  • Summary & detailed table usage flags in Des6iR2

    With the coming of the Dependency Analyzer it looks as if the CRUD table usage flags of modules have disappeared in the API.
    I want the definitions via reverse engineering of the usages of embedded SQL in pro-fortran modules in the repository 6iR2.
    In the migration manual (pg 88) it looks as if the detailed usage flags can not be imported out of release 1.3.2 Des/2000.
    Has somebody a solution ???

    With the coming of the Dependency Analyzer it looks as if the CRUD table usage flags of modules have disappeared in the API.
    I want the definitions via reverse engineering of the usages of embedded SQL in pro-fortran modules in the repository 6iR2.
    In the migration manual (pg 88) it looks as if the detailed usage flags can not be imported out of release 1.3.2 Des/2000.
    Has somebody a solution ???

  • Details or summary of transactions posted to secondary cost element

    we need the summary/details of cost posted to secondary cost element. From which table we will get this.
    Regards
    Abhay

    HI,
    TRY COEP & COSP table
    Vijay

  • I have updated to IOS7 in Iphone 5-Call Summary is not been displayed

    Hi Guys,
    Few days back,I have updated my IOS from 6 to IOS7 in Iphone 5.whenever I send a message or cut the call,Call summary details are not been displayed .
    In past I use to get the notification of call cost now I cant able to view the balance.
    Can any one help me why Iam not able to see this.Thanks In advance.
    Thanks & Regards,
    Krishna.

    Hello Sophia,
    Thank you for the details of the issue you are experiencing with iMessage.  If you are still experiencing the same issue, I recommend the following article:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Imitating the Predefined Text Item Details of Purchase Order in AddOn Form

    Hello Experts,
    I want to know if it is possible to imitate the Item Details features of SAP Purchase Order Form in my customised Form.
    Means :-
    In Purchase Order Form , when we enable the Item Details Column and while entering the data we double click on that column
    then a Row Details Text window appears and we can enter the Summary Details or even we can select the Predefined Text
    in the column .
    The same feature i want to use in my customised AddOn .
    How to do this one ??????
    Thanks ,
    Amit

    Hi Amit ,
    You can achive this by creating the UDO(User Defined Objects)
    Link: [url]  http://wiki.sdn.sap.com/wiki/display/B1/FAQ_sdk#FAQ_sdk-UDOTutorial
    Link: [url] Creating scrrens with ou UDO
    Thanks
    Shafi

  • Summary columns in portal forms

    i have a master-detail form and i need to sum(one of detail columns) and display the result in the master block.
    has anyone any ideas on how to have a summary column in master in oracle portal ?
    has anyone done this before ?
    thanx
    null

    Not exactly what you want, but I have managed to put a summary table at the end of the detail block. This gives a total for all detsail records for the current master, not just those displayed.
    Add a pl/sql block to the 'after displaying the page' section of the Additional PL/SQL code tab to run the code you need. THis pl/sql block will include the p_session.get_value function to get the identifier of the master record, a query on the detail table and the HTML code to display the results.
    Another method might be to create a view to contain the summary details you need for each master record, and base the master block on this view.

Maybe you are looking for