WEBUTIL client_to_db file transfer

I cannot delete a file from the local client drive after using the webutil_file_transfer.clinet_to_db function, whilst the form is still running
-- CODE USED in Forms 9ir2
DECLARE
     result BOOLEAN;
     wordexe VARCHAR2(1000);
BEGIN
delete_check;
IF :ltr.datedl IS NOT NULL THEN
     lp_err_alert('Deleted letters may not be edited or opened.');
     RAISE FORM_TRIGGER_FAILURE;
END IF;
     COMMIT_FORM;
     result := webutil_file_transfer.db_to_client('c:\temp\'||:ltr.letter_id||'.doc', 'REF_LETTER', 'OLE_BLOB', 'letter_id = '''||:ltr.letter_id||'''');
     write_header_file;
     wordexe := 'C:\Program Files\Microsoft Office\Office\';
     client_host(wordexe||'winword.exe c:\temp\'||:ltr.letter_id||'.doc', 0);
     result := webutil_file_transfer.client_to_db('c:\temp\'||:ltr.letter_id||'.doc', 'REF_LETTER', 'OLE_BLOB', 'letter_id = '''||:ltr.letter_id||'''');
     IF NOT result THEN
          lp_err_alert('Failed to write document');          
     END IF;
     COMMIT_FORM;
     result := webutil_file.delete_file('c:\temp\'||:ltr.letter_id||'.doc');     
     IF NOT result THEN
          lp_err_alert('Failed to delete document');
     END IF;
EXCEPTION
WHEN OTHERS THEN
     lp_err_alert('Failed');      
END;
What I find is that the webutil.delete_file fails. If you try and delete the file using explorer you get a file sharing violation.
When the form is closed you can delete the file from explorer.
If I comment out the client_to_db line the delete file works ok.
Is the client_to_db leaving an object lock in the java functions?
Anything I can do about this?

Nigel,
I don't know the bug number, but I remember that this is a known issue with the pre-release of webutil that is fixed in production. Unfortunately I don't know whether there exist a work-around or not.
Frank

Similar Messages

  • WebUtil and file transfer/manipulation

    Hello,
    Currently we are running most of our Forms 6i applications through a citrix server where we have MS Office installed. We use the OLE2 package within Forms to create documents and spreadsheets.
    We are looking to upgrade to Forms 9i and may be required to work in several different environments. A problem we have forseen is when 9iAS is to be installed on a Unix (or Linux server) and when the clients will not have MS Office installed (they may or may not be windows based).
    Is it possible for the client to request through a 9i Form that a word document is to be opened, created etc and for all processing to take place on a different Windows machine that does have MS Office installed (i.e. not the client or the server) ?
    (The documentation seems to assume that all manipulation is carried out on the client machine - CLIENT_OLE2 - or on the server OLE2)
    Thanks
    Tony

    This is more a MS Office question than a Forms question. MS Office is a c/s application, thus it runs on the client. I wouldn't know how to run it on another machine.
    An option is to connect to Forms via the browser on the citrix server, where you do have MS Office installed. I.e. you don't use your local browser.

  • File Transfer From Unix server to Windows Client System Using WebUtil

    Hi all,
    I want to Transfer a File from Unix Server to Window Client System using Webutil. But below mention code is not working.
    DECLARE
         V_Server_Path VARCHAR2(500) := Null;
         V_Client_Path VARCHAR2(500) := Null;
    BEGIN
         V_Server_Path := '/proj/oraapps/viper/dev/reports/cache/Saveauftr.txt';
         V_Client_Path := 'C:\Migration\EU_Applications\Lima\OAS_WorkArea\Client\Saveauftr.txt';
         IF WebUtil_File_Transfer.Is_AS_Readable(V_Server_Path) THEN
         IF WebUtil_File_Transfer.AS_To_Client(V_Client_Path,V_Server_Path) THEN
              Message('Downloading the File ..... .... ... .. .');
              Message('Downloading Was Successfull ...');
              Message('File Transfer from Server Was Successfull ...');
         END IF;
    END IF;
    END;
    Can anyone suggest me,Why the above code is not working and what to do for solve the Problem.
    Regards
    Gany

    Hello,
    You have more chances to get an answer in the Oracle Forms OTN Forum :
    Forms
    Regards

  • WebUtil file transfer in multiple user implementation

    Hi
    Installed WebUtil and able to integrate forms/reports in Web enviroenment 10gAs.
    Around 30 to 40 people will use this application, Now to do client side integration (To Save generated output to Cleint m/c) we are geerating file on AppServer and transferring using Webutil file transfer but my question if multiple users running same report from form and generates two different date ranges to generate to same file on Appserver, How Can I use WebUtil file tranfer for two people running same report. Is that going to be problem in concurrent user environment.
    Setup 10gAs, User A select report A and run with two different data ranges and file saved on Appserver as test.pdf and now user b want to run same report with time range little bit different time range and file has to be saved to same test.pdf on ApopServer, Now how oracle going to handle this ???????.
    Pl answer this is very important as we are running this reports in Web implementation with more than 30 users.
    Many thanks in advance.
    Murthy

    Surely the real issue is that you are always generating to the same filename? Incorporate an identifier into the filename. e.g. the username
    Regards,
    Robin Zimmermann

  • Oracle.forms.webutil.file Transfer.File Transfer bean not found

    I've followed tons of instructions for 2 days to install and configure webutil and I finally have success with the demo. However, when I add this to my own form and use the CLIENT_IMAGE.READ_FILE_IMAGE
    I end up with error oracle.forms.webutil.file Transfer.File Transfer bean not found WEBUTIL_FILE_TRANSFER.getMaxTransfer will not work.
    What am I missing? Thanks for any help.

    Make sure your form subclasses object group webutil.olb, and that webutil.pll is also attached. Make sure that your forms folder contains webutil.plx (a compiled version of webutil.pll). Unless the default config (in formsweb.cfg) includes the entries required for webutil support, you must specify a config that does have these entries. 10g, which comes configured for webutil, provides a config called webutil for this. An example URL might look like:
    http://myappserver/forms/frmservlet?form=myform.fmx&config=webutil
    There could be other problems, but since you're able to run the demo forms, I'm guessing that what I've mentioned are the first things for you to check.
    Hope this helps,
    Eric Adamson
    Lansing, Michigan

  • WebUtil File Transfer - file size limit

    Does anybody know what the file size limit is if I want to transfer it from the client to the application server using WebUtil? The fileupload bean had a limit of 4 Mb.
    Anton Weindl

    Webutil is only supported for 10g. THe following is added to the release notes:
    When using Oracle Forms Webutil File transfer function, you must take into consideration performance and resources issues. The current implementation is that the size of the Forms application server process will increase in correlation with the size of the file that is being transferred. This, of course, has minimum impact with file sizes of tens or hundreds of kilobytes. However, transfers of tens or hundreds of megabytes will impact the server side process. This is currently tracked in bug 3151489.
    Note that current testing up to 150MB has shown no specific limits for transfers between the database and the client using WebUtil. Testing file transfers from the client to the application server has shown no specific limit up to 400Mb; however, a limit of 23Mb has been identified for application server to client file transfers.

  • 11gR2- webutil upload file to AS on two nodes RAC?

    Hellow experts plz help with the following issue,
    we are using 11gR2 forms on two node rac,webutil configured on both nodes. upload/download files to AS folder(UP_FILES) using our forms. node 2 is actually replica of node 1(forms,reports,UP_FILES). we are now facing a problem that the form which upload file to AS, only upload that to the node from where it is running say if it is running from node1 then it upload files to folder UP_FILES on that node( as the entry in webutil.cfg file) but we want that UP_FILES folder should be synced with each other on both nodes and a form running whether from node1 or node2 upload the file to both nodes at time.
    How this will be accomplished?
    --------webutil.cfg entry
    transfer.appsrv.read.3=D:\UP_FILES
    transfer.appsrv.write.3=D:\UP_FILES
    -----FORM UPLOAD CODE
          IF :CONTROL.FILE_LOC IS NOT NULL THEN
            acyr3 := :CONTROL.TXTVOUCHERNO||'-'||acyr2 ;
           FILE_RESULT := WEBUTIL_FILE_TRANSFER.CLIENT_TO_AS_WITH_PROGRESS(CLIENTFILE=>:CONTROL.FILE_LOC,
           SERVERFILE =>'D:\UP_FILES\'||acyr3||'.PDF',
          PROGRESSTITLE=>'UPLOAD TO DATABASE IN PROGRESS',
          PROGRESSSUBTITLE=>'PLEASE WAIT' );
          END IF;
    --FORM DOWNLOAD CODE
            FILE_RESULT := WEBUTIL_FILE_TRANSFER.AS_TO_CLIENT_WITH_PROGRESS
                 CLIENTFILE=>'D:\UP_FILES\'||acyr3||'.PDF',
            SERVERFILE =>'D:\UP_FILES\'||acyr3||'.PDF',
          PROGRESSTITLE=>'DOWNLOAD FROM DATABASE IN PROGRESS',
          PROGRESSSUBTITLE=>'PLEASE WAIT'
                 CLIENT_HOST('rundll32.exe url.dll,FileProtocolHandler D:\UP_FILES\'||acyr3||'.PDF');
                 IF FILE_RESULT THEN
      message('File downloaded successfully from the Application Server');
      END IF;

    Well, you're uploading the file to one node, so this is no surprise. What you can do is to store your file on a shared folder (which might be a bit tricky on windows) or synchronize a folder between your nodes. Unfortunately Forms can't access ASM directly (assuming you are using ASM), so you can't store your files directly in ASM where it would be accessible from both nodes.
    cheers

  • File transfer from client to AS

    hi,
    I want to transfer a text file from my c:\text.txt to application server c:\files\files.txt.
    Hw can I achieve this using oracle forms webutil file transfer?
    becasue when i read the file using client_text_io it takes a lot of time.
    thanks and regards
    Ajith

    Look at Francois's Blog
    Forms : TEXT_IO vs CLIENT_TEXT_IO
    http://fdegrelle.over-blog.com/article-1810290.html
    too.

  • Webutil Creating file on Client issue

    we are planning to us webutil. But when writing file to client is ok for us to write 50 lines but as we write more lines to file on client run success fully but file remains empty nothing written to file. and next call to use of webutil functionality forms hangs. and we have to kill browser to get back browser.
    Is there any parameter in webutil configuration that control size of file to written on client.
    Creating file and then transferring works great

    I was having the same problem as the original poster: Using WebUtil.client_text_io to write a file to the client that had more than a handful of lines. The file would appear on the disk, but the file size stayed at 0. It did not appear to throw an error, but the next time a WebUtil call was made, the entire client hung and became non-responsive.
    I tried your suggestion below, where the file is written on the server and transferred to the client using the WebUtil file transfer ability. It worked great, and it is fast. Thanks!
    --Tara                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • WUT-123: The webutil.jar file cannot be found...

    Hello,
    I am having a problem using webutil to upload to a 9iAS using a mapped network drive. Here's the set up:
    MachineA
    9iAS
    Windows2000
    I simply mapped the drive (X:) to a folder on MachineA's
    local drive (d:\folder). I can upload files fine to the directory on the local drive (d:\folder). But if I try to upload to the mapped x:\, I get the error (from the webutil.log):
    "WUT-123: The webutil.jar file cannot be found on the Appliciation Server Classpath - Some file transfer functions will not work. x:\attach\VISIBLE-149.TXT java.io.FileNotFoundException: x:\attach\VISIBLE-149.TXT (The system cannot find the path specified)"
    I have no problems with uploading files if I upload to MachineA's local drive (d:\folder).
    When I was initially testing this out on 9iDS, this was working. Here's the set up:
    MachineB
    9iDS
    WindowsNT
    The 9iDS was on a different machine running WindowsNT and I had mapped X: to the same folder on MachineA. I could upload to the mapped drive without any problems.
    In both cases, I used the same client machine to test out uploading files.
    Any suggestions?
    Sandy

    I think that the opmn process starts with the credentials of the user who installed it (Local System) and not the credentials of the current user which launches it.
    I remember that when I tried to switch the user of the opmn service(from local system to a network user which is also a local admin) in the Windows services control panel,the OHS hasn't started at all.
    If you try to launch it from a DOS cmd window,then,you may try to map the hard drive in the dos command prompt,the service should know the drive name from this local context.
    If it works,can you ,please, post here,so we can all know the way?
    Thanks,
    Sandu

  • "Windows - No Disk" error message on file transfer

    Hello!
    I updated our ZDM7 server from plain old ZDM7 with no updates to ZDM7 SP1
    IR1. Now, when initiating File Transfer operation with any workstation, up
    comes this error message:
    "Windows - No Disk"
    "Exception Processing Message c0000013 Parameters 75b6bf9c 4 75b6bf9c 75b6bf9c"
    [Cancel] [Try Again] [Continue]
    If I click "Continue" 4 times, file transfer starts up successfully.
    Any ideas about how to get rid of this annoying message?
    Toomas Aas

    Toomas,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • UCMA 4 and back to backing a file transfer request

    OK, I know that file transfer isn't technically supported on UCMA 4.0, but I wanted to take another look at it and see whether there was a way to b2b a file transfer request. After all, there's no reason that it shouldn't work if the messaging is correct,
    right? The scenario I have is A <-b2b-> app <-b2b->B.  I have an IM conversation going on between A and B, so now I'm trying to set it up so that A can send a file to B. 
    So far I've extended the platform to accept file transfer requests by creating my own call and factory classes, and then registering them using RegisterPlatformExtension.  This means that when A sends a file, the INVITE gets delivered to my application. 
    Now I'm taking that INVITE and creating a new b2b call.  A file transfer request looks something like this:
    TL_INFO(TF_PROTOCOL) [0]16A8.4B28::02/10/2015-19:53:05.007.001d492f (SIPStack,SIPAdminLog::ProtocolRecord::Flush:ProtocolRecord.cpp(265))[3939761282] $$begin_record
    Trace-Correlation-Id: 3939761282
    Instance-Id: FDB3
    Direction: incoming
    Peer: 10.0.154.20:49282
    Message-Type: request
    Start-Line: INVITE sip:[email protected] SIP/2.0
    From: <sip:[email protected]>;tag=eafd3e699d;epid=ccd5657cac
    To: <sip:[email protected]>
    Call-ID: 0acf0330423241258576d7c5cc42aa01
    CSeq: 1 INVITE
    Contact: <sip:[email protected];opaque=user:epid:d2lIs-103l2YSpDwCSajtAAA;gruu>
    Via: SIP/2.0/TLS 10.0.154.20:49282
    Max-Forwards: 70
    Content-Length: 1920
    Content-Type: multipart/mixed;boundary="----=_NextPart_000_0026_01D04541.4641C2D0"
    Message-Body:
    ------=_NextPart_000_0026_01D04541.4641C2D0
    Content-Type: application/sdp
    Content-Transfer-Encoding: 7bit
    Content-ID: <[email protected]>
    Content-Dis; handling=optional; ms-proxy-2007fallback
    v=0
    o=- 0 0 IN IP4 192.168.200.71
    s=session
    c=IN IP4 192.168.200.71
    b=CT:99980
    t=0 0
    m=data 21300 TCP/RTP/SAVP 127
    a=ice-ufrag:lYAu
    a=ice-pwd:y0gkW4r9zGSW6E2VdtMprlEh
    a=candidate:1 1 TCP-PASS 2120613887 192.168.200.71 10856 typ host
    a=candidate:1 2 TCP-PASS 2120613374 192.168.200.71 10856 typ host
    a=candidate:2 1 TCP-ACT 2121006591 192.168.200.71 21300 typ host
    a=candidate:2 2 TCP-ACT 2121006078 192.168.200.71 21300 typ host
    a=candidate:3 1 TCP-PASS 2120612863 10.0.154.20 31624 typ host
    a=candidate:3 2 TCP-PASS 2120612350 10.0.154.20 31624 typ host
    a=candidate:4 1 TCP-ACT 2121005567 10.0.154.20 3921 typ host
    a=candidate:4 2 TCP-ACT 2121005054 10.0.154.20 3921 typ host
    a=cryptoscale:1 client AES_CM_128_HMAC_SHA1_80 inline:4CZbzYM/GYDbygj8JwMTodKo85C4Xx7TMzeMIuBU|2^31|1:1
    a=crypto:2 AES_CM_128_HMAC_SHA1_80 inline:Ohlo65gDsUvxCF39A382Rl4vGL+SG9R/lUEYU/br|2^31|1:1
    a=crypto:3 AES_CM_128_HMAC_SHA1_80 inline:EZ7Zm3K0H/WW5K49LAk9/C0T8x8nhkumJOycSek7|2^31
    a=setup:active
    a=connection:new
    a=rtcp:21300
    a=mid:1
    a=sendonly
    a=rtpmap:127 x-data/90000
    ------=_NextPart_000_0026_01D04541.4641C2D0
    Content-Type: application/ms-filetransfer+xml
    Content-Transfer-Encoding: quoted-printable
    Content-ID: <[email protected]>
    Content-Dis; handling=optional
    <request xmlns=3D"http://schemas.microsoft.com/rtc/2009/05/filetransfer" =
    requestId=3D"13">
    <publishFile>
    <fileInfo embedded=3D"true">
    <id>{67190A30-C59F-480D-96DD-5F3941C39C49}</id>
    <name>dbchange.log</name>
    <size>3609</size>
    </fileInfo>
    </publishFile>
    </request>
    ------=_NextPart_000_0026_01D04541.4641C2D0--
    $$end_record
    I've got my b2bed invite looking almost identical to the original invite by creating a custom MIME type on the CallEstablishOptions for the back to back call using something like this:
    Regex r = new Regex(@"^((.|\n)*)(\<request)((.|\n)*)(request\>)((.|\n)*)$");
    Match m=r.Match(args.RequestData.GetMessageBodyString());
    content=string.Format("Content-Transfer-Encoding: quoted-printable\r\n{0}{1}{2}",m.Groups[3],m.Groups[4],m.Groups[6]);
    opt.CustomMimeParts.Add(new MimePartContentDescription(new ContentType("application/ms-filetransfer+xml"),System.Text.ASCIIEncoding.UTF8.GetBytes(content)));
    opt.CustomMimeParts[0].ContentDispositionHeader = new SignalingHeader("Content-Disposition", "render; handling=optional");
    So far the only differences I can see in my outbound message vs the original SDP are that the Content-Transfer-Encoding might not be seen as a header (since the SignalingHeaders property on the MimePartContentDescription is read only), and the Content-Transfer-Encoding
    on the first MIME part (created by the BackToBackCall) is missing (even though I specified it on the PassThroughHeaders).  Even with all of this though, I still get a 488 on client B when I attempt the transfer (even though the invite goes through). 
    What I'm wondering though, is whether there's any way at all to get this working the way I'd expect, where a file gets transferred directly between A and B, without my bot having to receive it first.  The other approach I've looked at is binding my
    own media provider class to customize the SDP, but if this MIME part approach isn't going to work, then I have a feeling the media provider won't work either. 
    Any suggestions on where to look next? 
    Thanks!
    Chris

    Chris,
    I am trying to do something similar to this and from what I have read and in talking to MS is that you need to extend the Call and Flow class which it looks like you have been able to do. Could I bother you to share what you have written? Maybe we can help
    each other out on this. I am basically trying to create an application that will be able to capture a file transfer and save it, then send the original request on to the intended recipient.
    Thanks in advance,
    Anthony

  • I have an old ipod i just got the new iphone 4s but the songs that are on my ipod are not on my itunes how can i transfer them from my old ipod to my itunes. reason they are not on my itunes becasue i've change computer also and didn't a file transfer bef

    i just purchase the new iphone 4s. I also have an old ipod with a lot on songs which are not on my itunes becasue i didn't do a file transfer when i got my new computer a ew months ago. How can i add my songs from the old ipod to my itunes.

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • MBP (mid-2009) freezing, slow installations and file transfer

    I bought the latest MacBook Pro model and installed Snow Leopard on a cleanly formatted hard drive. I have tried migrating via ethernet and FireWire from my iMac, but the migrations failed either due to freezing (via FireWire after roughly 24 hours of file transfer) or by an error message (ethernet with Migration Assistant).
    Only through a Time Machine backup was I able to transfer my account files to the MBP, which again totaled at over 20 hours of transferring. The system was a mess, clogged constantly by freezing and spinning beach balls of death for durations lasting around 10-20 seconds during which music would clip after 5-10 seconds of everything not responding, this being accentuated especially during installations. I decided to format and try anew.
    Now I've formatted the hard drive, installed Snow Leopard and will transfer my files manually onto a clean account. Installations take a long time although SL installation is within 30 minutes, iLife took 1.5 hours to install 5 GB. During the installation Safari stopped responding, as did the entire system, and the spinning beach ball would keep spinning. Watching a 480p trailer in Quicktime made the entire computer freeze up (no video/audio) for 10 seconds halfway. Transferring 136 GB (my Music folder) will take around 15 hours according to the estimate after 10 minutes of transferring.
    I've sold my iMac now and all I have are the files on my external hard drive. I want to get them onto my MBP ASAP but the slowness is preventing me from doing what needs to be done and it's very frustrating. When I try to boot into Hardware Testing by holding D down the computer doesn't do it no matter what (Application DVD in or not, plugged into power or not). I've tried resetting PRAM but I get the same inaction.
    Any ideas?
    Edit: I've done Disk Utility to no avail, it finds nothing wrong.

    Installed, still getting freezes with spinning beach balls. Transfer says it would take 1 hour opposed to that 15 hours, but it stops transferring after X amount of gigabytes (from 0.5 to 5), not do anything for a while and then continue, stretching the estimate to over 2 hours after some time. I don't know if this is just with the hard drive.
    The freeze-ups are frustrating as **** and make for a very poor experience. Any ideas to get to the bottom of this? I still haven't been able to boot into the Hardware Test no matter how much I try.

  • File transfer: AFP vs FTP

    Setup:
    Cable modem to Linksys WRT54g broadcasting only in G only mode for PBG4.
    AEBSn#1 in bridge mode via Ethernet from Linksys, N only mode, broadcasting wirelessly.
    AEBSn#2 is wirelessly extending N-only from AEBSn#1, and is connected to a mini with external hard drive.
    Using PBG4, if I mount a volume from the mini and transfer a file, transfer time is very slow: approx. 20 minutes for a 200MB file. If I FTP from PBG4 into the mini, transfer time is 2 minutes.
    (I think the same happens if I use a Macbook Pro connected to the N-only network, but it's in for repairs right now, so I can't be sure.)
    Any idea why the transfer times are so different b/w AFP and FTP and, more importantly, what I can do to remedy this? Thanks.

    Same problem here. I have two AEBS Gigabit in bridge mode. Transfering a file via FTP or with Apple Remote Access (ARD) brings up to 3 MB/sec. Same file and same configuration connected via AFP only brings 60 kB/sec.
    I hope somebody has an idea how to fix this.
    Thanks in advance

Maybe you are looking for

  • Why does Airtunes Drop Frequnetly under Tiger?

    After having sifted through the last week's worth of posts to this forum, I find that I'm having a problem that many others are also having, and that it has yet to be solved. I'm posting yet another thread on this topic, hoping that Apple will take n

  • Bridge CS6 crashing on opening

    Hi, I'm having increasing problems with my Mac Book Pro. It crashes when opening Adobe Bridge CS6 with this error code: 19/10/2014 10:24:07.084 pm ReportCrash[1410]: com.apple.message.domain: com.apple.crashreporter.writereport.crash com.apple.messag

  • Itunes music not showing after accepting user agreement?

    I recently moved my itunes music to a new hard drive on my computer without any issues and it had been working fine for the last month or so but after starting up my computer today itunes has updated it's user agreement terms. After accepting the use

  • I'm new to Mac - syncing old iPhone issue

    Hi. I have just bought a new iMac and tried to sync my 18month old 3G iPhone to it. iTunes is telling me its going to replace all my apps with the ones on the computer, which is none (I have a load on the phone). Does this mean i will lose all the ap

  • Spreadsheet component shrinks to size of a Dice

    Hello, I have a dynamic dashboard using spread sheet component. During the run time I have seen the spreadsheet component  shrinks to a very small size, I could say it shrinks to size of a dice and this issue is very intermittent. FYI: I am having th