FI-GL(New) in HANA

Hi,
Does anyone has example on any reporting on new FI-GL on HANA? I understand we have RDS which SAP provides as solution but did someone try to build the same logic in HANA studio themselves? I am looking for step-by-step guide to report FI-GL (New) data in HANA like something similar to reporting model based on 0FI_GL_10 BW Extractor.
Thanks,
FI Analytics

check these threads:
New GL Line Item Extraction
Re: delta process in FI - NEW GL
Data Source for NEW GL extraction
and do a search with key word "NEW GL", you will find tons of threads discussing the same issue

Similar Messages

  • Hi Iam new to hana I would like to learn the BW powered by HANA can any provide the documents.and I have gone through transports in hana what is meant by delivery unit?

    Hi Iam new to hana I would like to learn the BW powered by HANA can any provide the documents.and I have gone through transports in hana what is meant by delivery unit?

    Hi Sravan,
    Views do not store any data in HANA
    All data resides in tables
    To know how to join tables in Views, watch videos on SAP HANA Academy | SAP HANA
    For BW on HANA check:
    Blog: BW 7.4 on HANA in a Nutshell | SAP HANA
    SAP BW 7.4 SP5 on SAP HANA Overview and Roadmap
    Also follow BW on HANA Space on SCN SAP BW Powered by SAP HANA
    If you want to learn about HANA , check my blog:
    Want to learn SAP HANA?Where to Start?Certification?
    To know more about BW on HANA,check below blog for links to BW on HANA Materials:
    HANA Reference for Developers - Links and SAP Notes(Part-2) Updated 04.12.2013
    Regards,
    Vivek

  • New SAP HANA course released

    Course:  TZH300 u2013 SAP HANA Implementation and Modeling course released on SAP HANA 1.0, SP03 (https://training.sap.com/us/en/course/tzh300-sap-hana-implementation-and-modeling-classroom-096-us-en/)
    Schedule:
    February 20-21: North America virtual but more events are planned based on demand
    Registration:   Contact SAP Education North America Customer Interaction Center at 1-888-777-1727
    Course Goals: (1) Replicate data using SAP Landscape Transformation (SLT) and (2) Implement information models in SAP HANA
    Target Audience: Data Modeling Consultants
    Release: SAP HANA 1.0, SP03
    Content:
    Trigger-based replication with SAP Landscape Transformation (SLT)
    Approaching SAP HANA Modeling
    Connecting tables
    Advanced Modeling features
         Hierarchies
         Restricted & Calculated Measures
         Filter Operations and Variables
         Currency conversion
    Introduction to SQL script and Script based Calculation Views
    Processing Information Models
    Managing Modeling Content
    SAP HANA User Management and Privileges.
    IMPORTANT NOTE:  Soon, weu2019ll have two more HANA courses, TZBWHA for customers running BW on HANA and TZH200 for consultants who are responsible for installation and administration of HANA. More on those as we get closer.

    Hi and thanks for your answer.
    I'm not looking for specifics BAPI but for all...I search a technical document of HANA with all the changements in BAPI.
    I've to write a document about that for my boss and I found nothing on the web...
    Thanks again,
    Regards,
    Lionel
    (I'm french and I don't speak english very well so scuse me )

  • Error while exceuting a SAP HANA Procedure

    Hi HANA Gurus,
    I am new to HANA SQL Scripting and I have created the following procedure
    CREATE PROCEDURE "RAJ_HANA"."CURSOR_FOR_LOOP" LANGUAGE SQLSCRIPT
    AS
    VAR_EMNO INTEGER;   
    CURSOR EMP FOR SELECT EMPNO FROM "RAJ_HANA"."EMP";
    BEGIN  
    FOR EMP_CUR AS EMP DO
    FETCH EMP INTO VAR_EMNO;
    INSERT INTO "RAJ_HANA"."EMP_1" VALUES(:VAR_EMNO) ;
    SELECT * FROM "RAJ_HANA"."EMP_1";
    END FOR;
    END;
    Error:
    Could not execute 'Call "RAJ_HANA"."CURSOR_FOR_LOOP"' in 41 ms 684 µs .
    SAP DBTech JDBC: [150]: statement cancelled or snapshot timestamp already invalidated: [150] "RAJ_HANA"."CURSOR_FOR_LOOP": line 8 col 1 (at pos 147): [150] (range 3): statement cancelled or snapshot timestamp already invalidated
    Please help

    If you want to copy data between two tables why use a cursor at all. This seems rather inefficient.  You can bulk insert data by embedding the select into the insert.  Here is an example:
    insert into "SP8DEMO"."playground.sp8.data::PurchaseOrder.Header"
      select * from "SP7DEMO"."playground.sp7.data::PurchaseOrder.Header";
    In your case I believe you could accomplish the same with
    INSERT INTO "RAJ_HANA"."EMP_1" (EPMNO) SELECT EMPNO FROM "RAJ_HANA"."EMP";

  • Questions in HANA Sql

    Hi Team,
    I have some questions as under:
         1)how can i use a dynamic tables/fields in the Cursor definition :
                   say for eg.., Delcare Cursor Cur_1(dyn_field1 varchar(10), dyn_field2 varchar(10), dyn_table varchar(15)
                                   for select <dyn_field1> <dyn_field2>... <dyn_fieldn> from <dyn_table> ? as it is not acceptable in the Cursor definition to use as:
                                   for select :dyn_field1 :dyn_field2 from :dyn_table ? as it is not acceptable in the Cursor definition to use a Colon(:) before them..
         2)how to processing the records fetched from a table type:
                   say for eg.., if I got a set of records from another procedure that contained a set of records(of a table type)
                                     how to Loop at the records and check for the fields inside them... say I got table that has 5 records and each with 3 fields in it...
                                       after I receive them in the calling procedure, how can Loop at them and check for conditions on the fields... Just like how the
                                       processing will be done in ABAP... Loop at itab into wa_tab.... check the conditions on the fields and Endloop.. ?
         3)how to check for dynamic fields while looping in the Cursor records...
                   say for eg.., if I got 10 records from a stored procedure and I am not aware of the names of the fields in the cursor records
                                       if the code is like: I fetched all the fields from a table which has been derived out of another Cursor...
                                       For tab1 as Cursor_1 do
                                                 tab1 has a field called Hana_table and this changes for every cursor loop...
                                                 I defined a Cursor_2 as Select * from tab1.hana_table...
                                                 Now in the Cursor loop of tab2.... For tab2 as Cursor_2 do
                                                      how do I know which fields are there in the Cursor_2 and to process them? 
         4)how to use Local and Global Internal tables in HANA sql and what is its impact on the HANA tables ?
    Please provide answers on the above points as they are very much need for my current development.
    Thanks in advance for your inputs.
    Regards,
    Vishnu                   

    hi Lars,
    thanks for your inputs...
    I am very much new to HANA and Sql - just 1.5 months into these areas...
    well my requirement is as under:
              I was given a task to check the differences in the loaded tables in HANA...
    1)there is a table(say tab_1) which has 3 fields(say field1, field2 and field3) and field1 refers to a HANA table and field2 and field3 refer to the fields in that HANA table...
    2)now I need to read all the records of the table tab_1 and for every record of tab_1, I need to take the HANA table(field1) and get the entries against the fields 2 and 3... this referred HANA table can have multiple records....
    3)now I have to check other fields say field4 and field5( of the table tab_1) with that of each and every record obtained against the HANA table entries of the Step(2)...
    4)if for any one record of Step(2) matches with the field values of field2 and field3(of tab_1), I need to do some INSERTION into a table...
    Dynamic things are:
    a)the HANA table might change for each record of records of table tab_1
    b)the fields in the HANA table get changed.. need compare field2 with first field of HANA table and field3 with the 2nd record of HANA table...
    for this requirement I resorted to Cursors as I am not aware of any other Sql result sets that can be useful in my requirement...
    I used the following logic:
          For tab1 as cursor_1(fetched fields 1 to 5)
              For tab2 as cursor_2(fetched the fields -> from HANA table of cursor_1-hana_table)
                   Now I created a Local temporary table using EXEC statement as under:
                  va_sql := 'INSERT INTO #hana_table select "' || tab2.field1 || '" as field1'  || ' ' ||
                    '"' || tab2.field2 || '" as field2 ' || 'from ' || :va_hana_table;
                  exec (:va_sql);
             the Stored procedure was successful, how to read the values present in #hana_table?
         I am getting an error:
         invalid table name:  Could not find table/view #hana_table in schema SYSTEM
         if I use as under:
         for tab3 as "#hana_table" do
         end for;
         the error is:
         identifier must be declared
    I hope the requirement is clear to you... please provide your valuable suggestions...
    Regards,
    Vishnu

  • SAP HANA Privileges for Frontend Tools

    Hello,
    I am pretty new to HANA and having problems to access my created views from Frontend Tools like Design Studio or Lumira.
    I have created several tables and on top created an Analytic View. Tables and views are in the same schema, but I assigned the view to a package. If I want to access the view via Design Studio there are no views or packages shown.
    My User has the following privileges and roles:
    Roles:
    CONTENT_ADMIN
    USER
    MODELING
    MONITORING
    PUBLIC
    Object Privileges:
    _SYS_REPO
    REPOSITORY_REST (SYS)
    Analytical Privileges:
    _SYS_BI_CP_ALL
    Package Privileges:
    package to which the View was assigned
    If I want to Data Preview myView I get an error: inssuficient privileges.
    Has anybody an Idea? Is there an tutorial for granting privileges for reporting purpose? The Admin Guide is very general and I thought by using the standrad roles are sufficient for my sceanrio.
    Help would be appreciated.
    Thanks
    Waldemar

    So as the trace is saying did you give "Grant" option? And hence you are able to preview the data in HANA. It means:
    1) You are able to see the package from "myUser"
    2) You were able to do data preview from HANA on the analytic view
    Right?
    If it is "myUser" who created the tables, then i don't think you need to grant again.
    I was mentioning you to grant SYS_BI (SELECT) ,_SYS (SELECT) to "myUser"
    And after all this your issue currently is "myUser" cant see the views in Design studio? Could you confirm that you are logging into Design studio using "myUser"?
    Regards,
    Krishna Tangudu

  • SPM(Spend Performance Management) on HANA

    Hi Experts,
    I need to implement the solution wherein we need the SPM tool to run directly on HANA.
    Please let me know if any documents available on the same. or if anyone has delivery such a solution.
    Thanks.
    Rohan

    Hi John,
    Thanks for the response. When you say the standard install will do it, could you please guide me on how to go about it. I am new to HANA. Need to know how i would be tackling the implementation of SPM directly on HANA.
    Please let me know the details on the same. Please share the blueprints if any.

  • Issue in accessing the hana from laptop

    Hello Experts,
    I am new to Hana . I have an cloud share account and trying to access the Hana studio from laptop. But I am getting the error "The system Can't be reached"
    Help me in this and thanks in advance.
    Regards,
    Suresh

    Hi Suresh,
    Did you use the external address instead of "hanacloud"? You can have a look at this doc Step by Step Tutorials - Connect SAP HANA developer edition on CloudShare (DB level)
    Best regards,
    Wenjun

  • FICO for SAP HANA

    Hello,
    I've reading a lot of documentation from SAP about the new SAP HANA. But i can't yet find the difference between SAP FICO in no-HANA Systems and Smart Finance and Simple Finance in SAP HANA sytem's.
    As far as i understood, if i migrate my FICO from no-HANA to HANA system, i would have, obligatorily, the New GL functionality and the New Asset Accounting.
    But i have two question, if anyone could assist it would be of great help:
    1. By simply migrating data would i imediatly benefit of the new architectural design? (column oriented, in-memory, total tables and index tables transformed to views such as all BSI* and BSA*) or do I need to instal an add-on (Simple Finance or Smart Finance)??
    2. I recently entered a SAP HANA machine from one of our clients, and BSIS, for example, was not a view as was expected. Was there something missing, some sort of activation?
    Thank you very much.
    Best Regards,
    Nuno Anjos

    Please read the release notes in this link SAP Simple Finance Add-On for SAP Business Suite powered by SAP HANA – SAP Help Portal Page to understand what's new in SAP FICO as compared to the earlier versions.
    Regarding your questions above, here are my thoughts:
    1. You need to install the add-on first (a software update) and then perform the database migration.
    2. Once you install the financial add-on for Suite on HANA (SAP Simple Finance Add-On for SAP Business Suite powered by SAP HANA), BSIS should appear as a DDL SQL View in SE11.

  • SQL Script VS HANA views

    Hi Gurus,
    We are in the process of building the SAP HANA views. As we know there are multiple options
    1) Attribute , Analytic & Calc views
    2) Scripted Calculation views and CE functions.
    I have read many articles and as per SAP Documentation, they say build the information view with  Attribute, analytic and calculation View (Graphical) If it does not suffice they go for scripted calculation view.
    Just wanted to understand. Are there any limitations or any issues faced in the projects with scripted calc views. If we look at the John Appleby tips, it suggests that avoid SQL script unless it cannot be done with graphical views.
    http://scn.sap.com/community/hana-in-memory/blog/2013/12/29/6-golden-rules-for-new-sap-hana-developers
    If we build the views with graphical method, then it seems the parallelism can very well achieved ,means query is split into multiple sub queries and executed in parallel as in Visualize plan.
    If we write the Sql script, can this parallel processing  achieved or not ?  If the requirement can be achieved without writing script which method to choose.
    I have included the 10 to 12 attribute views in analytic view then Calculation view; it seems there may be some performance issue which I am going to check. As we know we can use base table directly in calculation view. What is the best method to use .Can we use these base  tables in calculation view directly or build the attribute views first, then analytic  view and after that build calculation view.
    As we know we use the attribute views from re usability perspective.  Is there any other reason that we need to use attribute views instead of joining the base tables in calc view .
    Regards
    Ram Ramanathaiah

    Thank you Krishna for the answers. I have gone through those links. But there is nowhere consensus opinion that the way we use the views. Some of the answers conflict each other .When we are starting the project we need to make decision about the best approach we wanted to take. If possible I would like to understand more about this from you and other experts.
    1) Build the views with Attribute analytic or calc views or
    2) Build the views only with base tables in calc views or
    3) Build everything using the SQL script /CE functions.
    Regards
    Ram

  • AO 1.4.7 - HANA Connectivity

    Hi,
    Recently we have upgraded to AO 1.4 SP7. The only new feature that is mentioned in the what's new document is "You can create local HANA connections in the Select Data Source dialog" as shown in the below screenshot.
    My doubt is, what exactly is new here ? Because we already have HANA connectivity in earlier versions or Service Packs. Can someone please explain this in detail ? We are currently on BW and planning to move to HANA in future.
    Thanks,
    Satya Rajesh

    I agree with Tammy.
    It is necessary to install the HANA ODBC middleware on the local machine where the tool is running.
    I Mean to say,
    Earlier : In order to see HANA systems in Analysis Office you need to goto location
    C:\Windows\SysWOW64\odbcad32.exe
    and then add HANA system
    Now :
    Instead of going to location, you can directly add HANA system in Analysis Office
    using "Create New SAP HANA Connection.." option in Select data Source Dialog
    But It is necessary to install the HANA ODBC middleware on the local machine

  • Inserting a conversion routine in SLT replication from SAP EWM system to HANA

    We are a new SAP HANA customer trying to get the 1st report out… having few issues with data replications from SAP EWM system. EWM material conversion use a Kernel level FM to convert material GUID code to human readable material code, HANA does not use this routine so we are exploring whether we can insert ABAP routine to update the SLT replication or conversion logic, for example we can call  EWM: CONVERSION_EXIT_MDLPD_OUTPUT routine and update human readable material code into correct data field in HANA. With this HANA can see the reportable material code directly. We came across few SLT specific FM’s in EWM, but need to find an enhancement spot to insert a code. I really appreciate If any of you SLT experts can let us know what would be the best way to do this.

    Hi,
    well, some correction notes for SP08 were missing. Mea culpa :-) Unfortunately implementation of the notes did not solve all Problems. Now the field length is correct but the field order and "not null"-Status of the fields is still wrong.
    Best regards
      Harry

  • How to connect to SAP HANA Trial Instance using ODBC

    Hi,
    I am a newbie to SAP HANA. I have a trial account and have created a new SAP HANA instance using it. I have also installed the HANA Client Tool(Dev edition). I wanted to create a ASP.NET application to consume HANA database on trial instance. Creating ODBC connection requries server:port that are not available in case of trial instance. Can this be done ?
    Instead can I create a Java application that consumes HANA database on trial instance using JDBC ?
    Need an answer ASAP. Thanking you in advance.
    Bhavya

    Hi Vladimir,
    I am trying to connect to an HCP system from outside java code using JDBC.
    I could not find out how what will be the jdbc url and how to get that port no.
    Say for example the cloud system is https://account.hanatrial.ondemand.com/ and instance no is xyz. then waht would be the jdbc url?
    "jdbc:sap://xyz.hanatrial.ondemand.com:30015/"   - this is not working.
    Regards,
    Raja

  • Is data compression all automatic? Or does manual steps occur in HANA Studio

    Hi all,
    I'm new to HANA and have been leveraging SCN in a BIG way to answer my questions (thanks everyone for your contributions). This is my first post as I was unable to find an answer to my current question .
    I've been reading up on data compression in HANA and I learned that there are different techniques, such as Dictionary, Cluster, and Run-length encoding.
    My Question is: Is the compression automatic? Or does it need to be modeled within HANA Studio? Let's use Dictionary Encoding as an example. Are there algorithms in place within HANA that will automatically aggregate values so only distinct values remain? Will the attribute vector  and inverted indexed tables automatically be created?
    Just as some background, this is what I am basing my question on:
    http://www.agilityworks.co.uk/our-blog/demystifying-the-column-store-%E2%80%93-viewing-column-store-statistics-in-sap-ha…
    Thank you!
    Kyle

    Hi Justin,
    you are right, the compression is related to the delta merge - and therefore, as long as delta merges happen automatically, compression will also happen automatically.
    SAP HANA has two compression stages on the column store: the first - and typically dominating one - is the implicit compression obtained from using a data dictionary for all column-store columns.
    The second stage is often called "sparse compression" - it offers additional compression on top of the dictionary compression, with several available algorithms. During the "optimize compression" run, the most appropriate compression algorithm is chosen for each column (and some columns may not be sparse-compressed at all, because it would not bring a benefit).
    The optimize compression run does not happen with every delta merge. Instead, it will be performed with the first delta merge on a given table, and then only if the data content of the table has changed significantly (typically, if I remember correctly, the system waits until the number of records has doubled. Note that the optimize compression run may _change_ the compression type chosen for a given column. The sparse compression itself will be done with every delta merge, using the algorithms selected in the past optimze compression.
    If you have switched off automatic delta merging globally, or if you have disabled automatic delta merging for a given table, there will also be no automatic compression (in the entire system or on the given table). BW on HANA uses the smart merge feature, so that in a standard BW on HANA, automatic compression will happen (with the timing of the delta merge being decided in a cooperation between BW and HANA).
    Best,
    Richard

  • Transporting Data models in SAP HANA

    Hi All,
    I was trying to understand how data models can be transported in SAP HANA and came across the different options in the Export option of hana Studio like exporting with Delivery unit, Developer mode, etc.. Can someone please elaborate on the differences between each and the scenrio when each should be used?
    Thanks,
    Sam

    No Justin, haven't used in any "production" environments till now since the client am working for is still to be upgraded to SP7. At internal system we are doing some R&D in those lines and developing artifacts from "Development" perspective.
    Here i shared this link for reference itself.
    Also i think using Development perspective for modelling is what is being suggested going forward in blogs like this
    6 Golden Rules for New SAP HANA Developers
    May be John Appleby and his team are already using "Development" perspective consistently
    Regards,
    Krishna Tangudu

Maybe you are looking for

  • Status erro: 46 - NF-e 2.0

    Masters of Sap Universe, Estou com o seguinte problema com o GRC... Aqui estamos com ambiente de GRC com SP15 No monitor do GRC: Status do processo:05 Status erro 46 - Lote rejeitado pelo Processamento da Nota Fiscal Eletrônica / Não existe erros na

  • Spend Analysis for Commodity Code in ECC6

    Hi, I wonder if there is any way for spend analysis references to commodity code in SAP R3 as we are not using SAP SRM? If there is any option in ECC6 then; a) Which field/view maintained for Commodity code at Material Master? b) Which field maintain

  • S5 Caused Windows DEP (Data Execution Protection) to trigger and close S5.

    Now this was odd. Not sure what caused it, but I was in the forums here and I simply clicked on the Apple Logo at the top to go back to the main Apple page and it started to load the page and popped up a Windows DEP error. I have never seen Windows a

  • MIRO - hitting to purchase varience account

    Hi, i am trying to post Invoice, when i am giving PO in invoice screen entries are coming correct. but when i simulate the invoice lot of variance accounts are coming with different values. please advice why purchase variance is coming while simulate

  • Error after deploying Web Part

    Hi ,,   I am Preparing my Company Portal using SharePoint 2013 ,   I install sharepoint and Sql in same Server .  Then I create my web application and siteCollection and everything is fine. Next I develop a custom Webpart using VisulaStudio 2012 whic