Form Size Memory

Hello.
When I resize or move a form in SBO, the new size and position are stored somewhere by SBO, because the next time I launch SBO and open this form, SBO remembers my modifications.
I didn't find anything in the DI/UI API about this. I also tried to trace all interactions with the SQL server, and it doesn't seem SBO is storing these informations in the database.
I'd like to know how SBO handles this, because maybe I could use it for user-defined forms too, in order to get a similar behaviour.
Thanks in advance.
Martin

Jon,
Thanks for your idea.
Unfortunately, I'm afraid Windows doesn't know the windows existing <i>inside</i> a program. In our case, the program is SAP Business One, and it's the only one to be known by Windows. Therefore, no automatic Windows-behaviour could affect the <i>internal</i> windows of SBO (e.g. Item Master Data, Bill Of Materials, ...), because Windows doesn't know they exist.
The other explanation, following your idea, would be that SBO reads/writes himself in the Windows registry. But searching for a resized form's FormID in the registry was unsuccessful. Anyway, I don't think SBO would do this, since it saves everything internal in the database.
I'm still open to any suggestion/remark/comment that would help me to solve this issue.
Martin

Similar Messages

  • Reg: SAP Adobe form size restrictions

    Hi Geeks,
               Could anybody explain me about the memory restriction in sap adobe offline forms. Presently the form size is around 670kb with 3 pages. There is plan to expand this to 26 pages with 670kb * 8 .Will there be any performance issue in this case?
    Regards,
    Sivakaran.K.C

    Hi Kumar,
    For sure your form would be @ 5 MB and it would be a performance issue.
    Since the entire file has to be processed between ECC & ADS systems you can see the processing time and its hectic.
    but I have a doubt, your 3 pages file is @ 670KB..? is it any complex one...?
    Well there is a bug in ADLC 8.2.X version where it keeps on adding  <?templateDesigner StyleID aped3?> this tag redundantly every time you edit the form, especially when you copy paste elements with in the form. check if there is something like this in your form just in case.
    The solution for this bug is Manually delete all the entries leave one for occurance. (alternatively if you search in adobe forms you can find a parser which deletes these redundant entries.)
    Then upgared to latest ADLC or have respective patch.
    Cheers,
    Sai.

  • Variable size memory is not matching....

    Hello, Here is my oracle version..
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Prod
    PL/SQL Release 10.1.0.2.0 - Production
    CORE 10.1.0.2.0 Production
    TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
    NLSRTL Version 10.1.0.2.0 - Production
    My variable size memory should be exactly same as Java pool, large pool, shared pool.
    scott@orcl> show sga
    Total System Global Area 171966464 bytes
    Fixed Size 787988 bytes
    Variable Size 145488364 bytes
    Database Buffers 25165824 bytes
    Redo Buffers 524288 bytes
    scott@orcl> select
    2 sum(bytes)
    3 from
    4 v$sgastat
    5 where
    6 pool in ('shared pool', 'java pool', 'large pool');
    SUM(BYTES)
    143369796
    The stream pool size should be part of SGA. But it is not showing in v$sgastat view....
    In oracle9i, variable size was matching with the above query. Now it is not matching..
    Am i missing any thing in my above query? Any help is highly appreicated...

    still it is not matching... variable size is 145488364 bytes... but the below is showing 142606336.
    scott@orcl> show sga
    Total System Global Area 171966464 bytes
    Fixed Size 787988 bytes
    Variable Size 145488364 bytes
    Database Buffers 25165824 bytes
    Redo Buffers 524288 bytes
    scott@orcl> select sum(bytes) from v$sgainfo where name in('Streams Pool Size',
    2 'Java Pool Size','Large Pool Size','Shared Pool Size');
    SUM(BYTES)
    142606336
    scott@orcl>
    scott@orcl> select * from v$sgainfo;
    NAME BYTES RES
    Fixed SGA Size 787988 No
    Redo Buffers 524288 No
    Buffer Cache Size 25165824 Yes
    Shared Pool Size 83886080 Yes
    Large Pool Size 8388608 Yes
    Java Pool Size 50331648 Yes
    Streams Pool Size 0 Yes
    Granule Size 4194304 No
    Maximum SGA Size 171966464 No
    Startup overhead in Shared Pool 29360128 No
    Free SGA Memory Available 0
    11 rows selected.
    scott@orcl>

  • How to set size of rectangle dynamically depending on form size ?

    Hi,
    why does the size of a rectangle is not depend on the fom size? Can i set the size of my rectangle dynamically, depending on the user form size?
    best regards
    Markus

    Markus,
    I use the following in the FormResize event:
        Private Function ItemHandler_FormResize(ByRef oCompany As SAPbobsCOM.Company, _
                ByRef oApplication As SAPbouiCOM.Application, ByRef pVal As SAPbouiCOM.ItemEvent) As Boolean
            ItemHandler_FormResize = False
            oForm = oApplication.Forms.GetForm(pVal.FormTypeEx, pVal.FormTypeCount)
            Try
                oForm.Freeze(True)
                If pVal.BeforeAction = False Then
                    oForm.Items.Item("FldRtg").Width = oForm.Width - 20
                End If
                ItemHandler_FormResize = True
            Catch ex As Exception
                oApplication.MessageBox("ItemHandler_FormResize(): " & ex.Message.ToString)
            Finally
                oForm.Freeze(False)
            End Try
        End Function
    Regards,
    Vítor Vieira

  • HTML Form Size Preset Limit

    I am trying to use the HTML Form to test my BPEL process. It generate the following error:
    Error Message:
    HTML form size is larger than the preset limit: 70
    My xsd is quite large. Is there a way to disable or make the preset limite bigger? Thanks.

    Hi,
    we introduced this check with release 10.1.2.0.2, and here is the why ..
    a) It takes asignificant amount of time to generate this form and
    b) normally no user would fill ou 70 fileds to kick off a process ...
    what you can do is specify a default input - which is done in bpel.xml by specifying defaultInput as property within configurations
    <property name="defaultInput"><![CDATA[<loanApplication xmlns="http://www.autoloan.com/ns/autoloan">
                    <SSN>123456789</SSN>
                    <email>[email protected]</email>
                    <customerName>dave</customerName>
                    <loanAmount>1000</loanAmount>
                    <carModel>BMW</carModel>
                    <carYear>2003</carYear>
                    <creditRating>0</creditRating>
    </loanApplication>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Form Size Increase

    Hi to all;
    I created an Adobe Interactive Form for a SAP installation using LiveCycle Designer 8. The form allows the user to upload images using base64 encoding scheme. When the user uploads images filesize increase in a coherent way always being the simple sum of the form w/o images and of the images in base64 format (4/3 of the actual image size).
    When an image is uploaded by the server, however, its size is always greater than expected. For example if I merge a form of 160kb and an image of 1mb size the result is 4.9 mb.
    Have you got any ideas about that?
    Thank you in advance for any of your answers.

    ok,
    This form has 2 date fields.
    The dates are being displayed as 28-JUL-.
    We need to scroll on the date field to see 2005
    There is not much space on the record as all cols are close to each other
    So,If I can increase form size and then the date field sizes so that the whole date
    can be seen.

  • Reduce  Form size for  display on Mobile device

    Hi all ,
    I am currently working on messaging application in mobile device.My project is 90% completed. When I imported my application into 6680 series mobile device.It works fine.Actually i have loginscreen Form before opening the messaging window.In that loginscreen form i have used Username textbox,password textbox,login button,and some other components like remeber id ,autologin etc.But while displaying,only username textbox and password textbox itself displayed on the current display.remaining are all seen by scrolling down.Actually i want all my components to be displayed on the current display without scrolling.So can anyone tell me your idea for my issue as soon as possible.If it is posssible to reduce the form size means please tell the way to reduce it.
    Very urgent!!!!!
    Thanks / Sourab.

    There are two ways...
    Either go for a device with a screen size large enough to fit entire form in the visible screen...
    Or, ask the device vender to reduce the form size for u in their implementation.
    Any one with a better answer ??????
    Regds,
    SD
    Message was edited by:
    find_suvro@SDN

  • Changing the embed form size

    How do you change the form size in the embed code? Your forum states "
    Form Width: This can be changed by going to the Form Setup dialog on the File menu", but there is not a Form Setup choice under the File menu

    The Form Setup menu item appears when you have the form open and are in the Design tab.

  • How to change size memory for an application under Classic ?

    When I ask informations on my OS 9 application under OS X.4.4, I can no more change size memory ! I can no more use my application with Classic... ???

    ROYCH: This is partly guesswork, but I think it may explain why your problem occurs.
    When OS X is controlling your computer (as it always does on a Mini), the file Type and Creator attributes that OS 9 uses to identify different kinds of files are not used. OS X ignores them in files that have them. Files that are only used by OS X don't have them at all. When you create a new application in Classic mode under OS X, those attributes may not be assigned to it, so the new application may not have any.
    But if you copy the new application to a computer running OS 9, and those attributes are missing, the OS 9 computer will have no idea what sort of file it is. OS 9 won't even know it's an application. To prevent that, I'm guessing that OS X somehow builds clues into the file that enable OS 9 to identify it as an application, and to give it the Type attribute APPL. I believe any file in OS 9 that has that Type attribute will display the Memory menu item in its Get Info window — not only in OS 9, but in OS X. So after you copy your compiled application onto a computer running OS 9 and then back onto your Mini, it has the APPL attribute, and the Memory item is available in its Get Info box.
    I have one application, File Buddy, that can (among many other abilities) display and edit the OS 9 Type and Creator attributes of any file while running in OS X. It can be used to assign specific Type and Creator attributes to a file that has none. You could use it to assign the appropriate Type and Creator attributes to your compiled applications while you are running OS X. After you do so, maybe they will display the Memory menu item in their OS X Get Info boxes.
    If this works, File Buddy can apply the same changes in Type and Creator to a whole folder full of files at once. That would be an easy way for you to accomplish the same thing for several compiled applications instantly, without having to copy them to a computer running OS 9.
    I don't create applications, so I can't test this procedure to see whether it works. I will be interested to hear what happens if you experiment with File Buddy.
    But after saying all this, I really have no idea whether the message you're seeing about insufficient memory is meaningful or spurious. You may go through the whole rigmarole of changing the memory allocation for your compiled applications, only to find that doing so still doesn't enable you to open them. I'll be interested to hear whether that's true, too. Good luck.

  • Overall Form Size - Adjust Height

    Hello, I am trying to make a form with an overall size that is longer but a narrow height. For example 620 long by 150 high. How to I adjust the height down to 150 px? I see the option for adjusting the width of the form, but I want to adjust the height.
    Thank you for any help.

    Hi,
    Please refer to the screenshot attached below to know how to change the form size:-
    Regards,
    Nakul

  • What size memory cards?

    What size memory cards should I be using for my Vixia G30 If I plan on doing weddings and interviews? 

    Hi buzzas, I was able to look into your question about the memory cards and I found a document that I think will explain to you the general information about the Memory cards. Please click the link that I have provided to get to the document. http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c00068354&lc=en&product=5378013&tmp...
    Hope this helps with you issue. If you have any other questions, please feel free to write back
    Thank you.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • What size memory card goes into the PowerShot A520?

    What size memory card goes into the PowerShot A520 camera?...and where can I get one?

    This camera uses SD card. You can buy it from any online or local electronic store. It should not cost more than $7. But don't mistake it with SDHC card. Your camera is not compatible with SDHC card. SD card is limited at 2Gb; so the largest one you can get is 2Gb. Anything larger will be SDHC.
    One from amazon: http://www.amazon.com/SanDisk-Flash-Memory-Card-SDSDB-002G-AFFP/dp/B007JRB0QA/ref=sr_1_4?s=pc&ie=UTF...
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

  • HTML Form Size Exception

    Can someone tell me why I get this exception and is it significant?
    bq. &lt;2008-12-11 22:38:16,085&gt; &lt;ERROR&gt; &lt;cybertrust1_3.collaxa.cube&gt; &lt;BaseCubeSessionBean::logError&gt; Error while invoking bean "presentation manager": HTML form size is larger than the preset limit: 70 \\ java.lang.IllegalStateException: HTML form size is larger than the preset limit: 70 at com.collaxa.cube.xml.xsd.xerces.HtmlFormHelper.incInputCount(HtmlFormHelper.java:46) \\ ......
    I have searched this forum and the WEB and can't find anything relevant to "BPEL HTML Form Size"

    This is BPEL 10.1.2 and I'm sure there are more than 70 tags in the input XML stucture. The original BPEL process was initiated from the BPEL Manager console, but the error is coming from a child process. I can understand the issue with a limit of 70 separate tags (each represented on the input screen), but in this case there is one input string which is a large XML structure. It certainly sounds like a similar problem, but only the same ball park.

  • Form Size becoming Too large

    Hello,
    I have a very strange problem.
    I designed a fillable form using Designer7.0. I reader enabled the form using Adobe Reader Extensions Server 7.0, so that users use their Adobe reader(7.0.5) to fill in the form. The empty PDF form is around 700KB in size.
    Now, When the user filled the form manually typing the data(25KB data) in the form and saved it. It saved as 60 MB file. I cannot justify this increase of the size anyways to my authorities. I am looking forward to hearing from you so that I can tell then what can be the possible reasons for this.
    Also One more observation. When I imported the 25KB XML file into the empty form and save it, it is just 1.1MB in size.
    Please help me understand whats going behind the scenes?
    Thank you for your attention
    Sam

    Hi,
    I had a similar problem with a pdf created in LCD. If you ever open a pdf form in LCD and see a message about it being Reader Enabled and that you have to overwrite it, you likely have the same problem I had... My file went from less than 300 kb to more than 16 Mb... and back to around 300 kb with the following solution...
    For a reason not very clear, once a file has been applied the Reader Enabled  feature inside Acrobat, if we open it again inside LCD it kind of keeps a memory  and every time we save it adds to it.
    What I had to do is  open the pdf file in Acrobat, reapply the Reader Enabled feature (LCD asked me  to remove it when I opened it inside of it) and then do a File --> Save a copy. It  removes the right and all the “memory” of the file and brings it back to a small  file (about 300kb in my case, instead of the more than 15Mo it was  then)!
    So, now, every time  that I need to edit a file, I first do a Save a copy in Acrobat (only available  if the pdf has been Reader Enabled) and open it in LCD. No more  problems…

  • Form size increases with F4 help

    Hello All,
    I am facing a performance issue in an interactive form. We have developed an adobe form and linked it to portal through WebDynpro. We have around 10 fields with F4 help on the screen. We achieved the F4 help with a push button next to the corresponding field on the form and linked the field to the View context in WebDynpro and added dictionary search help.
    Tha problem here is- as we go on entering the data by clicking on F4 help, by the time we reach 4th or 5th search help the size of the form increases, as shown in the status bar at the bottom of any webpage, up to 5 or 6 MB and it will take a lot of time to load update the form with the selected value from search help. We have incread the ICM parameter to give user more time to fill the form but this is not a good practice as we know.
    Is there a way to improve the performance in this case? Following are details of system:
    1. ADS - SP 17
    2. NetWeaver 7.0/2004s
    3. Already activated "Allow form rendering to be cached on server" in form properties in SFP.
    Any inputs will be very helpful.
    Thanks,
    Anil

    Hello Anil,
    I don't think that the amount of data Web Dynpro sends to the Adobe Reader increases dramatically - I assume there's a problem with your form / Adobe Reader (what's the Reader version you are using?).
    Some users in the forum reported recently that an update of the ZCI script has solved such performance problems.
    You could do the following to narrow down the problem:
    - analyze the server response times and the amount of data transferred to the browser using a HTTP sniffer (HTTPWatch or fiddlertool): Only the requests containing the name of your Web Dynpro application are of interest.
    - If you are using Adobe Reader 8: Watch process AcroRd32.exe with the task manager, esp. the memory consumption.
    The following actions could help:
    - Update Adobe Reader to the latest version
    - Update the ADS and the ZCI script of your form, i.e. update to the latest SAP NetWeaver SP (ABAP + JAVA) and call transaction SFP_ZCI_UPDATE for your form afterwards
    - If this doesn't help, you should open an OSS message
    Ralf

Maybe you are looking for

  • More than 5 iTunes Accounts ?

    Hi folk, have anyone experience about an upgrade of the limitation from 5 iTunes Account ? I need more, because we are 4 headed family with mini host, Apple-TV, broilplace, etc. My favorit limit would be 10. I have ask the Apple-Support an wait of th

  • Authorization for credit limit - risk categoryu200F

    Hi All, I would like to control field risk category by authorization. I have configure in Field Groups and assign it to user roles using object F_KNKA_AEN. and below for the authorization objects for credit management: 1)V_VBUK_FRE 2)V_KNKK_FRE 3)F_K

  • Flattening, correlated subquery

    Hi, The following fields are key values on a table, with example data : EMPNO DATE ACTION 1234 6/6/05 HIR 1234 6/6/05 XFR 1234 6/10/05 DTA 1234 6/22/05 XFR 1234 7/30/05 TER 3456 6/6/05 HIR etc. I need to create a view to show the previous 5 rows of h

  • Distribution/management point in non trusted domain

    Hoping somebody can clarify a stituation for us on distribution points on a machine in a non trusted domain. We are assuming that this distribution point uses the same certicate that the primary distribution point uses. Is this correct?   When we try

  • [svn] 4859: -Fix packaging timing issue that was caused by the rebuilding of the air applicationupdater .

    Revision: 4859 Author: [email protected] Date: 2009-02-05 10:15:22 -0800 (Thu, 05 Feb 2009) Log Message: -Fix packaging timing issue that was caused by the rebuilding of the air applicationupdater. The recompiled files would get laid down properly on