Sub Headings in Excel Layout

Hi,
I am using key figures in Lead column,I would like to have sub heading in between the key figures, I tried in last screen of layout but its not saving. Can anyone help me out please.
My requirement
Revenue(key figure)
Grosmargin(KF)
REVENUE DRIVERS( Sub Headings)
Volume adjsutment(KF)
Price Adjustment(KF)
FORECAST BUSINESS( Sub Headings)
KF
KF
Thanks in Advance
Imran

what do you mean "char as comparison"
If you select key figure in kea column, you can add also a char to the key column (first page of layout builder)
Then you got to the second page and for each key column-line you have to select the key figure and a value of the char.
If you use a char that ist normally restricted in header to a single value, you could put this one into the key column, restrict it to the single value again for your writeable key figures and for the empty line you select a value, that does not bring any values, giv the line a nice name and you should be done with it.
It works like restricted key figures in reporting.
Cornelia
Message was edited by:
        Cornelia Lezoch

Similar Messages

  • Change Headings in Excell sheet in BSP Layout

    Hi,
    How to Change Headings in Excell sheet in BSP Layout?
    Thanks
    Srinivas

    Hi Anhubav,
    R/3 data sent to BW report -> excell sheet displaying in Bps layout in BSP Layout using Java script code Excell sheet layout headings are how to find out
    Thanks
    Srinivas

  • ALV Grid to hold sub headings

    Hi,
    Can any one tell me  about the possibility to display sub headings for an ALV grid control i.e to have a group of columns under one column similar to the feature in excel?
    Regards,
    Sujatha

    Hi Sujatha, also check this code.
    REPORT ZALV5_OBJECTS.
    TABLES : EKKO.
    TYPE-POOLS : SLIS.
    TYPES : BEGIN OF TY_EKKO,
    EBELN TYPE EKPO-EBELN,
    EBELP TYPE EKPO-EBELP,
    STATU TYPE EKPO-STATU,
    AEDAT TYPE EKPO-AEDAT,
    MATNR TYPE EKPO-MATNR,
    MENGE TYPE EKPO-MENGE,
    MEINS TYPE EKPO-MEINS,
    NETPR TYPE EKPO-NETPR,
    PEINH TYPE EKPO-PEINH,
    END OF TY_EKKO.
    DATA: IT_EKKO TYPE STANDARD TABLE OF TY_EKKO INITIAL SIZE 0,
    IT_EKPO TYPE STANDARD TABLE OF TY_EKKO INITIAL SIZE 0,
    IT_EMPTYTAB TYPE STANDARD TABLE OF TY_EKKO INITIAL SIZE 0,
    WA_EKKO TYPE TY_EKKO,
    WA_EKPO TYPE TY_EKKO.
    DATA: OK_CODE LIKE SY-UCOMM, "OK-Code
    SAVE_OK LIKE SY-UCOMM.
    *ALV data declarations
    DATA: FIELDCATALOG TYPE LVC_T_FCAT WITH HEADER LINE.
    DATA: GD_FIELDCAT TYPE LVC_T_FCAT,
    GD_TAB_GROUP TYPE SLIS_T_SP_GROUP_ALV,
    GD_LAYOUT TYPE SLIS_LAYOUT_ALV.
    *ALVtree data declarations
    CLASS CL_GUI_COLUMN_TREE DEFINITION LOAD.
    CLASS CL_GUI_CFW DEFINITION LOAD.
    DATA: GD_TREE TYPE REF TO CL_GUI_ALV_TREE,
    GD_HIERARCHY_HEADER TYPE TREEV_HHDR,
    GD_REPORT_TITLE TYPE SLIS_T_LISTHEADER,
    GD_LOGO TYPE SDYDO_VALUE,
    GD_VARIANT TYPE DISVARIANT.
    *Create container for alv-tree
    DATA: GD_TREE_CONTAINER_NAME(30) TYPE C,
    GD_CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    *Includes
    *INCLUDE ZDEMO_ALVTREEO01. "Screen PBO Modules
    *INCLUDE ZDEMO_ALVTREEI01. "Screen PAI Modules
    *INCLUDE ZDEMO_ALVTREEF01. "ABAP Subroutines(FORMS)
    *Start-of-selection.
    START-OF-SELECTION.
    ALVtree setup data
    PERFORM DATA_RETRIEVAL.
    PERFORM BUILD_FIELDCATALOG.
    PERFORM BUILD_LAYOUT.
    PERFORM BUILD_HIERARCHY_HEADER CHANGING GD_HIERARCHY_HEADER.
    PERFORM BUILD_REPORT_TITLE USING GD_REPORT_TITLE GD_LOGO.
    PERFORM BUILD_VARIANT.
    Display ALVtree report
    CALL SCREEN 100.
    *& Form data_retrieval
    text
    --> p1 text
    <-- p2 text
    FORM DATA_RETRIEVAL .
    SELECT EBELN
    UP TO 10 ROWS
    FROM EKKO
    INTO CORRESPONDING FIELDS OF TABLE IT_EKKO.
    LOOP AT IT_EKKO INTO WA_EKKO.
    SELECT EBELN EBELP STATU AEDAT MATNR MENGE MEINS NETPR PEINH
    FROM EKPO
    APPENDING TABLE IT_EKPO
    WHERE EBELN EQ WA_EKKO-EBELN.
    ENDLOOP.
    ENDFORM. " data_retrieval
    *& Form build_fieldcatalog
    text
    --> p1 text
    <-- p2 text
    FORM BUILD_FIELDCATALOG .
    Please not there are a number of differences between the structure of
    ALVtree fieldcatalogs and ALVgrid fieldcatalogs.
    For example the field seltext_m is replace by scrtext_m in ALVtree.
    FIELDCATALOG-FIELDNAME = 'EBELN'. "Field name in itab
    FIELDCATALOG-SCRTEXT_M = 'Purchase Order'. "Column text
    FIELDCATALOG-COL_POS = 0. "Column position
    FIELDCATALOG-OUTPUTLEN = 15. "Column width
    FIELDCATALOG-EMPHASIZE = 'X'. "Emphasize (X or SPACE)
    FIELDCATALOG-KEY = 'X'. "Key Field? (X or SPACE)
    fieldcatalog-do_sum = 'X'. "Sum Column?
    fieldcatalog-no_zero = 'X'. "Don't display if zero
    APPEND FIELDCATALOG TO GD_FIELDCAT.
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'EBELP'.
    FIELDCATALOG-SCRTEXT_M = 'PO Iten'.
    FIELDCATALOG-OUTPUTLEN = 15.
    FIELDCATALOG-COL_POS = 1.
    APPEND FIELDCATALOG TO GD_FIELDCAT..
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'STATU'.
    FIELDCATALOG-SCRTEXT_M = 'Status'.
    FIELDCATALOG-OUTPUTLEN = 15.
    FIELDCATALOG-COL_POS = 2.
    APPEND FIELDCATALOG TO GD_FIELDCAT..
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'AEDAT'.
    FIELDCATALOG-SCRTEXT_M = 'Item change date'.
    FIELDCATALOG-OUTPUTLEN = 15.
    FIELDCATALOG-COL_POS = 3.
    APPEND FIELDCATALOG TO GD_FIELDCAT..
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'MATNR'.
    FIELDCATALOG-SCRTEXT_M = 'Material Number'.
    FIELDCATALOG-OUTPUTLEN = 15.
    FIELDCATALOG-COL_POS = 4.
    APPEND FIELDCATALOG TO GD_FIELDCAT..
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'MENGE'.
    FIELDCATALOG-SCRTEXT_M = 'PO quantity'.
    FIELDCATALOG-OUTPUTLEN = 15.
    FIELDCATALOG-COL_POS = 5.
    APPEND FIELDCATALOG TO GD_FIELDCAT..
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'MEINS'.
    FIELDCATALOG-SCRTEXT_M = 'Order Unit'.
    FIELDCATALOG-OUTPUTLEN = 15.
    FIELDCATALOG-COL_POS = 6.
    APPEND FIELDCATALOG TO GD_FIELDCAT..
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'NETPR'.
    FIELDCATALOG-SCRTEXT_M = 'Net Price'.
    FIELDCATALOG-OUTPUTLEN = 15.
    FIELDCATALOG-COL_POS = 7.
    FIELDCATALOG-DATATYPE = 'CURR'.
    APPEND FIELDCATALOG TO GD_FIELDCAT..
    CLEAR FIELDCATALOG.
    FIELDCATALOG-FIELDNAME = 'PEINH'.
    FIELDCATALOG-SCRTEXT_M = 'Price Unit'.
    FIELDCATALOG-OUTPUTLEN = 15.
    FIELDCATALOG-COL_POS = 8.
    APPEND FIELDCATALOG TO GD_FIELDCAT..
    CLEAR FIELDCATALOG.
    ENDFORM. " build_fieldcatalog
    *& Form build_layout
    text
    --> p1 text
    <-- p2 text
    FORM BUILD_LAYOUT .
    GD_LAYOUT-NO_INPUT = 'X'.
    GD_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    GD_LAYOUT-TOTALS_TEXT = 'Totals'(201).
    gd_layout-totals_only = 'X'.
    gd_layout-f2code = 'DISP'. "Sets fcode for when double
    "click(press f2)
    gd_layout-zebra = 'X'.
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text = 'helllllo'
    ENDFORM. " build_layout
    *& Form build_hierarchy_header
    text
    <--P_GD_HIERARCHY_HEADER text
    FORM BUILD_HIERARCHY_HEADER CHANGING
    P_HIERARCHY_HEADER TYPE TREEV_HHDR.
    P_HIERARCHY_HEADER-HEADING = 'Hierarchy Header'(013).
    P_HIERARCHY_HEADER-TOOLTIP = 'This is the Hierarchy Header !'(014).
    P_HIERARCHY_HEADER-WIDTH = 30.
    P_HIERARCHY_HEADER-WIDTH_PIX = ''.
    ENDFORM. " build_hierarchy_header
    *& Form build_report_title
    text
    -->P_GD_REPORT_TITLE text
    -->P_GD_LOGO text
    FORM BUILD_REPORT_TITLE USING PT_REPORT_TITLE TYPE SLIS_T_LISTHEADER
    P_GD_LOGO TYPE SDYDO_VALUE.
    DATA: LS_LINE TYPE SLIS_LISTHEADER,
    LD_DATE(10) TYPE C.
    List Heading Line(TYPE H)
    CLEAR LS_LINE.
    LS_LINE-TYP = 'H'.
    ls_line-key "Not Used For This Type(H)
    LS_LINE-INFO = 'PO ALVTree Display'.
    APPEND LS_LINE TO PT_REPORT_TITLE.
    Status Line(TYPE S)
    LD_DATE(2) = SY-DATUM+6(2).
    LD_DATE+2(1) = '/'.
    LD_DATE3(2) = SY-DATUM4(2).
    LD_DATE+5(1) = '/'.
    LD_DATE+6(4) = SY-DATUM(4).
    LS_LINE-TYP = 'S'.
    LS_LINE-KEY = 'Date'.
    LS_LINE-INFO = LD_DATE.
    APPEND LS_LINE TO PT_REPORT_TITLE.
    Action Line(TYPE A)
    CLEAR LS_LINE.
    LS_LINE-TYP = 'A'.
    CONCATENATE 'Report: ' SY-REPID INTO LS_LINE-INFO SEPARATED BY SPACE.
    APPEND LS_LINE TO PT_REPORT_TITLE.
    ENDFORM. " build_report_title
    *& Form build_variant
    text
    --> p1 text
    <-- p2 text
    FORM BUILD_VARIANT .
    Set repid for storing variants
    GD_VARIANT-REPORT = SY-REPID.
    ENDFORM. " build_variant
    cheers,
    Hema.

  • Column Heading in Excel layout coming to Second Line

    Hi All,
    I am doing an excel Layout using Report Builder 6i. There in excel layout output,
    the cloumn headings are coming in two lines. I mean headings for few last columns are getting wrapped to second line, though corresponding data is coming
    correctly.
    Please help me over this if anyone had faced the same problem...
    Thanks in Advance

    You need to make sure that your column headings in Reports have no 'returns' in them. The text should be all on one line and the text in the layout editor should be no 'taller' than 1 line. Your frame around the column headings should also be no 'taller' than 1 line.
    Hope this helps!!

  • Error displaying data in Excel Layout of ALV

    Hi,
    I am trying to display ALV data in a Excel layout. After changing the layout i am not able to view the data, rather the excel template is alone displayed.
    Is there setting that i am supposed. I did not try this on a  custom report but i used SE16 to display data.
    Any help will be really appreciated!!!
    Thanks in advance,
    Kathirvel

    Hi,
    Please make sure that you have made a <b>global</b>
    <b>declaration</b> for the ALV Grid control.If not try
    with this
    Please reward points if this explanation is useful.
    Regards,
    Siva

  • Cost center planning with excel layout on office 2010

    Hi all,
    I work with excel intergration on transaction KP06 (Release office 2010). I want to save the excel layout as a template for a later upload. In office 2003 I had in the SAP integrated excel menu a function "copy save as".
    In Office 2010 I don't find this or a similar function.
    Can anyone help me.
    Kind regards
    Jürgen

    Hi,
        This is explained in note 1408098
    regards
    Waman

  • Reg:Headings in Excel sheet

    Hi all,
    How to place headings in Excel sheet when we are downloading
    the item details. Can any one help me to resolve this problem.

    Hi Radhika ,
    Try like this
    PARAMETERS : p_dload TYPE rlgrap-filename.
    DATA : w_dload TYPE string.
    TYPES : BEGIN OF ty_kna1,      " structure
            kunnr TYPE kna1-kunnr,
            name1 TYPE kna1-name1,
            ort01 TYPE kna1-ort01,
            land1 TYPE kna1-land1,
            END OF ty_kna1.
    TYPES : BEGIN OF ty_head,      " structure
            kunnr(20),
            name1(20),
            ort01(20),
            land1(20),
            END OF ty_head.
    DATA :  it_kna1 TYPE TABLE OF ty_kna1.  "table to download records
    DATA : wa_hedtab TYPE ty_head,
           it_hedtab TYPE TABLE OF ty_head. " table for heading
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_dload.
      PERFORM f_dload.
    START-OF-SELECTION.
      PERFORM f_header.
      PERFORM f_extract.
      PERFORM f_download.  " download file to presentation server
    *&      Form  f_dload
    FORM f_dload .
      CALL FUNCTION 'F4_FILENAME'
    * EXPORTING
    *   PROGRAM_NAME        = SYST-CPROG
    *   DYNPRO_NUMBER       = SYST-DYNNR
    *   FIELD_NAME          = ' '
        IMPORTING
          file_name           = p_dload
    ENDFORM.                    " f_dload
    *&      Form  f_extract
    FORM f_extract .
      SELECT kunnr
              name1
              ort01
              land1 FROM kna1 INTO TABLE it_kna1 .
    ENDFORM.                    " f_extract
    *&      Form  f_download
    FORM f_download .
      w_dload = p_dload.
      CALL FUNCTION 'GUI_DOWNLOAD'           " downloading header here
          EXPORTING
    *   BIN_FILESIZE                    =
            filename                        = w_dload
         filetype                        = 'ASC'
    *   APPEND                          = ' '
         write_field_separator           = 'X'
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
          TABLES
            data_tab                        = it_hedtab
    *   FIELDNAMES                      =
       EXCEPTIONS
         file_write_error                = 1
         no_batch                        = 2
         gui_refuse_filetransfer         = 3
         invalid_type                    = 4
         no_authority                    = 5
         unknown_error                   = 6
         header_not_allowed              = 7
         separator_not_allowed           = 8
         filesize_not_allowed            = 9
         header_too_long                 = 10
         dp_error_create                 = 11
         dp_error_send                   = 12
         dp_error_write                  = 13
         unknown_dp_error                = 14
         access_denied                   = 15
         dp_out_of_memory                = 16
         disk_full                       = 17
         dp_timeout                      = 18
         file_not_found                  = 19
         dataprovider_exception          = 20
         control_flush_error             = 21
         OTHERS                          = 22
      IF sy-subrc  NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'GUI_DOWNLOAD'     "-----> downloading data here
        EXPORTING
    *   BIN_FILESIZE                    =
          filename                        = w_dload
       filetype                        = 'ASC'
       append                          = 'X'
       write_field_separator           = 'X'
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
        TABLES
          data_tab                        = it_kna1
    *   FIELDNAMES                      =
    EXCEPTIONS
       file_write_error                = 1
       no_batch                        = 2
       gui_refuse_filetransfer         = 3
       invalid_type                    = 4
       no_authority                    = 5
       unknown_error                   = 6
       header_not_allowed              = 7
       separator_not_allowed           = 8
       filesize_not_allowed            = 9
       header_too_long                 = 10
       dp_error_create                 = 11
       dp_error_send                   = 12
       dp_error_write                  = 13
       unknown_dp_error                = 14
       access_denied                   = 15
       dp_out_of_memory                = 16
       disk_full                       = 17
       dp_timeout                      = 18
       file_not_found                  = 19
       dataprovider_exception          = 20
       control_flush_error             = 21
       OTHERS                          = 22
      IF sy-subrc  NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " f_download
    *&      Form  f_header
    FORM f_header .
      wa_hedtab-kunnr = 'Customer No'.
      wa_hedtab-name1 = 'Name'.
      wa_hedtab-ort01 = 'city'.
      wa_hedtab-land1 = 'Country'.
      APPEND wa_hedtab TO it_hedtab.
    ENDFORM.                    " f_header
    Thanks & Regards

  • Hiding row and column headings in excel

    How do I head the row and column headings in excel in docs to go?  I have a Q10 and there just isn't enough screen space to also have the letters across the top, and the numbers down the side.  How do I get rid of them so I just have the actual spreadsheet itself?
    Desktop excel does have this functionality.
    David

    Choose Freeze Header Rows in the Table Format pane.
    Jerry

  • Sub-headings in the alv grid

    hi friends,
    I have to use sub-headings in the grid display.
    please help me how to use the function  REUSE_ALV_HIERSEQ_LIST_DISPLAY
    for that.
    !  vendors from gujarat                 !      vendor from outof guj.           !
    !  amount ! tax ! Discount !  Total !   amount ! tax ! Discount !  Total !
    Please help.
    thanks

    https://forums.sdn.sap.com/click.jspa?searchID=20825514&messageID=6822637
    Check this.
    hope it helps.

  • Validate mandatory field in BPS Excel layout

    Hi Sdner
    In my BPS Excel layout i want to have some characteristic as mandatory.If i don't put any value for them system will put a # by default which i don't want. system should prompt a error message that particular field is mandatory and enter some value. I can check this thru planning function(FOX) but the problem is all characteristics in that row will greyed out after function execution and hence can't be changed by user.
    Does somebdy know if there is any workaround to solve this ?
    Thanks
    Tripple k

    Hi Tarun
    Use XL macros to validate data in a column.
    When macro executes it first unprotect the worksheet,then we have our custom code for validation and error message, after that it is followed by a  protect sheet command.
    My Prob is that if error is there in any field raised by macro, user should be able to edit those fields but as we are protecting our worksheet in macro, editing is not possible.
    I can't unprotect the worksheet because then user can change anything.
    +Use a read function module on planning layout. While you are in layout change mode use lbexit_fm as a transaction code. You can read data from planning layout and write validation code and error message in ABAP function module.+_
    I  used this Tcode and FM, but they are ment to read Non SAP area of Excel sheet. The actual layout(Data Record)(SAP Area) which we want to read is not coming in internal table while executing FM.
    On Execution it is saying that reading and writing on SAP protected data is not allowed.
    If you have done any of these workaround then can you please put some more lights on this ?
    Thanks
    Tripple k

  • Sub headings in ALV Grid

    Hi,
    How to display sub headings in alv grid
    output format should be:
    <COL_HEADING1>                      <COL_HEADING2>
    <SUB_HEADING1> <SUB_HEADING2> <SUB_HEADING1><SUB_HEADING2>
    and i want separate templet with side headings?
    could you tell me grid supports this?
    thanks in advance
    cheers
    srini

    Hi Srinivas,
    Look ALV grid Multiple Header ... ? which has got a slightly more comprehensive information
    Regards,
    Anand Mandalika.

  • Regarding sub headings in ALV

    Hello Experts,
                             I am preparing a ALV report in that i want to display fields in a such a way that
    under a heading i need to have two sub headings ie, for example under a material heading
    i need to display material no and code as separate coloumn but both should look like
    single coloumn under heading Material.

    Hi Dude,
    For first header
    wa_hader-type = 'H'.
    wa_hader-info = 'Main Headding'.
    append wa_heaer to it_header.
    For Sub header
    wa_hader-type = 'S'.
    wa_hader-info = Sub Headding1.
    append wa_heaer to it_header.
    Finally call the function module
    Reuse_Alv_commentray_write function module
    then pass the parameter
    exporting
    it_list_commentary = it_header.
    Try this
    Hope it will work....
    Thanks & Regards
    Ramakrishna Pathi

  • Row text Visible in Excel layout but missing in Web layout

    Hi,
    My row text is visible in Excel layout but it is missing in web layout. Only the first row is missing text while the other rows are showing
    The planning layout that I am using is also used in another web layout but I don't have same issue.
    I have tried to the following.
    - Retransport the layout
    - delete the row and recreate it
    but the issue is still the same.
    thanks

    found a work around solution to resolve it.

  • Interactive sub headings back and forth

    Dear All,
    I'm working on an ePub in InDesign CC and have chapter headings with sub headings under them.  I would like people to be able to tap a sub-heading and jump ahead to that page with an interactive hyperlink, and I have successfully incorporated that interaction.  Now I want my reader to be able to jump back to the sub-headings list so that they can choose another sub heading and jump ahead to that page, but I can't seem to do that.  How can I accomplish a back and forth interaction from sub-heading list to heading and then back to sub-heading list?  I've tried cross reference, but I don't think that's what I need to accomplish this task.  Thanks.
    Small Town Gal

    Dear Ariel,
    InDesign CC seems more than a little quirky in this procedure, but I was finally able to get it to work.  I have created my own website with Dreamweaver and have used hyperlinks in PDFs, so I am familiar with how to use them, but for some reason they sometimes don't show up in the hyperlinks panel in InDesgn CC after they are created, or the "reset" button doesn't clear up any errors.   Deleting and re-creating seemed to be the only solution for one particular link, because it kept locating the wrong link rather than the one that I wanted.  I finally got it cleared out and now everything works as I planned.
    Also, I am working with an ePub, not a PDF.  I find the PDFs easier to work with, although I realize that both PDF and ePub can be exported from the same document,  but I'm slogging my way through.  From past experience, it seemed to me that a two-way hyperlink should work, but it took me a bit of trying to find the correct combinations to accomplish it!  Thanks again.
    Small Town Gal

  • Modeling BPS excel layout

    Hello,
    Could anybody explain me, how can i insert into BPS excel layout excel and Visual Basic functionality (buttons, graphics, formulas)?
    All my worksheet's rows are locked.
    Could you send me docs about SEM BPS modeling?
    Thanks in advance.
    Best Regards,
    Arunas Stonys

    Hello Arunas,
    you can make your changes on the third screen of the layout builder; if you save the planning layout these changes will be saved in the Excel template of the planning layout.
    Usually (dependind on the changes) it may be more convenient to download a copy of the master template and implement your changes there. Then you can checking the Excel file as an Excel template for the planning layout, e.g. with report UPP_LAYOUT_CHECKIN, cf. note 428092.
    Be careful with data in the Excel template: In the 'SAP area' the Excel templates contains no data (the dummy data
    you see in the third screen of the layout builder will be cleared when you save the layout). Data in the SAP area will be overwritten at run time with transaction data, but the size of the SAP area (e.g. the number of used rows) of course depends on the transaction data.
    Regards,
    Gregor

Maybe you are looking for