BPC 75NW Debugging

Hi Experts,
I am new with BPC and I wondered if is there any posibility to debug a Legal Consolidation Package. We execute the package with all the required information ready to eliminate, but the package does not process any register and I would like to debug to analyse the steps follwed by the package.
Thank you in advanced.

HI Daniel -
Please review the process decribed in the following blog on Debug/Troublesooting BPC NW :
[/people/scott.cairncross/blog/2010/03/14/troubleshooting-bpc-netweaver-data-manager-packages|/people/scott.cairncross/blog/2010/03/14/troubleshooting-bpc-netweaver-data-manager-packages]
Regards,
Sheldon

Similar Messages

  • BPC 75NW: Using GetOnlyRange, data is still being submitted

    Hi ,
    I am using an Input Schedule with two EvDREs. Both the EvDREs are supposed to send the data and both are static EvDREs, without any expansion ranges. I don't want data to be sent for some of the portion of the template. I included that area in the GETONLYRANGE, but the data is still being submitted to the Application. I have used various excel CONCATENATION functions to finally provide a long string of ranges in the GetOnlyRange. The EvDRE status is OK.  
    Also, in the same template, when I refresh and hit the submit button just after refresh, it is still trying to submit the data.
    Not sure whats happening here exactly.
    Please help.
    Thanks,
    Abhishek
    Edited by: Abhishek Khatti on Jan 28, 2012 2:58 AM

    Thanks for the reply Vara.
    Yes, I was using EVRNGs.. Seems like there is a limit to the number of ranges that we can define in the GETONLYRANGE. I limited the number of EvRNGs and that worked perfectly fine.
    Thanks,
    Abhishek.

  • BPC 75NW YTD / Periodic Measure query

    The Application is currently set to YTD. The Inputs are therefore done on YTD level for Costs. Headcount is a statistical account with AST account type, so YTD/Periodic measures become irrelevent.
    Now, What I need is Periodic Costs  Divided by HC to get Cost/HC (Cost_HC_Centre) and this is the script that I am running:
    *SELECT (%BUS%, "[ID]", BUSAREA, "[CALCULATION]=Y")
    *FOR %YEAR%=2011,2012
    *FOR %MONTH%=JAN,FEB,MAR,APR,MAY,JUN,JUL
    *FOR %BA%=%BUS%
    *RUNALLOCATION
    *FACTOR=1/USING
    *DIM CATEGORY WHAT=ACTUAL; WHERE=<<<; USING=<<<
    *DIM TIME WHAT=%YEAR%.%MONTH%; WHERE=<<<; USING=<<<
    *DIM DATASRC WHAT=INPUT; WHERE=<<<; USING=<<<
    *DIM FLOW WHAT=F_999; WHERE=<<<; USING=<<<
    *DIM CURRENCY WHAT=INR; WHERE=<<<; USING=<<<
    *DIM COSTCENTER WHAT=[BUSAREA]="ADM_%BA%"; WHERE=<<<; USING=NO_COSTCENTER
    *DIM PROCESS WHAT=NO_IO; WHERE=<<<; USING=BAS(%BA%)
    *DIM ACCOUNT WHAT=BAS(Salary_and_Benefits); WHERE=Cost_HC_Centre; USING=HC
    *ENDALLOCATION
    *COMMIT
    *NEXT
    *NEXT
    *NEXT
    By doing so, it is calculating it as YTD Cost / HC where I need Periodic Cost / HC
    Please let me know how can I achieve the same.
    Thanks.

    Is measure formula for PERIODIC working as expected ?If not ,you might need to calculate periodic values and store in PERIODIC  measure . and then use periodic measure in the logic.

  • Master data load: texts are not loaded

    Hi friends,
    Trying to load BW Hierarchy(0COSTCENTER) to BPC dimension(P_CC).
    Loadedd master data & text data using package "Import master data from BI infoobject"(/CPMB/IMPORT_IOBJ_MASTER), but EVdescription (texts) are not uploaded ino BPC dimension (P_CC).
    Because of above error, when i try to load hierarchy(0costcenter), sytem throwoing one more error(JScrpit evaluation error).
    Now i want to load texts into P_CC. ours is bpc 75nw sp10.
    Found 2 notes, but these are related to older support packges
    1462732 u2013 DM: text node descriptions canu2019t be imported.
    1531601 - Incident 737084 / 2010 / text nodes aren't loaded
    Transformation file:
    *OPTIONS
    FORMAT = DELIMITED
    HEADER = YES
    DELIMITER = TAB
    AMOUNTDECIMALPOINT = .
    SKIP = 0
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT=-1
    ROUNDAMOUNT=
    *MAPPING
    ID=ID
    CURRENCY=0OBJ_CURR
    *CONVERSION
    DM package run:
    Infoobject: 0COSTCENTER
    set selection: Attributes Controlling area = SP00
                           Hierarhcy: import text node(yes), selected hierarchy, version(empty),memberid(SP001170),level(not filled)
                           language: English, medium description,
                          attiribute list: currency(0OBJ_CURRENCY),controlling area
    fileter by attributes or hierarhies option selection,
    Mode: Update
    Format: internal
    Dimension: P_cc
    package ended with error
    Failed to write text of master data; check the error message
    checked BPC dim, only member ID & currency is updated, but not evdescription.
    Can you please share valuable inputs.
    thanks,
    naresh

    resolved problem.
    Packages given bpc7.5 nw sp10 are is exactly working.
    Mapping section:
    ID=0CO_AREA+ID
    CURRENCY=0OBJ_CURRENCY
    becoz base members are automatically added with controlling area in BW hierarchy on 0costcenter.
    Followed method given in how to guide.

  • Parsing PROMPT values to custom SSIS package

    Hi,
    I need to extract data from our customers ERP system. I have created a SSIS package doing this. I'm using two SSIS variables 'STARTDATE' and 'ENDDATE' to specify the range in transactions I want to extract. I have tested the SSIS package with the variables pre-filled (in SSIS) from SAP BPC 7.5 and the package is working as expected.
    Now i want to change the pre-filled values with values from my PROMPTs in my BPC package. I have created two PROMPTs called BEGIN and END. I have tried to parse the values in different ways, but havn't found the solution. Can anyone guide me in the right direction?
    Here the script on my BPC package:
    DEBUG(ON)
    GLOBAL(STARTDATE,%BEGIN%)
    GLOBAL(ENDDATE,%END%)
    PROMPT(TEXT,%BEGIN%,"Enter start date:",,"")
    PROMPT(TEXT,%END%,"Enter end date:",,"")
    INFO(%TEMPFILE%,%TEMPPATH%%RANDOMFILE%)
    TASK(CONVERT data,INPUTFILE,%FILE%)
    TASK(CONVERT data,OUTPUTFILE,%TEMPFILE%)
    TASK(CONVERT data,CONVERSIONFILE,%TRANSFORMATION%)
    TASK(CONVERT data,STRAPPSET,%APPSET%)
    TASK(CONVERT data,STRAPP,%APP%)
    TASK(CONVERT data,STRUSERNAME,%USER%)
    TASK(LOAD AND PROCESS,APPSET,%APPSET%)
    TASK(LOAD AND PROCESS,APP,%APP%)
    TASK(LOAD AND PROCESS,USER,%USER%)
    TASK(LOAD AND PROCESS,DATATRANSFERMODE,4)
    TASK(LOAD AND PROCESS,CLEARDATA,%CLEARDATA%)
    TASK(LOAD AND PROCESS,FILE,%TEMPFILE%)
    TASK(LOAD AND PROCESS,RUNTHELOGIC,%RUNLOGIC%)
    TASK(LOAD AND PROCESS,CHECKLCK,%CHECKLCK%)
    Regards,
    Lars

    This is confusing, I can't understand why you are getting this error, it seems to me that BPC is trying to look for your stored procedure in your APPSET DB (Source Server) . If your connection object, which is defined in the package is pointing to the correct destination server, then it should work, unless you have modified te connection using Dynamic Script (which it appears not to be the case)
    You can try to create the stored procedure in the source system, but I suspect you will get the error message "Object not found, etc... ", becuase your source server doesnt know about your database in your query.
    You can try add the following dynamic script, which implicitly tells BPC to override the connection object with the settings you have provided.
    DEBUG(ON)
    INFO(%DBName%,YourSourcedBName)
    INFO(%DSTSrv%,YourDestinationServerName/IP)
    PROMPT(TEXT,%BEGINDATE%,"Enter start date:",,"")
    PROMPT(TEXT,%ENDDATE%,"Enter end date:",,"")
    CONNECTION(SQLconn,ConnectionString,Data Source=%DSTSrv%;Provider=SQLNCLI.1;Integrated Security=SSPI;Auto Translate=False;)
    CONNECTION(SQLconn,InitialCatalog,%DBName%)
    CONNECTION(SQLconn,ServerName,%DSTSrv%)
    OLEDBCONN(Source - LEDGERTRANS,SqlCommand,"EXEC dbo.AXdata '%BEGINDATE%', '%ENDDATE%'")
    OLEDBCONN(Source - LEDGERTRANS,OpenRowSet,"EXEC dbo.AXdata '%BEGINDATE%', '%ENDDATE%'")
    Make sure you amend the following
    YourSourcedBName - Your Destination Server Database Name (The name of the database where you are extracting data from)
    DSTSrv - The destination server ne or IP Address
    SQLConn - This is the name of your OLE DB connection object defined in the package. This should be the same connection object in which your OLEDB Source is using..
    And try to fully qualify your SQL code, meaning try to put the full path, for example
    EXEC DBName.dbo.AXdata '%BEGINDATE%', '%ENDDATE%'"
    I hope this helps and resolves your error..
    Kind Regards
    Daniel

  • Debug a BPC template

    Hi,
    Is there a way to debug a BPC report template. We are on BPC ver 5.1 sp3 and having issues with data retrievals, EVGTS. The templates are static, expansions OFF and no EVDRE's. I am guessing its to do with the multiple hierarchies in some dimensions.
    Any ideas on how to see what happens behind the screen of these EV functions and how to tune them.
    Appreciate your help..
    Thanks,
    Swaroop

    Hi,
        There is no way to degug the report template. For evdre function you can activate some logs file , but seems to not be your case.
        EVGETS is retrieving data directly from you cube. Maybe your cube is not processed and you are not able to see the new data. Try to process your cube directly into OLAP client or try to save the application using the BPC admin client.
    Regards,
    Mihaela

  • Error when running a report in BPC NW

    I am getting the following error when running a report for my application in BPC NW.
    EVDRE encountered an error retrieving data from the Web Server (retrying in (X) seconds).
    This error comes with this dialog option box to either continue or cancel retrying retrieving data. Retrying doesn't help either.
    Any report I run (on any of my appsets), I get this error. I used the EVDRE function and also tried running a report using the template as the basis. But I get the error either way.
    Does anyone know why this error is occurs or how to debug this issue. I saw some information about this in earlier threads but could  not make much out of it.
    Appreciate any assistance.

    Sanjay,
      This  is a   very  generic  error...Couple  of  places  to  look  for....
    1)Reprocess the application (Modify application + Reassign SQL Index + Process Application)
    2)optimizing the application sometimes helps (Full Optimize + Compress Database + Index defragmentation).
    3)Create a "evdataserver_debug.txt" in user's private publication folder on  server side to populate very detail level logging  and  check  the  log on client side EVDRE_LOG.txt for  further  peek  into  where  things  are getting  messed up.
    if  evdataserver_debug.txt does not  get  populated on BPC 5.x...it  is  an  issue  with  IIS authetication on Application server.
    4)You have to check the event viewer into .NET server and also the BPC logs which can be found into
    BPC\Logging  for  further  details  ..
    Hope  this  helps..
    Edited by: Vishal Mahawadhi on Jun 24, 2009 9:50 AM

  • BPC 7.5NW - Transports

    Hello Gurus,
    We just did some enhancements in our Appset in the DEV environment and should now promote these enhancements to the QA and PROD systems.  We want to use transports to accomplish this.  I am aware of the following:
    1.  We will have to move the entire Appset as one object from the DEV environment to the QA and PROD systems
    2.  To do step 1, we should put together a transport using T-code UJBPCTR
    3.  SAP BPC will use the concept of "Shadow tables" to figure out the objects that were changed, and will move those to the new environments.
    4.  We log in to the new environments and perform testing.
    Did I miss any of the key steps in the whole process?
    Also, please let me know how to debug if something doesn't get transported properly.
    Thanks for all your help.
    Best regards,
    Van.

    Hi Van,
    For your queries relating to the Transports please check the BPC 7.5 NW Operations Guide (available in SMP) pg no. 43.
    Regards,
    Raghu

  • Problems with Windows Vista for BPC, from Windows XP

    Hello,
    We have developed some templates in excel 2003 in SAP BPC for Windows XP and these work perfectly. But this templates in excel 2003 and with Windows VISTA makes a fault.
    The fault is: when the template is opened and you select a year (made with a EVCVW), the box for choose the year opens correctly, then you click OK,and the Excel makes a fault and close itself.
    How could i solve this problem?
    Thank you for the help.
    With best wishes

    Hello
    In this case open and check the MS Windows Application and System logs and foward to your MS Windows support channel to debug.
    Regards.

  • BPC Detail error/reject log not created in the PrivatePub/user/temp folder

    Hi,
    We have a custom import package that imports data from a comma seperated txt file in to BPC. If all the data members in the data file are valid dimension members the package is successful and the package log file is created in the PrivatePub/user/Temp folder. But if there are any rejects the reject log is not getting created under the temp folder and moreover the package status is "Error". The package log is created but the reject log is not. The Webfolders has the full share permissions.
    The same package runs fine in our Test environment and creates the package log and reject log.
    We are on BPC 5.1 SP3.
    Is there a configuration that is missing.
    Thanks in advance.
    Swaroop

    I'm pretty sure that when you do not explicitly indicate a transformation file, a default file (import.xls I think?) is used.
    Also, there are a number of temp files & variables that must be created in the MODIFYSCRIPT variable, and certain conversion tasks that are part of the standard import process. You can see the proper syntax in the sample import pacakges.
    If you've created a new package of your own, you may be missing some key pieces. If you don't understand what all the pieces are in the sample packages (and why you don't need them), you should start by debugging with one of them, and then see what you need to add back into your package.
    I'd normally recommend to start with the sample import package, and only modify it if necessary, and as little as possible.
    Last thought - file permission... does the user running the package (not the end user logged into BPC, but the BPC data manager user, which I believe is the "USER" (not admin or sysadmin) set up during the server install) have appropriate access rights to that network share where the data file is located? Try changing it to a local path, and copy the test.txt to that location.

  • BPC 10.0 Input Schedule refresh : investigating performance issues on frontend side

    Hello,
    We are running SAP BPC NW 10.0 SPS8.
    We recieve a lot of complaints regarding performance issues.
    More specifically BPC Input Schedule refresh takes ages (11 minutes actually)
    I am a SAP Basis Administartor with some solid BW experience, but very linited BPC knowledge.
    So raf we have tried the following :
    * BPC Full and light ptmimize of the BPC Cubes.
    * Updating Oracle Statistics
    * Activating ABAP/SQL traces*
    * Checking USJTAT Logs
    Then it rutned out that the perfromance problems werre not caused by the backend SAP BW server (only 9 seconds of bakend  processing are displayed in UJSTAT).
    The overwhelming majority of the processing is spent on the frontend side : on the computer of the user.
    We really would like to know what is happening on BPC Frontend side, but are really lacking any investigative method .....
    other that  checking memory/CPU usage o nthe frontend computer.
    From your experience, is there any tool/method to allow to conduct some investigation on what is going on the frontend side, when a BPC Input Schedule is refreshed ?
    Thank you for your attention.

    Hello Vadim,
    We still need to get confirmation from the external consultants who developed the BPC solution, but as far as I can understand it :
    We do not use use member formulas
    We are indeed talking about EPM (without EPMRetrieveData functions)
    The perfromance  problems occur in DEV and QAS , after a restore of the BPC environment (backup from PRD)
    We already had the problem in the past, but we never knew precisely how to solve it, it is as if there was some missing links between the restored BPC environment from PRD and the DEV/QAS system
    One additional information, we checked the EPM CLient Log , and here are the errors displayed while refreshing the input schedule :
    The thing is that I have no idea what it means ...
    ?FILE_TYPE:DAAA96DE-B0FB-4c6e-AF7B-A445F5BF9BE2
    RECORD_SEPARATOR:35
    COLUMN_SEPARATOR:124
    COLUMNS:Time|Severity|Category|Method|User|DSRRootContextID|DSRTransactionID|DSRConnectionID|DSRCounter|Thread|Text
    SEVERITY_MAP:DEBUG|Debug|INFO|Information|VERBOSE|Verbose|WARNING|Warning|ERROR|Error|FATAL|Fatal
    HEADER_END
    2014-04-18 08:41:17,446|ERROR|ReportManagement|FPMXLClient.Office.EPMExcelReportManagerRepository.GetReportManager|BPCUSER|||||1|Unable to get the Object property of the OLEObject class#
    2014-04-18 08:41:18,613|ERROR|ReportManagement|FPMXLClient.Office.EPMExcelReportManagerRepository.GetReportManager|BPCUSER|||||1|Unable to get the Object property of the OLEObject class#
    2014-04-18 08:41:18,630|ERROR|ReportManagement|FPMXLClient.Office.EPMExcelReportManagerRepository.GetReportManager|BPCUSER|||||1|Unable to get the Object property of the OLEObject class#
    2014-04-18 08:41:18,648|ERROR|ReportManagement|FPMXLClient.Office.EPMExcelReportManagerRepository.GetReportManager|BPCUSER|||||1|Unable to get the Object property of the OLEObject class#
    2014-04-18 08:41:18,731|ERROR|ReportManagement|FPMXLClient.Office.EPMExcelReportManagerRepository.GetReportManager|BPCUSER|||||1|Unable to get the Object property of the OLEObject class#
    2014-04-18 08:41:37,171|ERROR|ReportManagement|FPMXLClient.ReportManagement.DynamicReport.Load|BPCUSER|||||1|bytes = 1#
    2014-04-18 08:41:39,348|ERROR|ReportManagement|FPMXLClient.ReportManagement.DynamicReport.Load|BPCUSER|||||1|bytes = 0#
    2014-04-18 08:41:39,474|ERROR|ReportManagement|FPMXLClient.ReportManagement.DynamicReport.Load|BPCUSER|||||1|bytes = 0#
    2014-04-18 08:41:39,536|ERROR|ReportManagement|FPMXLClient.ReportManagement.DynamicReport.Load|BPCUSER|||||1|bytes = 0#
    2014-04-18 08:41:39,597|ERROR|ReportManagement|FPMXLClient.ReportManagement.DynamicReport.Load|BPCUSER|||||1|bytes = 0#
    2014-04-18 09:00:22,088|ERROR|Dataservice|FPMXLClient.BPCProxy.MetaData_Data.DataServiceHelper.ExecuteReportAsStream|BPCUSER|||||ServerCallThread_666f378d-d824-4a8a-bf38-0da8493e2382|An error has occured on the server#
    2014-04-18 09:00:22,252|ERROR|BPC10Connection|FPMXLClient.Connection.RESTConnection.ExecuteReport|BPCUSER|||||ServerCallThread_666f378d-d824-4a8a-bf38-0da8493e2382|An error has occured on the server#
    2014-04-18 09:00:22,268|ERROR|OfficeWrappers|FPMXLClient.Office.EPMReportManager.ExecuteReport|BPCUSER|||||1|An error has occured on the server#
    2014-04-18 09:00:22,317|ERROR|OfficeWrappers|FPMXLClient.Office.EPMExcelReportManager.RefreshReports|BPCUSER|||||1|An error has occured on the server#
    2014-04-18 09:00:22,447|ERROR|AnalyzerOne|FPMXLClient.AddIn.RefreshSheetWithScan|BPCUSER|||||1|Execution of Report Default Report failed : #
    2014-04-18 09:00:22,537|ERROR|Automation|FPMXLClient.EPMAddInAutomation.RefreshActiveSheet|BPCUSER|||||1|Execution of Report Default Report failed : #

  • BPC 10 NW Book Publication Err

    Hi All,
    We are on BPC 10 NW SP5 Release 801 and EPM Add-In SP16.
    When my user trying to run a book of reports in one single pdf we are getting this error. It is able to create upto 3 report and failing on 4th one onwards. Even though we changed order of reports it fails on the fourth one onwards. Appreciate your help on this.
    Err:
    Log:
    Details:
    FILE_TYPE:DAAA96DE-B0FB-4c6e-AF7B-A445F5BF9BE2
    RECORD_SEPARATOR:35
    COLUMN_SEPARATOR:124
    COLUMNS:Time|Severity|Category|Method|User|DSRRootContextID|DSRTransactionID|DSRConnectionID|DSRCounter|Thread|Text
    SEVERITY_MAP:DEBUG|Debug|INFO|Information|VERBOSE|Verbose|WARNING|Warning|ERROR|Error|FATAL|Fatal
    HEADER_END
    2014-09-09 11:58:58,992|ERROR|BPCProxy|FPMXLClient.BPCProxy.Common.Wcf.InterceptorChannelFactory`1+InterceptorRequestChannel.Request||||||9|The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Basic realm="SAP NetWeaver Application Server [B4P/100]"'.#
    2014-09-09 12:00:11,095|ERROR|ReportManagement|?.?|uscrxd75|||||15|bytes = 0#
    2014-09-09 12:00:11,189|ERROR|ReportManagement|?.?|uscrxd75|||||15|bytes = 0#
    2014-09-09 12:00:11,205|ERROR|ReportManagement|?.?|uscrxd75|||||15|bytes = 0#
    2014-09-09 12:00:11,205|ERROR|ReportManagement|?.?|uscrxd75|||||15|bytes = 0#
    2014-09-09 12:00:31,407|ERROR|ReportManagement|?.?|uscrxd75|||||1|bytes = 0#
    2014-09-09 12:00:31,422|ERROR|ReportManagement|?.?|uscrxd75|||||1|bytes = 0#
    2014-09-09 12:00:31,422|ERROR|ReportManagement|?.?|uscrxd75|||||1|bytes = 0#
    2014-09-09 12:00:31,438|ERROR|ReportManagement|?.?|uscrxd75|||||1|bytes = 0#
    Regards,
    Raju.

    Hello.
    I have the same problem with Microsoft version.

  • APPLICATION created in Admin BPC client can't see in Office BPC client

    `Hello Gurus,
    I am an SAP BI Consultant and having around 4 years of experience. I have started to work on BPC 7.5. I have created dimensions and APPLICATION as well successfully. however when i try to open my Microsoft office BPC client, i am able to get my App.set but i can't see my Application.
    Can anybody tell me what should i do now ? Also guys if you have documentation on simple scenarios in BPC then do please share the links or documents on komikshah at google account.
    Regards,
    Komik Shah
    Edited by: komik shah on Nov 25, 2010 4:49 AM

    Hi Both of you.
    Thanks for your prompt response. When i try to click on SECURITY - > Member Access Profile. i am getting exception which is mentioned below.
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    System.Exception: <webservicelayer><Exception><ExceptionInfo><exType>System.NullReferenceException</exType><exMessage>Object variable or With block variable not set.</exMessage><exSource>Microsoft.VisualBasic</exSource><assembly>Microsoft.VisualBasic.CompilerServices.LateBinding, Microsoft.VisualBasic, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</assembly><stackTrace>   at Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack)
       at OSoft.Services.Webservice.UserService.UserService.GetMProfilesForTreeView(String sParameter, String strContext)
    </stackTrace><exTime>11/25/2010 1:44:09 AM</exTime></ExceptionInfo><WebServiceLayer><machineName>SAPDEV10</machineName><userName>SAPDEV10\idhasoft</userName><csnComponent>EPM-BPC-NW</csnComponent><className>UserService</className><MethodInfo><methodName>GetMProfilesForTreeView</methodName><Params><strSecurity><SECURITY><CheckSum><![CDATA[J3P2vSZgeynH49mQHt4622csEiI=]]></CheckSum><IsZipped><![CDATA[False]]></IsZipped><IsEncrypted><![CDATA[True]]></IsEncrypted></SECURITY></strSecurity><strParameter><Parameter><Param1 Name="DomainName"><![CDATA[sapdev10]]></Param1><Param2 Name="ID"><![CDATA[sapdev10\idhasoft]]></Param2><Param3 Name="TaskType"><![CDATA[USER]]></Param3></Parameter></strParameter><strContext><Context><AppSet><![CDATA[ZRB_GM_PLAN]]></AppSet><UserID><![CDATA[sapdev10\idhasoft]]></UserID><App><![CDATA[MemberAccessProfiles]]></App><Language><![CDATA[EN]]></Language><Session><SessionID><![CDATA[]]></SessionID><Machine><![CDATA[192.168.4.137]]></Machine><Machine_Name><![CDATA[KOMIK-PC]]></Machine_Name><ModuleName><![CDATA[ADMIN]]></ModuleName></Session><CurrentView><Dim><Name></Name><Value></Value></Dim></CurrentView></Context></strContext></Params></MethodInfo></WebServiceLayer><additionalInfo></additionalInfo><displayMode>ERROR</displayMode></Exception><webservicelayer>
       at Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack)
       at OSoft.Consumers.Admin.AdminTrvMenu50.TrvMenu.GetDataForTreeView(String strID, String strTag, String strAppname)
       at OSoft.Consumers.Admin.AdminTrvMenu50.TrvMenu.GetNodeMember(String strFullPath, String strTag)
       at OSoft.Consumers.Admin.AdminTrvMenu50.TrvMenu.AddDataNode(TreeNode& SelectNode, Boolean bQuery, Boolean bDraw)
       at OSoft.Consumers.Admin.AdminTrvMenu50.TrvMenu.trvApSet_AfterSelect(Object sender, TreeViewEventArgs e)
       at System.Windows.Forms.TreeView.OnAfterSelect(TreeViewEventArgs e)
       at System.Windows.Forms.TreeView.TvnSelected(NMTREEVIEW* nmtv)
       at System.Windows.Forms.TreeView.WmNotify(Message& m)
       at System.Windows.Forms.TreeView.WndProc(Message& m)
       at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Regards,
    Komik Shah

  • Difference between BPC 5 and 7 ms

    Hello all,
    I have found documents about the bpc 7ms but however im looking for whats the difference between bpc 5 and bpc 7ms systems, new features and so on. Do anyone have information about this. Please Share =)
    Cheers
    Jojo

    hI,
    Right now BPC 5.1 is going on in the market, and BPC 7.0 NW version is in rampup.
    BPC 5.1 is the Microsoft version which uses the microsoft tools (Excel,powerpoint,etc) and the backend is SQL server, while BPC7.0 will be having both Microsoft version and Netweaver version.Here Microsoft version will be same as for BPC 5.1 with some advancements,while for NW version the backend will be BI.
    Between BPC 7.0NW and BPC 5.1
    What is In
    Integration with NetWeaver BI
    Increased dimensionality
    New Validations engine
    Integration with BI Accelerator
    Improved dynamic templates
    Lifecycle Management (transports)
    Statistics framework for monitoring
    64-bit ABAP A/S support
    Database neutrality
    Debugging capabilities (ABAP only)
    What is Out
    BPFs
    Books
    Drill-Through
    Dynamic Hierarchy Editor
    Insight
    SQL-Logic in Script Logic
    Some EV functions
    Ability to rename a member, delete a member being used, reduce the length of a property
    Custom Menus
    Thanks,
    Anila

  • Multiple SQL Queries in SAP BPC  5.1 EVMODIFY

    Hi All,
    We have multiple SQL Queries in Outlooksoft 4.2 which extracts data from Oracle source system with different set of selections and conditions and parameters. We were able to use multiple SQL Queries in Outlooksoft 4.2 using Transform Data Flow Task and paste parameters using evModify dynamic script task, where ever extract to source system is needed.
    According to  SAP BPC 5.1, all these multiple SQL Queries and extracts by passing parameters will be coded in EVMODIFY dynamic script editor.But, EVMODIFY dynamic script editor is not working with the sets of multiple SQL Queris.It's able to recognize and execute the first SQL Query, but not able to execute from the second SQL Query.
    Does any body, did multiple extracts using SQL Queries to the source system by passing parameters using SAP BPC 5.1 data  manager and SSIS Packages, please let me know, how you did achieve the above functionality.
    Regards,
    Sreekanth.

    Hi Sorin,
    Thanks for your update, I tried declaring the variable between %%....GLOBAL(%GTIMEID%,%SELECTION%) and the package runs now but the problem is that the package is executed using the default date value for the variable GTIMEID declared in the DTSX package and its not taken the date that I'm trying to pass from BPC.  As showed below, please if you could take a look to the ModifyScript and see the last line for the global variable and line 13  PROMTP(SELECTINPUT,%SELECTION%,,,%TIME_DIM%) where I am selecting the TIMEID:
    DEBUG(ON)
    PROMPT(INFILES,,"Import file:",)
    PROMPT(TRANSFORMATION,%TRANSFORMATION%,"Transformation file:",,,Import.xls)
    PROMPT(RADIOBUTTON,%CLEARDATA%,"Select the method for importing the data from the source file to the destination database",0,{"Merge data values (Imports all records, leaving all remaining records in the destination intact)","Replace && clear data values (Clears the data values for any existing records that mirror each entity/category/time combination defined in the source, then imports the source records)"},{"0","1"})
    PROMPT(RADIOBUTTON,%RUNLOGIC%,"Select whether to run default logic for stored values after importing",1,{"Yes","No"},{"1","0"})
    PROMPT(RADIOBUTTON,%CHECKLCK%,"Select whether to check work status settings when importing data.",1,{"Yes, check for work status settings before importing","No, do not check work status settings"},{"1","0"})
    INFO(%TEMPFILE%,%TEMPPATH%%RANDOMFILE%)
    PROMPT(SELECTINPUT,%SELECTION%,,,%TIME_DIM%)
    TASK(CONVERT Task,INPUTFILE,%FILE%)
    TASK(CONVERT Task,OUTPUTFILE,%TEMPFILE%)
    TASK(CONVERT Task,CONVERSIONFILE,%TRANSFORMATION%)
    TASK(CONVERT Task,STRAPPSET,%APPSET%)
    TASK(CONVERT Task,STRAPP,%APP%)
    TASK(CONVERT Task,STRUSERNAME,%USER%)
    TASK(Dumpload Task,APPSET,%APPSET%)
    TASK(Dumpload Task,APP,%APP%)
    TASK(Dumpload Task,USER,%USER%)
    TASK(Dumpload Task,DATATRANSFERMODE,1)
    TASK(Dumpload Task,CLEARDATA,1)
    TASK(Dumpload Task,FILE,%TEMPFILE%)
    TASK(Dumpload Task,RUNTHELOGIC,1)
    TASK(Dumpload Task,CHECKLCK,1)
    GLOBAL(%GTIMEID%,%SELECTION%)
    Do you guess That I am missing something?
    Thanks in advanced
    Regards

Maybe you are looking for

  • ThinkPad E335 function keys

    My Edge E335 came with Win 7 but I later added Win 8.1 in dual boot.  Win 8.1, free of all the Lenovo software, is better in use for me except that the function keys all have the Lenovo laptop functions for camera, screen brightness and so on rather

  • Edit in Photoshop - opening original file, no adjustments, no options

    I have LR4 and CS5, when I right click on the photo to edit in photoshop I don't have any options as to how I want to open the file such as original, edited with LR adjusemnts, etc.  When the file immediately opens in photoshop it is opening without

  • LINE-SIZE 132 / 255 / ???!

    Hi Experts, I need to develop a Classic Report. But, it has 18 ( columns which does hv more characters i.e. fileds like, KUNNR, MATNR, VBELN, EBELN,BUKRS,ERNAM, ERDAT) columns and the Functional team said that, the report shuld come in print out! So,

  • Why does the iPad Air Smart Case not sit flush?

    I bought one today and was immediately disappointed. When the cover is closed the first 1/3 sections (closest to the hinge) is raised above the screen. When it's fully opened in 'reading' mode, the cover lumps up on the back of the iPad. This makes i

  • Odd/even, normal/reverse

    Why does Mac OS X printing dialogue have two separate screens for choosing options such as odd/even pages and normal/reverse order? These options are under "Copies and Pages" and under "Paper Handling". Which one takes precedent if something differen