EPublish Options in BPC Excel

Dear All,
Is any body have documentation about ePublish options in BPC Excel like Save as Web-Ready fiile..Open Web-Ready...?
In BI we can publish reports on web, we are looking for similar kind of option in BPC. Can we achieve the same using ePublish options.
Thanks in advance...
Your help is highly appreciated.
Thanks and regards,
Raju

Hi,
After creating a script logic, please validate it to generate the LGX file. Then you need to have an SSIS package created. You can use the predelivered SSIS packages for this purpose (you can refer to default logic SSIS). Then create a new package (copy it from run default logic DM package).
Hope this helps.

Similar Messages

  • Action Pane in BPC Excel is not Coming

    Hi All
    I am facing a sudden issue in BPC 7.5 MS Version. I am not able to view the  Action Pane for  BPC Excel. But it was coming before.
    Also the Action Pane is coming for BPC WORD & BPC POWER POINT.
    I have chekced the option under e-tools > VIEW PLANNING & CONSOLIDATION ACTION PANE. But nothing is coming.
    At the same time the BP CEXCEL ACTION PANE IS ALSO NOT MINIMIZED .
    Can anyone advised how to resolve this issue.
    Regards
    Viv

    Hi
    You can clear the local application information by following the below steps
    eTools -> Client Options -> Clear Local Application Information
    or else to do it manually, delete the Outlooksoft folder in the users %My Documents% directory, and delete the regsitry keys
    HCKU\Software\VB and VBA Program Setting\
    Hope this helps
    Kind Regards
    Daniel

  • Move or disable BPC Excel log file

    Hi all,
    BPC Excel create a Log folder in My documents in order to store local log file. Is it possible to define another path for this log file or to disable the creation of this log file?
    regards,
    Romuald

    Hi Romuald,
    Did you try change the path in:
    Planning and Consolidation >>> eTools >>> Client Options >>> Planning and Consolidation Folder
    Regards
    Lucas

  • BPC Excel VBA Code to change Current View ios broken, please help

    Hi,
    I inherited a macro set to cycle through a list of paramenters, change current view accordingly and print the reports. It was working fine in the prior version of BPC, but stopped when we transferred to BPC 7. The code stops when it's trying to make the Current View visible (in the prior version it was an option, in BPC 7 it's always visible). I also think it does not recognize the "OutlookSoft CPM CurrentView" name. I am not a VBA expert. Woudl appreciate any ideas. The place where the code stops is in bold below.
    Thank you!
    Sub cmdRun_Click()
    Dim strColHead As String, strRowHead As String, strDataRange As String
    Dim I As Integer, j As Integer, k As Integer
    Dim blnOldStatusBar As Boolean, blnOSBarStartVis As Integer, intOSBarStartPosit As Integer
    Dim strPL As String, strTabName As String
    Dim intTotalPrintingPages As Integer, intPageCountStart As Integer
    Dim dteStartTime As Date, dteEndTime As Date, intRunTimeSeconds As Integer, intRunTimeMinutes As Integer
    'Record the start time
    dteStartTime = Time
    'Get the current status bar setting.  Then, make sure the bar is visible
    blnOldStatusBar = Application.DisplayStatusBar
    Application.DisplayStatusBar = True
    If Test_Ranges = False Then
        Exit Sub
    End If
    strColHead = refColHeader.Value
    strRowHead = refRowHeader.Value
    strDataRange = refDataRange.Value
    'Find and store the starting position for the OutlookSoft Currentview toolbar
    'Then, make the entire OutlookSoft CurrentView toolbar visible
    Application.StatusBar = "Storing CurrentView toolbar data"
    blnOSBarStartVis = Application.CommandBars("OutlookSoft CPM CurrentView").Visible
    Application.CommandBars("OutlookSoft CPM CurrentView").Visible = True
    intOSBarStartPosit = Application.CommandBars("OutlookSoft CPM CurrentView").Position
    Application.CommandBars("OutlookSoft CPM CurrentView").Position = 4
    'Hide the form
    frmParameters.Hide
    'Cycle through the combinations of P&Ls and tab names
    For I = 1 To Range(strRowHead).Rows.Count
        'Change the currentview P&L
        Application.StatusBar = "Changing the CurrentView..."
        strPL = Range(strRowHead).Rows(I).Columns(1).Value
        ChangeCurrentView "P_L", strPL
        'Refresh and Expand
        'Application.Calculation = xlCalculationManual                      'temporarily turn off Excel's automatic calculation
        Application.Run "MNU_eTOOLS_EXPAND"
        'Application.Calculation = xlCalculationAutomatic                   'turn the automatic calculation back on
        Application.Run "MNU_eTOOLS_REFRESH"
        Application.CalculateFullRebuild
        'Get the total number of pages to be printed for the selected P&L
        Application.StatusBar = "Counting pages to be printed for this P&L..."
        intTotalPrintingPages = 0
        For j = 1 To Range(strColHead).Columns.Count
            If Range(strDataRange).Rows(I).Columns(j).Value = "x" Then
                strTabName = Range(strColHead).Rows(1).Columns(j).Value
                For Each pb In Sheets(strTabName).HPageBreaks
                    If pb.Extent = xlPageBreakPartial Then
                        intTotalPrintingPages = intTotalPrintingPages + 1  'add one sheet to the count for each page break
                    End If
                Next
                intTotalPrintingPages = intTotalPrintingPages + 1          'each sheet will print 1 more page than there are page breaks
            End If
        Next j
        Application.StatusBar = intTotalPrintingPages & " total pages for " & strRowHead
        'Cycle through each of the tabs (only if it is marked with an 'x')
        intPageStartCount = 0
        For j = 1 To Range(strColHead).Columns.Count
            If Range(strDataRange).Rows(I).Columns(j).Value = "x" Then
                strTabName = Range(strColHead).Rows(1).Columns(j).Value
                'Set the footer
                Application.StatusBar = "Building the page footer for " & strTabName & "..."
                Sheets(strTabName).PageSetup.CenterFooter = " Page &P+" & intPageStartCount & " of " & intTotalPrintingPages
                'Print the current sheet
                Application.StatusBar = "Printing " & strTabName & " for " & strRowHead & "..."
                Sheets(strTabName).PrintOut Copies:=1, Collate:=True
                'Bump up the start value for page numbering
                For Each pb In Sheets(strTabName).HPageBreaks
                    If pb.Extent = xlPageBreakPartial Then
                        intPageStartCount = intPageStartCount + 1          'add one sheet to the count for each page break
                    End If
                Next
                intPageStartCount = intPageStartCount + 1                  'each sheet will print 1 more page than there are page breaks
            End If
        Next j
    Next I
    'Put the OutlookSoft CurrentView toolbar back to where the user had it.
    Application.StatusBar = "Resetting the CurrentView toolbar"
    Application.CommandBars("OutlookSoft CPM CurrentView").Position = intOSBarStartPosit
    Application.CommandBars("OutlookSoft CPM CurrentView").Visible = blnOSBarStartVis
    'Alert the user that the process is complete
    Application.StatusBar = "Processing complete...notifing user"
    dteEndTime = Time
    intRunTimeSeconds = DateDiff("s", dteStartTime, dteEndTime)
    intRunTimeMinutes = intRunTimeSeconds \ 60
    If intRunTimeMinutes > 0 Then
        intRunTimeSeconds = intRunTimeSeconds Mod (intRunTimeMinutes * 60)
    End If
    For k = 1 To 3
        Beep
    Next k
    Application.DisplayStatusBar = blnOldStatusBar
    MsgBox "The report generation process is complete." & Chr(10) & _
        "Total retreival and printing time:" & Chr(10) & _
        "    Minutes: " & intRunTimeMinutes & Chr(10) & _
        "    Seconds: " & intRunTimeSeconds, vbOKOnly + vbInformation, "Process Complete"
    End Sub

    Sub cmdRun_Click()
    Dim strColHead As String, strRowHead As String, strDataRange As String
    Dim I As Integer, j As Integer, k As Integer
    Dim blnOldStatusBar As Boolean, blnOSBarStartVis As Integer, intOSBarStartPosit As Integer
    Dim strPL As String, strTabName As String
    Dim intTotalPrintingPages As Integer, intPageCountStart As Integer
    Dim dteStartTime As Date, dteEndTime As Date, intRunTimeSeconds As Integer, intRunTimeMinutes As Integer 'Record the start time
    For I = 1 To Range(strRowHead).Rows.Count 'Change the currentview P&L
        Application.StatusBar = "Changing the CurrentView..."
        strPL = Range(strRowHead).Rows(I).Columns(1).Value
        ChangeCurrentView "P_L", strPL 'Refresh and Expand
        'Application.Calculation = xlCalculationManual 'temporarily turn off Excel's automatic calculation
        Application.Run "MNU_eTOOLS_EXPAND"
        'Application.Calculation = xlCalculationAutomatic 'turn the automatic calculation back on
        Application.Run "MNU_eTOOLS_REFRESH"
        Application.CalculateFullRebuild 'Get the total number of pages to be printed for the selected P&L
        Application.StatusBar = "Counting pages to be printed for this P&L..."
        intTotalPrintingPages = 0
        For j = 1 To Range(strColHead).Columns.Count
            If Range(strDataRange).Rows(I).Columns(j).Value = "x" Then strTabName = Range(strColHead).Rows(1).Columns(j).Value
                For Each pb In Sheets(strTabName).HPageBreaks
                    If pb.Extent = xlPageBreakPartial Then intTotalPrintingPages = intTotalPrintingPages + 1 'add one sheet to the count for each page break
                    End If
                Next
            intTotalPrintingPages = intTotalPrintingPages + 1 'each sheet will print 1 more page than there are page breaks
            End If
        Next j
        Application.StatusBar = intTotalPrintingPages & " total pages for " & strRowHead 'Cycle through each of the tabs (only if it is marked with an 'x')
        intPageStartCount = 0
    -> Displays the line as programming code is not workin!
    Edited by: Sam Patel on Aug 27, 2009 12:45 PM
    Edited by: Sam Patel on Aug 27, 2009 12:45 PM
    Edited by: Sam Patel on Aug 27, 2009 12:46 PM
    Edited by: Sam Patel on Aug 27, 2009 12:47 PM
    Edited by: Sam Patel on Aug 27, 2009 12:47 PM
    Edited by: Sam Patel on Aug 27, 2009 12:49 PM
    Edited by: Sam Patel on Aug 27, 2009 12:49 PM
    Edited by: Sam Patel on Aug 27, 2009 12:50 PM

  • BPC excel in Lanuch page

    Hi ,
    While ener the launch page in user desk top , BPC excel and word and power point buttins are not available there .
    Please let me know any stpes are there for getting these ?
    Regards,
    PSR

    Hi,
    Their is a thread on this but not sure of the link. You can try the below options:
    1. Open your native Excel. and check for Planning and Consolidation tab on the top ribbon.
    2. But in your case this wouldn't be available for you so open the Excel Options
    3. Click on Add-Ins and check the Active Application Add-ins
    4. Check if Planning and consolidation present in it or not?
    5. If not, select "Disabled Add-ins" in the drop down below besides "Manage".
    6. Click "GO"
    7. Select the Planning and Consolidation add-in from disabled add-ins and "Enable" it.
    8. Check once again if this add-in is prersent in "Active" add-ins .
    9. Now close Excel completely and re-open it
    10. The Tab should be present now (Planning and Consolidation)
    Thanks

  • BPC Excel: The system cannot connect to the server. There might be network

    Hi Guys,
    I get the following error when i try to connect to BPC Excel: The system cannot connect to the server. There might be network or security issue.
    This only happen on clients machines, I have installed the client tools on the server and tested, i can connect to Excel but not on the machine. My MS office version is the same as the one on the server. BPC is ver 5.04
    Has anyone experienced the same problem.
    your help will be greatly appreciated.

    Let me summarize your issue to see if I may help.  If I cannot, then you will need to work with SAP Support on the connection problem.
    - You have a single or multi-server setup?
    - Installed using BPC 5.1 SP3, (or 5.0.502) correct?
    - You can enter the BPC on the server, both via BPC Excel and BPC Admin?
    - When you initiate BPC Admin on your client, so can connect to the Server and perform Admin operations?
    - When you initiate BPC for Excel, and walk through the connection wizard, you cannot connect to the server?
    - When you are in the Connection Wizard, are you using a path or a Server designation?
    - Is the system on a single domain?
    - When you added users to the Admin Security profile, they were selected from a DOMAIN?
    - You have processed security and assigned ALL TASKS currently and processed the MEMBER ACCESS profiles, yes?
    After all of this, have you uninstalled 1 BPC client, cleared the ProgramFiles/BPC folder, and deleted the local stored BPC information?  If you haven't, just for simplification, I would attempt this process.
    You also hae read all the SAP Support Notes regarding using Excel2007 with BPC and the issues you may experience?
    Please let me know and maybe we can help.

  • Users cannot connect BPC Excel, Admin Console except bpc_sysadmin

    Hi experts!
    We use MultiServer BPC 7.5 MS sp06 Installation
    Servers
    1. bpcweb - WEB (IIS)  on Windows 2008 R2 x 64 (in AD)
    2. bpcapp - BPC App Server on Windows 2008 R2 x 64 (in AD)
    3. bpcdb - DB/OLAP MS SQL Server 2008 R2 on Windows 2008 R2 x 64 (in AD)
    Installation on AD users and OK, Diagnostic on Server Manager - OK
    We use AD authentification and Local too.
    I have added 2 users to Admin TEAM with full rights on AppShell and on our AppSet: one user from AD another from Local AppServer
    Users can connect into BPC Web, can select AppSets and Applications.
    But when I try connect to BPC Excel or Admin Console - after I enter user login, password and domain - appear message
    "Couldn't authetificate user id or password. Back and check, that entered valid credentials" (translation from Russian).
    And when I try connect by bpc_sysadmin everything OK.
    Thank you for help
    Best regards
    Iaroslav

    Hi!
    All versions of OS, SQL, IIS, BPC and other are  the same versions on all Environments, same AD.
    Our Environmets:
    DEV - Single Server - all connections - OK
    TEST - MultiServer (1: BPC App/WEb; 2: DB/OLAP) - all connections - OK
    PROD - MultiServer (1: BPC App;2: Web;  2: DB/OLAP) - connect to Excel and Admin Console - Error
    Best regards
    Iaroslav

  • Update microsoft word report from bpc excel report.

    Hi experts,
    I'm using BPC 7.5 microsoft version.
    I have an assingment to do. I have a excel report (EVDRE) and I would like to link this report to microsoft word file. So when I change POV of my excel report, my word file should be change when open it. How can I do this?
    Thanks!

    Hi sushant,
    I have an excel report located inside bpc server. To access to this file I have to log in BPC Excel Addin --> Open Dynamic Templates --> Company --> eExcel --> Reports--> Mydocument.xlt
    My requeriment is that: when "Mydocument" was updated (for example with another Point of view), I would like to open a word document and see Mydocument Updated.
    I would like save this word inside BPC server (log in on BPC for Word and inside of "Open Dynamic Documents")
    How can I achieve this? I think that EvHot is to use in excel...but I want to update on word.
    Thanks!

  • How does BPC Excel execute expansions?

    Hi all,
    I am experiencing some problems with a report and I am not able to find out what is happening. To deduce what happens I think I need some info about how BPC Excel works.
    So, when we have some EvEXP, EvNXP and EvDRE functions define in the cells of a same report:
    1) in what order are they executed? (order of preference of these functions and order according to the excel cell where they are defined, I think it has some influence).
    2) an expansion inserts or deletes rows (and/or columns), right? So, how does it do it? Does it always first delete the rows and then insert the new ones or does it do it otherwise?
    Regards,
    Rafael

    Hi Ajay,
    thank you for giving the question a chance, I know it's kind of weird
    I have continued testing since I made the question in the forum and I have been able to make some sense of what is happening guessing that BPC excel: 1) executes first EvEXP, EvNXP (I don't know if the order in which they are defined in the excel sheet has some influence or not), and then EvDRE. 2) always performs first expansions in columns and then expansions in rows (either for adding or deleting, but again I don't know if the order in which they are defined in the excel sheet has some influence).
    I am dealing with this issues because we have some quite complex reports with different EvDRE with expansions (in the same sheet, ones over the others). It used to work ok in 5.1, but in 7.0 we discovered the one EvDRE would "break" other EvDRE as its expansions would eventually delete more rows/columns that it should (we have a note with support on that).
    We found out that this issue does not happen with EvEXP, EvNXP expansion, so as a workaround I am trying to make the report using EvEXP/EvNXP for the expansions combined with EvDRE to retrieve the data. And I am slowly getting to it, but continually experiencing rows that brake, ranges that shift around in the sheet, etc., mainly by how the expansions get executed, thus my need in getting deeper knowledge on how it all is internally working.
    So, do you think my conclusions are ok or you have a different insight?
    Regards,
    Rafa

  • Error in BPC Excel report

    Hello Experts,
    I am useing BPC 5.0,
    I am trying to create a EvDRE Grid report (Drag & Drop report in BPC Excel)
    I am Faceing an error as "EVDRE encountered an Error reteiveing data from the Web server".
    Thanks a lot for help.
    Cheers,

    Hi
    refer the pdf at Page 19 , may get somme help
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9016a6b9-3309-2b10-2d91-8233450139c1
    Regards
    Abhishek

  • EVfunctions fails using web template (without openning BPC Excel)

    When we publish a template in the contant libary, it gives us a url. We use this url to access from a sap portal. Then, the template bottoms with macros that have EVfunctions don't work. We need to open the BPC Excel Client to run it.
    ¿How can we use a web template directly from the url? (without openning the BPC Excel Client)

    maybe I'm explaining bad myself, or maybe I don't underestand your answer.
    I will try to explain it step by step my problem,
    we made a template, with evfunctions, like match-codes, refresh buttom, and another buttoms with Ev functions. This template is used to introduce user-values, so the users can fill the template and save the introduce data in the application.
    We publish it with the content library, so we get a url. We put this URL in sap portal, like a link to this template.
    When users or administrators wants to use this template by this link, it is opened with internet explorer, but the cannot use this template, because, those buttoms and functions doesn't works if we openned in this way. The only way to use this link is if we connect to the bpc excel client, before we use this link. But our question or problem is that we don't want to use in these way, we want to start introducing data and using the template directly from the url.
    So our question is: is there any possibility to do that? and if it is, how can we apply it?
    thanks for your answers.
    Gorka I.

  • Error in opening bpc excel

    Hi all,
    When I am trying to open bpc excel, I am getting error message like "Cannot download ACCOUNT member information."
    Can anyone please give me the solution.
    Thanks in advance.
    Regards,
    Prakash

    I've seen this or something very similar when the following occurs:  Changing the members used to secure an application without updating the member access profiles, e.g. adding ACCOUNT as a secure dimension.  Users who had access prior to the change see this error on the next log in attempt.
    Hope that helps,
    Jeff

  • Not able to login BPC Excel

    Experts,
    Today I have installed BPC front end Excel and not able to connect with my user ID.
    In my BI 7.0 system can see BPC 7.0 componenet and Iused BI 7 login details to access BPC excel with BI 7 IP address.
    Could you please suggest me do I need make any other setting before I login into BPC excel.
    Regards,
    GB-REDDY

    Hi
    Could you please let  me know which profile is required. I have SAP_ALL profile for my user ID.
    When I open BPC excel I entered IP address which is same as BI 7.0 system and than it asked user ID and Password . I used BI 7.0 login details but not able to connect.
    Regards,
    Bhaskar

  • Displauy script in BPC Excel

    BPC admin, I created a script in the target application to copy the movements from application XXX to  application YYY
    I used this fonction:
    RUN_STORED_PROCEDURE sap_CopyFromXXXToYYY('% TIME_SET% ')
    The system generated file 'Copie.LGF'
    BPC Excel, I would like to manage edonnées / Organize the list of package
    I add the package but I do not see this file
    Can you help me to active this file
    Bastien

    Hi,
    After creating a script logic, please validate it to generate the LGX file. Then you need to have an SSIS package created. You can use the predelivered SSIS packages for this purpose (you can refer to default logic SSIS). Then create a new package (copy it from run default logic DM package).
    Hope this helps.

  • Various table options on one excel sheet

    I am looking to create an excel document that contains a drop down menu for each month of the year, and when the desired month is selected in the drop down menu, a table will appear with the number of days in the month. As some months have different
    amount of days some of the tables will be different (hence why I want the different various table options). The excel document will be for a timesheet were clients input the amount of hours they have worked in each month.
    I have tried the 'Pivot Table' but I don't think this is what I am looking for.
    Thanks

    Hi,
    >> I am looking to create an excel document that contains a drop down menu for each month of the year, and when the desired month is selected in the drop down menu, a table will appear with the number of days in the month
    You can using Data Validation to create a drop down menu for users to select the month.
    Data—Data Validation—
    There is a sample code , which generate a table based on the dropdown box selection.
    Sub  CreateTable()
    MonthArray1 = Array("Jan", "Mar", "May", ...)
    Dim MyRange As Range
    Set MyRange = Range("A2")
    Dim pos
    Dim amount
    Range("D4").Value = "Date"
    Range("E4").Value = "Hours"
    pos = Application.Match(MyRange.Value, MonthArray1, False)
    If Not IsError(pos) Then
    amount = 35
    Else
     If MyRange.Value2 = "Feb" Then
        amount = 32
      Else
        amount = 34
      End If
    End If
       For i = 5 To amount
       Range("D" & i).Value = 2015 & "-" & Range("A2").Value2 & "-" & (i - 4)
       Next I
     End Sub
    And I'm not sure whether you are looking for a VBA solution, if not, we will suggest you posting this question in Microsoft Community Office forum
    Hope this will help you .
    Best Regards
    Lan
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Error while running the JCWDE sample

    Hi all, Can anybody help me to fix this error? I have J2SE_1.4.1 and JDK_2.2.1 I build the samples successfully but when I try to run the JCWDE demo I face with this error: JCWDE jcwde.app Java Card 2.2.1 Workstation Development Environment, Version

  • Why can I not view photos from my Time Capsule on Apple TV?

    All of my media files are on my Time Capsule and I have no difficulty watching movies or listening to music through Apple TV.  I am however, not able to view any photos from my Time Capsule in Apple TV.  If I select a Time Capsule folder either part

  • Error 1402- could not open key....??? wat???

    Y cant i install the itunes software on my windows xp. the error says: Error 1402. Could not open key: HKEYLOCALMACHINE\Software\classes\.cdda\OpenWithProgids. Verify that you have sufficient accessto that key, or contact your support personnel. I ha

  • Third party plugins

    which third party plugins supported in fcp X

  • Group Policy - Computer Startup Scripts - Add/Set Default printer

    Good Morning. Let's say we have 2 offices, A and B, and only 1 user.  The user is using Roaming Profiles.  Each office has its own printer. What I am trying to do, is make a Startup script that is specific to the COMPUTER being logged into so when an