Want to learn Business Objects..please guide me in this regard

Hi All,
Could anyone guide me how to lear Business objects ? Actually thr r many tools in this module ..please suggest me which one is the latest one with some information..i would like to do certification as welll...pls guide
Thanks & Regards,
Kiran

Hi,
Getting started
https://www.sdn.sap.com/irj/boc/business-objects-for-sap?rid=/webcontent/uuid/20f83c7e-3f2a-2c10-7dbf-a5ec14611a1e [original link is broken]
Software / Installation
https://www.sdn.sap.com/irj/boc/business-objects-for-sap?rid=/webcontent/uuid/a02d2792-452a-2c10-7c8f-ddd50dad779b [original link is broken]
Content Library
https://www.sdn.sap.com/irj/boc/business-objects-for-sap?rid=/webcontent/uuid/70041b55-b52a-2c10-87a3-e4fa3c3acdaa [original link is broken]
http://www.sap-press.de/katalog/buecher/titel/gp/titelID-2053?GalileoSession=78576305A3-RD.-s47E
Ingo

Similar Messages

  • Need to add new column in SAP Query - Please guide me in this regard

    Dear All,
    In SAP Query, I need to put a new coulmn of each record for the difference of Billing date and PGI date as a work days.
    eg: Billing Date = 02.05.2008
         PGI Date = 08.05.2008
    Take a Variable i.e. Days = Billing Date - PGI Date that will display as 5 days by excluding Saturday and Sunday.
    After doing calculation of these work days for each record, we need a to add a new coulmn in that record as field lable as "Work Days" and display.
    Please Guide me in this regard
    Regards,
    Sateesh.

    Hi Rama,
    In SQ01 when you are in the fields (first would be attributes, when you click next it takes you to field groups, and again when you click next if takes you to fields tab) check the following menu path
    EDIT -> LOCAL FIELD -> CREATE
    You can define the formula as per your requirement and populate the field.
    Hope this is helpful.
    Thanks,
    Pavan

  • How to restore/view the deleted records - Please help me on this regard

    Hi All,
    Please help me in restore/view the deleted data.
    I had removed 2 records from a table without back up and commited the same. Now I want to restore/view it, can you please guide me on this regard.
    Oracle Version: 10g
    OS: Windows XP
    Database in Archive Mode.
    With Regards,
    Jamearon

    Aman.... wrote:
    <snip>
    If all what you want is to view the data, you can use the Flashback's as of query which would enable you to go back either by SCN or by Timestamp. If you want to restore those rows back in the time( and losing the changes that has happened in that time ), you can use the Flashback Table option. An example of this is given below,
    http://www.oracle-base.com/articles/10g/Flashback10g.php
    HTH
    Aman....As promised, here's one way to use flashback to restore the one deleted row without having to impact the rest of the table with a general FLASHBACK TABLE.
    =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2011.01.23 15:17:56 =~=~=~=~=~=~=~=~=~=~=~=
    login as: oracle
    oracle@vmlnx01's password:
    Last login: Sun Jan 23 15:13:10 2011 from 192.168.160.1
    [oracle@vmlnx01 ~]$ sqlplus /nolog
    SQL*Plus: Release 10.2.0.4.0 - Production on Sun Jan 23 15:18:11 2011
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    SQL> @doit
    SQL> col col_ts for a15
    SQL> conn scott/tiger
    Connected.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE10.2.0.4.0Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    5 rows selected.
    SQL> --
    SQL> alter session set nls_timestamp_format='hh24:mi:ss.FF';
    Session altered.first we will create a test table and populate it. Pay close attention to the row identified by col_id=2
    SQL> drop table flashtest;
    Table dropped.
    SQL> create table flashtest
      2   (col_id number(1),
      3    col_ts timestamp,
      4    col_txt varchar2(10)
      5   );
    Table created.
    SQL> --
    SQL> insert into flashtest
      2    values (1, systimestamp, 'r1 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> insert into flashtest
      2    values (2, systimestamp, 'r2 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> insert into flashtest
      2    values (3, systimestamp, 'r3 v1');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.
    SQL> --
    SQL> select * from flashtest;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:21.841682 r2 v1
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL> --
    SQL> update flashtest
      2   set col_ts = systimestamp,
      3       col_txt = 'r2 v2'
      4   where col_id = 2;
    1 row updated.
    SQL> commit;
    Commit complete.
    SQL> select * from flashtest;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:35.929847 r2 v2
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL> exec dbms_lock.sleep(5);
    PL/SQL procedure successfully completed.So at this point we can see that we have 3 rows, and row 2 has been modified from its original values.
    Now we will delete that row.
    SQL> --
    SQL> delete from flashtest
      2  where col_id=2;
    1 row deleted.
    SQL> commit;
    Commit complete.
    SQL> --
    SQL> select * from flashtest
      2  order by col_id;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             3 15:18:28.772038 r3 v1
    2 rows selected.Now let's do a SELECT...VERSIONS and see what flashback knows about the row.
    SQL> --
    SQL> select col_id,
      2         col_ts,
      3         col_txt,
      4         nvl(versions_startscn,0) START_SCN,
      5         versions_endscn END_SCN,
      6         versions_xid xid,
      7         versions_operation operation
      8  from flashtest
      9  versions between scn minvalue and maxvalue
    10  where col_id=2
    11  order by col_id, start_scn;
        COL_ID COL_TS          COL_TXT     START_SCN    END_SCN XID              O
             2 15:18:21.841682 r2 v1               0    2802287
             2 15:18:35.929847 r2 v2         2802287    2802292 0200260082060000 U
             2 15:18:35.929847 r2 v2         2802292            0A002300A4060000 D
    3 rows selected.
    SQL> --And having seen the above, we can use a more selective form to provide the values for an INSERT statement to put the row back.
    SQL> insert into flashtest
      2     select col_id,
      3            col_ts,
      4            col_txt
      5     from flashtest
      6     versions between scn minvalue and maxvalue
      7     where col_id=2
      8       and versions_operation = 'D'
      9  ;
    1 row created.
    SQL> --
    SQL> select * from flashtest
      2  order by col_id;
        COL_ID COL_TS          COL_TXT
             1 15:18:14.896167 r1 v1
             2 15:18:35.929847 r2 v2
             3 15:18:28.772038 r3 v1
    3 rows selected.
    SQL>One could also query FLASHBACK_TRANSACTION_QUERY to get the actual DML needed to UNDO an operation on a single table.

  • I want to virtualize Business Object

    Hi all,
    I want to virtualize Business Objects in my company.
    My question is: Do You know if SAP supportes Business Objects  in virtual environment ?
    thanks,
    Konrad.

    Hi,
    Thanks for Your answer,
    Could You please show me a SAP document where is witten, i need this for my leader
    Thanks
    K.

  • I am using iphone 5s, i want to send group sms , please guide how to do group sms.

    1 - i am using iphone 5s, i want to send group sms , please guide how to send.
    2- how to sync address book with catagory on outlook to iphone 5s. when i sync catagory does not sync , only address book do.
    it catagory sync, it we can make group easyly. is it possible.
    if not is there any way to get it , as this is very important feature.

    Read the User's Guide, it covers basic functionality of the device.

  • My ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    my ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    This article should give you the options
    https://discussions.apple.com/docs/DOC-3991

  • Hello, I am a user of the iPhone is not the place for bi çıkıcak turkey apple brand products and product support and equipment does not work as it used to fix and send back waiting for your help. Please support me in this regard quit

    Hello, I am a user of the iPhone is not the place for bi çıkıcak turkey apple brand products and product support and equipment does not work as it used to fix and send back waiting for your help. Please support me in this regard quit

    We are all iphone users just like you.
    Do you have a question for fellow iphone users?

  • Getting Error "Apple ID does not have permission to access iTunes Connect" while logging to iTunes. Please help me in this regard

    Getting Error "Apple ID does not have permission to access iTunes Connect" while logging to iTunes. Please help me in this regard
    Regards,
    Amar

    See the "More Like This" section over there ===============>
    In the future, search before posting.

  • My wifi has gone grey???? PLease help me in this regard

    After updating my iphone 4S with iOS 6.1, my wifi has gone grey , please help me in this regard??

    IOS: Wi-Fi or Bluetooth settings greyed out or dim.
    http://support.apple.com/kb/TS1559

  • I know abap, want to know details on BO(Business Objects). please help me!!

    hi, I know abap, want to know details on BO(Business Objects) & its relationships with ABAP.
    i may learn BO or CRM. want ur ideas. please help me!!
    Thanks!
    -Parthi

    Please try to Post in Proper Thread
    If u  r trying to Learn SAP Bo Means
    Help.sap.com
    is the Best Sites for
    and Below Links it will become an Expert in Bo
    Assign Points if it Useful
    http://help.sap.com/businessobject/product_guides/
    http://www.sdn.sap.com/irj/scn/businessobjects-elearning
    Thank u

  • Basis exp. in ECC, Solman Want to Learn Netweaver Components please help me

    Dear All,
    I'm basis consultant having experience in ECC6.0 and Solution Manager. As it is very essential to learn Net-weaver Components to survive in SAP, I humbly request all the friends and Professionals who are already having experience in Net-weaver components and learning Net-weaver components.
    I can only involve self learning according to my situation and environment. Please guide me all my dear friends and Professionals.
    Thanks & Regards
    Balamuralikrishna
    <MOVED FROM PI FORUM>
    Edited by: Prateek Raj Srivastava on Aug 2, 2010 12:02 PM

    Hello
    This forum is not designed for career advice. This forum is for PI technical issues only. Please open your thread in a more appropriate forum.
    Education/certification issues
    1) [SAP TechEd|SAP TechEd;
    2) [SAP Certified Professionals |SAP Certification;
    This thread will be locked and deleted.
    Regards
    Moderator

  • Hi..want to the business object

    hi,
    I would like to add the qualifications to the user profile..
    For that i want to know the Business object... can anyone help me out

    You were using RDC, not Enterprise.
    What are you using now?
    Sincerely,
    Ted Ueda

  • Business Objects Beginners Guide

    Can any one provide the link for BO beginners Guide?
    thanks

    Please take a look [here|http://www.sdn.sap.com/irj/boc/business-objects-for-sap?rid=/library/uuid/50d9f278-67ab-2a10-94b0-eb44d92c2189] and then at [this|Beginner in BOs; and [this|BO for beginners; forum threads
    - Subhodeep

  • HT4623 I cant find software update in my iphone 3GS. How can i update my iphone to ios6? Please guide me on this

    I cant find software update in my iphone 3GS. How can i update my iphone to ios6? Please guide me on this

    Connect iPhone to syncing computer.
    Start iTunes on computer.
    If there is an update available, it will prompt you.

  • I have unlocked my iphone and when tried to upgrade it, i got an error, so i restored it.But i was not able to activate my iphone 3gs now...it is showing a message like ' sim card not found'..please help me with this regard

    I have unlocked my iphone and when tried to upgrade it, i got an error, so i restored it.But i was not able to activate my iphone 3gs now...it is showing a message like ' sim card not found'..please help me with this regard

    Try popping out the SIM card and turn off the phone.
    Pop in the SIM card once again and turn on the phone, make sure that the SIM card is placed and seated perfectly in the tray!
    Tell me how did you unlock your phone!?

Maybe you are looking for

  • Problem in using methods in Interface, CharacterData in org.w3c.dom

    Hi, I am trying to use two methods provided by CharacterData Interface. The getData() and getLength() methods. It is giving error when I use it like this String dat3 = myNode.getData(); Is there anything wrong in the way I am using it? Can somebody p

  • Crystal Reports XI: formatting and exporting to Excel (VB 6)

    Hi. I have a VERY simple report that all I want it to do is display the numbers from a table EXACTLY as formatted and be able to export them to Excel, as NUMBER (not STRINGS). Example: My fields may contains the following values in a single column: 4

  • How to display more than 30 columns in one line?

    Hi, I want to display some 30 columns in the report. I dont want to split it into sub reports. How can i do. In that i have 3 groups. For each group i need one total. For example. after group 3 i need sub-total after group 2 i need total after group

  • Compressing movie for the web

    Hello All! Im fairly new to director but have lots of experience with flash. Hope it will become handy I have eLearning movie that I plan to distribute over the internet but the published dcr is 22mb which is not ideal for preloading. I guess that I

  • Tuning an  insert query

    Hi, I have ... 1)a big table(base table ) (60 columns.. 10,00,000 ). And 2)a procedure(test_pro). This test_pro populates a table by insert and store only the PK of base table and user's session id (SID). so this is something happening....... exec te