Essbase Analytics for HFM- Data Update Agent Status

Hi,
In Essbase Analytics for HFM, Data Update Agent status is showing 'Not Active', so as 'Analytic Link Data' status.
The Start/Stop option for the same is disabled. Other connectivity statuses in Bridge are all 'Available'.
What needs to be done to make Data Update status 'Active'.

Hi HP,
The Essbase Analytics Link and HFM needs to be registered with the same Shared Services. Hope you are doing the same.
Thanks & Regards
Sandy

Similar Messages

  • Essbase Analytics for HFM-HFM application connection cannot be established.

    Hi,
    I have created a Bridge for Analytics & in the summary HFM Server/Application status is displayed as 'Not Available'.
    I have given correct details/credentials for HFM server.
    Can anyone tell that what can be possible reasons for the same?

    Hi HP,
    The Essbase Analytics Link and HFM needs to be registered with the same Shared Services. Hope you are doing the same.
    Thanks & Regards
    Sandy

  • Essbase Analytics for HFM

    Hi,
    I have installed Essbase analyitcs. But when I try to add new Analytic server it throws connection fail error.
    Can someone specify what is Hostname?(is it HFM server I want use as a source or analytic server?) What Username/Password should be given?( Essbase credentials?)

    I provided the essbase server details. Following are the details-
    Host name- BIDS42S1586
    URL- http://BIDS42S1586:5423/hyperroll_livelink/
    & provided Admin credentials.
    I am getting the error- "Cant connect (Unknown Exception):(0)null"

  • Advaned warning for due date based on statuses

    Hi,
    While searching transactions, for the due date some icons are coming like(green squere, yellow triangle, tick mark, grayed dimond) and so on.
    can I maintain these icons based on statuses. Presently tick mark is coming for one of the statuses maintained in the status management. But for this we didn't maintained any configuration settings at IMG --> CRM --> Interaction center Web client --> Agent Inbox --> Map item attributes to inbox Attributes --> Define advanced warning for due date.
    Required quick response as it is business critical requirement.
    Thanks,
    Chandu

    Hello Praeva ,
    The event 1330 has a sample FM FKK_SAMPLE_1330. It doesnt even have a Standard Function Module.
    You need to create a Installation-Specific FM and put your code to determine the Due Date based on the logic.
    Rgds
    Ram Kumar.

  • Descriptor query manager and custom PL/SQL call for the data update

    hi all,
    in the application, I'm currently working on, the operations for the data INSERT/UPDATE /DELETE are allowed only by means of PL/SQL function. Using the descriptor's query manager I'm trying to modify default behavior of TopLink and execute PL/SQL when there is a request to modify the data.
    DescriptorQueryManager entityQueryManager = session.getClassDescriptor(MyEntity.class).getQueryManager();
    StoredFunctionCall call = new StoredFunctionCall();
    call.setUsesBinding(true);
    call.setProcedureName("merge_record");
    call.setResult("id", Integer.class);
    call.addNamedArgument("cbic_id", "id"); // MyEntity.getId() – works!
    call.addNamedArgument("publication_flag", "publicationFlag"); // MyEntity.getPublicationFlag () – works!
    call.addNamedArgument("routing_id", "routing"); // MyEntity.getRouring() – works!
    call.addNamedArgument("issue_id", "issue"); // MyEntity.getIssue() – works!
    call.addNamedArgument("country_id", "country"); // MyEntity.getCountry() – works!
    entityQueryManager.setInsertCall(call);
    entityQueryManager.setUpdateCall(call);
    entityQueryManager.setDeleteCall(call);
    the problem:
    when I call: MyEntity savedObject = (MyEntity) UnitOfWork.deepMergeClone(entity);
    the binding doesn’t happen and I see following logs:
    [TopLink Finest]: 2008.02.01 02:51:41.534--UnitOfWork(22937783)--Thread(Thread[AWT-EventQueue-0,6,main])--Merge clone xxx.Entity[id=2000]
    [TopLink Warning]: 2008.02.01 02:51:41.550--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: id null will be substituted. (There is no English translation for this message.)
    [TopLink Warning]: 2008.02.01 02:51:41.550--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: publicationFlag null will be substituted. (There is no English translation for this message.)
    [TopLink Warning]: 2008.02.01 02:51:41.565--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: routing null will be substituted. (There is no English translation for this message.)
    [TopLink Warning]: 2008.02.01 02:51:41.565--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: issue null will be substituted. (There is no English translation for this message.)
    [TopLink Warning]: 2008.02.01 02:51:41.565--ClientSession(8454539)--Thread(Thread[AWT-EventQueue-0,6,main])--Missing Query parameter for named argument: country null will be substituted. (There is no English translation for this message.)
    [TopLink Fine]: 2008.02.01 02:51:41.565--ClientSession(8454539)--Connection(6233000)--Thread(Thread[AWT-EventQueue-0,6,main])--BEGIN ? := merge_record(cbic_id=>?, publication_flag=>?, routing=>?, issue=>?, country=>?); END;
    bind => [=> id, null, null, null, null, null] – WHY?
    Calling straight forward the same PL/SQL block using:
    DataModifyQuery updateQuery = new DataModifyQuery();
    updateQuery.setCall(call);
    updateQuery.shouldBindAllParameters();
    and passing parameters as Vector works very well.
    Could you please help me to fix the binding problem when I’m using the PL/SQL with Query Manager?
    regards,

    Hello,
    This is fairly common. Since the database is case insensitive (mostly) field names passed in don't really matter much. Unfortunately, java string comparisons are case sensitive, so if you db column for the getId() property is defined as uppercase "ID" it will not match to the lower case "id" defined in the
    call.addNamedArgument("cbic_id", "id");
    This will cause TopLink to get null when it looks for the "id" field in the row it builds from your MyEntity instance.
    Matching the case exactly will resolve the issue.
    Best Regards,
    Chris

  • How to create portal pages for GUI data updates

    Hi,
    We have a simple (seems) requirement to develop a portal page to provide GUI for users to update oracle tables. No valdiations or any anything, just plain inserts into the table. How do i approach this from step1. ( I have the portal installed and configures and etc).
    Thanks,
    Vijay

    Thanks a lot for your help:
    I've find a temporaly solution for my problem, it consist in a pl/sql porlet whit this code on it:
    ---------------------code-----------------------
    declare
    page number;
    begin
    page :=PORTAL.wwsbr_api.add_folder(
    p_caid => 1201,
    p_name => 'PAGENAME',
    p_display_name => 'page name',
    p_type_id => PORTAL.wwsbr_api.FOLDER_TYPE_CONTAINER,
    p_type_caid => 0,
    p_isportlet => 1); PORTAL.wwpro_api_invalidation.execute_cache_invalidation; end;
    --------------end code---------------------
    and now im trying to do this from java using an OracleCallableStatement, after that i will try to insert content using this api, if anybody knows, please put a sample of code to execute pl/sql from java using OracleCallableStatement
    Regards
    Message was edited by:
    Dreamloger

  • How to change the settings for Last data update in BI

    Dear All,
    If you want to display that "Status of Data " field in the report... Then you need to set it at...
    Run the query -> from the BEx toolbar choose LAYOUT -> Display text elements -> General.
    If this is not set, then it will not show in report output.
    Status of data is the time on which the latest load occured to the cube. Lets say, you have built a report on a cube which is loaded on 01/10/2007. When you run the report, the status of data will show this date 01/10/2007 until you load the cube again. In this case, if you load on 01/20/2007, the status would now show up as 01/20/2007.
    If we want to display that field in the report...
    Run the query -> from the BEx toolbar choose LAYOUT -> Display text elements -> General.
    The above all is for BW 3.5
    but i want to know for BI 7 and EP
    Regards
    venu

    Hi,
    First thing here is, in SM58 u r finding the entries means those are related to TRFC LUW's. we shuld never stop this unless those are not useful.
    These TRFC's moves from the source system to different Target systems by their respective users.
    As u said that these Entries are occupying the system resources i.e in accordance to that we have to increase our dialog process in the system not to simply stop that TRFC entries.
    These trfc's move basing on the Dialog processes in the system i.e if the processes are free then these entries move freely from system to system.
    Automatically system generates these LUW's when ur scheduling a load from R/3 to BI system.
    This will not be generated to BI by a particular job in R/3.This depends on the volume of the data only.
    So pls have a talk with BASIS team regarding the resource availability and the movement of the LUW's/TRFC's into BI system.
    rgds,
    Edited by: Krishna Rao on Jun 25, 2009 1:38 PM

  • Functional Module for Delivery date update

    Hi all,
    Can anybody help me to solve my problem. My requirement is to update order delivery date for a partner. But I am not getting any FM for that and not getting the table name also where I can update delivery date value. If you have any known FM or any suggestion please tell me.
    Thanks in advance
    Chandan

    Hi all,
    Can anybody help me to solve my problem. My requirement is to update order delivery date for a partner. But I am not getting any FM for that and not getting the table name also where I can update delivery date value. If you have any known FM or any suggestion please tell me.
    Thanks in advance
    Chandan

  • Function Module for Delivery date update

    Hi all,
    Can anybody help me to solve my problem. My requirement is to update order delivery date for a partner. But I am not getting any FM for that and not getting the table name also where I can update delivery date value. If you have any known FM or any suggestion please tell me.
    Thanks in advance
    Chandan

    Hi,
    The function module is
    <b>/1CRMG0/CUST_CHAN_WRT_I01</b>
    Best Regards,
    Johnny.

  • User Exit for delivery Date Update in ME41

    Hi,
    I want to Create one User Exit which will Update the Delivery Date of All Line Items ,same as of Item one.
    Detail : When creating RFQ using tcode ME41, create with Reference to PR, add your collective Number and copy few line items from your PR, say 5 items selected, now  when come to RFQ it asks to change item details if require,
    now here i want to change Delivery date of item one and when putting new delivery date, and press enter then it should update all (remaining 4 ) items delivery date same as of item one. so that user do not need to update all items delivery date one by one.
    is there any user exit/Enhancement Spot available which get triggered after pressing enter when changing the items?
    Thanks in advance.
    Regards,
    Sujeet

    Hi,
    Check these enhancements:
    ME590001           
    MEETA001           
    MEFLD004           
    MELAB001
    Jitendra

  • Unable to run bapis for project status update and date update together

    Hi Experts,
    I have a requirement to update the dates and status of a project WBS at level 4. I am trying to do update the CJ02 Transaction using standard BAPI available. I need to do both Date update and status update in the same LOOP PASS   i am using the below mention bapi. when i am doing so i am getting an error Project 'A._____' has been currently processed by ID i.e. my id.
    I have tried putting  a wait for 2 seconds in the code but its still not working. please find the order below in which i am calling the bapi.
    Loop at itab.
    if  date_changed = 'X'.
          CALL FUNCTION 'BAPI_PROJECT_MAINTAIN'
          READ TABLE it_error WITH KEY message_type = c_e.
          IF sy-subrc <> 0.
    Commit
            CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                 EXPORTING
                      wait   = c_x
                 IMPORTING
                      return = s_ret.
       endif.
    endif.
    if Status_change = 'X'.
          CALL FUNCTION 'BAPI_PS_INITIALIZATION' .
          CALL FUNCTION 'BAPI_BUS2054_SET_STATUS'
          READ TABLE t_result WITH KEY message_type = c_e.
          IF sy-subrc NE 0.
            CALL FUNCTION 'BAPI_PS_PRECOMMIT'
                 TABLES
                      et_return = t_ret.
            CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                 EXPORTING
                      wait   = c_x
                 IMPORTING
                      return = s_ret.
         ENDIF.
    endif.
        WAIT UP TO 4 SECONDS.
    endloop.

    Try to use
    SET UPDATE TASK LOCAL.
    before each BAPI call.
    Did you try to debug through your code, leaving sufficient time between BAPI calls? If it does work like that, then the above statement might help.

  • Prevent concurrent data update in Hyperion planning

    Hi,
    We have a Hyperion planning application with below features,
    Apart from the basic dimensions, there is a dimension "Item Code" with about 100 item codes as dimension members slay Item001 to Item100.
    A dataform where data is to be updated against an Entity, a Business rule is run to select the first unused item code dimension member from the Item code dimension for this data update.
    Assume the following combination has data
    Entity1 -------------> Item001
    Entity1 ---------------->Item002
    When the data form is opened to update data for any Entity and the business rule is run, the next first unused Item code will be selected for data update.
    Now, if two users open the webform to update data for Entity1, Entity2 respectively, the business rule would pick up Item003 the next first unused Item code.
    Entity1 -------------> Item003
    Entity1 ---------------->Item003
    This is not desired. How to prevent this situation. ?

    I am working with version 11.1.2.1 and running into the same issue. The Supporting detail option works fine if the application has just a few details, let’s say 50 cells, but if we have around 500 cell with details then the copy process never ends, the details are not copied, and I have to restart the Planning service. As a workaround we are using a two steps process. In the first step we copy the just Essbase using the copy data functionality of Planning (with no data copy options enabled) or by using an Essbase calculation script. For the Supporting Details piece we use the Export for Edit functionality of LCM and export them to an XML file, and then we edit the XML file and change the source member name with the target member name, and finally we use the Import after Edit functionality of LCM. Of course if works only if the Planning application was deployed using EPMA.

  • Last Data Update in Visual Composer and Web App Designer

    Hello,
    We want to show the last data update in query result and we used 2
    differents ways to do it: throught Web Application Designer (SP 12) and
    Visual Composer (SP 10).
    In query result of Web Application Designer, the last data update came
    in GMT0 and in visual composer came ok (GMT - 3, that's our time zone).
    This value (ROLLUPTIME) is taken out of the RSMDATASTATE table and this is used in SAPLRSMDATASTATE program, that is called by Web App Designer.
    Why does the difference exist between: Web App Designer and Visual Composer for last data update?
    So, I need more information how the Visual Composer brings the correct value (in our time zone) and Web App Designer in GMT0.
    Best Regards,
    Pablo Moraes

    Hi Mario,
    Yes, i used the same user and the same query to access the information. But, how can i check the mapping from my VC user to the BI user?
    Regards,
    Pablo Moraes

  • Manufacturing date updation

    Hi,
    We are using Discreete manufacturing in our SAP system. Currently we are implementing SAP one of our foundry unit. They wants to enter the Manufacturing date at the time of Production confirmation screen. In repetetive system, Tcode MFBF, manufacturing date is availble. But we are using CO11N for confirmation. In that Screen, Dates header is availbe. The Start executin date & Finish execution date field is available.
    I want to know, whether i can use this filed for Manufacturing date updation.
    Regards
    R Vaithiyanathan

    Hi ,
    You can bring LOBM_HSDAT characterisitc using BMSM traxn. Assign this Char in Batch class of finished material.
    CO11n( If you have selected auto goods receipt)  or MIGO on production order will update MCH1--> HSDAT field.
    You can pullout from table/ batch master data.
    Hope it helps,
    Jatin

  • BBM Update + Automatic Status Update??

    Dear Blackberry,
    The fact that you automatically sent out an automatic status update when I upgraded to the most recent version of BBM is *infuriating*. If I want to notify people that BBM is available for Android and iPhone, I'll tell them myself. 
    Please stop talking on my behalf.
    Thanks.

    One post is sufficient.
    http://supportforums.blackberry.com/t5/BBM-for-BlackBerry/BBM-Update-Automatic-Status-Update/m-p/268...
    1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
    2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

Maybe you are looking for