Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 

Deep Insert oData


Steps:

  1. Go to T-Code “SEGW” (ECC Server).

  2. Click on ‘Create Project’. The below pop-up window will appear. Enter Project Name, Description and assign the project to a Package.




  1. Click on execute button.  A project named ‘ZSL_SER_GRP_REP_TOTAL’ will be created.


 

  1. Select the project name and click on save button. The below pop-up window will appear. Select the WB request or create a new one.


 

  1. Click on execute button to save the project in the selected/created WB request.

  2. Create Entity Type:

    • Right click on ‘Data Model’ in the project. Hover on ‘Import’ from the drop down menu and click on RFC/BOR Interface’. The below pop-up wizard will open.

    • Enter the Entity Type Name for the Import/export parameters of the API, Type as ‘Remote Function Call’ and the Name of the API for which the service needs to be created. Check the ‘Create Default Entity Set’ parameter and click on Next Button.

    • Check the required properties individually for particular Import/Export parameters of the API and click on Next Button.

    • Check the column ‘Is Key’ for the properties you want and click on Finish Button.

    • The above capture shows the created Entity Type as ‘ET_REP_UNIT’. Create remaining Entity Types of the Import/Export parameters. Create one Entity Type for Each Structure of the API. Once all the Entity Types have been created, the project will look like below screen with Entity sets populated for each Entity Type.

    • After clicking on the finish button in the Step – iv, there may be few warnings that can pop-up. The below screen shows those warnings.

    • Double click on the above selected warning to get the below ‘edit-properties’ screen.

    • Click on the highlighted red box button to edit that particular property.

    • Change the Category to ‘Internal Type’, Type Kind to ‘CHAR’ and Length equal to the assigned length of the field in the API. Press on continue button.

    • The warning should go off. Do the same for any other similar warnings. Now, double click on the highlighted warning(This is a different kind of warning)

    • Follow the same procedure as did before after clicking on the red box.

    • Change the Edm Type of the selected property from Edm.Decimal to Edm.String and enter Max as the length defined for this field in the API. Make Precision and Scale to zero. Click on ‘Check Project Consistency’ button to see if the project so far is built with no errors.





  1. Create Associations:




  •  Double click on ‘Associations’.

  •  Click the Add button to add the rows.

    • Add rows equal to the number of Entity types created.

    • Create a self-association (Principal Entity = Dependent Entity) for one of the Input Entity Types and rest of the associations with output Entity Types dependent on the Input Entity Type.

    • Select “M” for both Principal Entity Cardinality and Dependent Entity Cardinality.

    • Give appropriate name to the so-created Associations.





  • Below screen shows the created Associations.




8.   Create Navigations: To be created only for the ET marked as Principal Entity Type in the                    Create-Associations process.

  • Drop down the Principal Entity Type and select ‘Navigation Properties’ as shown below.

  • Double click on ‘Navigation Properties’.

  • Click the Add button to add the rows.

    • Add rows equal to the number of Associations created.

    • Under Relationship Name select the created Association and give and appropriate Name to define the Navigation for that Association.



  • Below screen shows the created Navigations.


9. Generate Run-time Artefacts:

  • Click on Generated Runtime Objects.

  • Click on Continue Button.


  • Enter the Package name and save.

  • Enter the Workbench Request and Continue. The below Captures shows all the created Runtime Objects.


10. Model Provider Class(MPC_EXT):

  • Drop down Run-time Artefacts tab under the project and double click on the ‘___MPC_EXT’ class. In this case it’s ZCL_ZSL_SER_GRP_REP_TO_MPC_EXT.

  • Double click on the ‘__MPC_EXT’ class on the right side of the above capture. The below screen will pop up.

  • Under the Types tab create a Type as ‘TS_DEEP’ with visibility as ‘PUBLIC’ and click on Direct Type Entry  Button.

  • Click on Yes. The below screen appears. Write the code attached below under the ‘PUBLIC SECTION’ in the screen for creating the structure ‘TS_DEEP’. Change the names of the navigations and the underlying structure name for the navigation according to the types mentioned in Types tab in ‘__MPC_EXT’ class of your project.
    types:
    BEGIN OF ts_deep,
    n_rep_unit TYPE STANDARD TABLE OF ts_et_rep_unit WITH DEFAULT KEY,
    n_mth_nsv TYPE STANDARD TABLE OF ts_et_mth_nsv WITH DEFAULT KEY,
    n_return TYPE STANDARD TABLE OF ts_et_return WITH DEFAULT KEY,
    n_rep_nsv TYPE STANDARD TABLE OF ts_et_rep_nsv WITH DEFAULT KEY,
    n_yester_nsv TYPE STANDARD TABLE OF ts_et_yester_nsv WITH DEFAULT KEY,
    n_cur_mth_nsv_qty TYPE STANDARD TABLE OF ts_et_cur_mth_nsv_qty WITH DEFAULT KEY,
    n_retchn_nsv_qty TYPE STANDARD TABLE OF ts_et_retchn_nsv_qty WITH DEFAULT KEY,
    n_sal_chn TYPE STANDARD TABLE OF ts_et_sal_chn WITH DEFAULT KEY,
    n_scat_desc TYPE STANDARD TABLE OF ts_et_scat_desc WITH DEFAULT KEY,
    n_week_sales TYPE STANDARD TABLE OF ts_et_week_sales WITH DEFAULT KEY,
    n_top5bnd TYPE STANDARD TABLE OF ts_et_top5bnd WITH DEFAULT KEY,
    END OF ts_deep .



  • Activate the code. Next, Drop the hierarchy Methods >> Inherited Methods.

  • Right click on DEFINE and select Redefine. The below screen appears. Write the code attached below in the screen.
    method DEFINE.
    super->define( ).
    DATA:
    lo_annotation TYPE REF TO /iwbep/if_mgw_odata_annotation,
    lo_entity_type TYPE REF TO /iwbep/if_mgw_odata_entity_typ,
    lo_complex_type TYPE REF TO /iwbep/if_mgw_odata_cmplx_type,
    lo_property TYPE REF TO /iwbep/if_mgw_odata_property,
    lo_entity_set TYPE REF TO /iwbep/if_mgw_odata_entity_set.


    ****************************************************************** *****************************************************************
    * ENTITY - Deep Entity
    ****************************************************************** *****************************************************************

    lo_entity_type = model->get_entity_type( iv_entity_name = 'ET_REP_UNIT' ). "#EC NOTEXT

    lo_entity_type->bind_structure( iv_structure_name = 'ZCL_ZSL_SER_GRP_REP_TO_MPC_EXT=>TS_DEEP' )."#EC NOTEXT
    endmethod.


  • Save and activate   the code.



  1. Data Provider Class(DPC_EXT):

    • Drop down Run-time Artefacts tab under the project and double click on the ‘__DPC_EXT’ class. In this case it’s ZCL_ZSL_SER_GRP_REP_TO_DPC_EXT.

    • Double click on the ‘__DPC_EXT’ class on the right side of the above capture. The below screen will appear. Next, Drop the hierarchy Methods >> Inherited Methods >> /IWBEP/IF_MGW_APPL_SRV_RUNTIME.

    • Right click on CREATE_DEEP_ENTITY and select Redefine. The below screen appears. Write the attached code (Make changes according to your requirements) below in the screen.
      METHOD /iwbep/if_mgw_appl_srv_runtime~create_deep_entity.
      DATA: lr_deep_entity TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_deep.

      DATA lo_dp_facade TYPE REF TO /iwbep/if_mgw_dp_int_facade.
      DATA lo_destination_finder TYPE REF TO /iwbep/if_destin_finder.
      DATA lv_destination TYPE rfcdest.

      io_data_provider->read_entry_data(
      IMPORTING
      es_data = lr_deep_entity ).

      lo_dp_facade ? = /iwbep/if_mgw_conv_srv_runtime~get_dp_facade( ).
      lo_destination_finder = lo_dp_facade->get_destination_finder( ).
      lv_destination = lo_destination_finder-> get_rfc_destination_via_rout( ).

      DATA: lt_rep_unit TYPE ztt_rep_unit,
      ls_rep_unit TYPE zst_rep_unit,
      ls_yester_nsv TYPE zst_rep_yester_nsv,
      ls_cur_mth_nsv_qty TYPE zst_rep_curr_month_nsv_qty,
      lt_retchn_nsv_qty TYPE ztt_rep_retchain_nsv_qty,
      ls_retchn_nsv_qty TYPE zst_rep_retchain_nsv_qty,
      lt_mth_nsv TYPE ztt_rep_mth_nsv,
      ls_mth_nsv TYPE zst_rep_mth_nsv,
      ls_rep_nsv TYPE zst_rep_nsv,
      lt_sal_chn TYPE ztt_rep_salchannel_per_desc,
      ls_sal_chn TYPE zst_rep_salchannel_per_desc,
      lt_scat_desc TYPE ztt_rep_scat_per_desc,
      ls_scat_desc TYPE zst_rep_scat_per_desc,
      lt_week_sales TYPE ztt_rep_week_sales,
      ls_week_sales TYPE zst_rep_week_sales,
      lt_top5bnd TYPE ztt_rep_top5bnd,
      ls_top5bnd TYPE zst_rep_top5bnd,
      lt_return TYPE bapiret2_t,
      ls_return TYPE bapiret2
      .

      DATA: ls_n_rep_unit TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_rep_unit,
      ls_n_yester_nsv TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_yester_nsv,
      ls_n_cur_mth_nsv_qty TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_cur_mth_nsv_qty,
      ls_n_retchn_nsv_qty TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_retchn_nsv_qty,
      ls_n_return TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_return,
      ls_n_sal_chn TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_sal_chn,
      ls_n_scat_desc TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_scat_desc,
      ls_n_week_sales TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_week_sales,
      ls_n_rep_nsv TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_rep_nsv,
      ls_n_mth_nsv TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_mth_nsv,
      ls_n_top5bnd TYPE zcl_zsl_ser_grp_rep_to_mpc_ext=>ts_et_top5bnd.

      LOOP AT lr_deep_entity-n_rep_unit INTO ls_n_rep_unit.
      MOVE-CORRESPONDING ls_n_rep_unit TO ls_rep_unit.
      APPEND ls_rep_unit TO lt_rep_unit.
      ENDLOOP.

      CALL FUNCTION 'ZSL_API_GRP_REP_TOTAL' DESTINATION lv_destination
      EXPORTING
      it_rep_unit = lt_rep_unit
      IMPORTING
      et_mth_nsv = lt_mth_nsv
      es_rep_nsv = ls_rep_nsv
      es_yester_nsv = ls_yester_nsv
      es_cur_mth_nsv_qty = ls_cur_mth_nsv_qty
      et_retchn_nsv_qty = lt_retchn_nsv_qty
      et_sal_chn = lt_sal_chn
      et_scat_desc = lt_scat_desc
      et_week_sales = lt_week_sales
      et_top5bnd = lt_top5bnd
      et_return = lt_return.

      LOOP AT lt_mth_nsv INTO ls_mth_nsv.
      MOVE-CORRESPONDING ls_mth_nsv TO ls_n_mth_nsv.
      APPEND ls_n_mth_nsv TO lr_deep_entity-n_mth_nsv.
      ENDLOOP.

      LOOP AT lt_return INTO ls_return.
      MOVE-CORRESPONDING ls_return TO ls_n_return.
      APPEND ls_n_return TO lr_deep_entity-n_return.
      ENDLOOP.

      MOVE-CORRESPONDING ls_rep_nsv TO ls_n_rep_nsv.
      APPEND ls_n_rep_nsv TO lr_deep_entity-n_rep_nsv.

      MOVE-CORRESPONDING ls_yester_nsv TO ls_n_yester_nsv.
      APPEND ls_n_yester_nsv TO lr_deep_entity-n_yester_nsv.

      MOVE-CORRESPONDING ls_cur_mth_nsv_qty TO ls_n_cur_mth_nsv_qty.
      APPEND ls_n_cur_mth_nsv_qty TO lr_deep_entity-n_cur_mth_nsv_qty.

      LOOP AT lt_retchn_nsv_qty INTO ls_retchn_nsv_qty.
      MOVE-CORRESPONDING ls_retchn_nsv_qty TO ls_n_retchn_nsv_qty.
      APPEND ls_n_retchn_nsv_qty TO lr_deep_entity-n_retchn_nsv_qty.
      ENDLOOP.

      LOOP AT lt_sal_chn INTO ls_sal_chn.
      MOVE-CORRESPONDING ls_sal_chn TO ls_n_sal_chn.
      APPEND ls_n_sal_chn TO lr_deep_entity-n_sal_chn.
      ENDLOOP.

      LOOP AT lt_scat_desc INTO ls_scat_desc.
      MOVE-CORRESPONDING ls_scat_desc TO ls_n_scat_desc.
      APPEND ls_n_scat_desc TO lr_deep_entity-n_scat_desc.
      ENDLOOP.

      LOOP AT lt_week_sales INTO ls_week_sales.
      MOVE-CORRESPONDING ls_week_sales TO ls_n_week_sales.
      APPEND ls_n_week_sales TO lr_deep_entity-n_week_sales.
      ENDLOOP.

      LOOP AT lt_top5bnd INTO ls_top5bnd.
      MOVE-CORRESPONDING ls_top5bnd TO ls_n_top5bnd.
      APPEND ls_n_top5bnd TO lr_deep_entity-n_top5bnd.
      ENDLOOP.


      copy_data_to_ref(
      EXPORTING
      is_data = lr_deep_entity
      CHANGING
      cr_data = er_deep_entity
      ).
      ENDMETHOD.



    • Save and activate the code.





  1. Go to T-Code “/n/iwfnd/maint_service” (GW server).

    • Click on Add Service button. Give the System Alias (Should be created in T-code SM59 for a Trusted RFC connection between GW and ECC system.) name in the below screen.


    • Click on Get Services  button. The oData service created in ECC should be present in the list fetched above. Click on the required service; the below screen should pop up.

    • Assign the service to a package against Package Assignment and continue. You will get 3 prompts for transportable Workbench request as shown below:



      1. SAP Gateway: Model

      2. SAP Gateway: Service

      3. ICF Service.



    • Select the WB request and save for each prompts. The below screen shows the successful loading of the metadata of the oData service.

    • Continue. The service will now be added and you can find it in the below screen which appears next.

    • Click on your service name and press the SAP Gateway Client button. The below screen appears.

    • Furnish the metadata:

      • Click on Add URI button and select $metadata. It should be appended to the URI against Request URI.

      • Select GETmethod for HTTP Method.

      • Execute.



    • Result: ~status_code ‘200’ shows successful fetching of the metadata.

    • Execute the service with test data(see capture below):

      • In the URI against Request URI, overwrite the ‘$metadata’ part with the name of the Entity Set which has the navigations.

      • Select ‘POST’ method for HTTP Method.

      • Paste the below attached payload in HTTP Request block and execute.




    • <?xml version="1.0" encoding="UTF-8"?>
      <atom:entry xmlns:atom="http://www.w3.org/2005/Atom" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
      <atom:content type="application/xml">
      <m:properties/>
      </atom:content>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_REP_UNIT" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Zrepunit>#</d:Zrepunit>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_MTH_NSV" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Zrepunit></d:Zrepunit>
      <d:Calyear></d:Calyear>
      <d:Calmonth2></d:Calmonth2>
      <d:Zinsv></d:Zinsv>
      <d:Currency></d:Currency>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_REP_NSV" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Zrepunit></d:Zrepunit>
      <d:Zinsv></d:Zinsv>
      <d:Currency></d:Currency>
      <d:NsvPerc></d:NsvPerc>
      <d:SkuCnt></d:SkuCnt>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_YESTER_NSV" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Zrepunit></d:Zrepunit>
      <d:ZinsvTyest></d:ZinsvTyest>
      <d:Currency></d:Currency>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_CUR_MTH_NSV_QTY" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Zrepunit></d:Zrepunit>
      <d:Zinsv></d:Zinsv>
      <d:Currency></d:Currency>
      <d:NsvPerc></d:NsvPerc>
      <d:Qty></d:Qty>
      <d:QtyUnit></d:QtyUnit>
      <d:QtyPerc></d:QtyPerc>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_RETCHN_NSV_QTY" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Calyear></d:Calyear>
      <d:Zrepunit></d:Zrepunit>
      <d:Zmainrc></d:Zmainrc>
      <d:Zinsv></d:Zinsv>
      <d:Currency></d:Currency>
      <d:NsvPerc></d:NsvPerc>
      <d:Qty></d:Qty>
      <d:QtyUnit></d:QtyUnit>
      <d:QtyPerc></d:QtyPerc>
      <d:RetChnDesc></d:RetChnDesc>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_SAL_CHN" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Calyear></d:Calyear>
      <d:Zrepunit></d:Zrepunit>
      <d:Zsalesch2></d:Zsalesch2>
      <d:NsvPerc></d:NsvPerc>
      <d:SalChnDesc></d:SalChnDesc>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_SCAT_DESC" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Calyear></d:Calyear>
      <d:Zrepunit></d:Zrepunit>
      <d:Zprdscat1></d:Zprdscat1>
      <d:NsvPerc></d:NsvPerc>
      <d:ScatDesc></d:ScatDesc>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_WEEK_SALES" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Calyear></d:Calyear>
      <d:Zrepunit></d:Zrepunit>
      <d:Zinsv></d:Zinsv>
      <d:Currency></d:Currency>
      <d:NsvPerc></d:NsvPerc>
      <d:Wukenr></d:Wukenr>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_TOP5BND" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Calyear></d:Calyear>
      <d:Zrepunit></d:Zrepunit>
      <d:Zbrand2></d:Zbrand2>
      <d:Zinsv></d:Zinsv>
      <d:Currency></d:Currency>
      <d:NsvPerc></d:NsvPerc>
      <d:BndDesc></d:BndDesc>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      <atom:link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_RETURN" type="application/atom+xml;type=feed">
      <m:inline>
      <atom:feed>
      <atom:entry>
      <atom:content type="application/xml">
      <m:properties>
      <d:Type> </d:Type>
      <d:Number> </d:Number>
      <d:Message> </d:Message>
      </m:properties>
      </atom:content>
      </atom:entry>
      </atom:feed>
      </m:inline>
      </atom:link>
      </atom:entry>





Note: The default request that SAP Gateway Client expects is in XML format, but if the requirement suggests the input payload to be in json format then in the header of HTTP Request add a header with Hearder Name as ‘content-type’ and Value as ‘application/json’ and paste the below attached payload (json format) in the body of the request.
{
"N_REP_UNIT":[{
"Zrepunit": "#"
}
],
"N_MTH_NSV":[{
"Zrepunit": " ",
"Calyear": " ",
"Calmonth2": " ",
"Zinsv": " ",
"Currency": " "
}
],
"N_REP_NSV":[{
"Zrepunit": " ",
"Currency": " ",
"NsvPerc": " ",
"Zinsv": " ",
"SkuCnt": " "
}
],
"N_YESTER_NSV":[{
"Zrepunit": " ",
"ZinsvTyest": " ",
"Currency": " "
}
],
"N_CUR_MTH_NSV_QTY":[{
"Zrepunit": " ",
"Zinsv": " ",
"Currency": " ",
"NsvPerc": " ",
"Qty": " ",
"QtyUnit": " ",
"QtyPerc": " "
}
],
"N_RETCHN_NSV_QTY":[{
"Calyear": " ",
"Zrepunit": " ",
"Zmainrc": " ",
"Zinsv": " ",
"Currency": " ",
"NsvPerc": " ",
"Qty": " ",
"QtyUnit": " ",
"QtyPerc": " ",
"RetChnDesc": " "
}
],
"N_SAL_CHN":[{
"Calyear": " ",
"Zrepunit": " ",
"Zsalesch2": " ",
"NsvPerc": " ",
"SalChnDesc": " "
}
],
"N_SCAT_DESC":[{
"Calyear": " ",
"Zrepunit": " ",
"Zprdscat1": " ",
"NsvPerc": " ",
"ScatDesc": " "
}
],
"N_WEEK_SALES":[{
"Calyear": " ",
"Zrepunit": " ",
"Zinsv": " ",
"Currency": " ",
"NsvPerc": " ",
"Wukenr": " "
}
],
"N_TOP5BND":[{
"Calyear": " ",
"Zrepunit": " ",
"Zbrand2" : " ",
"Zinsv": " ",
"Currency": " ",
"NsvPerc": " ",
"BndDesc": " "
}
],
"N_RETURN":[{
"Type": " ",
"Number": " ",
"Message": " "
}
]
}



  • Result:

    • ~status_code as ‘201’ above shows successful execution of the service.

    • The sample response is attached below both in xml and json format:
      <?xml version="1.0" encoding="utf-8"?>
      <entry xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/" xmlns="http://www.w3.org/2005/Atom" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')</id>
      <title type="text">ET_REP_UNITSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_REP_UNIT" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_REP_UNITSet('')" rel="self" title="ET_REP_UNIT"/>
      <link href="ET_REP_UNITSet('')/N_CUR_MTH_NSV_QTY" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_CUR_MTH_NSV_QTY" type="application/atom+xml;type=feed" title="N_CUR_MTH_NSV_QTY">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_CUR_MTH_NSV_QTY</id>
      <title type="text">ET_CUR_MTH_NSV_QTYSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_CUR_MTH_NSV_QTY" rel="self" title="ET_CUR_MTH_NSV_QTYSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_CUR_MTH_NSV_QTYSet('')</id>
      <title type="text">ET_CUR_MTH_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_CUR_MTH_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_CUR_MTH_NSV_QTYSet('')" rel="self" title="ET_CUR_MTH_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit/>
      <d:Zinsv/>
      <d:Currency/>
      <d:NsvPerc/>
      <d:Qty/>
      <d:QtyUnit/>
      <d:QtyPerc/>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_CUR_MTH_NSV_QTYSet('')</id>
      <title type="text">ET_CUR_MTH_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_CUR_MTH_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_CUR_MTH_NSV_QTYSet('')" rel="self" title="ET_CUR_MTH_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit/>
      <d:Zinsv> 0.00</d:Zinsv>
      <d:Currency/>
      <d:NsvPerc/>
      <d:Qty> 0.000</d:Qty>
      <d:QtyUnit/>
      <d:QtyPerc> 0</d:QtyPerc>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_MTH_NSV" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_MTH_NSV" type="application/atom+xml;type=feed" title="N_MTH_NSV">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_MTH_NSV</id>
      <title type="text">ET_MTH_NSVSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_MTH_NSV" rel="self" title="ET_MTH_NSVSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('')</id>
      <title type="text">ET_MTH_NSVSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_MTH_NSVSet('')" rel="self" title="ET_MTH_NSV"/>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit/>
      <d:Calyear/>
      <d:Calmonth2/>
      <d:Zinsv/>
      <d:Currency/>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_REP_NSV" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_REP_NSV" type="application/atom+xml;type=feed" title="N_REP_NSV">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_REP_NSV</id>
      <title type="text">ET_REP_NSVSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_REP_NSV" rel="self" title="ET_REP_NSVSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_NSVSet('')</id>
      <title type="text">ET_REP_NSVSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_REP_NSV" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_REP_NSVSet('')" rel="self" title="ET_REP_NSV"/>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit/>
      <d:Zinsv/>
      <d:Currency/>
      <d:NsvPerc/>
      <d:SkuCnt/>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_NSVSet('')</id>
      <title type="text">ET_REP_NSVSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_REP_NSV" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_REP_NSVSet('')" rel="self" title="ET_REP_NSV"/>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit/>
      <d:Zinsv> 0.00</d:Zinsv>
      <d:Currency/>
      <d:NsvPerc/>
      <d:SkuCnt> 0</d:SkuCnt>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_REP_UNIT" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_REP_UNIT" type="application/atom+xml;type=feed" title="N_REP_UNIT">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_REP_UNIT</id>
      <title type="text">ET_REP_UNITSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_REP_UNIT" rel="self" title="ET_REP_UNITSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('G%24')</id>
      <title type="text">ET_REP_UNITSet('G%24')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_REP_UNIT" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_REP_UNITSet('G%24')" rel="self" title="ET_REP_UNIT"/>
      <link href="ET_REP_UNITSet('G%24')/N_CUR_MTH_NSV_QTY" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_CUR_MTH_NSV_QTY" type="application/atom+xml;type=feed" title="N_CUR_MTH_NSV_QTY"/>
      <link href="ET_REP_UNITSet('G%24')/N_MTH_NSV" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_MTH_NSV" type="application/atom+xml;type=feed" title="N_MTH_NSV"/>
      <link href="ET_REP_UNITSet('G%24')/N_REP_NSV" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_REP_NSV" type="application/atom+xml;type=feed" title="N_REP_NSV"/>
      <link href="ET_REP_UNITSet('G%24')/N_REP_UNIT" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_REP_UNIT" type="application/atom+xml;type=feed" title="N_REP_UNIT"/>
      <link href="ET_REP_UNITSet('G%24')/N_RETCHN_NSV_QTY" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_RETCHN_NSV_QTY" type="application/atom+xml;type=feed" title="N_RETCHN_NSV_QTY"/>
      <link href="ET_REP_UNITSet('G%24')/N_RETURN" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_RETURN" type="application/atom+xml;type=feed" title="N_RETURN"/>
      <link href="ET_REP_UNITSet('G%24')/N_SAL_CHN" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_SAL_CHN" type="application/atom+xml;type=feed" title="N_SAL_CHN"/>
      <link href="ET_REP_UNITSet('G%24')/N_SCAT_DESC" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_SCAT_DESC" type="application/atom+xml;type=feed" title="N_SCAT_DESC"/>
      <link href="ET_REP_UNITSet('G%24')/N_TOP5BND" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_TOP5BND" type="application/atom+xml;type=feed" title="N_TOP5BND"/>
      <link href="ET_REP_UNITSet('G%24')/N_WEEK_SALES" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_WEEK_SALES" type="application/atom+xml;type=feed" title="N_WEEK_SALES"/>
      <link href="ET_REP_UNITSet('G%24')/N_YESTER_NSV" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_YESTER_NSV" type="application/atom+xml;type=feed" title="N_YESTER_NSV"/>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit>G$</d:Zrepunit>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_RETCHN_NSV_QTY" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_RETCHN_NSV_QTY" type="application/atom+xml;type=feed" title="N_RETCHN_NSV_QTY">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_RETCHN_NSV_QTY</id>
      <title type="text">ET_RETCHN_NSV_QTYSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_RETCHN_NSV_QTY" rel="self" title="ET_RETCHN_NSV_QTYSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear/>
      <d:Zrepunit/>
      <d:Zmainrc/>
      <d:Zinsv/>
      <d:Currency/>
      <d:NsvPerc/>
      <d:Qty/>
      <d:QtyUnit/>
      <d:QtyPerc/>
      <d:RetChnDesc/>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K010</d:Zmainrc>
      <d:Zinsv> 152480.52-</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100-</d:NsvPerc>
      <d:Qty> 9397.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100-</d:QtyPerc>
      <d:RetChnDesc>COOP</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K030</d:Zmainrc>
      <d:Zinsv> 6888.77-</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100-</d:NsvPerc>
      <d:Qty> 1728.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100-</d:QtyPerc>
      <d:RetChnDesc>Rema</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K040</d:Zmainrc>
      <d:Zinsv> 5502.98-</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc> 28-</d:NsvPerc>
      <d:Qty> 2670.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc> 96-</d:QtyPerc>
      <d:RetChnDesc>Norgesgruppen</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K204</d:Zmainrc>
      <d:Zinsv> 214.96-</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100-</d:NsvPerc>
      <d:Qty> 24.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100-</d:QtyPerc>
      <d:RetChnDesc>Dansk Supermarked</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K069</d:Zmainrc>
      <d:Zinsv> 812.80-</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100-</d:NsvPerc>
      <d:Qty> 60.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100-</d:QtyPerc>
      <d:RetChnDesc>Apotekgross.</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K091</d:Zmainrc>
      <d:Zinsv> 18088.59-</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc> 20-</d:NsvPerc>
      <d:Qty> 6913.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc> 36-</d:QtyPerc>
      <d:RetChnDesc>Eksport</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K095</d:Zmainrc>
      <d:Zinsv> 562.77</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100-</d:NsvPerc>
      <d:Qty> 7768.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100-</d:QtyPerc>
      <d:RetChnDesc>ZZZ_Alliance Healthc</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K099</d:Zmainrc>
      <d:Zinsv> 725.44</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>22.8</d:NsvPerc>
      <d:Qty> 106.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc> 57-</d:QtyPerc>
      <d:RetChnDesc>Other</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K079</d:Zmainrc>
      <d:Zinsv> 2366.50-</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100-</d:NsvPerc>
      <d:Qty> 666.000-</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100-</d:QtyPerc>
      <d:RetChnDesc>Orkla</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>#</d:Zmainrc>
      <d:Zinsv> 6625075.23</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>*159</d:NsvPerc>
      <d:Qty> 786258.000</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>7588</d:QtyPerc>
      <d:RetChnDesc>Not assigned</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K025</d:Zmainrc>
      <d:Zinsv> 340821.86</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100</d:NsvPerc>
      <d:Qty> 27992.000</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100</d:QtyPerc>
      <d:RetChnDesc>Europris</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K199</d:Zmainrc>
      <d:Zinsv> 5710.12</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100</d:NsvPerc>
      <d:Qty> 432.000</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100</d:QtyPerc>
      <d:RetChnDesc>Matas</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')</id>
      <title type="text">ET_RETCHN_NSV_QTYSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETCHN_NSV_QTYSet('')" rel="self" title="ET_RETCHN_NSV_QTY"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zmainrc>K096</d:Zmainrc>
      <d:Zinsv> 26.72</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>100</d:NsvPerc>
      <d:Qty> 6.000</d:Qty>
      <d:QtyUnit>FPK</d:QtyUnit>
      <d:QtyPerc>100</d:QtyPerc>
      <d:RetChnDesc>Remaerk NL</d:RetChnDesc>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_RETURN" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_RETURN" type="application/atom+xml;type=feed" title="N_RETURN">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_RETURN</id>
      <title type="text">ET_RETURNSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_RETURN" rel="self" title="ET_RETURNSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETURNSet('')</id>
      <title type="text">ET_RETURNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETURN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_RETURNSet('')" rel="self" title="ET_RETURN"/>
      <content type="application/xml">
      <m:properties>
      <d:Type/>
      <d:Number/>
      <d:Message/>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_SAL_CHN" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_SAL_CHN" type="application/atom+xml;type=feed" title="N_SAL_CHN">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_SAL_CHN</id>
      <title type="text">ET_SAL_CHNSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_SAL_CHN" rel="self" title="ET_SAL_CHNSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear/>
      <d:Zrepunit/>
      <d:Zsalesch2/>
      <d:NsvPerc/>
      <d:SalChnDesc/>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2016</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>B010</d:Zsalesch2>
      <d:NsvPerc> 57</d:NsvPerc>
      <d:SalChnDesc>Grocery</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2016</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>B030</d:Zsalesch2>
      <d:NsvPerc>0.26</d:NsvPerc>
      <d:SalChnDesc>Pharmacy</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2016</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>B101</d:Zsalesch2>
      <d:NsvPerc>29.8</d:NsvPerc>
      <d:SalChnDesc>Export</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2016</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>B500</d:Zsalesch2>
      <d:NsvPerc>0.75</d:NsvPerc>
      <d:SalChnDesc>Orkla</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2016</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>#</d:Zsalesch2>
      <d:NsvPerc>12.3</d:NsvPerc>
      <d:SalChnDesc>Not assigned</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>B010</d:Zsalesch2>
      <d:NsvPerc>0.2</d:NsvPerc>
      <d:SalChnDesc>Grocery</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>B011</d:Zsalesch2>
      <d:NsvPerc>4.8</d:NsvPerc>
      <d:SalChnDesc>Hard Discount</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>B020</d:Zsalesch2>
      <d:NsvPerc>0.08</d:NsvPerc>
      <d:SalChnDesc>Health Shops</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>B101</d:Zsalesch2>
      <d:NsvPerc>1.08</d:NsvPerc>
      <d:SalChnDesc>Export</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')</id>
      <title type="text">ET_SAL_CHNSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SAL_CHNSet('')" rel="self" title="ET_SAL_CHN"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zsalesch2>#</d:Zsalesch2>
      <d:NsvPerc>93.8</d:NsvPerc>
      <d:SalChnDesc>Not assigned</d:SalChnDesc>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_SCAT_DESC" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_SCAT_DESC" type="application/atom+xml;type=feed" title="N_SCAT_DESC">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_SCAT_DESC</id>
      <title type="text">ET_SCAT_DESCSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_SCAT_DESC" rel="self" title="ET_SCAT_DESCSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')</id>
      <title type="text">ET_SCAT_DESCSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SCAT_DESCSet('')" rel="self" title="ET_SCAT_DESC"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear/>
      <d:Zrepunit/>
      <d:Zprdscat1/>
      <d:NsvPerc/>
      <d:ScatDesc/>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')</id>
      <title type="text">ET_SCAT_DESCSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SCAT_DESCSet('')" rel="self" title="ET_SCAT_DESC"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zprdscat1>1000-5040</d:Zprdscat1>
      <d:NsvPerc>0.27</d:NsvPerc>
      <d:ScatDesc>Tøymykner</d:ScatDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')</id>
      <title type="text">ET_SCAT_DESCSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SCAT_DESCSet('')" rel="self" title="ET_SCAT_DESC"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zprdscat1>1000-5050</d:Zprdscat1>
      <d:NsvPerc>1.39</d:NsvPerc>
      <d:ScatDesc>Oppvaskmidler</d:ScatDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')</id>
      <title type="text">ET_SCAT_DESCSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SCAT_DESCSet('')" rel="self" title="ET_SCAT_DESC"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zprdscat1>1000-5060</d:Zprdscat1>
      <d:NsvPerc>0.57</d:NsvPerc>
      <d:ScatDesc>Rengjøringsmidler</d:ScatDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')</id>
      <title type="text">ET_SCAT_DESCSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SCAT_DESCSet('')" rel="self" title="ET_SCAT_DESC"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zprdscat1>1000-5500</d:Zprdscat1>
      <d:NsvPerc>0.05</d:NsvPerc>
      <d:ScatDesc>Personlig vask</d:ScatDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')</id>
      <title type="text">ET_SCAT_DESCSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SCAT_DESCSet('')" rel="self" title="ET_SCAT_DESC"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zprdscat1>1000-5510</d:Zprdscat1>
      <d:NsvPerc>97.7</d:NsvPerc>
      <d:ScatDesc>Munn</d:ScatDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')</id>
      <title type="text">ET_SCAT_DESCSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SCAT_DESCSet('')" rel="self" title="ET_SCAT_DESC"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zprdscat1>1000-5530</d:Zprdscat1>
      <d:NsvPerc>0.02</d:NsvPerc>
      <d:ScatDesc>Hår</d:ScatDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')</id>
      <title type="text">ET_SCAT_DESCSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_SCAT_DESCSet('')" rel="self" title="ET_SCAT_DESC"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zprdscat1>1000-5540</d:Zprdscat1>
      <d:NsvPerc> 0-</d:NsvPerc>
      <d:ScatDesc>Hud</d:ScatDesc>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_TOP5BND" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_TOP5BND" type="application/atom+xml;type=feed" title="N_TOP5BND">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_TOP5BND</id>
      <title type="text">ET_TOP5BNDSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_TOP5BND" rel="self" title="ET_TOP5BNDSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear/>
      <d:Zrepunit/>
      <d:Zbrand2/>
      <d:Zinsv/>
      <d:Currency/>
      <d:NsvPerc/>
      <d:BndDesc/>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M536</d:Zbrand2>
      <d:Zinsv> 6939530.51</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>97.7</d:NsvPerc>
      <d:BndDesc>Jordan</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M026</d:Zbrand2>
      <d:Zinsv> 99036.76</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>1.39</d:NsvPerc>
      <d:BndDesc>Zalo</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M050</d:Zbrand2>
      <d:Zinsv> 40480.89</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>0.57</d:NsvPerc>
      <d:BndDesc>Jif</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M034</d:Zbrand2>
      <d:Zinsv> 19080.86</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>0.27</d:NsvPerc>
      <d:BndDesc>Comfort</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M520</d:Zbrand2>
      <d:Zinsv> 1974.39</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>0.03</d:NsvPerc>
      <d:BndDesc>Dr. GREVE</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M567</d:Zbrand2>
      <d:Zinsv> 1309.96</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>0.02</d:NsvPerc>
      <d:BndDesc>DEFINE</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M748</d:Zbrand2>
      <d:Zinsv> 1233.84</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>0.02</d:NsvPerc>
      <d:BndDesc>SAVETT</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M526</d:Zbrand2>
      <d:Zinsv> 625.71</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc>0.01</d:NsvPerc>
      <d:BndDesc>AquaDerma</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M537</d:Zbrand2>
      <d:Zinsv> 158.00</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc> 0</d:NsvPerc>
      <d:BndDesc>Duni</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')</id>
      <title type="text">ET_TOP5BNDSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_TOP5BNDSet('')" rel="self" title="ET_TOP5BND"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zbrand2>1000-M725</d:Zbrand2>
      <d:Zinsv> 1775.98-</d:Zinsv>
      <d:Currency>NOK</d:Currency>
      <d:NsvPerc> 0-</d:NsvPerc>
      <d:BndDesc>LDB</d:BndDesc>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_WEEK_SALES" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_WEEK_SALES" type="application/atom+xml;type=feed" title="N_WEEK_SALES">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_WEEK_SALES</id>
      <title type="text">ET_WEEK_SALESSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_WEEK_SALES" rel="self" title="ET_WEEK_SALESSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_WEEK_SALESSet('')</id>
      <title type="text">ET_WEEK_SALESSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_WEEK_SALES" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_WEEK_SALESSet('')" rel="self" title="ET_WEEK_SALES"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear/>
      <d:Zrepunit/>
      <d:Zinsv/>
      <d:Currency/>
      <d:NsvPerc/>
      <d:Wukenr/>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_WEEK_SALESSet('')</id>
      <title type="text">ET_WEEK_SALESSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_WEEK_SALES" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_WEEK_SALESSet('')" rel="self" title="ET_WEEK_SALES"/>
      <content type="application/xml">
      <m:properties>
      <d:Calyear>2017</d:Calyear>
      <d:Zrepunit/>
      <d:Zinsv> 0.00</d:Zinsv>
      <d:Currency/>
      <d:NsvPerc> 0</d:NsvPerc>
      <d:Wukenr>00</d:Wukenr>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <link href="ET_REP_UNITSet('')/N_YESTER_NSV" rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/N_YESTER_NSV" type="application/atom+xml;type=feed" title="N_YESTER_NSV">
      <m:inline>
      <feed xml:base="<fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/">
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')/N_YESTER_NSV</id>
      <title type="text">ET_YESTER_NSVSet</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <author>
      <name/>
      </author>
      <link href="ET_REP_UNITSet('')/N_YESTER_NSV" rel="self" title="ET_YESTER_NSVSet"/>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_YESTER_NSVSet('')</id>
      <title type="text">ET_YESTER_NSVSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_YESTER_NSV" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_YESTER_NSVSet('')" rel="self" title="ET_YESTER_NSV"/>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit/>
      <d:ZinsvTyest/>
      <d:Currency/>
      </m:properties>
      </content>
      </entry>
      <entry>
      <id><fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_YESTER_NSVSet('')</id>
      <title type="text">ET_YESTER_NSVSet('')</title>
      <updated>2017-07-04T07:37:46Z</updated>
      <category term="ZSL_SER_GRP_REP_TOTAL_SRV.ET_YESTER_NSV" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme"/>
      <link href="ET_YESTER_NSVSet('')" rel="self" title="ET_YESTER_NSV"/>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit/>
      <d:ZinsvTyest> 0.00</d:ZinsvTyest>
      <d:Currency/>
      </m:properties>
      </content>
      </entry>
      </feed>
      </m:inline>
      </link>
      <content type="application/xml">
      <m:properties>
      <d:Zrepunit/>
      </m:properties>
      </content>
      </entry>



    • {
      "d": {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_REP_UNIT"
      },
      "Zrepunit": "",
      "N_CUR_MTH_NSV_QTY": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_CUR_MTH_NSV_QTYSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_CUR_MTH_NSV_QTYSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_CUR_MTH_NSV_QTY"
      },
      "Zrepunit": "",
      "Zinsv": "",
      "Currency": "",
      "NsvPerc": "",
      "Qty": "",
      "QtyUnit": "",
      "QtyPerc": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_CUR_MTH_NSV_QTYSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_CUR_MTH_NSV_QTYSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_CUR_MTH_NSV_QTY"
      },
      "Zrepunit": "#",
      "Zinsv": " 3494965.36",
      "Currency": "NOK",
      "NsvPerc": "210",
      "Qty": " 77300.000",
      "QtyUnit": "FPK",
      "QtyPerc": "111"
      }
      ]
      },
      "N_MTH_NSV": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "",
      "Calyear": "",
      "Calmonth2": "",
      "Zinsv": "",
      "Currency": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "01",
      "Zinsv": " 7283695.83",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "02",
      "Zinsv": " 8617008.45",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "03",
      "Zinsv": " 8596647.25",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "04",
      "Zinsv": " 5648421.79",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "05",
      "Zinsv": " 4722479.27",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "06",
      "Zinsv": " 2471558.90",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "06",
      "Zinsv": " 1666341.88",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "07",
      "Zinsv": " 4161235.97",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "08",
      "Zinsv": " 4191499.83",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "09",
      "Zinsv": " 7097311.18",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "10",
      "Zinsv": " 14736910.87",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "11",
      "Zinsv": " 16152644.54",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2014",
      "Calmonth2": "12",
      "Zinsv": " 13493554.90",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "01",
      "Zinsv": " 8658267.74",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "02",
      "Zinsv": " 8435955.05",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "03",
      "Zinsv": " 8356535.13",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "04",
      "Zinsv": " 6448588.15",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "05",
      "Zinsv": " 6467023.13",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "06",
      "Zinsv": " 5161307.24",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "07",
      "Zinsv": " 4252587.33",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "08",
      "Zinsv": " 5411427.21",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "09",
      "Zinsv": " 8465352.11",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "10",
      "Zinsv": " 13594943.85",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "11",
      "Zinsv": " 10764287.79",
      "Currency": "NOK"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_MTH_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_MTH_NSV"
      },
      "Zrepunit": "#",
      "Calyear": "2015",
      "Calmonth2": "12",
      "Zinsv": " 13831306.03",
      "Currency": "NOK"
      }
      ]
      },
      "N_REP_NSV": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_NSVSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_NSVSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_REP_NSV"
      },
      "Zrepunit": "",
      "Zinsv": "",
      "Currency": "",
      "NsvPerc": "",
      "SkuCnt": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_REP_NSV"
      },
      "Zrepunit": "#",
      "Zinsv": " 63312986.29",
      "Currency": "NOK",
      "NsvPerc": "173",
      "SkuCnt": " 15"
      }
      ]
      },
      "N_REP_UNIT": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_REP_UNIT"
      },
      "Zrepunit": "#",
      "N_CUR_MTH_NSV_QTY": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_CUR_MTH_NSV_QTY"
      }
      },
      "N_MTH_NSV": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_MTH_NSV"
      }
      },
      "N_REP_NSV": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_REP_NSV"
      }
      },
      "N_REP_UNIT": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_REP_UNIT"
      }
      },
      "N_RETCHN_NSV_QTY": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_RETCHN_NSV_QTY"
      }
      },
      "N_RETURN": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_RETURN"
      }
      },
      "N_SAL_CHN": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_SAL_CHN"
      }
      },
      "N_SCAT_DESC": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_SCAT_DESC"
      }
      },
      "N_TOP5BND": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_TOP5BND"
      }
      },
      "N_WEEK_SALES": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_WEEK_SALES"
      }
      },
      "N_YESTER_NSV": {
      "__deferred": {
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_REP_UNITSet('%23')/N_YESTER_NSV"
      }
      }
      }
      ]
      },
      "N_RETCHN_NSV_QTY": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY"
      },
      "Calyear": "",
      "Zrepunit": "",
      "Zmainrc": "",
      "Zinsv": "",
      "Currency": "",
      "NsvPerc": "",
      "Qty": "",
      "QtyUnit": "",
      "QtyPerc": "",
      "RetChnDesc": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETCHN_NSV_QTYSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETCHN_NSV_QTY"
      },
      "Calyear": "2015",
      "Zrepunit": "#",
      "Zmainrc": "#",
      "Zinsv": " 2674611.98",
      "Currency": "NOK",
      "NsvPerc": "2.75",
      "Qty": " 33877.000-",
      "QtyUnit": "FPK",
      "QtyPerc": "2.1-",
      "RetChnDesc": "Not assigned"
      }
      ]
      },
      "N_RETURN": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETURNSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_RETURNSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_RETURN"
      },
      "Type": "",
      "Number": "",
      "Message": ""
      }
      ]
      },
      "N_SAL_CHN": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN"
      },
      "Calyear": "",
      "Zrepunit": "",
      "Zsalesch2": "",
      "NsvPerc": "",
      "SalChnDesc": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN"
      },
      "Calyear": "2014",
      "Zrepunit": "#",
      "Zsalesch2": "#",
      "NsvPerc": "100",
      "SalChnDesc": "Not assigned"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SAL_CHNSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_SAL_CHN"
      },
      "Calyear": "2015",
      "Zrepunit": "#",
      "Zsalesch2": "#",
      "NsvPerc": "100",
      "SalChnDesc": "Not assigned"
      }
      ]
      },
      "N_SCAT_DESC": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC"
      },
      "Calyear": "",
      "Zrepunit": "",
      "Zprdscat1": "",
      "NsvPerc": "",
      "ScatDesc": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC"
      },
      "Calyear": "2015",
      "Zrepunit": "#",
      "Zprdscat1": "4000-K010",
      "NsvPerc": "4.81",
      "ScatDesc": "Omega 3"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_SCAT_DESCSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_SCAT_DESC"
      },
      "Calyear": "2015",
      "Zrepunit": "#",
      "Zprdscat1": "#",
      "NsvPerc": "95.2",
      "ScatDesc": "Not assigned"
      }
      ]
      },
      "N_TOP5BND": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND"
      },
      "Calyear": "",
      "Zrepunit": "",
      "Zbrand2": "",
      "Zinsv": "",
      "Currency": "",
      "NsvPerc": "",
      "BndDesc": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND"
      },
      "Calyear": "2015",
      "Zrepunit": "#",
      "Zbrand2": "#",
      "Zinsv": " 87977073.82",
      "Currency": "NOK",
      "NsvPerc": "88.1",
      "BndDesc": "Not assigned"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND"
      },
      "Calyear": "2015",
      "Zrepunit": "#",
      "Zbrand2": "4000-M057",
      "Zinsv": " 7063142.66",
      "Currency": "NOK",
      "NsvPerc": "7.07",
      "BndDesc": "Livol"
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_TOP5BNDSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_TOP5BND"
      },
      "Calyear": "2015",
      "Zrepunit": "#",
      "Zbrand2": "4000-M048",
      "Zinsv": " 4807364.28",
      "Currency": "NOK",
      "NsvPerc": "4.81",
      "BndDesc": "Möller's"
      }
      ]
      },
      "N_WEEK_SALES": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_WEEK_SALESSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_WEEK_SALESSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_WEEK_SALES"
      },
      "Calyear": "",
      "Zrepunit": "",
      "Zinsv": "",
      "Currency": "",
      "NsvPerc": "",
      "Wukenr": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_WEEK_SALESSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_WEEK_SALESSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_WEEK_SALES"
      },
      "Calyear": "2015",
      "Zrepunit": "#",
      "Zinsv": " 169343.96",
      "Currency": "NOK",
      "NsvPerc": " 34-",
      "Wukenr": "00"
      }
      ]
      },
      "N_YESTER_NSV": {
      "results": [
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_YESTER_NSVSet('')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_YESTER_NSVSet('')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_YESTER_NSV"
      },
      "Zrepunit": "",
      "ZinsvTyest": "",
      "Currency": ""
      },
      {
      "__metadata": {
      "id": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_YESTER_NSVSet('%23')",
      "uri": <fqdn>:port/sap/opu/odata/sap/ZSL_SER_GRP_REP_TOTAL_SRV/ET_YESTER_NSVSet('%23')",
      "type": "ZSL_SER_GRP_REP_TOTAL_SRV.ET_YESTER_NSV"
      },
      "Zrepunit": "#",
      "ZinsvTyest": " 0.00",
      "Currency": ""
      }
      ]
      }
      }
      }





     

VOILA!!
2 Comments
Labels in this area