Business Objects Financial Consolidation - Excel Link and VBA Macros

Hi
We use the excel links of Business Objects Financial Consolidation V10.5 to import and export data to/from BOF and excel
We used VBA macros for the imports but do not know what VBA code is required to export - this code would include the package identifier that has to be selected in the window "Select item Package "
Can anyone help?

Hello Chrisitne,
I am as well intersted by the same funtiont, did you find any answer?
Can I also ask you the VBA code for Import and Export if you have it?
Thank for your help!

Similar Messages

  • Problem with DimensionBuilder (Business Objects Financial Consolidation)

    Description of Problem or Question:
    Hi all,
    i try to create a new Dimension as described in the help by switching into "Definition Mode" of the Dimensionbuilder. In "data sources" I select the "amounts" folder and Select File -> New -> Dimension. Unfortunatelly the Dimension entry is greyed so that i can not select it. It is also not possible to load data into the existing dimensions or reference tables.
    Any ideas how to solve that problem?
    Product\Version\Service Pack\Fixpack (if applicable):
      SAP Business Objects Financial Consolidation 7.5 Built 7.5.0.1021
    Thanks a ot in advance!
    Sebastian Lehnert

    The problem is solved. If you have the same problem, make sure that your database is initialized as a top site. By default the database is initialied as a child site which means that customizing is not possible.

  • Business Object Financial Consolidation v10.5  is supported in Windows 7 ?

    Hello,
    I am administrator of BoFC. I would like to know if new computer under WIndows 7 works fine with BoFC, and if this OS version is supported by SAP ?
    thank you for your help.
    best Regards.
    Pierre

    Hi Pierre,
    I don't know if Windows 7 is supportet. Using the Web there is no problem to work with Windows 7 and BOFC. Using Windows Client I had problems to get a connection to the BOFC-Server. But I've tried it just in an image.

  • Is there a Business Object for Sales Order Create and Change VA01 and VA02

    Hi experts -
    I am looking for a business object for Sales order create and change VA01 and VA02 respectively?
    Thanks,
    Mark

    Hi Mark,
    I think this question is best answered in [SAP Solutions|/community [original link is broken]; Forums.
    - Subhodeep
    Edited by: Subhodeep on Aug 29, 2009 11:14 AM

  • Business Objects has encountered a problem and need to close

    Hello All,
    "business objects has encountered a problem and need to close"  is the error message i get whenever i try to import from Desktop Intelligence.
    I deleted the .LSI files.....but in vain ,i still have the same problem.Please let me know of any other fix.
    Thanks in Adv

    Hi,
       Just to clarify, did you try to "rename" or "delete" the lsi file?
       Please try renaming it from XXX.lsi to XXX.lsd.old
         (Path : C:\Documents and Settings\USERNAME\Application Data\Business bjects\Business Objects....)
       When you log back into Deski via your machine, it should generate a new file is smaller size. Does this happen at all in your environment?
    Regards
    Ken

  • Would you please provide me Business objects free veriosn download link

    Hi BI guru's
    Would you please provide me Business objects free veriosn download link.I was searching on net but i couldn't able to get it.
    Business objects now replacing BEx reports.Hence we should learn BO.
    Please some one who had the free version link then provide me

    Hi,
    Please check the links below for BO trials.
    http://www.businessobjects.com/product/freetrials.asp
    https://boc.sdn.sap.com/node/18962
    Regards,

  • Business Object Explorer - Convention Excel-Sheet

    Hi,
    the business object explorer allows to upload excel sheets. i search a convention for an excel sheet because sometimes the excelsheet would not be accept from the business object explorer.
    regards,
    thomas

    Hi,
    the business object explorer allows to upload excel sheets. i search a convention for an excel sheet because sometimes the excelsheet would not be accept from the business object explorer.
    regards,
    thomas

  • Business Objects Reports 4.1.6 and Oracle 10g

    Hi all,
    One of our clients has an oracle forms 6i application and Business Objects Reports 4.1.6 called from forms with host command. We are going to upgrade the forms application to 10g but would it be possible to integrate this old version of BO in Oracle 10g application (and Oracle 10g DB)
    Does it exist any official spreadsheet which explains the compatibility of BO and Oracle DB?
    Thank you in advance.
    Alex

    Options
    1 upgrade the reports to 10g
    2 Implement webutil and call the reports 4.1.6 using host
    Rajesh Alex

  • Business Object XI R1 to SAPBW and SAPR3

    Hi,
          How to connect Business Object XI R1 System to a SAP BW and SAP R3 Systems.
    Thanks,
    venkat ramana

    hi venkat,
    go to www.help.sap.com and there selct Business Objects and you have a search in there.
    regards,
    raghu.

  • I am using LABview 5.0 and I am having difficulty with running EXCEL 2000 and my macros after I build an application.

    Excel opens and runs the macros correctly in my development programme, but when I build an application and try to run it, Excel opens but does not put the data into the cells or run the macros. Excel opens and runs the macros correctly in my development programme, but when I build an application and try to run it, Excel opens but does not put the data into the cells or run the macros.
    The error message is 'Object is not registered in set cell value.vi code-2147220997
    I stress that it all works OK until the application is built. Set cell value.vi was downloaded from this site. I am using Windows 98.
    Any help would be appreciated.

    Be sure you have your Excel activex controls properly registered in your system, there are lots of activex registerers in the web. If this does not work, look at set cell value vi and check for invalid refnums. If even this fails, i'd try reinstalling app builder, but be sure you install it before any LV update (for example 5.0.1f1) unless you want problems like i had with Excel built examples. You can also send an example, and see if i can fix it, but i don't have excel 2000 (only 97) so i don't know if i can do anything else.
    Hope this helps

  • Blocked Error Messages and VBA Macros

    I have a client who is in the process of migrating their Essbase 6 VBA macros to 7. Will the error messages regarding the different APIs impede upon the macros running correctly and fully?<BR><BR>I don't think this would be the case but wanted to double-check...

    Hello.
    I have created an dynamic Excel VBA template which include as well this log-function.
    Public Function Create_Log(lngRow As Long, lngCol As Long, strLog As String)
        Dim lngCounter As Long
        Dim lngLast_Col As Long
        Dim strLog_Line As String
        lngCounter = lngRow
        lngLast_Col = lngCol
        strLog_Line = strLog
        If ThisWorkbook.Sheets("SAP_PROCESS").Cells(lngCounter, lngLast_Col).Value = "" Then
            ThisWorkbook.Sheets("SAP_PROCESS").Cells(lngCounter, lngLast_Col).Value = strLog_Line
        Else
            ThisWorkbook.Sheets("SAP_PROCESS").Cells(lngCounter, lngLast_Col).Value = ThisWorkbook.Sheets("SAP_PROCESS").Cells(lngCounter, lngLast_Col).Text & Chr(10) & strLog_Line
        End If
    End Function
    In my process code I use this function like this:
    'Log
    If Session.FindById("wnd[0]/sbar").Text <> "" Then Create_Log lngCounter, lngLast_Col, Session.FindById("wnd[0]/sbar").Text
    We can check as well if we receive an error (sy-msgty = 'E')
    If Session.FindById("wnd[0]/sbar").messagetype = "E" Then Create_Log lngCounter, lngLast_Col, Session.FindById("wnd[0]/sbar").Text
    Hope this give you an idea how to handle this.
    Best regards,
    Holger

  • Using ms project 2007 and vba macro to list all the custom fields used in the project?

    Hi,Using ms project 2007 vba macro, I would like to be able to list all the custom fields used in the project and their corresponding field names. e.g. let us say I create a calculated duration field and name it "expected duration" and the name
    of the field I select is Duration1.
    I am trying to write a macro that will list all the used custom fields such as the result would look like:
    Duration1 ---> "expected duration"
    Text1       ---> "anything"
    Flag1        ---> "....."
    Number1  ---> "..............."
    Can anyone provide me with the solution?
    Regards,
    Chuck

    John,
    I found this module, which provides the the list of custom fields used in the project but does not provide the name given to the field. Here below is the module and hope you could help me achieve this by modifying the macro to list the renamed field.
    ' MSP Checks all Custom Task Fields
    Sub checkfields2()
    'This macro will check and report out which custom task fields are used
    'It requires Project 2002 and above as it relies on the GetField
    'and FieldNameToFieldConstant methods which were not introduced until
    '2002.
    'It does not include resource fields, however it is a simple matter to
    'do it by replacing the pjTask constant with pjResource.
    'Copyright Jack Dahlgren, Oct. 2004
    Dim mycheck As Boolean
    Dim myType, usedfields As String
    Dim t As Task
    Dim ts As Tasks
    Dim i, it As Integer
    Set ts = ActiveProject.Tasks
    usedfields = "Custom Fields used in this file" & vbCrLf
    myType = "Text"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 30
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Number"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 20
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Duration"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If Left(ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)), 2) <> "0 " Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Cost"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Start"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Finish"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    MsgBox usedfields
    End Sub
    This is what the module gives me. But I would like to have beside Text 1 the name that is shown as below. e.g Text1 is "Test".
    Would you mind helping me achieve this?
    Thanks in advance.
    Chuck

  • Business Objects Financial and Consolidation 7.0 Landscape

    Hello
    i need some orientation. The BO installation guide are confuse.
    System architecture:
    1) HttpServer
    2) ClusterServer1
    3) ClusterServer2
    4) ApplicationServer3
    5) ApplicationServer4
    I installed everything and its working fine. But, I need to have sure if my settings are fine.
    Points:
    - Every server has CTAdmin installed
    - the ClusterServer1 and 2 its Cluster Server
    - the ApplicationServer3 and 4 its User Load Balancing Servers.
    I have my questions
    1) Where the Client should connect ? at Cluster or ApplicationServer?
    2) about question nº1, What configuration I need to have each ones (in Servername (ctadmin)).
    some tips:
    if client connect to ClusterServer1 and ClusterServer_is_down, its automaticaly connect to ClusterServer2, right?
    but my problem is,how its going to work with users Load Balancing? the client connecting to ClusterServer1 or 2, automatticalyy redirect to Application Server3 or 4 (load balancing) ?  then What i put in the CTadmin
    im still confused how its work.
    I need some kind of orientation..
    Thx.
    Regards

    There is no anwer for it.
    Close

  • Business Objects 3.1 Metrics definitions and recommendations

    Hi folks,
    Does anybody know what is the definition of the following information in the CMC - Metrics,  global system
    metrics and how it is calculated:
    System Connections
    Total Open Connections
    Does each system connection create a session in the system database?
    What would be the recommended number of sessions in the CMS DB for
    lets say 300 concurrent users?
    Cheers,
    John

    In that screen (CMC -> Settings -> Global System Metrics), the term u201CConnectionu201D refers to Enterprise Sessions open in the CMS. u201CTotal Open Connectionsu201D is the total number of opened connections (Enterprise sessions) in your BOE cluster. Almost anything that interacts with the BOE cluster needs to log on first and open a session with the CMS : this can be end users of course from any client tool, but also internal servers when, for instance, running a job. u201CSystem Connectionsu201D is the subset of that total for all u201Cinternalu201D sessions, not directly opened by end users but by servers / components of the BOE cluster.
    Tests you can do to prove the point :
    -     Log on to Infoview with any user : observe Total Open Connections increases by 1, and System Connections stays the same.
    -     Log off from Infoview : observe Total Open Connections decreases by 1, and System Connections stays the same.
    -     Log back on to Infoview (Total Open Connections increases by 1), schedule a report to run now, wait for the job to be in running state : observe both Total Open Connections and Systems Connections increase by 1.
    -     Wait for the job to complete, and when it is in a success (or failed) state : observe both Total Open Connections and System Connections decrease by 1.
    -     Log off from Infoview : observe Total Open Connections decreases by 1, and System Connections stays the same.
    Note that from a licensing standpoint, only the end user session count towards the license count. This is important for all CAL licensed systems.
    To summarize and answer your specific questions :
    u201CTotal Open Connectionsu201D = u201CSystem Connectionsu201D + end user open sessions
    With 300 concurrent users, you would see u201CTotal Open Connectionsu201D at 300+ . The exact number of "System Connections" depends on what kind of activity the users are doing, and how many jobs are running at that time.
    CMS database sessions are handled independently of Enterprise sessions : although a session is persisted in a the CMS repository, it is obviously held in memory and the CMS has also its own database connection pooling mechanism.

  • Business Objects version 3.1 Voyager and Essbase 11 compatability

    Has anyone has success with using BOXI version 3.1 to connect to an Essbase version 11 database?

    You can find it here:
    http://help.sap.com/businessobject/product_guides/
    You need to look for the SAP BusinessObjects Enterprise Integration for SAP Solutions Installation and Administration Guide*
    Edge is a reduced version of Enterprise... -
    Christian
    Edited by: Christian Krueger on May 25, 2011 11:43 AM

Maybe you are looking for

  • Won't connect to wifi after updating to ios 6.1.2

    Updated my Ipad mini to ios 6.1.2 and now it won't connect to my wifi network. All other devices connect. Tried resetting network settings. Tried hold the home and power button until reset. Tried restoring. Thoughts???????

  • Help! Keyboard stops responding and then works after reboot

    My computer will start running really slowly and then the keyboard stops working, then after 30 seconds or so I lose the ability to click but the mouse still moves. Command-option-esc for force quit still works some of the time though but refreshing

  • Smart albums not working with multiple faces

    I have a picture in an event tagged with 2 faces, Chase and Caleb. I setup a smart album with two criteria: 1) Face 'is' Chase, and 2) Face 'is not' Caleb. My smart album includes the photo above, but it shouldn't since I have specified that I want C

  • How much is a ipod touch screen repair

    how much is a ipod touch screen repair

  • JCO call to RFC returns incorrect value

    Hello Experts, I am using JCO to call an RFC from java. One of the returned fields is a timestamp. When I invoke the RFC from within the SAP system, I get a correct timestamp value. But, when I invoke the RFC using JCO, the timestamp value returned h