Information needed about bi pre calculation server

Hi
I have certain queries about bi precalculation server
Whether there is a need for a separate server or it can be installed in BI  server itself ?
How much physical memory and diskspace it would take?
Whether it needs a seperate license?
In which link you could download the software ?
in which link you could find the installtion documents?
Regards
MA.Sreenivasan

Whether there is a need for a separate server or it can be installed in BI server itself ?
- You need seperate machine to run the server in it. which is installed and run outside BI server
How much physical memory and diskspace it would take?
- Normal system configurations will do, however since it is a basis call ask them to check
Whether it needs a seperate license?
- There is no need of extra licence
In which link you could download the software ?
- Check in the following thread Troubleshoot Information Broadcasting within SAP NetWeaver '04 (BW 3.5)
in which link you could find the installtion documents?
Same as the above link

Similar Messages

  • Information Broadcaster Pre-Calculation Server

    We just upgraded to version 3.5. I have a need to broadcast workbooks to several users. I setup a test precaluation server on my PC. I am not sure exactly what the function of these server. Are the workbooks actualy stored on this "server" or the BW Server. Does anyone know what functions the pre caluation server does. Also is there any suggestion of where folks locate this in their production landscape. It seem to only run on a windows environment. Any insight would be greatly appreciated.
    Thanks,
    Steve

    Steve,
    To calculate an excel workbook, BEx analyzer is launched and reports are run.  This is done on the pre-calculation server.  The pre-calculation service interacts with the desktop, launches analyser, runs the reports, saves the excel workbook on the server which is then broadcasted.
    For a production environment, recommend running this on either a dedicated windows based PC or a shared server.  It should be up at all times otherwise the boradcast will fail.
    Aneesh

  • BW Pre Calculation server

    We are planning to install the BW pre calculation server in our landscape. As per the OSS note 744127 and the installation documentation, the pre calculation server should be installed on any of the client(Running windows 2000 and higher). We have BW systems running only on Unix environment. Could you please suggest:
    1) What is the best way to install the BW pre calculation server where SAP and database instance is running on AIX Unix system.
    2)If the installation is possible only on windows client, then do we need to keep the client machine running all the time? What happens when the client is unavailable.
    Thanks in advance!!

    Yes, Pre-calculation server can be run only on Windows Environment. In a producttion scenario you will not run it on a User PC, but on a Windows server which will be available most of the times.
    See the attached document from Prakash for more information on this topic.
    https://service.sap.com/~sapidb/012003146900000085752006E/HowtoInformationBroadcasting.pdf

  • Pre-Calculation Server

    Dear All,
    We are planning to install Pre-Calculation server in our Project , so please suggest us the following.
    1. Is Pre-Calculation server useful with the BI 702 & Business Objects in the Land scape.
    2. If we need to install the Pre-Calculation server , will we need any licence.
    3. What are the system requirments to Install the Pre-Calculation server.
    4. How it is useful if we are doing the Broadcasting from Busin
    Please suggest us.
    Thanks & Regards,
    Kiran Manyam

    Hi,
    Please check the below link for details on PreCalculation Server. It could be a good starting point.
    http://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/70ef26c5-079a-2b10-f397-892d781e8bcb
    Also check the relevant notes mentioned in the bottom of the page
    1236773   BI 7.X Precalculation - General Information & Limitations
    1461398   BW 7.X(7.20) Precalculation - General Info. & Limitations
    Regards,
    Vasanth

  • Refresh Workbook on Pre-Calculation Server .

    Hi,
    I am using Pre-Calculation server to broadcast the workbook  through Email.
    But the workbook is not getting Automatically refresh on Pre-Calculation server.
    I had also done the setting for 'Refresh Workbook On Open' in workbook setting.
    Please help me to solve this issue.
    Thanks in Advance.
    Vaibhav

    Hi,
    Please check following notes.
    1027807 Workbook not refreshed properly, during precalculation
    1074272 Error in the precalculation server (read long text first)
    Regards,
    Amit

  • Pre calculation server installation

    Hi all,
    we installed pre calculation server on client machine which is having OS WINXP.but there is a problem in starting the sap precal server instance in the local sysytem.can anybody help in this.
    regards,
    sekhar

    i resolved myself

  • Incorrect workbook results using pre-calculation server

    Hi,
    I encounter problem running BW 3.5 workbook (Excel 2007) using pre-calculation server.  The results show incomplete data, mostly of the time missing characteristic values.  However, it works for one of the report.
    Appreciate sharing of experiences. Thanks.
    Regards,
    Chen

    Hi,
    Thanks for the suggestions.  I have tested with new workbooks inserted with new queries, and those are running OK manually. The workbook does not exceed 65k rows or 255 columns.
    I discovered one of the workbook showing correct results except for calculation using function %A, so I suspect there is missing setting in Excel 2007 that has caused the macro not working properly.
    Anything to share ?
    Regards,
    Chen

  • SAP BW Pre-calculation Server Not Working as Expected

    Hi All,
    It has already been 2 months since we have installed our pre-calculation servers. We have been bumping to issue with our server showing as "At Capacity" after a few runs of workbooks. Then we need to restart the service in order to resume the pre-calculation. Something really dumb is that any workbooks that failed during that time will not get pre-calculated again.
    This is really bugging me as every morning when I know, there is some broadcasting, then I need to start monitoring the queue, to see if the symptoms of only a few workbooks (usually 10 workbooks) being able to calculate before I need to restart the service.
    Please help as I am really in a dire situation.
    David Yee

    dk00111 wrote:
    Ah, I forgot to cast the correctAnswer as a double. Thanks, it works now! (disregard the username change)I sense you're still misunderstanding, so I decided to follow up.
    The issue isn't that you weren't casting your expression to a double before assigning to correctAnswer. That cast is implicit as an integer is automatically promoted to a double, since it is a widening conversion (see here).
    What you had before was like this:
    double d = 1 / 5;
    System.out.println(d); //0.0In this case, we have an integer divided by an integer, and so the result is (naturally!) an integer. Since 1 / 5 is truncated to 0, that's the result of the expression.
    "Casting to a double" would be this:
    d = (double)(1 / 5);
    System.out.println(d); //0.0But that's no different! The cast is pointless, as it happens anyway when you assign the result of the expression to d. 1 / 5 is still occurring with integer operands.
    Instead, based on the fact that it worked, I'm guessing what you did was this:
    d = (double)1 / 5;
    System.out.println(d); //0.2 That's not casting the result of (1 / 5), it's casting 1 to a double, and then dividing by 5. It's equivalent to this:
    d = ( (double) 1 ) / 5;Since now one of the operands is a double, the result of the expression is a double, so you get the expected 0.2.
    You could get the same result by doing this in your code:
    double correctAnswer = 1.0 / x;As the literal 1.0 is obviously not an integer, but a double, so x is promoted to a double and the division occurs on two doubles instead.

  • Information needed about HPROF option "cpu=old"

    I was reading the article about HPROF:
    http://java.sun.com/developer/technicalArticles/Programming/HPROF.html
    As I couldn't leave a comment there (probably my proxy?), I came to this forum to ask my simple question:
    Is the HPROF "cpu=old" option a sort of deprecated format and how does it work ?
    After a try, I observed the same huge CPU overhead as with "cpu=times" option, which is ok, and as an output, a tabbed file. It looks like a list of methods sorted by execution time, with the following header "count callee caller time". This is clear, no extra explanation needed.
    This option is very interesting so why isn't it described in this article ? Is it the old format of JVMPI /JVMDI ? However the history section shows that the output format has not changed.
    This could seem a bit redundant with the cpu=times options, but after a quick comparison on a "real" application on a 2h internal standard perf test, it shows very different results, in terms of figures and top-consuming methods ranking.
    Could you give me the beginnings of an explanation for this difference, by detailing a bit how it works ?
    Which option would you advise to use ?
    Thanks in advance.
    Philippe

    Thank you for such a fast reply.
    There is the further diagnostic test below. The strange thing is I was getting around 3-3.5mbps downstream a week ago but with the frequent disconnections due to the weather I have a bad feeling the exchange has downgraded my line.
    1. Best Effort Test: 
    Download Speed : 1.5 Mbps
    Your speed test has completed and the results are shown above, however during the test an error occurred while trying to retrieve additional details regarding your service. As a result we are unable to determine if the speed you received during the test is acceptable for your service. Please re-run the test if you require this additional information.

  • Information needed about two topics in SAP R/3 MM Module

    Hi,
    I needed information regarding "Condition for invoice list" & "Condition for inter-company billing" in SAP R/3 MM Module. But dont know where to find.
    Thanks
    Loki.

    Hi
    Invoice list is basically SD configuration.
    <b>Invoice List</b>
    <b>Purpose</b>
    The invoice list lets you create, at specified time intervals or on specific dates, a list of billing documents (invoices, credit and debit memos) to send to a particular payer.
    The billing documents in the invoice list can be single or collective documents (collective invoices combine items from more than one delivery).
    The standard version of the SAP R/3 System includes two types of invoice lists:
    1.for invoices and debit memos
    2.for credit memos
    If you wish, you can process invoices, debit memos, and credit memos at the same time. The system automatically creates a separate invoice list for credit memos.
    A payer may be the head office of a buying group, which pays all the invoices for goods that are shipped to individual members. The group payer takes responsibility for paying the invoice lists and then collecting payment from the individual members. In return for these services, the group payer usually earns a factoring or del credere discount.
    Depending on the tax structure of the payer's country, the payer may be liable to pay taxes on factoring discounts that he earns. In Germany, for example, factoring discounts are taxed at the standard rate of 15%. During invoice list processing, you can reimburse the payer in advance for this tax liability by creating special condition records
    Regards
    Ramakrishna

  • Information needed about Address Management

    Hi All,
    while trying to send mail to external mail ids through some custom program, i'm facing an error as "recipient not in address management".
    Can anyone giude me why this is occuring and actually what is this Address management?
    Thanks & Regards,
    Anil.

    hi anil ,
    can u tell me what is type of that recipient ? Means
    Type of RECEIVER entry.
    The following values are allowed:
    'B' : SAP user name
    ' ' : SAPoffice name
    'C' : shared distribution list
    'F' : fax number
    'U' : Internet address
    'R' : remote SAP name
    'X' : X.400 address
    Regards
    Prabhu

  • Pre-Calculation

    Hi,
    We are on BI7, SP-17. Can you please let me know the latest version of Pre-Calculation server. We need to broadcast the workbooks and we are still using BW3.5 queries/workbooks, even though we are on BI7. Do we have different Pre-Calculation servers in BI7 for BW3.X front end and BI7 front end objects!
    Please suggest.
    Thanks,
    Ram.

    Hi Ram,
    The precalculation server remains same either for 3.X or 7.x queries/workbooks.Check whether pre-calculation server is installed in ur server using RSPRECADMIN.If its green it is installed.In BI7.0 using Bex Broaadcaster u can precaluclate queries,web templates and workbooks.
    Chandu

  • Issue with Information broadcasting and pre-cal server in SAP BI

    Hi Experts,
    I have issue with information Broadcasting and Pre-cal server. I have a worrkbook whcih runs from information broadcasting in pre-cal server. Workbook is desinged on single query and workbook contains visual basic code. workbook has a variable which is controlled by Control query in information broadcasting.
    I have 20 employees every month I need to send workbook via e-mail from information broadcasting.  The problem is sometimes all 20 employees will recieve e-mails and sometimes not. I identified there is something wrong in workbook or in pre-cal server.
    because after workbook calculation in pre-cal server is not pushing to SOST so there is something wrong in workbook or in pre-cal server.
    I closely observed pre-cal server front end log. There are few operations performing on workbook in pre-cal server
    like Open workbook, Calculate workbook, Save woorkbook and close workbook. In success case pre-cal sever is performing all the operations but in failure case pre-cal server is missing Close workbook case.
    Below log In pulled from pre-cal server
    Can you please tell what could be the problem.
    Successful job
    3/11/2011 9:29:46 AM (3) -> RS_PREC_LAUNCH_EXCEL i nvoked in thread 3 and job 'BIBCAST4L4EIS7TOR5BWG0
    2PCUG9ZPPP'. nvoked in thread 3 and job 'BIBCAST4L4EIS7TOR5BWG0
    3/11/2011 9:29:46 AM (3) -> InitConnection in thre ad 3
    3/11/2011 9:29:46 AM (3) -> Trying to open "C:\Pro gram Files\Common Files\SAP Shared\BW\BExAnalyzer.
    xla" gram Files\Common Files\SAP Shared\BW\BExAnalyzer.
    3/11/2011 9:30:18 AM (4) -> RS_PREC_GET_SERVER_STA TUS invoked.
    3/11/2011 9:30:18 AM (4) -> RS_PREC_GET_SERVER_STA TUS finished
    3/11/2011 9:30:35 AM (3) -> Using Version 7100.4.1 200.35 of BExAnalyzer.xla
    3/11/2011 9:30:35 AM (3) -> PID of Excel process: "2504"
    3/11/2011 9:30:35 AM (3) -> EndOfInitConnection in  thread 3
    3/11/2011 9:30:35 AM (3) -> RS_PREC_LAUNCH_EXCEL f inished
    3/11/2011 9:30:36 AM (0) -> Calculation Request 91 1A35ED029D4D79DD7A000200000000 received for job 'B
    IBCAST4L4EIS7TOR5BWG02PCUG9ZPPP'. 1A35ED029D4D79DD7A000200000000 received for job 'B
    3/11/2011 9:30:52 AM (6) -> RS_PREC_GET_SERVER_STA TUS invoked.
    3/11/2011 9:30:52 AM (6) -> RS_PREC_GET_SERVER_STA TUS finished
    3/11/2011 9:31:22 AM (0) -> Opening workbook: C:\W INDOWS\TEMP\BW\Analyzer\Workbooks\SAPBEXPRECMML4NN
    DVLYAPC2SYIC7F1AAIO_0.xls INDOWS\TEMP\BW\Analyzer\Workbooks\SAPBEXPRECMML4NN
    3/11/2011 9:31:43 AM (0) -> Refresh BExAnalyzer.xl a!MenuRefreshPrecalc returned with 1.
    3/11/2011 9:31:43 AM (0) -> Calculated workbook C: \WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECMML
    4NNDVLYAPC2SYIC7F1AAIO_0.xls saved. \WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECMML
    3/11/2011 9:31:43 AM (0) -> Calculated workbook C: \WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECMML
    4NNDVLYAPC2SYIC7F1AAIO_0.xls closed. \WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECMML
    3/11/2011 9:31:44 AM (0) -> Excel based operations  finished.
    Failure job
    3/10/2011 10:22:58 AM (1) -> RS_PREC_LAUNCH_EXCEL invoked in thread 1 and job 'BIBCAST4L41566ZBZDN2N
    TGJR0462ZFX'. invoked in thread 1 and job 'BIBCAST4L41566ZBZDN2N
    3/10/2011 10:22:58 AM (1) -> InitConnection in thr ead 1
    3/10/2011 10:22:58 AM (1) -> Trying to open "C:\Pr ogram Files\Common Files\SAP Shared\BW\BExAnalyzer
    .xla" ogram Files\Common Files\SAP Shared\BW\BExAnalyzer
    3/10/2011 10:23:20 AM (3) -> RS_PREC_GET_SERVER_ST ATUS invoked.
    3/10/2011 10:23:20 AM (3) -> RS_PREC_GET_SERVER_ST ATUS finished
    3/10/2011 10:23:44 AM (1) -> Using Version 7100.4. 1200.35 of BExAnalyzer.xla
    3/10/2011 10:23:44 AM (1) -> PID of Excel process:  "2544"
    3/10/2011 10:23:44 AM (1) -> EndOfInitConnection i n thread 1
    3/10/2011 10:23:44 AM (1) -> RS_PREC_LAUNCH_EXCEL finished
    3/10/2011 10:23:44 AM (5) -> Calculation Request 9 11A35ED02654D789871000900000000 received for job '
    BIBCAST4L41566ZBZDN2NTGJR0462ZFX'. 11A35ED02654D789871000900000000 received for job '
    3/10/2011 10:24:27 AM (0) -> RS_PREC_GET_SERVER_ST ATUS invoked.
    3/10/2011 10:24:27 AM (0) -> RS_PREC_GET_SERVER_ST ATUS finished
    3/10/2011 10:24:31 AM (5) -> Opening workbook: C:\ WINDOWS\TEMP\BW\Analyzer\Workbooks\SAPBEXPRECQB2VE
    A8O8D8FBHYCR4HVB5UI8_0.xls WINDOWS\TEMP\BW\Analyzer\Workbooks\SAPBEXPRECQB2VE
    3/10/2011 10:24:52 AM (5) -> Refresh BExAnalyzer.x la!MenuRefreshPrecalc returned with 1.
    3/10/2011 10:24:52 AM (5) -> Calculated workbook C :\WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECQB
    2VEA8O8D8FBHYCR4HVB5UI8_0.xls saved. :\WINDOWS\TEMP\BW\Analyzer\Workbooks
    SAPBEXPRECQB
    Thanks in advance
    Narendra

    Hi Ravikanth,
    Thank you very much for the reply
    I went into RSPRECADMIN and clicked on 'Display Current Queue'.  There we have 3 sections
    1) Queue Overview of Open Precalculations
    I can see this section is always blank after running IB also
    2) Queue Overview of Current Precalculations
    In this section I can see an entry after running IB and duration is changing. but some time workbook in this section will never processed but the duration column is changing may be something is happening at this stage.
    If the entry is not proccessed in this section and IB SM37 job will never end. I manually cancelled the job from SM50.
    Don't why the workbook is taking long time and will never end even though I cancelled the SM37 IB job.
    3) Queue Overview of Proccessed Error-Free Precalculations
    All the error free workbooks which means all pre-cal server completed workbook calculation and sent to SOST.
    I manually ran the workbook for all the 20 employees I can't find any pop-up message (earlier we have pop-up windows appearing because of VB code and when report returns no data and we fixed the pop-up issues)
    Can you please help me further to trace the error.
    Thank you
    Narendra

  • I need advise about setting up a server plan for a community.

    I have the following situation:
    The website has a community with, expected in the fist stage, 100,000 registered members. This community will be first launched in the Netherlands and later worldwide. A member has 25 MB of disk space to store photos or something. You can compare the community with for example hyves (a dutch community site similar to MySpace)
    Besides the community the site will also have a web shop and some information pages about the products that will be sold in the shop. The web shop will not have a large amount of product in store, however the expectation is that it will attract a large amount of customers.
    My question is; what do I need to keep this running smooth (quick page loads) and secure (data loss, back-up servers), and make it easy to expand the server park.
    URLs to the example sites:
    Hyves: www.hyves.nl
    MySpace: www.myspace.com

    >Can you clarify that, because I thought the Xserve RAID is the server for storage?
    The XServe RAID is not a 'server for storage'. It's just an array. In order to provide storage it needs to be connected, via Fiber Channel to a host computer. This is fine if you have one web server, but becomes tricky when you have multiple. unless you're doing some very fancy load balancing, you're likely to want all the content accessible to all web servers at the same time. To do that you typically implement a fiber channel SAN (every host connects to the XServe RAID via a fiber channel connection), or you implement a NAS host where one server is attached to the XServe RAID and it shares the content to other hosts via AFP, NFS or similar.
    This is fine for small installations but my point is that if you grow to hundreds of terabytes of storage, the XServe RAID might not be the best bet. It works well enough at tens of terabytes but there are other considerations when you get very large.
    For example, if you have one XServe host acting as an AFP or NFS 'head', what happens to your site when that server crashes? or needs a Software Update? Your network is going to go down. For high availability networks you might consider a dedicated NAS or SAN infrastructure that has higher redundancy, built-in failover and is designed for very large storage arrays. If you expect to grow there you might be better off starting off with that, rather than starting with an XServe RAID and migrating the data later on.
    Other than that, the rest of it is good for a start, but you need to consider redundancy (what do you do if a server crashes?) and scale (what do you do when you get more traffic than your web server can handle?).
    Typically these problems are solved via load balancers - appliances that sit in front of the application server and dynamically routes connections to whaever machine is best able to respond to the request. These boxes (at least the good ones) don't come cheap, but they're essential if you expect your site to grow past a single server setup.

  • Need help setting up LDAP server for Address Book

    I've set up Panther servers before for AFP which is pretty simple but now the office I work at wants me to setup an LDAP server so they can share the same contact information, probably about 2,000+ entries. I'm guessing that this will have to be entered in the LDAP server entry by entry.
    I need to know how to setup the server and what settings need to be on the clients' computers, such as in Address Book.
    The server is an older G4 tower and I've got 8 computers hooked up to it on a simple network. I don't think I'll need to make the LDAP server accessible from outside the network but it's something I'll have to worry about for the future.
    Thanks for any help you can offer.

    bump

Maybe you are looking for

  • Windows Vista: changes in ISAKMP

    Has anybody experienced problems with Windows Vista? We have hundreds of customers which successfully connect to our Cisco router from Windows XP. They manually (via wizard) create VPN-connection using their login, pswd and preshared key (all other s

  • TrackPad Not Working - Urgent help please

    Hi all Hope you can help. The top case of my 12 G4 PowerBook is damaged so I bought a replacment. Fitted it and the tackpad would not work. Got another and the same result, the trackpad would not work. I made sure with the second one, that the topcas

  • How to import the SAP library into the XI / PI

    Dear All Thank you for your help and support I am not able to get any help from the Help Menu. I think SAP library is not installed in my system Is there any way to install the SAP library.. or does anyone has link to download the SAP library and ins

  • HT1338 Update Safari on iPad/ best way not to crash? - eMail Overload

    My Safari often crashes, even though I only have maybe 3 to 4 tabs open. (This is even after a factory reset to new restore as new with only 2 apps installed. So no memory is being used on anything.) And I'm wondering do I need to update it separatel

  • Tax Condition not geeting updated

    Hi Friends, I have a problem of tax condition not appearing in the contracts. My condition is based on the combination (IN VK11) of Country/Customer/Material/Pricegroup. All my masters are maintained, my problem is the field price group in the header