Internal BW inside the SRM installation

Hello All,
I'm trying to figure out why SAP has installed a BW inside the SRM system.
I have succeeded in replicating data sources into this internal BW but I have failed in installing the business content.
It seems like there is no business content.
Our basis guy told me that in the SRM installation, there is no special BI_CONT component like in a regular BW installation.
What am I  missing here ?
Any clarifications and explanations will be highly appreciated.
Thanks in advance, Amir.

Ey Guys whats up...
I'll use the same BW BC version as you, the basis guy already installed, the bw guy activated, loads, etc..  
Now its my turn, and thus I have this question:
- Is there any Business Package for BW-SRM reports ? (In order to see them in SAP EP).
Or
- What is the SRM standard way to show to the endusers these reports ?
Thank you ! =)
Regards,
Diego

Similar Messages

  • Help regarding programme to display internal programme inside the OS

    Can a programme be written in java which displays the number of internal processes running inside the operatingsystem with the click of a button.
    I found this link
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/ProcessBuilder.html#start()
    but not sure how to use it.

    That class is for invoking external programs. It doesn't let you examine arbitrary processes (at least not directly).
    If you have a program that can list running processes, and this program can be run from the command line, then you can use ProcessBuilder to run that program, and then examine its output to get the number of "internal processes" (it's not clear what you mean by "internal" there). Or you can use Runtime.exec, which is what people used before ProcessBuilder.
    I dimly recall hearing that utilities like this (listing various OS aspects from Java) are being supported better in JDK 1.6 but I don't recall the details.

  • Problem installating Snow Leopard on old Macbook Pro with Intel Core 2 Duo. After creating partition on internal hard disk (Extended Journaled), installation starts but stops at half of the progress bar. Screen asking Restart appears.

    Hello:
    I have tried installing Snow Leopard via the installation disc on a Macbook Pro (2007) with an Intel Core 2 Duo, but I the installation has failed more than 5 times.
    I have first formatted and partitioned the internal hard disk with Mac Os Extended Journal format.
    Once the installation starts, it starts without a problem unti lthe progress bar gest until half completed then a screen asking for a Computer Restart shows up.
    It asks to press the power button for some time until it the computer shuts down and then, press again to turn it on.
    Once turned on, the installation disc gets readed, the installation screen appears again and asks again to start the whole installation process form the beginning.

    Then you have a Hardware Problem.
    Your system is Crashing part way through the install and Re-Booting because of the crash.
    Could be the drive itself or it could be some other hardware part in your system. Like the RAM.
    To check if it is the internal drive connect an External drive to the system by USB and do the install on that external. If the install completes then it more then likely the drive is bad. If it crashes again then it is more then likely some other piece of hardware in your system.

  • Fetch the values from internal table inside an internal table (urgent!!)

    data : BEGIN OF PITB2_ZLINFO occurs 0,
             BEGDA LIKE SY-DATUM,
             ENDDA LIKE SY-DATUM,
             PABRJ(4) TYPE N,                       "Payroll Year
             PABRP(2) TYPE N,                       "Pay. Period
             ZL LIKE PC2BF OCCURS 0,
           END OF PITB2_ZLINFO.
    I have a internal table like this,
    How to Fetch the values from internal table inside an internal table.
    Kindly Help me on this..
    Regards,
    Ram.

    Hi,
    Try this....
    Loop at PITB2_ZLINF0.
    Loop at PITB2_ZLINF0-ZL.
    endloop.
    Endloop.
    Thanks...
    Preetham S

  • How to insert record inside the internal table in below code

    Hi all,
    My requirement is to find the sub-total and need to insert in between the internal table.
    You can see the output ....where I want the sub-total F2 when 1 & 2 combindely , 3 , 4& 5 combindely .Please check it and let me know is it possible
    when i am using modification  it is not creating extra row inside the table instead it is modifying one row and putting the total there.
    For ex: the origianl output is
    F1   F2       F3
    A      1          1
    B      1          1
    F      2          1
    D      3          1
    E      4          1
    C      5          1
    We want to display all the total of f2 of 1-2 , 3 , 4-5
    so expcected output is
    F1   F2       F3
    A      1          1
    B      1          1
    F      2          1
         *              3  ->This is the sub-total of 1& 2 of f2
    D      3          1
            *           1 ->this is the sub-total of 3
    E      4          1
    C      5          1
          *             2 -> this is the sub-total of 4 & 5
    = space
    But coming output is
    A 1          1
    B 1          1
    *             3 -> it is modifying the F row and inserting the total .Total is comong correct but is shoule insert  instead of modifying the record!!
      *           1
    E  4          1
    *             2
    Please help how to insert the row total at the end of the chage of field
    Please find the below code ..Due to space problem i am attaching below
    Sas

    Here is the solution ....i Got the answer Thanks for your helping hands friends
    REPORT  YTEST_MODIFY.
    DATA: BEGIN OF ITAB OCCURS 1,
    TOT TYPE C,
    F1 TYPE C,
    F2 TYPE C,
    F3 TYPE I ,
    END OF ITAB.
    DATA: BEGIN OF JTAB OCCURS 1,
    F1 TYPE C,
    F2 TYPE C,
    F3 TYPE I ,
    END OF JTAB.
    START-OF-SELECTION.
      ITAB-F1 = 'A'.
      ITAB-F2 =  1.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'B'.
      ITAB-F2 =  1.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'C'.
      ITAB-F2 =  5.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'D'.
      ITAB-F2 =  3.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'E'.
      ITAB-F2 =  4.
      ITAB-F3 =  1.
      APPEND ITAB.
      ITAB-F1 = 'F'.
      ITAB-F2 =  2.
      ITAB-F3 =  1.
      APPEND ITAB.
      SORT ITAB BY F2.
      LOOP AT ITAB.
        WRITE:/1 ITAB-F1 ,
              8 ITAB-F2 ,
              10 ITAB-F3 .
      ENDLOOP.
      LOOP AT ITAB.
        IF ITAB-F2 = 1 OR ITAB-F2 = 2.
          ITAB-TOT = 1.
          MODIFY ITAB.
        ELSEIF ITAB-F2 = 3.
          ITAB-TOT = 3.
          MODIFY ITAB.
        ELSEIF ITAB-F2 = 4 OR ITAB-F2 = 5.
          ITAB-TOT = 4.
          MODIFY ITAB.
        ENDIF.
      ENDLOOP.
      SKIP 2.
      SORT ITAB BY TOT.
      DATA : L_SUM(2) TYPE C,
             L_ROW(2) TYPE C.
      LOOP AT ITAB.
        MOVE-CORRESPONDING ITAB TO JTAB.
        APPEND JTAB.
        L_SUM = L_SUM + ITAB-F3 .
        AT END OF TOT.
          CLEAR JTAB.
          JTAB-F3 = L_SUM .
          APPEND JTAB.
          CLEAR L_SUM.
        ENDAT.
      ENDLOOP.
      LOOP AT JTAB.
        WRITE:/1 JTAB-F1 ,
              8 JTAB-F2 ,
              10 JTAB-F3 .
      ENDLOOP.
    *  DATA: a TYPE i , b .
    *  LOOP AT itab.
    *    IF b = 0.
    *      a = a + itab-f3.
    *    ENDIF.
    *    AT END OF tot.
    *      MOVE space TO itab-f1.
    *      MOVE space TO itab-f2.
    *      MOVE a TO itab-f3.
    *      MODIFY itab .
    *      CLEAR a.
    *      b = 1.
    *    ENDAT.
    *    b = 0.
    *  ENDLOOP.
    *  LOOP AT itab.
    *    MOVE-CORRESPONDING itab TO jtab.
    *    APPEND jtab.
    *  ENDLOOP.
    *  ULINE.
    *  LOOP AT jtab.
    *    WRITE: / jtab-f1 , jtab-f2 , jtab-f3.
    *  ENDLOOP.

  • What can I do to recover data from my iPhone 4s? The phone fail to come on again after the installation of the new iOS8. The phone is locked and I didn't make any backup before the updating installation. Inside I have very important info.

    I Have problems with my iPhone 4s after the installation of the new iOS8, the phone doesn't want to switch on again. I need to recover some important data that I have inside the phone.

    Ralph Landry1 wrote:
    There isn't anything you can do to recover contents from iPhone 4s if you cannot get the iPhone to startup.  Connect it to a wall outlet so you have a solid power source, then do a reboot by holding both the power and home buttons until the apple logo appears, ignoring the red slider if that appears.  If the iPhone still will not startup, the next options to try will automatically erase your iPhone all of its contents.
    The next step is to do a restore via the recovery mode as described in http://support.apple.com/kb/HT1808 but again note that this erases the iPhone.
    Thank you Landry, it is really a good experience to solve problem of iPhone Data Recovery!

  • Itunes 6 thinks 200gig Ext. HD is INSIDE the 30gig INTERNAL HD!

    I know this sounds ridiculous but:
    Tried to move 4.5 gigs of music over to a 200gig firewire external harddrive, but when ever I select "Consolidate Library," itunes gives me a "Not enough disk space" on INTERNAL DRIVE error, where "internal drive" is the name of my int. laptop harddrive.
    I believe this is because the OSX path for an ext. hard drive is written like this:
    INTERNAL HD:VOLUMES:EXTERNAL HD
    I think Itunes 6 thinks the ext. hd is a volume INSIDE the int., and thus scanning the int. hd for space for enough space first. (But if I had enough space on the int. I wouldn't NEED to move the music!) What should I do? Do i just have to clear enough space on the int. hd to TRICK it into copying onto the ext.?
    Powerbook G4 15 inch 1.67 Ghz   Mac OS X (10.4.2)  

    In the end i was able to solve the problem. I'm not sure why this happened, or why it worked, so if someone who understands better than I does, please feel free to explain.
    1) cleared off enough space on the int. hd to actually fit 2x the number of mp3s i had on it.
    2) went to itunes, selected my ext hd as the new library place, and selected "consolidate."
    3) this time no error msg, and the "consolidating" dialog. box came up, did its thing, and finished.
    4) checked my ext. hd, and the files were there, but also noticed that avail. space on the int. hd was noticeably smaller. exactly as if duplicate copies of the mp3 files had also been copied onto the int. hd as well.
    5) opened a shareware prog called FILE BUDDY that lets me see invisible files, and checked the int. hd. Sure enough, in a folder called "volumes" on the int. hd, there was a folder with the same name as the ext. hd, and in it were duplicates of all the mp3's. DELETED the duplicates using FILE BUDDY.
    problem solved.
    now i don't know much about unix boxes or OS stuff and am essentially a noob so i don't know if this is normal, but i noticed that this whole "referring to the ext. as a folder inside the int." started happening alot more when i re-formatted my ext. as MAC OS EXTENDED (journaled) (it had previously been a UNIX format, but used to have all kinds of much worse problems...)
    Anyone know how or why this happens?
    Oh, and spcl thanks to FILE BUDDY. (wish it had a longer trial period tho.)

  • Accidently shut down my Mac Book Pro during Windows 7 installation . When re-starting it says "Press any key to boot from CD or DVD". But keybord is not working . and i have the windows CD inside the drive . Pls hlp me to boot the mac again .

    I have accidently shut down my Mac Book Pro during windows 7 installation . When I re started it it began to say " Press any key to boot from CD or DVD " but the keyboard is not working . So I cannot  boot It and the CD is also in the drive . Please help me  to boot back to Mac book Pro and give me a way to start the key bord .

    Hey rudreshchoubey,
    Thanks for the question. The following resource may help to resolve your issue:
    Boot Camp Installation & Setup Guide
    http://manuals.info.apple.com/MANUALS/1000/MA1636/en_US/boot_camp_install-setup_ 10.8.pdf
    If Windows doesn’t install properly
    Verify that you’re using an original, full version of the 64-bit version of Windows 7 Home Premium, Windows 7 Professional, Windows 7 Ultimate, Windows 8, or Windows 8 Pro.
    Restart your Mac and hold down the Option key until one or more disk icons appear on your screen. Insert the Windows installation disc into the optical drive or insert the USB flash drive with Windows into a USB port on your Mac. Select the Windows installation disk icon, then click the arrow beneath it. Quickly press any key on your keyboard to start the installer. Follow the onscreen instructions to repair or reinstall Windows.
    Thanks,
    Matt M.

  • Loop at internal Table inside Script

    Hi
       I am filling a table in a subroutine in a program  and calling it through 'Perform' from my Script,now the main issue is , How to display the table in my script ? 
                I want to loop through an internal table & display its content on my script , but i can't make changes in the calling program by any means.

    Hi Ajitabh ,
    With PERFORM inside SAPSCRIPT you can only pass individual fields and also get back individual fields .
    Check This
    http://help.sap.com//saphelp_470/helpdata/EN/d1/802fd3454211d189710000e8322d00/frameset.htm
    Only "USING" and CHANGING" options are allowed and that too only symbols available / defined in sapscript can be passed .
    Even if you populate an internal table in the program you are calling with "PERFORM" there is no way to pass this internal table back to sapscript , also in SAPSCRIPT there is no way to loop .
    If you are sure about the no of lines you are going to populate and all lines have only one column ( only one field ) you can try something like this .
    /: PERFORM GET_VALUE IN PROGRAM <ZNAME>
    /: USING &VAR1&
    /: USING &VAR2&
    /: CHANGING &ITAB1&
    /: CHANGING &ITAB2&
    /: CHANGING &ITAB3&
    /: CHANGING &ITAB4&
    /: ENDPERFORM
    Anothe way is to loop in the main print program and call WRITE_FORM . But I guess your main print program is a SAP std program which you dont want to copy and change.
    Cheers.

  • Best Practices for SRM Installation !!

    Hi
        can someone share the best Practices for SRM Installation ?
    What is the typical timeframe to install SRM on development server and as well as on the Production server ?
    Appericiate the responses
    Thanks,
    Arvind

    Hi
    I don't know whether this will help you.
    See these links as well.
    <b>http://help.sap.com/bp_epv170/EP_US/HTML/Portals_intro.htm
    http://help.sap.com/bp_scmv150/index.htm
    http://help.sap.com/bp_biv170/index.htm
    http://help.sap.com/bp_crmv250/CRM_DE/index.htm</b>
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • Prerequisites of SRM Installation ?

    Hi All,
    We are planning for a SRM 5.0 SR1 Installation, I just want to know Do I need to installa NW04s before I start with SRM installation ? If yes what is the process of setting up the SRM system ?
    Can anyone please let me know about this.
    Regards,
    Srikar

    Hi Jose,
    Thanks for the update. I am really confused now after going through the Master Guide, what all required to setup a SRM system ? Please some simple brief on the required installations would be really helpful for me to start.
    Your help is appreciated and rewarded.
    Regards,
    Srikar

  • Standalone SRM installation

    Hi,
    I am trying to install a standalone SRM 5.0 SR2 IDES server with no R/3 ( SAP). I think i have downloaded the necessary softwares and while installing it is asking me to put "solution manager key". Is it nessary to install Solution Manager even for IDES setup? if yes, what the softwares should be downloaded for the basic installation.
    What other things would be required to setup standalone IDES SRM 5.0 SR2 server?Can i install the SRM IDES server on the same machine with SM 4.0?
    Thanks in advance,
    Vivek

    hi ,
    from srm 5.0 , solution manager  replaces business scenario configuration  guides
    which are delivered with SRM shipments.
    it contains IMG activities and transactions as well as documentation and refernces.
    I have seen from the master guide of SRM 5.0 , use of solution manager is mandatory for SRM 5.0 , and also you have to enter Key when you install SRM Server 5.5
    For more details , please see page number 15 of the master guide for SRM 5.0 which exculsivey deals with solution manager for SRM 5.0

  • SRM Installation Error - Start Java engine

    Hello gurus,
    OS platform -- Windows Server 2008 (R2) Stantard X64
    DataBase - MS SQL Server 2008 (R2) X64
    System - SAP SRM 7.0 / NW7.01
    Iu00B4m facing with an error during a SRM Installation of AS JAVA system (with plus EP & EP Core). I installed last week the ABAP system.
    The error is in the phase 25 - Start Java engine. I checked the sapinst.log and sapinst_dev.log and both show the following error:
    INFO 2011-05-17 12:35:13.073
    Disconnect from message server (SRVSIAPP01/3902) succeeded.
    WARNING[E] 2011-05-17 12:35:13.160
    CJS-30150  Java processes of instance JRM/JC01 [Java: UNKNOWN] did not reach state PARTRUNNING after 20:30 minutes. Giving up.
    ERROR 2011-05-17 12:35:14.42
    FCO-00011  The step startJava with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_StartJava|ind|ind|ind|ind|6|0|startJava was executed with status ERROR .
    I also checked others log files, like as start<SID>.log and dev_jcontrol:
    running D:\usr\sap\JRM\SYS\exe\uc\NTAMD64\sapstart.exe name=JRM nr=01 SAPDIAHOST=SRVSIAPP01 -wait
    SAPSTART finished successfully on SRVSIAPP01_JRM_01, but at least one process doesn't run correctly:
    D:\usr\sap\JRM\SYS\exe\uc\NTAMD64\sapstart.exe=>sapparam(1c): No Profile used.
    trc file: "D:\usr\sap\JRM\JC01\work\dev_jcontrol", trc level: 1, release: "701"
    node name   : jcontrol
    pid         : 1436
    system name : JRM
    system nr.  : 01
    started at  : Tue May 17 12:14:55 2011
    arguments       :
           arg[00] : D:\usr\sap\JRM\JC01\exe\jcontrol.EXE
           arg[01] : pf=D:\usr\sap\JRM\SYS\profile\JRM_JC01_SRVSIAPP01
    [Thr 1544] Tue May 17 12:14:55 2011
    [Thr 1544] *** ERROR => OS release Windows NT 6.1 7601 Service Pack 1 2x AMD64 Level 6 (Mod 15 Step 11) is not supported with this startup framework (701) [jstartxx.c   4389]
    This last file (dev_jcontrol) is kindly weird... I checked the PAM and it said this OS (Windows 2008 (R2) is supported!
    Can you help me to solve this problem?
    Kind regards,
    Jou00E3o Dimas - Portugal

    Hello Rajneesh,
    I read that note 1152240 and tell me in which way this apply to my case, because I only see for my case... the part that say "Installing SAP systems based on SAP Netweaver 7.0 EHP1 (7.01) or SAP Netweaver 7.0 EHP1 SR1"  and in there is recommended to:
    . Patch your runtime libraries as described in SAP note 684106 --> I already did this when I installed the ABAP system/part
    . Apply the latest DBSL patch --> I did a kernel upgrade to the latest version and also the DBSL patch on ABAP system/part
    So... I don't see anything related with my case... the Java part that is what I´m trying to install and now I´m with an error!
    Best regards,
    João Dimas - Portugal

  • SRM Installation Guide

    Hi all,
    Here i am installing the standard objects like cubes, dso's,queries etc....... of all modules like SD,MM,PP,FI,CO and QM....
    i am installing the above standard objects of all modules through using this link
    http://help.sap.com/bp_biv170/
    so here i am able to get step by step procedure of all modules installations.
    i want to install the SRM Module too....
    where can i found that installation steps ....
    can anybody suggest the link or path to install the SRM Module....standard objects...
    Thanks in Advance...

    Hi,
    Pls chk this links;
    http://help.sap.com/bp_biv335/BI_EN/BBLibrary/documentation/B84_BB_ConfigGuide_EN_DE.doc
    http://help.sap.com/saphelp_nw04/helpdata/en/3a/7aeb3cad744026e10000000a11405a/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/bb/66073c52619459e10000000a114084/frameset.htm
    Also check http://service.sap.com/bi -> business content -> supplier relationship management and http://service.sap.com/srm
    Regards
    CSM Reddy

  • How to create a secondary list of alv grid inside the function module

    Hi All,
    My requirement is to create a RFC function module to display the alv grid of one table.
    i have created that.
    while clicking on the records of the alv it should open the secondary list of another table.
    My problem is it is not fetching the records of the internal table of the primary list since it is created inside the function module(FUNCTION...ENDFUNCTION).
    pls help me on this.
    Thanks in Advance.

    hi,
    READ TABLE sel_sheet INTO wa_sheet INDEX rs_selfield-tabindex.
    here sel_sheet is the internal table for the primary list..
    i called the function module "reuse_lav_grid_display" inside Function...Endfunction.
    so when i am using  READ TABLE sel_sheet INTO wa_sheet INDEX rs_selfield-tabindex.
    inside the user command perform therecords in this internal table is not populating..
    pls help me on this.
    thanks in advance.

Maybe you are looking for

  • KDE network management backend changed on update.

    The last couple of KDE updates have caused the network management backend to be changed to wicd.  I use NetworkManager 0.9 -- I don't even have wicd installed (but I used to).  The network backends listed in System Settings / Information Sources are

  • Max Function doesn

    i have created a procedure in a form that return summary columns (count,max) and it is based in a view which is created containing 2 select statement. the problem is the max function doesn't return the max date in the first select statment in the For

  • UI error message when displaying Account Factsheet.

    When I view the factsheet in the UI I get the following error message: Cannot display view BSP_DLC_FS/factsheet of UI Component BSP_DLC_FS An exception has occurred Exception Class     CX_BSP_WD_INCORRECT_IMPLEMENT - Window 'SalesOrgSelectorWindow' i

  • Which SLD?

    Hi All We recently installed an in-house XI system along with Solution manager and we started using the SLD from the Solution manager, it works fine everywhere but the Integration Builder (Design and Config). Is there a setting somewhere we are missi

  • Does anyone know how to make this?

    http://www.starkweatherbondy.com/work_over.html I was told this is done in Fireworks. So I took an online Fireworks class but alas they didn't cover it! Has anyone made something like this before? Can you shed some lights? I looked all over but could