No results when running SPRUNELIM for Management Eliminations

Greetings Experts,
I would greatly appreciate any thoghts on the following issue that I am having.
Running on BPC v7 for MS sp 5
One App/Web server, one Database Server
I have configured the application as follows:
1. Added ELIMACC property to Account DIM (checked INAPP flag)
2. Populated ELIMACC property with valid Account members (where I want the elimination to go)
3. Added ELIM property to Entity dimension (checked INAPP property)
4. Added Entity members as children of each parent member
5. Added u201CYu201D to the ELIM property of those Entity members
6. Added US Elimination Business Rules (identifying the Source DataSrc and Destination DataSrc u2013 Source is a parent, destination is a base level member)
7. Created a script to run the SPRUNELIM stored procedure
8. Mapped a DM package to that script
9. Executed the script
*RUN_STORED_PROCEDURE = SPRUNELIM( [%APP%], [%CATEGORY_SET%],[%TIME_SET%], [%CONSOLVIEW_SET%],'%SCOPETABLE%','%LOGTABLE%')
*COMMIT
Results:
1. Debug Log shows no records written (that appears to be a known issue with writing to the log, results should still be written to the database)
2. No records are written to the database.
Thanks in advance for your help!
Regards,
Craig

>
Shoba V wrote:
> Hi Craig,
>
> I would suggest you to do the following:
>
> 1. Add an IntCo type dimension if dont have it already and maintain it with the "ENTITY" property
> 2. Maintain currency type dimension with "REPORTING" property
> 3. Try using the following script
>
> *INCLUDE SYSTEM_CONSTANTS.LGL
> *SYSLIB ICELIMWITHCURR.LGL
>
> *INITIALIZE_ELIM()
> *ELIMINATE_ORG(H1)
> *COMMIT
>
> The above logic performs intercompany elimination without using business rules.
>
> Hope this helps.
>
> Regards,
> Shoba
Hi Shoba,
will you be able to give some information on the code of "ICELIMWITHCURR.LGL"? When I try to use this syslib, I got an error message saying that the mentioned file is missing.
Thanks for further information,
Sebastian

Similar Messages

  • No results when running KOB1 for Service Orders

    Hi gurus,
    We have a process with Service Orders where actual costs are posted.
    When running report KOB1 for service orders with actual posts, no result is showing.
    Any idea why this is happening?
    Thanks,
    VL

    Hi Victor
    Try to check this options:
    1-be sure the posting date range is corrected.
    2-be sure the layout choosen is not set some filter. Try to disable all filters.
    If you checked this points and even after is not working.
    Try to run FBL3N for the account posted, open financial document and check if a Controlling document was generated.
    Check if the account is a cost element in KA03.
    Regards

  • APP-FND-00874 when running Geocode Upgrade Manager

    Hello,
    We are in the process of impementing payroll in our R12.0.6 environment. We have applied HRMS RUP9, "US & Canada End of Year 2011 Statutory Update Phase 1 for R12.0 " patches as they are mandaotory for R12.0.X payroll implentation for US and Canada.
    A post patch step for Patch "US & Canada End of Year 2011 Statutory Update Phase 1 for R12.0 " is to run "Geocode Upgrade Manager" Program.
    We are trying to run this program from CA HRMS Manager or CA Payroll Manager responsibility.
    When we hit the Submit button to submit the request. It throws the following error:
    "APP-FND-00874: Routine FDFBDF found no rows in table FND_DESCRIPTIVE_FLEXS. Please contact your system administrator or support representative."
    Please let us know how to troubleshoot this....

    I am thinking of compiling all flexfields through adadmin once.
    Please provide anymore pointers if possible ....Please do and see if it helps.
    Also, run the compile flexfield concurrent program from the application -- How To Re Compile A Concurrent Program Parameter Descriptive Flexfield ( DFF ) [ID 1209897.1]
    By the way, do you have any invalid objects in the database?
    Thanks,
    Hussein

  • Query not showing detailed result when run through query Designer or Portal

    Hi,
    There is one query which not showing detailed result while running through Query Designer or run in Portal.
    But strange thing is that it is showing the detailed result when i run it through BeX Analyzer.
    While all the other queries don't have this problem in system. All showing the correct detailed result.
    If anyone have some idea on this issue plz let me know.
    Regards,
    Javed
    Edited by: Javed Akhtar on Jul 7, 2009 3:59 PM

    Hi,
    We can do this setting in WAD. Please check the web template and try to remove that setting. When you have hierarchy then we can display only till certain level in portal, this setting is done in web template APIs, but in bex analyzer you can see all the detailed information.
    Edited
    Go through this thread for some more detailed information
    http://help.sap.com/saphelp_nw2004s/helpdata/en/44/7b5f0a95ce12d0e10000000a422035/frameset.htm
    Regards,
    rik

  • Why Do I get different result when Run as Admin to Standard?

    Why when Running this script to copy from the "config64" folder (if files exist)(if not copy from "config32")  if works correctly when running  Batch file normally (copies the config64), but using the exact same line when running
    the Batch file as "Run as Administrator" it doesn't work correctly (copies the config32, even though Files do exist config64 folder as they did when I ran it normally and it worked)
    >nul 2>nul dir /a-d "Folder\config64\*" /s && (XCOPY "%~dp0Folder\config64\File64.ini" "%ProgramFiles(x86)%\CompanyFolder\ProductFolder\" /y /d) || (XCOPY "%~dp0Folder\config32\File32.ini" "%ProgramFiles(x86)%\CompanyFolder\ProductFolder\" /y /d)
    UAC is turned off and I'm the administrator (only user on a standalone PC) running windows 8.1.
    Is there a reason or it is a strange bug with Windows 8.1?

    A LOT  more intellectual than
    Frederik Long Who just had no clue himself to not offer an answer. As I've only been looking at this for 2 weeks I think I've come far and you help is much appreciated. Thank you JRV!
    You seem to miss the point. Assuming that your problem is caused by a bug can prevent you from finding the real cause. If you had dismissed the bug theory then you might have done some real debugging, e.g. by breaking up your single-line script (which is
    hard to comprehend) into easily digestible pieces and adding some debugging code like so:
    @echo off
    set Target="%ProgramFiles(x86)%\ComapanyFolder\ProductFolder\"
    dir /a-d "Folder\config64\*" /s 1>c:\Test.log 2>&1
    if %ErrorLevel% EQU 0 (
    XCOPY "%~dp0Folder\config64\File64.ini" %Target% /y /d /s 1>>c:\Test.log 2>>&1
    ) else (
    XCOPY "%~dp0Folder\config32\File32.ini" %Target% /y /d /s 1>>c:\Test.log 2>>&1
    The log file would have told you quickly what is going on. Furthermore - why should I offer my own solution to your problem when JRV gave you a perfect answer straight away?

  • Adadmin error when run check for missing files

    Hi All,
    When i run adamin for checking missing flie option it return the error
    Unable to verify files for iSupplier Portal.
    AD Administration error:
    The following file is missing:
    /m01/TEST/apps/apps_st/appl/pos/12.0.0/admin/driver/posfile.drv
    My EBS version is :R12.1.3
    when i checked files existed in $POS_TOP there are only three subdirectories available i.e. log mesg out
    when i checked in one of the older server in mean R12.1.1 all files existed in POS_TOP i.e. admin help html java log mds media mesg out patch sql xml
    Can i copy all the files from old server(12.1.1) to produciton(R12.1.3)
    Due to this error JAR files cannot be generated
    Thanks
    Alig

    Was this 12.1.3 instance upgraded from the same copy of 12.1.1 instance you have?
    Can i copy all the files from old server(12.1.1) to produciton(R12.1.3) They are different releases. However, you could try copying the files and see if this helps. Are you using this product?
    Due to this error JAR files cannot be generatedWhat is the error? Copy the missing files/directories for now and check then.
    Thanks,
    Hussein

  • Grouping, Pegging and Distribution (GPD) when run MRP for PS

    Dear all,
    As you know, MRP is a core of Planning Process. So when you run MRP for PS, SAP can't check stock in general stock and project stock at the same time. Now, my client have accept to run MRP base on project stock. But there are some problem when they give me requirement and actually situation in their company. One of them as below:
    They have 3 WBS element (WBS 1, WBS 2, WBS 3) and they use the same material A. Their requirement is they want to run MRP to plan material for 3 WBS.
    Solution 1: use MD51 and run MRP for Project definition and each of WBS element have respective project stock, the system will generate some of planned order for each oder reservation. After that, I will convert all of planned order to PR => PO => Good Receipt for each WBS element. When run MD04, I can see the stock for each project stock for respective WBS element.
    Ok, I will talk about the limited of this solution. I suppose after complete technical for all of order reservation in WBS 1 and in project stock of WBS 1 have 3 material A not be use. But in WBS 2 is missing 3 material A. So when I run MRP again for WBS 2 by tcode MD51, the system will generate new planned order for this missing material A. This is not logic because I have enough material A for reservation in WBS 1. So I suggest my client that you should transfer material A from WBS 2 to WBS 1, they agree with me if they don't have many WBS element. But they have about 300 WBS element and they can't do transfer posting between many many WBS element. This solution 1 is not be accept.
    Solution 2: I use GPD for this requirement. Firstly I will group WBS 1, WBS 2 and WBS 3 into WBS group. So use tcode MD04, I can see only WBS group and all of order reservation in each WBS 1, 2, 3 be showed on MD04 table. When I run MRP, the system will generate planned order for them. After that, I will conver all to PR => PO => Good receipt to WBS group. And in MD04 table, I can see project stock for WBS group. I begin transfer material from WBS group to each WBS 1, 2, 3. When all of order reservation in WBS 1 is technical complete, the material in WBS 1 have 3 material A not be use. And in WBS 2, I have a new order reservation and it be assigned 4 material A. At this time, project stock on WBS group is 0 but in WBS 1 is 3. But when I run MRP by tcode MD51, the system generate planned order with amount is 4. I wonder that why SAP does not check all material on all WBS element in WBS group to suggest a planned order with amount is 1. If SAP can solve this problem, my client will be accept this solution.
    Hoping you support me.
    Thanks, Regards
    Hoai Vu

    Hi Ahmed Rifaee
    Thanks for your reply, I will talk about process in SAP.
    So, I have 2 WBS element, that's simple because my project is have about 200 WBS element.
    WBS1 have 2 order reservation for each actvity and material A0001 be use in 2 order reservation.
    Order Reservation 1 needs 3  A0001
    Order Reservation 2 needs 5  A0001
    WBS2 have 1 order reservation for each activity and material A0001 be use in it
    Order Reservation 3 needs 4  A0001
    1.)     If I don't group 2 WBS1 and WBS2 to one WBS group, SAP will have 2 project stock for each WBS. and when I run MRP, WBS1 and WBS2 run independent base on current project stock at each WBS. So, although project stock WBS1 is run out of A0001 while A0001 still exist A0001 in project stock WBS2, SAP still generat planned order for missing part A0001 in project stock WBS1.
    2.)     If I use GPD by group WBS1 and WBS2, I can solve this problem easy because they will use only one project stock for WBS group. Ok, after I good receipt A0001 into project stock, I'm sure that I have enough A0001 for 2 WBS1 and WBS2. But I can trace which reservation be ordered to delivery to them exactly. I try to use tcode MD09 to trace from Purchase order to Order reservation but I have just to trace in case PO have not been good receipted. I wonder that Pegging can help me in this case (PO have been good receipted).
    Can you give me any idea for these problem
    Thanks, Regards
    Hoai Vu

  • Inconsistent result when running in c# and running in dos shell

    Hi,
         I ran the following script in the MSDOS prompt and it worked fine and I get the string value:
    But if I run it in c# with this routine:
       cmd = "cscript"
       arg = "/c RemoteReadReg.vbs " + computername + keypath;
         PInfo = new ProcessStartInfo (cmd, arg );
         PInfo.UseShellExecute = false;
         Process = Process.Start(PInfo);
         Process.WaitForExit();
    The vb return with the error :  script runtime error: Type mismatch in the line
        Wscript.Echo strValue
    Do you know why the behaviour is different when run in dos shell as opposed to running in c#?
    RemoteReadReg.vbs
    Dim objArgs: Set objArgs = WScript.Arguments
    Dim strComputer: strComputer=objArgs(0)
    Dim strUser, strPassword
    Dim objSWbemLocator, objSWbemServices, objReg
    Dim strKeyPath: strKeyPath = objArgs(1)
    Dim strEntryName
    If (objArgs.length > 2 ) Then
    strEntryName = objArgs(2)
    End If
    Dim strValue
    Const HKEY_LOCAL_MACHINE = &H80000002
    strUser = strComputer & "\user"
    strPassword = "password"
    Set objSWbemLocator = CreateObject("wbemScripting.SwbemLocator")
    Set objSWbemServices = objSWbemLocator.ConnectServer _
    (strComputer, "root\default", strUser, strPassword)
    Set objReg = objSWbemServices.Get("StdRegProv")
    objReg.GetStringValue HKEY_LOCAL_MACHINE, strKeyPath, strEntryName, strValue
    Wscript.Echo strValue

    Since the error occurs in a VBS script you should ask in a scripting forum, for example here:
    https://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?forum=ITCG&filter=alltypes&sort=lastpostdesc
    As far ProcessStartInfo is concerned I don't see an issue except a (probably) stray /c argument, cscript doesn't have such an option.
    The real question is why do you even bother with this script? Same information can be obtained via C#, see here for an example:
    http://stackoverflow.com/questions/1155633/how-to-obtain-a-registry-value-from-a-remote-machine-if-i-dont-know-its-type
    It's more complicated because it tries to deal with every registry value type but if you only care about string value you can simplify that code a lot.

  • Change of sign when running the data management package

    Hi All,
    I have written a script logic for copying my Budget member under category dimension to say another member say "XYZ" under category dimension and this is for my Member Sales under ACcount dimension having acctype as inc.
    When i run the logic thru default i am getting the correct value. however if i run the same thru data manager package- my sign changes.
    Eg. 100000 is copied as -100000 and -50000 is copied as 50000.
    Please help me out
    Regards
    Navin

    Hi Navin,
    CREDITPOSITIVE= YES | NO
    Default: YES
    If No, all amounts referring to an ACCOUNT type (LEQ, INC) will have their signs reversed.
    Since you are referring to the member account sales as INC the default logic considers the sign as reversed.
    Please look at this link which helps you to understand
    Significance of Account Type EXP,LEQ,INC,AST in BPC- Need some valid reason
    Hope this helps.
    Regards,
    Sanjeev

  • How to view the emma coverage test result when running local job

    Hi Guys,
    When using emma in DTE, we can obtain the code coverage test result. I submit a farm job, and can get a txt or html file on coverage report. But when I run it locally, the txt / html files is unavailable. I can only see a folder named coverage with coverage.emma & metadata.emma. So my question is how can I get the coverage report from it?
    If I can use some command to generate report files, then what is it and how to run it.
    Thanks

    Hello Twenz
    This forum is mainly (should not be only but it is) used for supporting Oracle Application Testing Suite (OATS) products.
    I guess your question is not related to this solution at all. So maybe this is not really the right forum.
    Good luck
    JB

  • Error in process chain when running package (data manager)

    Hello experts,
    I try to run the following how to : "move date between applications using Data Manager ..."
    Yon can find the pdf here : http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0480970-894f-2d10-f9a5-d4b1160be203
    I'm looking after someone who used it successfully, on my side after implementing all steps and running the package I get the message "IMMEDIATE RUN: Request to run the package on the server was successful The package is now running"
    When I look the log for the process chain, overall status of the process chain is yellow, and steps "modify dynamically" and "clear BPC Tables" are in error.
    I can't get any usefull error messages.
    If someone has an idea to have details about those errors, it will be appreciated.
    Points will be awarded, thanks in advance.
    Guillaume P.

    Hello Experts,
    I am also facing the same issue with PC failing at Modify_Dynamically step....
    This process type is working fine when used  in standard delivered process chain to load transaction data.
    I tried using this variant in my cutsom chain, but it fails.
    Please suggest.....
    Thx....D

  • C++/CUDA DLL fails to give correct results when running a second time

    Hi all.
    I just finished writing a C++/CUDA DLL that runs in labview.
    It passes a 3d array, crunches the data, then spits out some results as a 2d array.
    When I open labview, and run it, I get the predicted results. However if I run the labview code again, it gives me garbage data.
    I have to not only close the open VI, but all of labview itself, reopen it, and then it will work again for one run.
    I read a thread on somthing similar to this happening with C++ code due to the way labview handled threads, however this was over 10 years ago, and it seems that since LV 2008 this has been fixed. I am running LV 2011.
    In my code, I checked that all dynamic memory allocated gets deleted, both on the GPU and CPU so other than that, I'm not sure what the problem could be. What changes when I call the DLL a second time?
    Please ask me to clarify anything that you might need to know about the program, and its implimentation.
    I have written other labview DLLs in just C++ that have not had this problem, so I wonder if it is a CUDA specific thing, or maybe somthing else I am overlooking.

    It seems to be that something not properly closed. What you can try is - unload DLL.
    CUDA Compute Context should be theoretically not necessary if your CUDA functions executed "all in one call" (and properly closed at all). The reason for NI Compute is following: it is not guaranteed that thread safe DLL calls will be called in the same thread. So, for example if you have three separate DLL calls in LabVIEW, for example - transfer data to GPU memory, compute, transfer back to the host - they should be done in the same thread (in CUDA terms all functions should be executed within same context). You can call these functions in UI thread - it will work, but the UI thread will be blocked. Or you can mark calls as thread safe, and using NI Compute - then all three calls will be done within same thread and this thread is separated from UI thread.
    Andrey.

  • Different result when running as background job

    Hi,
    We got a program which has a selection screen with a couple of select-options.
    When we start this programm with a specified variant, it proceeds to a result screen. If we click back now (to the selection-screen) and run the programm with the exactly same settings again, one select-option is getting ignored and therefore we get incorrect results.
    This happens only, if you go back from the result screen and  excecute it again from the selection screen or if we start it as a background job.
    If you exit the programm completely and restart it, the results are correct again.
    It makes no sense to post any code snippets here, since the program is very complex. I just can't imagine any reason, why the select-option is sometimes getting ignored.
    Does anyone have an idea?
    Thanks in advance.
    Regards,
    Tobi

    oh well it DOES explain it.
    just think of following select:
    Select *
    from   vbap
    into    ls_vbap
    where vbeln not in lr_vbeln.
    if lr_vbeln is not cleard you will run into problems maybe.
    anyway, may it be that somewhere in coding you are manually modifying your select option?
    It´s just an internal table of type range, so have a look there.

  • 'File is not open' error when running DTP for flat file upload in BI

    Dear Sir,
    We are trying to upload master data from flat file for which we have
    created respective DTPs. When we are running the DTPs we are getting an
    error saying 'The file '&&filepath&&' is not open'. We also checked
    that the file is not open, but still we are getting this error. Could
    anyone please suggest what we have to do to solve this problem.
    Many Thanks
    Narendra

    Hi,
    I am currently facing the same error "Error in Source system".  "The file 'path' is not open".
    Could you please let me know how you resolved this issue.
    many thanks.
    Regards,
    Madhusudhan

  • Java.lang.NoSuchMethodError: getEncodedURL when running junits for webservi

    Hi,
    We are getting NosuchMethodError when we are trying to run the junits for the webservice clients through ant script.But when we are executing the same junits through weblogic workshop, junits are running finely.Please let me know, if any one knows the solution
    Exception:
    Caused an ERROR
    getEncodedURL
    java.lang.NoSuchMethodError: getEncodedURL
    at weblogic.wsee.util.is.InputSourceUtil.loadURL(InputSourceUtil.java:44)
    at weblogic.wsee.util.dom.DOMParser.getWebLogicDocumentImpl(DOMParser.java:118)
    at weblogic.wsee.util.dom.DOMParser.getDocument(DOMParser.java:65)
    at weblogic.wsee.wsdl.WsdlReader.getDocument(WsdlReader.java:311)
    at weblogic.wsee.wsdl.WsdlReader.getDocument(WsdlReader.java:305)
    at weblogic.wsee.jaxws.framework.jaxrpc.client.ClientEnvironmentFactory.getWsdlDef(ClientEnvironmentFactory.java:156)
    at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.getService(EnvironmentFactory.java:393)
    at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.buildDeploymentContext(EnvironmentFactory.java:581)
    at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.getDeploymentContext(EnvironmentFactory.java:570)
    at weblogic.wsee.jaxws.framework.jaxrpc.TubelineDeploymentListener.createClient(TubelineDeploymentListener.java:48)
    at weblogic.wsee.jaxws.WLSTubelineAssemblerFactory$TubelineAssemblerImpl.createClient(WLSTubelineAssemblerFactory.java:46)
    at com.sun.xml.ws.client.WSServiceDelegate.createPipeline(WSServiceDelegate.java:446)
    at com.sun.xml.ws.client.WSServiceDelegate.createEndpointIFBaseProxy(WSServiceDelegate.java:639)
    at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:342)
    at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:324)
    at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:306)
    at javax.xml.ws.Service.getPort(Service.java:92)

    Hi,
    This is the problem with the jaxws-rt.jar in my classpath.I have removed the jar from the class path then it started working
    culprit here is ‘com.sun.xml.ws.util. JAXWSUtils’ which is defined in jaxws.rt.<version>.jar. Weblogic 10 uses glassfish.jaxws.rt_2.1.3.jar.
    Could you please check in (ANT) classpath where in any other jaxws.rt.jar being referred which may not have ‘getEncodedURL’ method definition

Maybe you are looking for