BO 4.0 on HANA Supported Functionality

I have BO 4.0 SP5 connected to Native HANA.
In a reporting functionality point of view, I would like to understand the supported functionality and limitations of connecting BO to Native HANA as compared to BO to BW. e.g. Advantages / Disadvantages for Reporting Directly on HANA vs BW.
I am interested comparisons like
- Hierarchies
- Security (Data Authorization)
- Currency Conversion (BEx)
- Scaling Factor 

Not sure this gets into those details but this is a start: What is new with BI4.1 with SAP HANA – ASUG Webcast

Similar Messages

  • Using HANA SQL Functions in select list of CDS Views

    Dear Expert,
    Kindly please let me know if we can use the HANA SQL Function (Ex: ADD_DAYS, SECONDS_BETWEEN) in the select list of CDS Views?
    If I create a CDS like below I get error that timestamp is not supported.
    For Example:
    @AbapCatalog.sqlViewName: 'ZMR_H_CA'
    @EndUserText.label: 'CAG A'
    define view viewname
    with parameters start_ts:abap.dec( 15, 0 ) , end_ts:abap.dec( 15, 0 )
    as select from table {
    key resource_key,
    TO_TIMESTAMP(begtstmp) as start_tmp,
    TO_TIMESTAMP(begtstmp) as end_tmp
    where
    (begtstmp > $parameters.start_ts or endtstmp > $parameters.start_ts )
    and
    (begtstmp < $parameters.end_ts or endtstmp < $parameters.end_ts )
    Thanks,
    Giri

    Hi Giri,
    the list of provided features can be found in the ABAP Language Documentation (F1 in the CDS View).
    As CDS in ABAP is abstracted from the database layer, the database features are not directly accessible. That means, you cannot use any HANA or MaxDB feature available. So the answer to your question is no. The reason for this is, that ABAP CDS views can be created on all SAP-supported databases, hence, we can only provide those features, supported by all databases.
    Having said this, there are some exception, e.g. the CDS views with input parameters, which are not supported by all databases. In these cases, you'd have to additionally use the utility class CL_ABAP_DBFEATURES (see http://scn.sap.com/community/abap/blog/2014/10/10/abap-news-for-740-sp08--abap-core-data-services-cds) for more details.
    Best,
      Jasmin

  • Will HANA supports Bulkload

    Hi,
    Will HANA support Bulkload like oracle has bulkload and vertica has copy command
    Regards,
    Manoj.

    Hello,
    .. you can make IMPORT FROM '/<path>/<filename>.ctl' faster by adding WITH THREADS <thread_num> at the end
    Yes - I know - there are more options like BATCH - all described in SAP HANA SQL Reference Guide - page 119:
    https://service.sap.com/~sapidb/011000358700000604922011
    .. but in my understanding it is still INSERT-based command. The bulk loader utilities usually bypass SQL layer as a performance bottle-neck and insert data directly into the data pages or at least directly into table partitions, or using some similar performance-improvement techniques
    Aha... you mean Direct Path Load functionality in Oracle:
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28395/oci13obn.htm
    I am not sure how exactly IMPORT FROM command is coded but following syntax seems to be interesting (also explained in SAP HANA SQL Reference Guide - page 119):
    WITH TABLE LOCK
    Locks table for fast import into column store tables. If WITHOUT TYPE CHECK option
    is specified, then the record is inserted without checking the type of each field.
    Probably not as fast as streamed load into data segment but probably best HANA can offer...
    Would be interesting to ask SAP for details how exactly this is implemented.
    Tomas

  • [svn] 3045: Fix FB-13900: Expression Evaluator: 'is' and 'as' expressions return 'Target player does not support function calls'

    Revision: 3045
    Author: [email protected]
    Date: 2008-08-29 10:59:25 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Fix FB-13900: Expression Evaluator: 'is' and 'as' expressions return 'Target player does not support function calls'
    Ticket Links:
    http://bugs.adobe.com/jira/browse/FB-13900
    Modified Paths:
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/BinaryOp.java
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

    Revision: 3045
    Author: [email protected]
    Date: 2008-08-29 10:59:25 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Fix FB-13900: Expression Evaluator: 'is' and 'as' expressions return 'Target player does not support function calls'
    Ticket Links:
    http://bugs.adobe.com/jira/browse/FB-13900
    Modified Paths:
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/BinaryOp.java
    flex/sdk/trunk/modules/debugger/src/java/flash/tools/debugger/concrete/PlayerSession.java

  • DRG-11110: matches does not support functional invocation

    Hi all,
    We are working on the some prototype and we hit this road block.
    When 'matches' was included with other conditions in query and used in pl/sql we are getting this error.
    Oracle Text error: DRG-11110: matches does not support functional invocation
    We tried including the hint /*+ index(t2 t2x) */ * (t2 table and t2x index ) in query but it didn't help.
    The query works fine from SQL developer, but included in pl/sql gives the error 9 out of 10times.
    Is there something that anyone can help
    Regards,
    Chaitanya.

    The optimizer tends to choose functional invocation, which will cause the query to fail, when the structured portion of the query is most restrictive. So you will need to stop it from selecting what might otherwise be the most efficient plan at the times when you might have otherwise gained the most performance benefit from it. You want to try to force the optimizer to use the domain index to select the rows based on the matches criteria first, then evaluate the other conditions. You will need to experiment with things like your date filter to see if that causes funcitonal invocation or not. It will depend on how restricitve that is, whether there is an index on the date column and whether there is a small enough amount of data to do a full table scan benficially. You might benefit from hints but the "rownum > 0" seems to have the most consistent effect. You can use "explain plan for" on a query that fails to see what it was trying to do. Notice the difference in the execution plans below for the first failed query and the second working query that uses the domain index.
    SCOTT@orcl_11g> SET AUTOTRACE ON EXPLAIN
    SCOTT@orcl_11g> SELECT req_id, request, query_id, query_string
      2  FROM   queries, requests, tmptab
      3  WHERE  matches (query_string, request) > 0
      4  AND    tmptab.ID = query_id
      5  /
    SELECT req_id, request, query_id, query_string
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    DRG-11110: matches does not support functional invocation
    SCOTT@orcl_11g> SET AUTOTRACE OFF
    SCOTT@orcl_11g> EXPLAIN PLAN FOR
      2  SELECT req_id, request, query_id, query_string
      3  FROM   queries, requests, tmptab
      4  WHERE  matches (query_string, request) > 0
      5  AND    tmptab.ID = query_id
      6  /
    Explained.
    SCOTT@orcl_11g> SELECT * FROM TABLE (DBMS_XPLAN.DISPLAY)
      2  /
    PLAN_TABLE_OUTPUT
    Plan hash value: 3854985881
    | Id  | Operation           | Name     | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT    |          |     1 |   855 |    13   (8)| 00:00:01 |
    |   1 |  NESTED LOOPS       |          |     1 |   855 |    13   (8)| 00:00:01 |
    |*  2 |   HASH JOIN         |          |     3 |  1320 |     7  (15)| 00:00:01 |
    |   3 |    TABLE ACCESS FULL| TMPTAB   |     3 |    39 |     3   (0)| 00:00:01 |
    |   4 |    TABLE ACCESS FULL| QUERIES  |   300 |   125K|     3   (0)| 00:00:01 |
    |*  5 |   TABLE ACCESS FULL | REQUESTS |     1 |   415 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("TMPTAB"."ID"="QUERY_ID")
       5 - filter("CTXSYS"."MATCHES"("QUERY_STRING","REQUEST")>0)
    Note
       - dynamic sampling used for this statement
    22 rows selected.
    SCOTT@orcl_11g> DELETE plan_table
      2  /
    6 rows deleted.
    SCOTT@orcl_11g> SET AUTOTRACE ON EXPLAIN
    SCOTT@orcl_11g> SELECT req_id, request, query_id, query_string
      2  FROM   (SELECT req_id, request, query_id, query_string
      3            FROM   queries, requests
      4            WHERE  matches (query_string, request) > 0
      5            AND    ROWNUM > 0),
      6           tmptab
      7  WHERE tmptab.ID = query_id
      8  /
        REQ_ID REQUEST           QUERY_ID QUERY_STRING
             1 A B C                  699 A | B
             2 B C                    699 A | B
    Execution Plan
    Plan hash value: 615182442
    | Id  | Operation                        | Name             | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                 |                  |    45 | 37935 |    14   (8)| 00:00:01 |
    |*  1 |  HASH JOIN                       |                  |    45 | 37935 |    14   (8)| 00:00:01 |
    |   2 |   TABLE ACCESS FULL              | TMPTAB           |     3 |    39 |     3   (0)| 00:00:01 |
    |   3 |   VIEW                           |                  |    45 | 37350 |    10   (0)| 00:00:01 |
    |   4 |    COUNT                         |                  |       |       |            |          |
    |*  5 |     FILTER                       |                  |       |       |            |          |
    |   6 |      NESTED LOOPS                |                  |    45 | 37890 |    10   (0)| 00:00:01 |
    |   7 |       TABLE ACCESS FULL          | REQUESTS         |     3 |  1245 |     3   (0)| 00:00:01 |
    |   8 |       TABLE ACCESS BY INDEX ROWID| QUERIES          |    15 |  6405 |    10   (0)| 00:00:01 |
    |*  9 |        DOMAIN INDEX              | QUERY_STRING_IDX |       |       |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - access("TMPTAB"."ID"="QUERY_ID")
       5 - filter(ROWNUM>0)
       9 - access("CTXSYS"."MATCHES"("QUERY_STRING","REQUEST")>0)
    Note
       - dynamic sampling used for this statement
    SCOTT@orcl_11g>

  • How to create Support function for internal Class use

    I have created a class to find the MoonRise and Set time. There is a java code available and I am translating it to Obj-C.
    My problem is that for the calculation there are many support functions which is internally used. When I try to duplicate this as follows
    -(double) frac:(double)x {
    // returns the fractional part of x as used in minimoon and minisun
    double a;
    a = x - floor(x);
    if (a < 0) a += 1;
    return a;
    -(void)minimoon:(double)t {
    // takes t and returns the geocentric ra and dec in an array mooneq
    // claimed good to 5' (angle) in ra and 1' in dec
    // tallies with another approximate method and with ICE for a couple of dates
    double L0, L, LS, F, D, H, S, N, DL, CB, L_moon, B_moon, V, W, X, Y, Z, RHO;
    //var mooneq = new Array;
    L0 = frac(0.606433 + 1336.855225 * t); // mean longitude of moon
    At this point it gives an error implicit declaration of function frac,
    My question is how to create such helper functions which are used internally, actually there are many such functions where functionA call B which calls C.
    Thanks
    Raj

    Here's yet another approach (creating a private category):
    @interface MYClass (Private)
    - (double)frac:(double)x;
    @end
    @implementation MYClass
    - (void)minimoon:(double)t {
    // takes t and returns the geocentric ra and dec in an array mooneq
    // claimed good to 5' (angle) in ra and 1' in dec
    // tallies with another approximate method and with ICE for a couple of dates
    double L0, L, LS, F, D, H, S, N, DL, CB, L_moon, B_moon, V, W, X, Y, Z, RHO;
    //var mooneq = new Array;
    L0 = [self frac:(0.606433 + 1336.855225 * t)]; // mean longitude of moon
    - (double)frac:(double)x
    // returns the fractional part of x as used in minimoon and minisun
    double a;
    a = x - floor(x);
    if (a < 0) a += 1;
    return a;
    @end
    <div class="jive-quote">rajkhand wrote:
    I liked the first method as I don't have to change much of the java code.
    I like it too. I use that very regularly (though I often use C++/Objective C++), since there is typically a lot of implementation in any class that does not need to be an ObjC instance method. This approach helps to reduce the object's interface to its essentials while keeping maintenance low.
    I'll put all the helper functions above the implementation.
    Is there a good book/web site where I can get such insight? I know C and Delphi/pascal
    Well, Objective-C is a superset of C. If you're porting Java, you'll find protocols (ObjC) similar to interfaces (Java).
    *Getting Started*
    Apple's version of ObjC is different from others. For the language, Apple's docs are the standard (IMO):
    Language:
    http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/ObjC.pdf
    If you are comfortable with C, this guide will help learning Objective-C quickly, though it has not been updated for (Apple's) Objective-C 2.0:
    http://www.amazon.com/Objective-C-Pocket-Reference-Andrew-Duncan/dp/0596004230/r ef=sr14?ie=UTF8&s=books&qid=1245404236&sr=8-4
    There are a few books on the ObjC2 language, but I have not read them (I just read Apple's docs for this).
    OOP/Design:
    http://developer.apple.com/documentation/Cocoa/Conceptual/OOPObjC/OOPObjC.pdf
    Research
    Good site for archives of tips, tricks, and even some hacks:
    http://www.cocoadev.com/
    Apple's lists (Cocoa, Xcode, ObjC, and specific technologies):
    http://lists.apple.com/mailman/listinfo
    This one sees the most traffic for Cocoa, and ObjC topics :
    http://lists.apple.com/mailman/listinfo/cocoa-dev
    Online archive for aforementioned Xcode and Cocoa list submissions:
    http://www.cocoabuilder.com/
    There are a lot of good sites/blogs out there as well.
    Questions
    Apple's lists (linked above) will typically yield good answers in a short time, you can also try here.
    Thanks a million
    Raj
    You're Welcome,
    J

  • DRG-10849 catsearch does not support functional invocation

    I have this error message: DRG-10849 catsearch does not support functional invocation
    this is my query:
    SELECT *
    FROM
    (SELECT
    /*+ FIRST_ROWS(50) */
    NTQ.*,
    ROWNUM RNUM1
    FROM
    (SELECT
    /*+ INDEX(DL_TSD_DEFTR_CI) */
    FROM ima_ol.DL_TSD_SITUATION s
    WHERE (CATSEARCH(DEF_TRANS,'milano ',NULL)>0)
    AND (s.FORECAST = 0)
    AND (s.STATE IN (1,0,4))
    AND (s.ARCH_STATE = 0)
    ORDER BY s.VET_TS DESC
    ) NTQ
    WHERE ROWNUM <=50
    WHERE RNUM1 >=1
    my oracle and system version:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    "CORE 11.1.0.7.0 Production"
    TNS for Solaris: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    have suggested that to solve the problem I should alter the statistics of the offending table to force to use this index how do I do?
    thanks in advance

    there is a topic which is older. maybe it helped.
    Oracle Text 10g Release 2

  • Does SAP HANA supports JCo to call BAPI RFC's and to receive IDocs?

    Hi,
    We are using a WSO2 ESB to integrate our SAP 4.7 version system with SalesForce.com and as part of this integration we use JCo libraries to receive IDoc's and to execute RFC's from ESB.
    This year we are planning to migrate our SAP environment to SAP HANA and wondering if SAP HANA supports the JCo libraries? or is there any changes in the implementation how we use JCo libraries?
    Thanks in advance.
    Regards,
    Venkat

    BAPI_TRANSACTION_COMMIT doesn't have two import parameter, please check

  • What are the overall responsibilities of a support functional HR consul

    What are the overall responsibilities of a support functional HR consultant?
    Dear 
    Member please read the forum Rules before posting the question
    Welcome and Rules of Engagement

    GOT IT FROM THE WIKI

  • BPC 10.1 - no HANA support

    Hi,
    we've a BPC 10.1 sandbox and we're facing several problems
    #1 no BPC HANA Support
    we've changed the setting in the global and enviroment Parameters - see attachement
    But when we try to open a an Excel sheet and do some calculations, we get the following dump - see attachement
    I haven't found anything on the Internet. There are some enhencements but they don't work for 10.1 only for 10.0
    any idea?
    Thx

    Yes
    We used the "BPC_HANA_MIGRATE_FROM_10" as well

  • Portal runtime error on Logon Get Support functionality

    Hi portal gurus,
    I have a problem regarding logon get support functionality on welcome page , it is giving portal runtime error at that place. I had done required changes in Visual administrator under ume provider and on portal under sys administration also but what i believe the error is related to some securtiy permission of a particulat user (J2ee_Guest). pls see below a part of default trace and guide me .
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Resource
    Component : com.sap.portal.runtime.logon.default
    Component class : com.sapportals.portal.ume.component.logon.SAPMLogonComponent
    User : J2EE_GUEST
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:973)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:444)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:527)
         at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:89)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:232)
         at com.sap.security.core.logonadmin.ComponentAccessToLogic.gotoPage(ComponentAccessToLogic.java:111)
         at com.sap.security.core.sapmimp.logon.SAPMLogonLogic.executeRequest(SAPMLogonLogic.java:245)
         at com.sapportals.portal.ume.component.logon.SAPMLogonComponent.doContent(SAPMLogonComponent.java:37)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.ume.component.logon.SAPMLogonCertComponent.doContent(SAPMLogonCertComponent.java:33)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:524)
         at java.security.AccessController.doPrivileged(AccessController.java:246)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at com.sap.portal.navigation.Gateway.service(Gateway.java:126)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:219)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: Original exception:
         at sapportalsjspumLogonPage.doContent(_sapportalsjsp_umLogonPage.java:73)
         at sapportalsjspumLogonPage.service(_sapportalsjsp_umLogonPage.java:47)
         at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:360)
         at com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:934)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:435)
         ... 49 more
    Caused by: java.lang.NullPointerException
         at java.net.URLDecoder.decode(URLDecoder.java:139)
         at java.net.URLDecoder.decode(URLDecoder.java:103)
         at com.sap.security.core.sapmimp.logon.LogonBean.getLogonURL(LogonBean.java:122)
         at sapportalsjspumLogonPage.subDoContent(_sapportalsjsp_umLogonPage.java:871)
         at sapportalsjspumLogonPage.doContent(_sapportalsjsp_umLogonPage.java:67)
         ... 53 more

    Hi Prachi,
    ESS configuration guides -
    [Business package of ESS my SAP erp 2005|http://www.appsconsulting.co.za/SAP_PDF/BP_ESS_672_EN_2005.pdf]
    [Configuring Business Package for ESS mySAP ERP 2004|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a]
    MSS configuration guide -
    [MSS my SAP ERP 2005|http://www.appsconsulting.co.za/SAP_PDF/BP_MSS_600_EN_ERP_2005.pdf]
    [MSS my SAP ERP 2004|http://www.appsconsulting.co.za/SAP_PDF/BP_MSS_601_EN_ERP_2004.pdf]
    Hope these helps,
    Reward points if helpful
    Regards,
    Shailesh Nagar

  • SAP HCM Support Function reg

    Hi All
    I have 4 Years of Experience in SAP HCM End user support and I also got a job offer for SAP HCM Support from one of the big company.
    If I continue my career in SAP Support what will be my future career, whether is there any big career opportunities available in future for Support function.
    Please suggest your views
    Thanks

    I agree with Colleen,
    There is a general perception among many that Support project work is degrading, boring, monotonous, non-challenging, lack-of-learning-opportunities etc.
    Those who say this, have actually no real work experience or are ignorant of world they live in. A support project is as important as an Implementation or a Roll-out project. Most Implementation and Roll-out projects are a 100m dash to the finish line. No one is bothered whether you flew or limped to the finish-line - as long as you completed the run within a decent timeline. The real challenge of Support project is in fixing a hurriedly set-up system without taking into consideration future performance or sustainability. These points have been discussed many times(even recently).
    Even if the above reasons don't excite here's one more. All Implementation/roll-out projects are short term and you'll end up searching for projects within months of beginning one, whereas Support projects are long-term and hence give you more stability and reassurance of steady revenue.
    pk
    PS: And this comes from a person who's worked in Implementation/Rollout/Upgrade projects for 70% of his total SAP project experience.

  • HANA - Support index partitioning?

    Dear HANA experts,
    Does SAP HANA support index partitioning or not?

    There's a presentation from me available here in SCN (Further Playing with SAP HANA ) that explains indexes in the column store in more detail.

  • Will HANA supports in build planning function

    the documents says
    SAP HANA Database u2013 Development Guide
    u2013 How to use SQL and SQLScript for Data Modeling
    SAP HANA Appliance Software Page 17 of 83
    "The SAP HANA database also contains a component called the planning engine that allows financial
    planning applications to execute basic planning operations in the database layer. One such basic
    operation is to create a new version of a dataset _ as a copy of an existing one while applying_ filters
    and transformations. For example: Planning data for a new year is created as a copy of the data from
    the previous year."
    is it similar functionality of IP or give some pointer on this ?
    Regards,
    Manoj.

    Hello Manoj,
    Yes, this is refering to BW-IP functionality (which we also plan to use for other planning solution). See release notes here:
    http://help.sap.com/saphelp_nw73/helpdata/en/31/6d1b7db9444d4d999a00705ac3126a/frameset.htm
    and documentation here:
    http://help.sap.com/saphelp_nw73/helpdata/en/c4/7c04d0c28c488bbeae5dfde9f17b9a/frameset.htm
    Regards,
    Marc
    SAP Customer Solution Adoption (CSA)

  • Will BW on HANA support Control-M?

    Hi,
    We are planning to upgrade from BW 7.0 to BW 7.4 on HANA. Currently we are triggering process chains using BMC Control-M.
    1. Will it have any impact on Control-M scheduling when we upgrade the system?
    2. Which is the Least supported version of Control-M for BW 7.4 on HANA?
    Please suggest.
    -Sriram

    Hi Sriram,
    I hope you will not face any issue,But also need to confirmabout the what release of BMC Control-M you are using.
    You can check release not for particular version.
    here you can find the relase note for version 8.
    ftp://identity-solutions.com.au/pub/Control-M/ReleaseNotes/CTMEM800_FP1_ReleaseNotes.pdf
    BR
    AKJ

Maybe you are looking for

  • Multi devices- use one iTunes account

    I have a macbook, ipad and 2 iphones,  can I use the same itunes account or all devices?

  • How can I tell if the guts of my monitor have been swapped out?

    Hey y'all- I have an HP ZR30w monitor that I sold on ebay. The buyer claimed it didn't work and I had to give the money back. He returned it but there are pixels burned out and spots where the colors are all purple and the case is all scratched up ar

  • Dual Booting Windows and Solaris

    Hi how do i dual boot windows and solaris Do i install windows first and then solaris or do it the other way around..? how do i make sure that Windows and Solaris appear in my boot options..? Is their a guide on doing this...? Thanks Liam

  • XMonad move windows with title X to workspace

    I want to automatically assign windows of Intellij Idea projects to specific workspaces in xmonad. I tried the following in my xmonad.hs: myManageHook = composeAll . concat $                   [  [ fmap (c `isInfixOf`) title  --> doShift "5:lp" | c <

  • Hold crtl and run photoshop cs6 , can someone help me?

    Hi i know that holding ctrl+alt+shift and run photoshop should reset the preferences and shift+f2 or only shift should ask me to disable yes or not the plugins but i did notice that holding the crtl and run cs6 , it does perform some action it doesn'