SEM Management Cockpit - "Data Last Updated On:" message

Dear gurus,
       I would like to know if there is a way to suppress the message "Data Last Updated On: XX.XX.XXXX XX:XX" it the SEM Management Cockpit graphics.
       It started to appear after a support package installation but it is not a desired info for our users.
Thanks in advance.
L. Felipe

Hi!
Got the solution! I had to enable the query for external access in the Extended Query properties. Post that the data source is being recognised in my SEM 3.5 managment cockpit.
regards,
Anirudha

Similar Messages

  • Graphs in Management Cockpit SEM 4.0

    Hello All,
    We have upgraded our BW and SEM systems from 3.0 and 3.1b to 3.5 and 4.0 respectively.
    We are now seeing a strange behaviour. In SEM 3.1b, while creating graphs in the management cockpit, we were able to assign specific colors for each column of a graph, say for example.. a custom color for Actuals and a custom color for planned amounts.
    However, after the upgrade, we are unable to see any option to customize the columns in the graphs.
    Am I missing something simple? Any and all help is deeply appreciated.
    Regards
    Sunil

    <i>Dear Jeroen:   
    For showing tables below any graph in SEM Management Cockpit, you have to select "Data Table" in the design of the graph. Attention: It's possible that you have problem for seeing this in the presentation, because It's probable that you need applying a note.   
    Please, If you have this error, let me know and I find note's number.</i>

  • Vendor ID, Last Update Date, Invoice Details - Query

    For each Supplier, we would like to know the vendor ID, vendor number, vendor name, vendor site code, Created Date, Last Update Date, last invoice date, last payment date, total number of invoices and total $ amount of invoices for each supplier.
    1) How do i find the last payment date and supplier catagory?
    2) As i have to use sum(invoice_amount), count(invoice_amount), max(payment_date) which point to 3 different tables, i am not sure how to use "group by" based on the Vendor_id alone while i select lot of fields from different table. Could you please help me with this?
    3) Please help me to get this query fixed.

    1) You can get last_payment_date by joining vendor_id to ap_invoices_all and the joining invoice_id with ap_invoice_payments_all to get the max accounting_date (i.e. last payment date)
    2) You are partially right. Invoice_amount and invoice_count are from the same table so you have to join 2 tables. Best way is to do a select in the select.
    e.g SELECT   pv.vendor_name, COUNT (1), SUM (invoice_amount), pv.vendor_id,
             (SELECT MAX (aipa.accounting_date)
                FROM ap_invoice_payments_all aipa, ap_invoices_all aia2
               WHERE aia2.vendor_id = pv.vendor_id
                 AND aia2.invoice_id = aipa.invoice_id) latest_payment
        FROM ap_invoices_all aia, po_vendors pv
       WHERE aia.vendor_id = pv.vendor_id
    GROUP BY pv.vendor_name, pv.vendor_idSandeep Gandhi

  • How to insert last update date and user id to a form?

    Hi,
    I have created a form to enter data to a custom table.
    When a new record is created, I would like to keep track of the creation date, last update date and who (user id) enters the form.
    Can someone please help or point me to a right place to look for this information?
    Thank you!
    LC

    Create four new columns in your table called Created_On, Created_By, Last_Updated_On and Last_Updated_By.
    You can create a trigger to accomplish the rest:
    create or replace trigger "<name of your trigger>"
      before insert or update on "<name of your table>"
      for each row
    begin
      if inserting then
        :NEW.Created_On := sysdate;
        :NEW.Created_By := v('APP_USER');
      end if;
      if updating then
        :NEW.Last_Updated_On := sysdate;
        :NEW.Last_Updated_By := v('APP_USER');
      end if;
    end;Every time you'll add or modify data in that table, the trigger will automatically fill those fields.
    Regards,
    Mathieu

  • Drlldown(management cockpit)

    Hi friends,
    Could anybody simply explain what is meaning of drill down in managment cockpit?
    1. How many levels of drill down, one can provide drill-down in a frame?
    2. Can we drill down from monthly to calday wise, year to date,month to date and quarter to date?
    3. How can i use calmonth in interval representaion in selection criteria of a frame (cockpit design)?
    Ours Version SEM6.0 on BI7 system.
    Line: -
    If anybody able to access below url info, pls forward me info in this thread:
    Make the SEM Management Cockpit More Useful with Drill-Down Configuration
    by Paul Halley, Director of Strategic Enterprise Management, Business Information Solutions
    Financials Expert - Volume 3 (2004), Issue 2 (February)
    http://www.financialsexpertonline.com/article.cfm?session=&uid=d05762e8-8d85-450f-bcea-228d9cd01f3e
    thanks,
    naresh

    static drill-down

  • How do I unmerge my husband's phone from mine since the last update?

    My husband and I use  my iCloud account on our iPhones, but since the last update the messages are merged. How do I unmerge them? I am now getting copied on the texts getting sent to his phone and if I text him it shows up on my phone.

    To fix this go to Settings>Messages>Send & Receive and do one of the following:
    Either uncheck the email address shown under "You can be reached by iMessage at" on all of your devices (the easiest solution); or
    If you want to continue to receive iMessages at this email address on one of your phones, on the other one tap the Apple ID at the top, sign out, then sign back in using a different Apple ID (so both phones are using a different Apple ID for iMessage).  Note: you can continue to share an Apple ID for purchasing from the iTunes and App stores.  It does not need to be the same as the ID you are using for iMessage, FaceTime and other services.

  • Date Last Viewed of Read Messages Not Updating

    I have a smart mailbox that should be displaying the messages viewed in the last two days. However, it seem to be updating the messages last viewed date when I view them. Instead, it will only update messages when they are UNREAD. This doesn't seem to be the correct behavior. Is anyone else having this behavior or is it just me? Thanks,

    Smart Folder behaving exactly the same way for me. It's a pity. I really want a way to show all mail I've read today, whether it was previously unread or not.

  • Presenting data on a daily or weekly basis in Management Cockpit

    Hello all!
    I'm working at a manufacturing company that needs to follow up production data at a daily or at least at a weekly basis. Is it possible to present data on these levels in Management Cockpit or are the only options month and year?
    Regards,
    Peter Estberg
    IT-department
    Sapa Profiler AB
    Vetlanda
    Sweden

    Hi
    If your taking report from SEM / BW, whichever server your taking report there you have to create a time variable for week
    You have to do a little bit workaround for this
    Create time char for CALWEEK
    Write coding in update rules to feed them - feed directly if source is having calweek values,
    If not you have to write a routine referring the available time charrs
    Then inculde this in time char in your data target and in the query and in the selection screen of the query
    To include in the selection screen you need to create a variable for selection referrring this time char for week
    Hope this helps
    Regards
    N Ganesh

  • Foxfire downloaded an up-date last night (10 20/2010) at 5:30 PM EDST and it crashed the compter on re-start with an error message... Missing or Corrupt File ... WINNT\system32\config\SYSTEM

    Foxfire downloaded an up-date last night (10/20/2010) at 5:30 PM EDST when I started Firefox, and it crashed the compter on re-start with an error message... Missing or Corrupt File ... WINNT\system32\config\SYSTEM. This machine is Windows 2000 Professional on Dell computer and Foxfire 3.6 or 4 not sure computer is stuck at the error message.

    Hi there,
    You're running an old version of Safari. Before troubleshooting, try updating it to the latest version: 6.0. You can do this by clicking the Apple logo in the top left, then clicking Software update.
    You can also update to the latest version of OS X, 10.8 Mountain Lion, from the Mac App Store for $19.99, which will automatically install Safari 6 as well, but this isn't essential, only reccomended.
    Thanks, let me know if the update helps,
    Nathan

  • Dimension Current Flag and Last Update date not updated - SLD issue!

    Hi.
    ODI is running pretty well now. I have created several interfaces from flats, multi database tables, but still have to test the services and cdc, etc... later I will do this.
    I am having a small issue here when dealing with Slowly Changing Dimensions. I am trying to populate a product dimension. I use a Load KM and the SLD KM. Then I update a product row in the source, and I wish to make sure that type-II runs OK for major and minor changes after running the interface.
    Well minor changes run ok, deletes don't run at all, and update for major changes should generate another surrogate key and turn the old record "current flag" to zero and "close"/update the last update date as well!!!
    What am I missing here? Is this related to the KM restrictions?
    "Restrictions:
    - Make sure to map ALL target table columns flagged as: "Surrogate Key", "Natural Key", "Current Record Flag", "Start Timestamp" and "End Timestamp". Notice that mappings set for the "Current Record Flag", "Start Timestamp" and "End Timestamp" columns are not used."
    Do I need to implement somehow that behaviour or use another KM?
    Another question regarding data warehousing: Well usually in a bespoke DW we can have N sources, N staging areas, and several data marts. Using ODI, for instance what are the best practises to create or simulate this behaviour??
    I know that using a Knowledge Module I can load/extract (to temp tables in the source work schema), then integrate in the target schema.. using the same schema to temp staging tables or another schema.... what is the best aproach?
    Any dw people wants to share some experiences here?
    Thank you all.
    Best regards,
    Alvaro
    Message was edited by:
    Alvaro Silva

    Thanks Cezar :)
    Well Updates work if I unckeck 262!!! :) But deletes are not setting the CURR to zero!!!
    PS: um abraço para ti também .... o mundo é pequeno! :) será que podes adicionar-me no messenger para alguma troca de experiências? [email protected]
    Alvaro
    Message was edited by:
    Guest

  • The last update failed on my window 7 pc, resulting in me having to try it manually download and install, this also failed leaving my I tunes not working, I tried restore back to a safer date, but every time it tried to update it failed. eventually i

    The last update failed on
    my window 7 home prermium pc, resulting in me having to try it manually download and install,
    this also failed leaving my I tunes not working, I tried restore back to a
    safer date, but every time it tried to update it failed. eventually it told me
    to delete and reinstall, this fails due to the apple mobile device service
    failing to start, and asking me if I have sufficient privileges to start system
    service, I have tried all suggestions on iTunes page, ie delete everything to
    do with apple, and start as administrator, nothing works, help please

    I too have tried the latest iTunes (12.1.1.4) in Win7. I did a search for latent drivers as you noted but found none. I am glad it worked for you - I'm still no-joy at this point. I'm able to install AMDS over and over again, without issue - it just doesn't start then iTunes launch fails with Error 7. I have to manually remove it.
    I am able to connect my iPhone via USB cable and access my photo storage on the phone. I am just not able to install iTunes anymore. I have attempted resolution to this issue for almost two months now. Until that time, I was content with what was installed. It was only when the proverbial update box appeared that I attempted to 'update' my iTunes. WHAT A MISTAKE putting blind faith into an Apple request to update. I SUGGEST NOT TO UPDATE YOUR ITUNES IF IT IS RUNNING PROPERLY!
    I realize now, once again I might add, my reliance on software provided by others. It's like anything else, I shouldn't rely on just one method for anything. Time to search for a more pleasant alternative than Apple. Truly, when it worked, it was good at its job, but now that I am wasting time I am looking seriously at upgrading to another type of smartphone and media management software. Way too much trouble for anything as simple as this should be. I wonder, is this a result of another feud with Microsoft?

  • Add Last Updated Date/Time to Cube

    Is there a way that you can display a date field in EXCEL when a user logs in to a cube so that they can see when the cube was last updated (date/time)? I am currently attaching a note using linked objects but would like to find a more automated solution.

    At a previous job, we managed to pick up the system date during the batch and write it into the Database/Set note (from app manager). I can't remember the exact details but pretty sure we used the API.Then people could see when they logged in whether the database had been updated or not.At another place we sent out automated e-mails at the end of each update to those users with access to the database.Ideas only I'm afraid but hope it helps.

  • SEM-CPM Balanced Scorecard and Management Cockpit

    Hi
    Does anyone have any examples(screenshots) of the Management Cockpit and Balanced Scorecard BSP applications?
    Thanks
    Yeteen

    Leelananda and others PLEASE NOTE!
    This original post was in 2006 and Jason does NOT seem to be an active member. His member email bounces so he will not receive any alerts about updates to this post.
    SEM-BSC is a product that has been sunset. The current SAP product for using the Balanced Scorecard is SAP BusinessObjects Strategy Management, (SSM).
    I would be happy to provide information about SSM if you would like. Contact me directly.
    Regards,
    Bob

  • SEM CPM - Management Cockpit

    Hi Guys,
    Currently we are working on creating SEM CPM management cockpit and the requirement is as follows,
    1.we need to diplay one of the query result directly in the dashboard.(without any graph)
    2.We need to create a table display with 3/4 KPI's which belong to different query(for the last 3 months). eg
         Month1  Month2  Month3
    KPI1        x                 x              x
    KPI2        x                 x              x
    KPI3        x                 x              x
    It would be great if you could help us on the same.
    Thanks,
    Suthakar M

    Hello Ashok,
    In my opinion, this tool cannot be used in Business Objects.
    Our [end user documentation|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000713358&_SCENARIO=01100035870000000202&] does not have any comment. I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • HT201210 I continue to get an error 37 message when trying to restore my iphone 3GS which crashed after trying to upload the last update. Does anyone else have this problem?

    I continue to get an error 37 message when trying to restore my iphone 3GS which crashed after trying to upload the last update. Does anyone else have this problem?

    Did you manage to fix the issue?
    I have exactly the same issue as described above : I installed the update 5.1.1 on my iphone 3GS and since then, I can not turn it on anymore. In Itunes, I get an error 37 when I am doing a restauration and it stops.
    This error has nothing to do with firewall : I tried to restore the phone on several computers, including in an Apple reseller and it did not work anywhere.
    I spent several hours on phone with the hotline from Apple which arrived to the conclusion that it is a hardware issue, but the phone was working perfectly fine until I installed this update!

Maybe you are looking for

  • Error while running the SAP JCO java program running via command line

    Hi,     We are facing an issue while using SAP JCO. When i try to run the sample program using RAD 8.0 ( IBM IDE tool For Java Development) its working fine. The same sample program if i try to run using command line, Then its giving below exception

  • Problems with java j2re using mozilla

    Hi, i'm using j2re1.4.2_05 plugin for mozilla in linux (Fedora Core 2). My internet access goes throught a router (SMC Networks ISDN Barricade SMC7301TA). It's settings can be edited throught a web browser LAN connection. And here the problems begin.

  • How to get back artist and album name

    I have bought or imported all of my music through itunes. However, when I updated to itunes 10, most of my artist and album information was lost. When I try to get the information, I get the message that itunes cannot get the information for items no

  • HT1665 i cant connect my ipod to computer to restore it

    ios 6 put a RANDOM RESTRICTION ON FACE TIME saying i cant use it and it changed my restristions password.its almost like apple hacked my ipod touch 4g!

  • Remote won't landscape

    Since I upgraded to iOS 7 my Apple REMOTE program on my iPad will not operate in landscape mode, only portrait. In addition when operating (in portrait mode) the program is very very slow.I've rebooted, downloaded another version, can't get it to wor