View temporary data in Web layout during file upload in Integrated Planning

Hi Experts,
When using File Upload funcationality, in Integrated Planning,
I have a requirment, How user can view the data in the web layout?
After data display user can make changes in the data and on click of Save the updated data is saved in cube.
If any one has come across this requirment can you please help me out how things can be carried out?
If "how to implement" document is present can you please provide me the link.
Thanks and Regards,
Abhi

Hi Abhi,
I assume, you are using WAD for this..
Please do the following: (Please note the the cube has to be in Plan mode while executing WAD)
1. Create a input enable query (through query designer) on th eaggregate level (the one you are using for IP). You might need to create filers for the aggregate level. these filters can also be used in the query.
2. In the WAD, pull this query.
3. Create a button in WAD and check for the planning functionalities readily available that you can use in WAD. One of the planning functionality is SAVE Data. This will save any data which is entered by the user.
4. In the same button integrate a Refresh Data command after the SAVE data. This will automatically refresh the query and pull the updated/changed data from the cube.
This should work. Please write back in case of any clarification.
Regards, Rishi

Similar Messages

  • Error "A web exception has occurred during file upload" when trying to import ESXi image file into Update Manager

    I'm encountering this error and not sure how to fix, I'm quite new to vCenter so please bear with me.
    I'm trying out vCenter 5.1 with Update Manager 5.1 right now.  No license key has been entered and I still have 50 odd days to try it out.
    2 ESXi hosts are being managed by this vCenter, and they're both running ESXi 4.0
    I'm looking to use Update Manager to try to upgrade the ESXi 4.0 hosts to ESXi 5.1
    I downloaded the image file VMware-VIMSetup-all-5.1.0-799735.iso from VMWare website, and is looking to import it using the Update Manager so I can update the ESXi hosts, but I keep on getting the error:
    File name:     VMware-VIMSetup-all-5.1.0-799735.iso
    Failed to transfer data
    Error was: A web exception has occurred during file upload
    I tried importing it by using vSphere client to connect to vCenter server both remotely and locally, with firewall disabled.
    I've read http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1026602
    I've disabled firewall, and there is no anti-virus program on the server.  I've also restarted the machine several times, to no avail, I didn't reinstall update manager because the whole Windows and VCenter installations are clean from scratch.
    I logged into the vSphere Client using Active Directory credentials, and I've made all Domain Admins (which my account is a member of) part of the administrator group on the vCenter server. I can't log in using admin@System-Domain because it tells me I don't have permissions for it, I still haven't really had the chance to figure out why that is and not sure if that makes a difference.
    Also, I'm fairly certain I'm using the right image file, as I've burned some DVD's used that image file to upgrade some other ESXi hosts.  Unless there's a special image file I need to download?
    I'm at lost on what I can do to make it work.  Please advise.
    Thanks.

    The ISO file you mentioned is the one for vCenter Server. What you need is the "VMware-VMvisor-Installer-5.1.0-799733.x86_64.iso" (or VMware-VMvisor-Installer-201210001-838463.x86_64.iso) for the ESXi host.
    André

  • *** Question How to load a file into BI-Integrated Planning and use WAD 7.0

    Hi, I created an manual DTP upload to my planning infocube and it works fine.  The transformation rules convert 0CALMONTH into the relevant Calendar and Fiscal characteristics.   So all of my Time Characteristics are fine, both Calendar and Fiscal.
    However, When using the "How to load a file into BI-Integrated Planning and use WAD 7.0" solution, only the Calendar Characteristics are populated and not the Fiscal.   The upload application somehow knows to populate the 0CALMONTH2, 0CALQUART1, 0CALQUARTER, and 0CALYEAR.  
    How can I get the upload to populate my Fiscal Period Characteristics?
    Would it be best to modify the "Upload Application, or can I write a planning function to update the fiscal characteristics, or some other way?
    Thanks!

    My planning data is being uploaded via the SDN Planning File Upload Solution. What I did was end up modifiying the upload class ZCL_RSPLF_FILE_UPLOAD Method EXECUTE.
    I added the following code if anyone is interested.
    *{ INSERT BWDK902323 1
    THIS SECTION OF CODE POPULATES THE FISCAL PERIOD CHARACTERISTICS
    USING THE FISCAL YEAR VARIANT 'NK' AND THE CALENDAR MONTH/YEAR
    FIELD-SYMBOLS <0FISCVARNT> TYPE /BI0/OIFISCVARNT. " Fiscal Year Variant
    FIELD-SYMBOLS <0FISCYEAR> TYPE /BI0/OIFISCYEAR. " Fiscal Year
    FIELD-SYMBOLS <0FISCPER> TYPE /BI0/OIFISCPER. " Fiscal Year/Period
    FIELD-SYMBOLS <0FISCPER3> TYPE /BI0/OIFISCPER3. " Posting Period
    FIELD-SYMBOLS <0CALMONTH> TYPE /BI0/OICALMONTH. " Calendar Month/Year
    ASSIGN COMPONENT '0CALMONTH' OF STRUCTURE <L_S_DATA> TO <0CALMONTH>.
    ASSIGN COMPONENT '0FISCPER' OF STRUCTURE <L_S_DATA> TO <0FISCPER>.
    ASSIGN COMPONENT '0FISCVARNT' OF STRUCTURE <L_S_DATA> TO <0FISCVARNT>.
    ASSIGN COMPONENT '0FISCPER3' OF STRUCTURE <L_S_DATA> TO <0FISCPER3>.
    ASSIGN COMPONENT '0FISCYEAR' OF STRUCTURE <L_S_DATA> TO <0FISCYEAR>.
    <0FISCVARNT> = 'NK'.
    CALL FUNCTION 'FISCPER_FROM_CALMONTH_CALC'
    EXPORTING
    IV_CALMONTH = <0CALMONTH>
    IV_PERIV = <0FISCVARNT>
    IMPORTING
    EV_FISCPER3 = <0FISCPER3>
    EV_FISCPER = <0FISCPER>
    EV_FISCYEAR = <0FISCYEAR>.
    *} INSERT

  • Threading problem during File Upload with Apache faces upload tag

    First I am going to tell you "My Understanding of how JSF Apache Upload works, Correct me if i am wrong".
    1) Restores View (to show Input box and Browse button to facilitate users to select a file for upload)
    2) Translates Request Parameters to Component Values (Creates equivalent components to update them with request values).
    3) Validates Input(Checks to see whether the User has input the correct file)
    4) Updates Backing Bean or Model to reflect the values.
    5) Renders response to user.
    I am uploading huge files of sizes 400MB and above with the help of JSF apache extensions tag
    <h:form id="uploadForm" enctype="multipart/form-data">
    <x:inputFileUpload style="height:20px;" id="upload" value="#{backingbean.fileContents}" storage="file" size="50" />
    </h:form>
    In the backing bean
    private UploadedFile fileContents;
         public UploadedFile getFileContents() {
              return fileContents;
         public void setFileContents(UploadedFile fileContents) {
              System.out.println("File being uploaded...");
              this.fileContents = fileContents;
    Since, the file size is so huge, I am using temp folder to use for the apache tag instead of memory.
    In web.xml i am using like this
    <filter>
    <filter-name>ExtensionsFilter</filter-name>
    <filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
    <init-param>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>600m</param-value>
    </init-param>
    <init-param>
    <param-name>uploadThresholdSize</param-name>
    <param-value>10m</param-value>
    </init-param>
         <init-param>
    <param-name>uploadRepositoryPath</param-name>
    <param-value>/uploadfolder/</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>ExtensionsFilter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    The upload process is working perfectly fine.
    Now coming to the problem:
    Suppose one user is logging into the application & uploading say 400MB of files.
    Until these files are linked to the model objects as my understanding of step 2, if second user tries to open the application he gets stuck with the loading page.
    The page gets loaded only after the request files are linked to the component values(Step 2 above) and updates the backing bean's values.
    I don't see any error in the logs. User is getting stuck. The user is getting stuck only when uploading the files. The other operations like searching are not blocking any other activities performed by the user.
    Server used: IBM Application Server V6.0. CPU is normal, memory usage is normal.

    Dear friend,
    i am also trying to upload using the common file upload.
    when try to run the file error is coming
    can give some suggestion.
    can i use if concurrent user file upload at a time

  • Powershell: There is no file with URL error during file upload.

    I am trying to put together a PowerShell script that I could use to upload files from a local directory, into a Document Library in a Record Center Site. Here is what my script looks like...
    #Open web and library
    $web = Get-SPWeb $webUrl
    $docLibrary = $web.Lists[$docLibraryName]
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    Write-Host "Local Directory:" $localFolderPath
    ForEach($file in $files)
    Write-Host "Looping through files"
    Write-Host "Current file:" $file
    ElseIf ($contentType = "MyContentType")
    #Open file
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    # Gather the file name
    $FileName = $File.Name
    #remove file extension
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    #split the file name by the "-" character
    $FileNameArray = $NewName.split("_")
    $check = $FileNameArray.Length
    #Add file
    $folder = $web.getfolder($docLibraryUrlName)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    write-host "Success"
    #populate columns
    $spItem["Application Number"] = $FileNameArray[0].ToString()
    $spItem["Site Number"] = $FileNameArray[1].ToString()
    $spItem.Update()
    $fileStream.Close();
    Each time I run my script, I get this error message 
    Exception calling "Add" with "3" argument(s): "<nativehr>0x80070003</nativehr><nativestack></nativestack>There is no file with URL 'http://myRecordLibrarySite/myRecord Library/12587_B2317.PDF' in this Web."
    At C:\powershellscripts\Upload-FilesIntoSharePoint.ps1:72 char:6
    +                     $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stre ...
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : DirectoryNotFoundException
    I have not been able to nail down why the script is failing. Any ideas why? Thanks for the help.

    I just figured out the issue with adding the file. I went in this direction, and my code has progressed forward.
    $folder = $web.getfolder($docLibrary.rootFolder.URL)

  • Limited bandwidth during file upload

    Hi All,
    Does it exist a possibility to limit used bandwidth during a file upload from a AIR app?
    For example , is it possible to fix this limit to 10 or 100 kbps?
    Thanks in advance
    Gianni

    Hi,
    any news about this discussion?
    Thanks
    Ennio

  • CCM BAdi During File Upload

    Hi All,
    We are looking for a BADI during the file upload for Supplier catalog. The requirement is to modify the file ocntents during upload.
    We tried implementing BADI /CCM/CTLG_ENRICHMENT, but seems like this BADI is not called during the upload function at all..
    Please help us to fix this..
    Thanks in Advance
    Karthik

    Karthik,
    The Upload process is launched in a background task, that is why you have to 'insert a infinite loop' as Bertrand said, in order to enter in debug mode through transaction SM50.
    PS: Please be careful, and use filters in your BADI implementation, because it is called also in the mapping and publishing processes.
    Regards.
    Vadim

  • Error while during file upload in JSF

    Hi
    I do get this error while uploading a file in JSF .
    org.apache.myfaces.webapp.filter.MultipartRequestWrapper.parseRequest(MultipartRequestWrapper.java:134)
         at org.apache.myfaces.webapp.filter.MultipartRequestWrapper.getParameter(MultipartRequestWrapper.java:163)
         at javax.servlet.ServletRequestWrapper.getParameter(ServletRequestWrapper.java:157)
         at com.sun.faces.context.RequestParameterMap.get(ExternalContextImpl.java:673)
         at jsf.PagePhaseListener.afterPhase(PagePhaseListener.java:18)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    Can anybody wat i must do

    thanks....
    but that answer is not solve my question. Actually i want to know.. can we develope a custom tag in JSF for file upload......

  • Facing problem during file upload

    hi
    we r designing a portal where it is required to upload files based on individual users who have logged in.
    For this purpose we r using a file field in one page and http upload tag in another page.
    The file uploads successfuly to the database, but the problem is that we r not able to get the value of pReq.getUser() in the page where the httpfileupload tag exists.
    we noted that request.getParameter() and session.getValue() is also not valid in this page.
    we also tried setting the session value to true in provider.xml. Even this didnt work.
    we noted that this problem comes only when the file field is used. can anyone tell me how to solve this??
    Thanks in advance.
    voyager

    request.getParameter() nor session.getParameter() does not fetch anything. the value is null
    Regards,
    voyager

  • Web Dynpro ABAP - File upload Problem (Timeout)

    Hello Experts,
    we are facing an issue with a custom WD Abap application:
    We use the file upload UI element in order to store PDF files within our system. For 90% of our users it works perfectly.
    However, for some users an error occurs: Once they select the file at their local system and press "upload", the system is loading and loading and eventually it ends up as a time out.
    We have checked the browser settings and permissions. But everything looks good.
    We are running on:
    SAP_BASIS 731 0013
    Does anybody know a solution for this problem?
    Thanks for your help!
    Maximilian

    Hi Maximillian,
    Please check the following notes,if they are applicable to you.
    1912687 - IE11: File Upload not working
    1818772 - WDA: Performance issue for file upload
    Regards,
    Harsha

  • Problem in Load File into BI-Integrated Planning

    <b>Hi Marc,
    When I am running the URL for file upload in BI Integrated Planning, I am getting the below message ( we have created the variable on navigational attribute):</b>
    Note
    The following error text was processed in the system BWD : /BI0/OICOSTCENTER__0SALES_DIST is not a valid attribute type.
    The error occurred on the application server ma1ua231_BWD_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_WD_CONTEXT_NODE_INFO~ADD_ATTRIBUTE of program CL_WDR_CONTEXT_NODE_INFO======CP
    Method: WDDOMODIFYVIEW of program /1BCWDY/780RZKQ35587UCX2RCTU==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_DO_MODIFY_VIEW of program /1BCWDY/780RZKQ35587UCX2RCTU==CP
    Method: DO_MODIFY_VIEW of program CL_WDR_DELEGATING_VIEW========CP
    Method: MODIFY_VIEW of program CL_WDR_VIEW===================CP
    Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
    Method: DO_MODIFY_VIEW of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW=================CP
    Method: EXECUTE of program CL_WDR_MAIN_TASK==============CP
    <b>In System we are getting Short dump as:</b>
    An exception occurred which is explained in detail below.                     
    The exception, which is assigned to class 'CX_WD_CONTEXT', was not caught and therefore caused a runtime error.                                             
    The reason for the exception is:                                              
    /BI0/OICOSTCENTER__0SALES_DIST is not a valid attribute type.                 
    I went through your blog. Just curious to know when can we expect Version 2 of the how-to solution will support a direct upload from Excel without the need to launch a browser.
    Thanks
    Kamlesh Mishra

    Hi Marc,
    Thanks for your support and great help for the problems we are facing in IP. Now we are able to get the browser screen for selecting the file, but we are facing new issue, When we are uploading file, the system is giving dump saying "THE ASSERT CONDITION was violated" in the below source code:
    LOOP AT n_t_charsel INTO l_s_charsel WHERE sign = 'I' AND opt = 'EQ'. 
      ASSIGN COMPONENT l_s_charsel-iobjnm OF STRUCTURE <l_s_data> TO <f>. 
      ASSERT sy-subrc = 0.                                                                               
    IF <f> IS INITIAL.                                                  
        <f> = l_s_charsel-low.                                            
      ENDIF.                                                              
    ENDLOOP.                                                              
    (We are unable to open the Blog, it is showing us "No Authorization" message)
    Thanks,
    Kams

  • How to View Panel data in Web Browser?

    I am developing an application in Jdk1.4. I have a JPanel on which I draw a BarGraph. Now I want to View this Panel display in Web Browser. Can anybody help me on this?

    Does anyone know anything related to this topic.....Pls REPLY!!

  • Viewing servlet data on web server

    Hello, i have this servlet code snippet that gets data posted to it from an application. I know it gets the data because when i call the getInputStream() method on the connection to the servlet in the application, i can see the posted data. But my problem is that i would like to see the data displayed on the servlet web page when i call it (i.e. like when you do a submit in a web form and enter the servlet URL to which you have submitting the form data, the URL displays the form data you have just submitted).
    In my case, when i enter the servlet URL in my browser, i get the " HTTP Status 405 - HTTP method GET is not supported by this URL" error message.
    your help with this problem will be much appreciated.
    The servlet code is:
    public void doPost(HttpServletRequest req, HttpServletResponse resp) {
            try {
                int len = req.getContentLength();
                byte[] input = new byte[len];
                ServletInputStream sin = req.getInputStream();
                int c, count = 0 ;
                while ((c = sin.read(input, count, input.length-count)) != -1) {
                    count +=c;
                sin.close();
                String inString = new String(input);
                int index = inString.indexOf("=");
                if (index == -1) {
                    resp.setStatus(HttpServletResponse.SC_BAD_REQUEST);
                    resp.getWriter().print(message);
                    resp.getWriter().close();
                    return;
                String value = inString.substring(index + 1);
                //decode application/x-www-form-urlencoded string
                String decodedString = URLDecoder.decode(value, "UTF-8");
                 String reverseStr = (new StringBuffer(decodedString)).toString();
                resp.setContentType("text/html");
                PrintWriter out = resp.getWriter();
                out.println("<HTML>");
                out.println("<HEAD><TITLE>Hello, " + reverseStr + "</TITLE></HEAD>");
                out.println("<BODY>");
                out.println("Hello, " + reverseStr);
                out.println("</BODY></HTML>");
            } catch (IOException e) {
    }

    I don't think you have a problem. Since you've implemented the POST method, you're going to be submitting your data from an HTML form. So just write some HTML that does that request for you. That's how it's supposed to work. Don't bother trying to make workarounds for ways it isn't supposed to work anyway.

  • CPU HOGGIN DURING FILE UPLOAD

    Hi,
    I was trying to upload files using servlets,
    I am using weblogic 5.1 as server (servlet engine)
    my CPU usage goes to 100% when the file is being transferred...can any one explain why this is hppening and what is the solution for that...
    TIA,
    Sanjy

    I'm assuming the servlet that's handling the file saving was written by you....
    you should be reading the data from the browser in chunks 8k is the largest default size block...
    we'll pretend that this is going to a file and you've got a FileOutputStream already created... I'll call it fos and the inputstream to the browser we'll call that in :)
    byte[] tba=new byte[8192];
    int len=in.read(tba);
    while(len!=-1) {
    fos.write(tba);
    len=in.read(tba);
    if you want more specific help send the chunk of code that deals with recieving the file....

  • Can no longer view photo library, after power fail (during LR upload)

    Good day.
    My computer power failed during a LR3, beta2 upload. 
    After restarting, I can no longer see any of the images in my library (~50k images) that were not part of the upload...but they are still there.  In the 'grid' screen, gray boxes appear, but instead of images within those gray boxes, I see lighter gray portrait/landscape rectangles. 
    I'm certain that the images are there, but I can only see the images if I am in the 'develop' window, 1 image at a time. 
    I am hesitant to reinstall lightroom, as I do not want to loose my LR catalog (and have not backed up in a bit...yes yes, I know).
    Any help would be greatly appreciated*
    Thanks!

    Those are the classic symptoms of a corrupted preview cache. There is a folder named <whatever>previews.lrdata that lives next to your lightroom catalogue which is named <whatever>.lrcat. Delete the .lrdata folder (and all its sub-folders) (but NOT the catalogue file!) and restart lightroom. It will rebuild your preview cache, and all will be well.
    Hal

Maybe you are looking for

  • Browser compatability

    I have a CP4 presentation that has audio starting on the 2nd slide and audio on each of 13 more slides in the presentation along with various photo images.When publishing the presentation I set the preloader to abou 25%. Overall file size seems quite

  • IWeb will not start, menu items dim, cannot open files

    I designed a website using iWeb and need to make modifications to it. However, after I tried to open an html file with iWeb and get this message: "Can't open file "~/Sites/qhuyn002/Howto.html" ...iWeb closes on me. While this message is up and before

  • Why is Elements 12 not recognising raw files from my Nikon d5300

    What am I doing wrong, the main reason I bought Elements 12 was to regcognise eaw files from my Nikon d5300

  • Is the noise cancellation mic on my iphone 5s waterproof?

    Is the noise cancellation mic on my iphone 5s waterproof? or can  water enter my iphone through it? and how else can moisture enter my iphone, coz it's really humid over here. Are there any other openings i should be worried about?

  • Streaming Error: Bad Data 5402

    Hi there, Whilst receiving a stream from our server QuickTime reports the following error in the player: - Bad Data 5402 This corresponds with: - -5402 - qtsBadDataErr on: http://docs.info.apple.com/article.html?artnum=24938 We have been able to re-p