How to enable vat register tab in define reporting entities.

Hello All,
How to enable vat register tab in define reporting entities.
Navigation --> Italian AP Localizations --> EMEA vAT SETUP--> Define Reporting Entities .
Under EMEA VAT Reporting entities setup screen there are 3 tabs (configuration, Allocation rules, VAT Register).
We have to enable VAT Register..
Could you please help us on this.
Immediate response is highly appreciated.
Thanks
Vijayakumar

Hi,
1. Can you please check the method set_selection_mode in your context node implementation class?The code there should be along the foll lines:
IF iv_selection_mode IS INITIAL.
* multi select table if not specified otherwise
    CALL METHOD super->set_selection_mode
      EXPORTING
        iv_selection_mode = selmode_multiedit.
  ELSE.
    CALL METHOD super->set_selection_mode
      EXPORTING
        iv_selection_mode = iv_selection_mode.
  ENDIF.
2. You can set the selection mode as SELMODE_SINGLE or SELMODE_MULTI (depending on your requirement) via the DO_VIEW_INIT_ON_ACTIVATION method in the view controller impl class.
typed_context->result->set_selection_mode(
       iv_selection_mode = cl_bsp_wd_context_node_tv=>SELMODE_SINGLE ).
Regards,
Nisha

Similar Messages

  • How to enable Tasks mode tab in Oralce Depot Repair

    Want to create repair by using tasks.
    Please let me know how to enable Tasks mode tab in Oralce Depot Repair
    Ashish

    Look for a System Profile under CSD... there you should be able to setup the TASK mode for Depot Repair.
    Hope it helps.
    Jose

  • How to enable excel downloading in ALV grid report.

    Hi all,
    How to enable excal downing in ALV grid report?
    Thanks in Advance.
    Siva Sankar.

    hi
    check the following code
    Example of a Simple ALV Grid Report
    REPORT  ZTUFI091                                .
    *& Report  ZDEMO_ALVGRID                                               *
    *& Example of a simple ALV Grid Report                                 *
    *& The basic requirement for this demo is to display a number of       *
    *& fields from the EKKO table.                                         *
    *REPORT  zdemo_alvgrid                 .
    TABLES:     ekko.
    type-pools: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_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 t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
          gd_tab_group type slis_t_sp_group_alv,
          gd_layout    type slis_layout_alv,
          gd_repid     like sy-repid,
          gt_events     type slis_t_event,
          gd_prntparams type slis_print_alv.
    *Start-of-selection.
    START-OF-SELECTION.
    perform data_retrieval.
    perform build_fieldcatalog.
    perform build_layout.
    perform build_events.
    perform build_print_params.
    perform display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    form build_fieldcatalog.
    There are a number of ways to create a fieldcat.
    For the purpose of this example i will build the fieldcatalog manualy
    by populating the internal table fields individually and then
    appending the rows. This method can be the most time consuming but can
    also allow you  more control of the final product.
    Beware though, you need to ensure that all fields required are
    populated. When using some of functionality available via ALV, such as
    total. You may need to provide more information than if you were
    simply displaying the result
                  I.e. Field type may be required in-order for
                       the 'TOTAL' function to work.
      fieldcatalog-fieldname   = 'EBELN'.
      fieldcatalog-seltext_m   = 'Purchase Order'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 10.
      fieldcatalog-emphasize   = 'X'.
      fieldcatalog-key         = 'X'.
    fieldcatalog-do_sum      = 'X'.
    fieldcatalog-no_zero     = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-seltext_m   = 'PO Item'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-seltext_m   = 'Status'.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-seltext_m   = 'Item change date'.
      fieldcatalog-col_pos     = 3.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material Number'.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-seltext_m   = 'PO quantity'.
      fieldcatalog-col_pos     = 5.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-seltext_m   = 'Order Unit'.
      fieldcatalog-col_pos     = 6.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-datatype     = 'CURR'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-seltext_m   = 'Price Unit'.
      fieldcatalog-col_pos     = 8.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    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  DISPLAY_ALV_REPORT
          Display report using ALV grid
    form display_alv_report.
      gd_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
                i_callback_user_command = 'USER_COMMAND'
               i_grid_title           = outtext
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
               it_special_groups       = gd_tabgroup
                it_events               = gt_events
                is_print                = gd_prntparams
                i_save                  = 'X'
               is_variant              = z_template
           tables
                t_outtab                = it_ekko
           exceptions
                program_error           = 1
                others                  = 2.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    form data_retrieval.
    select ebeln ebelp statu aedat matnr menge meins netpr peinh
    up to 10 rows
      from ekpo
      into table it_ekko.
    endform.                    " DATA_RETRIEVAL
    Form  TOP-OF-PAGE                                                 *
    ALV Report Header                                                 *
    Form top-of-page.
    *ALV Header declarations
    data: t_header type slis_t_listheader,
          wa_header type slis_listheader,
          t_line like wa_header-info,
          ld_lines type i,
          ld_linesc(10) type c.
    Title
      wa_header-typ  = 'H'.
      wa_header-info = 'EKKO Table Report'.
      append wa_header to t_header.
      clear wa_header.
    Date
      wa_header-typ  = 'S'.
      wa_header-key = 'Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
                   sy-datum(4) INTO wa_header-info.   "todays date
      append wa_header to t_header.
      clear: wa_header.
    Total No. of Records Selected
      describe table it_ekko lines ld_lines.
      ld_linesc = ld_lines.
      concatenate 'Total No. of Records Selected: ' ld_linesc
                        into t_line separated by space.
      wa_header-typ  = 'A'.
      wa_header-info = t_line.
      append wa_header to t_header.
      clear: wa_header, t_line.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
           exporting
                it_list_commentary = t_header.
               i_logo             = 'Z_LOGO'.
    endform.
          FORM USER_COMMAND                                          *
          --> R_UCOMM                                                *
          --> RS_SELFIELD                                            *
    FORM user_command USING r_ucomm LIKE sy-ucomm
                      rs_selfield TYPE slis_selfield.
    Check function code
      CASE r_ucomm.
        WHEN '&IC1'.
      Check field clicked on within ALVgrid report
        IF rs_selfield-fieldname = 'EBELN'.
        Read data table, using index of row user clicked on
          READ TABLE it_ekko INTO wa_ekko INDEX rs_selfield-tabindex.
        Set parameter ID for transaction screen field
          SET PARAMETER ID 'BES' FIELD wa_ekko-ebeln.
        Sxecute transaction ME23N, and skip initial data entry screen
          CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
        ENDIF.
      ENDCASE.
    ENDFORM.
    *&      Form  BUILD_EVENTS
          Build events table
    form build_events.
      data: ls_event type slis_alv_event.
      call function 'REUSE_ALV_EVENTS_GET'
           exporting
                i_list_type = 0
           importing
                et_events   = gt_events[].
      read table gt_events with key name =  slis_ev_end_of_page
                               into ls_event.
      if sy-subrc = 0.
        move 'END_OF_PAGE' to ls_event-form.
        append ls_event to gt_events.
      endif.
        read table gt_events with key name =  slis_ev_end_of_list
                               into ls_event.
      if sy-subrc = 0.
        move 'END_OF_LIST' to ls_event-form.
        append ls_event to gt_events.
      endif.
    endform.                    " BUILD_EVENTS
    *&      Form  BUILD_PRINT_PARAMS
          Setup print parameters
    form build_print_params.
      gd_prntparams-reserve_lines = '3'.   "Lines reserved for footer
      gd_prntparams-no_coverpage = 'X'.
    endform.                    " BUILD_PRINT_PARAMS
    *&      Form  END_OF_PAGE
    form END_OF_PAGE.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      write: sy-uline(50).
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    *&      Form  END_OF_LIST
    form END_OF_LIST.
      data: listwidth type i,
            ld_pagepos(10) type c,
            ld_page(10)    type c.
      skip.
      write:/40 'Page:', sy-pagno .
    endform.
    hope it will help you
    regards
    sreelatha gullapalli

  • How to enable Billing plan tab in sales order (lean) with NWBC

    Dear All,
    The Billing plan tab in sales order (lean) is not availabe with NWBC. How to enable this tab?
    Is there is any documentation to do the modifications of NWBC's webdynpro screens?
    for example, there is a standard webdynpro screen in NWBC from SAP best practices to create sales order (lean). The lean sale order screen having restricted elements and tabs when compare with standard SAP GUI (t code va01).
    So I want to include the few missing tabs for data entry.
    any documentation or solution?
    thanks in advance,
    Suresh Yerra.

    Dear All,
    Is there is any documentation to do the modifications of NWBC's webdynpro screens?
    for example, there is a standard webdynpro screen in NWBC from SAP best practices to create sales order (lean). The lean sale order screen having restricted elements and tabs when compare with standard SAP GUI (t code va01).
    So I want to include the few missing tabs for data entry.
    any documentation or solution?
    Thanks,
    Suresh Yerra.

  • How to enable the prebooking tab in ESS

    Hi,
    In our environment, the prebooking tab is disabled in ESS. Please advise how to enable this tab. Where to do this configuration (e.g. in ESS or R/3)
    Regards,
    Tony

    Hi Tony,
    Please refer to the 2 notes below for some information on prebooking in ESS
    593044:  PV7I/PV8I: Documentation of the prebooking functions
    576203:  ESS: Activation of the prebooking in the Training
    Hope this help
    Sarah

  • How to enable MUltiple asset tab in T.code ABT1N

    Hi,
    We need to transfer assets from company 1 to company 2 and we are using the T.code ABT1n for this is intercompany transfer.
    1.I want to know how to enable the Multiple assets tab in T.code ABT1N
    2.Then when I transfer of 1 asset  with( NO REVENUE) I am receiving an error that DATA INCONSISTENCY: NO REVENUE ENTERED.
    3.Third point is when I Transfer of 1 asset (WITH REVENU) I get the following error like ACCOUNT CLEAR>REVENUE SALE TO AFFILIATED COMPANY COULD NOTBE FOUND>
    Can someone who is expert in this area can help me out.
    Thanks in advance

    I wonder as well if you found out an answer?
    Best regards, Johanna

  • How to enable show SQL Query in Crystal report tool

    Hi,
    How can we enable the show SQL Query under Database tab in crystal report...
    We have a requirement to modify the SQL query in Crystal reports.
    Thanks,
    Gana

    Gana,
    CR has an "Add Command" feature that will allow you to use hand-coded SQL as your data source.
    Look at Defining an SQL Command in CR's online help (F1).
    If a command was used in the original report creation, it's a simple matter to go in and edit that SQL.
    If the report was not originally built w/ a Command you may find it difficult to switch over. In most cases it easier to start over from scratch, creating a new, blank report, that uses the command.
    Jason

  • How to enable Business Objects Inbox to receive reports?

    How can I enable Business Objects inbox to receive report?
    I can schedule or send report to a recipient without error, however, if I log into system as the receipient, I could not find the report in the inbox.
    Any solutions?

    Hi Simon,
    The report is not sent because of missing rights on the report or the Inbox.
    You can check this article to get minimum rights required to send to Inbox : 1612499 - What are the minimum rights required to be able to send a report object to another user's inbox on BI Launch Pad?
    I hope this helps.
    Regards,
    Yosra

  • How to enable Operating Unit in concurrent program report request

    I am using R12 and need to make user enable to choose an operating unit while submitting a concurrent program report request.
    Example: Receipt Accural - Period End report is allowing to choose operating unit but other report are not.
    My question is:
    1) How to enable operating unit in concurrent program request?
    2) How to replace CLIENT_INFO statement in reports query? How 'selected operating unit' info will be passed to report?
    Thanks and regards,

    Hi,
    I guess it will passed same way as other parameters in any concurrent program. The user will provide a value in the organization parameter, and the definition of the report will have a query similar to this:
    SELECT *******
    FROM *******
    WHERE ******
    AND org_id = &p_org_id
    WHERE p_org_id would be the operating unit id provided by the user.
    Hope it helps.

  • How to enable Firefox 'new tab' feature.

    So I ended up downloading something and it changed my 'new tab' look. Before it was Firefox's feature of showing the thumbnails for my most visited sites and I had all of my school work shortcuts pinned on there and i want it back! I can only find advice on how to disable it but not to enable it or turn it back on. Please help. I want this feature back! Thanks in advance :(

    hello, this sounds like a problem possibly caused by adware on your pc.
    please go to the firefox ''menu ≡ > addons > extensions'' & remove any suspicious entries (toolbars, things that you have not installed intentionally, don't know what purpose they serve, etc).
    also go to the windows control panel / programs and remove all toolbars or potentially unwanted software from there.
    finally, run a full scan of your system with different security tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes] & [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner].
    [[Remove a toolbar that has taken over your Firefox search or home page]]
    [[Troubleshoot Firefox issues caused by malware]]

  • How to enable Account assignment tab in CCM SRM 7.0

    Dear SRM Gurus,
    We have requirement to activate account assignment tab in Item level of Central Contract management in SRM 7.0
    Regards,
    Vinod

    Hi ,
      Check in META configuration  field control -> actions -> sub structures
    regards,
    Devi

  • How to enable the variant button in my report

    Hi experts,
    How can I enable the variant button at the top menu bar of my report?

    Hi Miv,
    In the above post of mine I didn't give info. on creating variant.
    Here is how to create a variant:
    On the Selection screen after giving INPUT. <b>Just press ctrl+S</b>.
    to create a variant.Give the variant name and save it.
    <b>
    Reward all helpful answers</b><b>
    One request, i.e., don't forget to close the thread by giving points if your problem.</b>
    Regards,
    V.raghavender.

  • How to enable tasks mode in Depot Repair.

    Want to use task mode tab in oracle.
    How to enable it. Is there any profile option?
    Ashish

    Ashish_Inda_99 wrote:
    Want to use task mode tab in oracle.
    How to enable it. Is there any profile option?
    AshishPlease don't post duplicates -- How to enable Tasks mode tab in Oralce Depot Repair

  • How to enable purchasing tab in BOM, while defining bom for a item

    dear gurus,
    while defining a bom for a item, there ae various tabs like main, effectivity, OM etc. among that purchasing tab is in disabled state. how to enable that.
    pls provide setup and whats actual use of that.
    waiting fr reply.

    Dear,
    For a phantom assy the special procurement key in the material master should be 50. You have done the right thing.
    But in the BOM of FERT please remove the phantome assy Off indicator. Once you maintained the special procurement key 50 in material master, the phantom indicator will be acutomatically set in the high level bom.
    Hence if you activate the phantom assy off then this will override the phantom indicator
    For more understanding please see trhe below links
    http://www.sap-img.com/production/what-exactly-is-a-phantom-item-or-assembly-means.htm
    Regards,
    R.Brahmankar

  • How to enable Design tab in jdeveloper 11.1.1.5.0

    Hi ,
    I am creating the SelfRegistration work-flow.While opening the xml files in the jdev,the design tab is not there.Only source and history tabs are there.how to enable that one.
    Pls anyone suggest me ...
    Jdeveloper version-11.1.1.5.0
    Regards,
    Deena.

    well user,
    why are you creating such duplicate.
    Re: Unable to find Design tab in jdeveloper 11.1.1.5.0
    well our discussion is going on above thread.. but why are switch another thread.

Maybe you are looking for