Int satPopup.size.width error

Hello.  I have a macbook pro, running snow leopard.  I am trying to fill out an online job application and I continue to get the following error messages:
int satPopup.size.width
int.satPopup.size.height
to a value > 0.
What does this mean?  I have never had this problem before.  I am also seeing it on my iMac.  I am running 10.6.8 on both.
Any ideas on what is wrong?
Chris

markwmsn is 100% correct.  It is bad code from the web site you're on.  Here's a shot in the dark - from the error message there's a good chance that the website is trying to serve you a "bad" popup window.   Try toggling whatever is set for the following setting to the opposite value and see what happens when filling in the application:
Settings > Safari > Block Pop-ups
By bad popup I mean it is dimensioned to display a 0 x 0 (width length) window which of course makes no sense.  This assumes you were using Safari as your browser.  You didn't specify this in your original question.

Similar Messages

  • Index: 0, Size: 0 error while creating data template in BI Publisher

    Hi
    When i am trying to create the data template for BI Publisher reporting. i am gettinhg the Index: 0, Size: 0
    error. I checked the query that i have used to create template and it is working fine. But not sure why it is not happening while creating the data template. Can anybody help me out please.

    how about pasting the content of your data template here, so that forum members can see what could be the problem.

  • Index: 0, Size: 0 Error

    Hi
    When i am trying to create the data template for BI Publisher reporting. i am gettinhg the Index: 0, Size: 0
    error. I checked the query that i have used to create template and it is working fine. But not sure why it is not happening while creating the data template. Can anybody help me out please.

    Hi,
    Welcome to the forum!
    Post BI Publisher related question in the below forum
    BI Publisher
    To get right response to your query, the question should be at the right place.
    Regards,
    Prazy

  • Why does a UITableView cell.contentView.bounds.size.width change with cell reuse?

    I use `cell.contentView.bounds.size.width` to calculate the position of a text field in a UITableView cell. When the cell is created, debug code reports the width as 302. When the cell scrolls off the screen and then back on, the debug code reports that the it is 280--every time. It doesn't seem to want to go back to 302 and stays stuck at 280. The net result is that the text field gets put in the wrong place the second time the field is put into the cell's contentView, though it was put in the right place the first time.
    I figure 22 is significant somehow, but I don't know what it is. Guessing it might be the disclosure arrow, I moved the "clear the cell" code up front of the width determination, including setting the accessory to nada.
    Can anybody tell me what's going on here?
    The code (with irrelevant--that I know of--stuff snipped out) looks like this:
    <code>
        // Customize the appearance of table view cells.
        - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
            static NSString *CellIdentifier = @"Cell";
                  NSUInteger section = [indexPath section];
                  NSUInteger row = [indexPath row];
            UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
            if (cell == nil) {
                cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
            // Configure the cell.
            while( [cell.contentView.subviews count] ){
                id subview = [cell.contentView.subviews objectAtIndex:0];
                [subview removeFromSuperview];
            cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
        8< snip!
                  CGFloat          theCellWidth = cell.contentView.bounds.size.width - 44.0;
                  CGFloat theLineHeight = [[UIFont boldSystemFontOfSize: [UIFont labelFontSize]+1.0] lineHeight];
            NSLog(@"cell.contentView.bounds.size.width %1.0f",cell.contentView.bounds.size.width);
            if (0==section) {
                            switch (row) {
                                      case 2:
                        while( [cell.contentView.subviews count] ){
                            id subview = [cell.contentView.subviews objectAtIndex:0];
                            [subview removeFromSuperview];
                        cell.selectionStyle = UITableViewCellSelectionStyleNone;
                                                cell.textLabel.text = @" ";
                                                cell.detailTextLabel.text = @"The Age";
                                                theAgeTextField.frame = CGRectMake(10.0, 2.0, theCellWidth, theLineHeight);
        //                NSLog(@"cell.contentView %@",cell.contentView);
                                                theAgeTextField.text = theAge;
                                                theAgeTextField.font = [UIFont boldSystemFontOfSize: [UIFont labelFontSize]+1.0];
                                                theAgeTextField.keyboardType = UIKeyboardTypeDecimalPad;
                                                theAgeTextField.borderStyle = UITextBorderStyleNone;
                                                theAgeTextField.userInteractionEnabled = NO;
                                                [cell.contentView addSubview:theAgeTextField];
                                                cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
                                                break;
        8< snip! (lots of closing braces and other stuff omitted)
            return cell;
    <hr>
    </code>
    **Want to try this one at home, boys and girls?**
    Start with a new Navigation-based Application. Put the following code into RootViewController.m:
    <code>
        - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
            return 5;
        // Customize the appearance of table view cells.
        - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
            static NSString *CellIdentifier = @"Cell";
            UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
            if (cell == nil) {
                cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
            NSLog(@"cell.contentView.bounds.size.width %1.0f",cell.contentView.bounds.size.width);
            // Configure the cell.
            return cell;
    </code>
    There are only two changes in the default code required to make this happen: changing the number of rows in the section ("return 5") and the style of the cell must be _UITableViewCellStyleSubtitle_. Then, when you run the program, you'll see five lines of this:
    <code>
        2011-06-18 11:10:19.976 TestTableCells[7569:207] cell.contentView.bounds.size.width 302
        2011-06-18 11:10:19.978 TestTableCells[7569:207] cell.contentView.bounds.size.width 302
        2011-06-18 11:10:19.979 TestTableCells[7569:207] cell.contentView.bounds.size.width 302
        2011-06-18 11:10:19.980 TestTableCells[7569:207] cell.contentView.bounds.size.width 302
        2011-06-18 11:10:19.982 TestTableCells[7569:207] cell.contentView.bounds.size.width 302
    </code>
    Drag some cells off the screen (drag up--down doesn't do anything) and when they reappear, you get this:
    <code>
        2011-06-18 11:10:24.013 TestTableCells[7569:207] cell.contentView.bounds.size.width 320
        2011-06-18 11:10:24.047 TestTableCells[7569:207] cell.contentView.bounds.size.width 320
        2011-06-18 11:10:24.130 TestTableCells[7569:207] cell.contentView.bounds.size.width 320
    </code>
    Frankly, I'm frustrated as heck with this, and am so very tempted to pony up the $99 (without a working app, even) so I can have somebody at Apple weigh in on this one.
    <hr>
    Wanna' see something more interesting? Try this in place of the `static NSString...` line:
    <code>
            NSString *CellIdentifier = [NSString stringWithFormat: @"%d", arc4random() ];
            NSLog(@"%@",CellIdentifier);
    </code>
    Now, every time, the width in the log is _always_ 302. It would seem, then, that a reused cell has different content width than the original cell.
    Anybody got a clue on this?

    Hi,
    i guess the reason is that a newly create cell is create with a default frame by initWithStyle:
    But it's not yet added to any superview so you're logging that default size.
    After returning the new cell the tableViewController adds that cell as subview to the tableView which can lead to a resize of that cell.
    If the cell is scrolled off screen it's just removed from superview but stays the same size. If it's reused later it's still having the same size it had when removed from superview.
    Dirk
    initWithStyle:
    But it's not

  • How to increase font size of error message in css or in template?

    Hi all,
    Firt time i am working for css modification.I am not able to increase the font size of Error message in Inline in Notification validation at Item level. I am not able to find where i should make change for that in tempalate or in CSS. I know it's very simple question but i am not able to do this simple change.
    I created some validation at Item level and page level and in Inline in Notofication want to display the error message.
    In error message i am writing code like "
    <a href="#P15_item_name" title="Link to item FIELD">Please Enter value for item name </a>."
    but font is very small. can any one help me where i should make changes to make it some biger font.
    where exactly i should make changes.?
    Thank You,
    Amit

    This is strange. Another css is used, core_V22.css
    Here is the path: htmldb/images/css/
    Search for "span.errTxt". It already has a set font-size, so just increase it.
    I don't know the exact use of core_V22.css. It seams to be used by other applications, so it may influence them as well. It would be better if you could define another class, but I don't realize yet from where to address it
    I hope this helps you Amit
    Try to use Firefox with the Firebug add-on installed for easy work with html. I can't see my self without it :-)
    Lupei

  • REP-1219 - Body has no size - width or length is zero

    I run my report on my desktop and it runs fine. I then register it under the Concurrent Manager in Oracle Apps. When I run it, I get the following message: "REP-1219 - Body has no size - width or length is zero". Do you have any suggestions on why I only get this after I register it.

    Hi John,
    I think there is some problem in Report Header Or Report Footer, you do one small R&D. First you remove the Report Header and generate the report and Second Time you remove the Report Footer and generate the report.
    I am sure that you will get the report...
    If you get the report output then that means there is some problem in Report Header or Footer,After that in the Report Header before the Feilds, you keep some Space and in the Report Footer also after feild you keep some space.
    Try This
    Regards,
    Ravi
    [email protected]

  • Clip for trailer won't load, regardless of the size the error message keeps popping up, "That clip is not long enough. Choose a longer clip for this part of the trailer."

    Clip for trailer won't load, regardless of the size the error message keeps popping up, "That clip is not long enough. Choose a longer clip for this part of the trailer."

    I got it out!
    Here is how.
    None of the Apple-suggested ways worked. However, before totally giving up I started Roxio Popcorn and pressed the big eject button on it. It came out effortlessly!
    So, I thought "Weird..."
    I put the CD back in and reproduced my original problem. I got it out just as easily using Roxio Popcorn Eject feature.
    So, I then thought "Maybe it is the disk?" There is nothing wrong with the disk as far as I can tell. It is perfectly round, has a smooth label-side surface. It is not even a label, it is a standard software install disk you buy in stores.
    I inserted a different disk. The mini mounted it, I browsed it, and then ejected it by dragging it to trash. Worked fine.
    I tried a few other disks.
    The drive seems to work fine.
    Maybe that CD is cursed, I dunno. I tried that disk in my PowerBook and it works fine there.
    Who knows ?
    I am still backing up my hard drive as I type this message in case I need to take it to the store.

  • Size of error stack...

    *Hi All,
               Is the size of error stack defined?? or can it hold infinite number of error records??*

    HI
    Please check in error stack settings. There we will get answer for your question.
    PATH:
    Open any DTP and click on menu path EXTRAS,Settings for error stack
    You will get a popo up. In the popup we have option size of error stack
    Hope it will helps.
    Regards,
    SVS

  • I'm having an error in Photoshop CS6 where the numbers in boxes (like image size width) are changing on their own. Can someone please help me figure this out?

    This was happening all the time on my old 2006 iMac, and I thought that when I upgraded to a new computer it would go away. No such luck.
    Sometimes the program works just fine, and other times I have this error. I haven't been able to pinpoint what is causing it.
    Basically what happens is, I will try to type a number in the box to edit the size of the image (or sharpness, etc. something that requires you to enter a number), and as soon as my mouse hovers over the box, the numbers start changing on their own. As soon as I move the mouse away, the problem stops, but of course this means that I am unable to type in the number that I want.
    I've tried unplugging my mouse and keyboard - that doesn't change anything.
    Has anyone run into this issue before?
    Btw, I use a 2013 iMac, OS version 10.9.5
    (I have a video clip of this problem, but I don't know how to share it here)

    Your task is hardly a case for Photoshop: replacing text accurately in a scanned, not even
    straightened image.
    My recommendations:
    a) put a crossreference list on each page
       or
    b) straighten the scans and improve the contrast, both by Photoshop.
       Then apply a program which converts images of text into machine coded text
       by OCR - Optical Character Recognition , for instance Abbyy Finereader
       http://finereader.abbyy.de/professional/?adw=google_eu&gclid=CMirrcCMx7MCFZHRzAodlisAJg
       (I'm not related to the manufacturer of this software, I'm just a user).
       In coded text it's easy to replace isolated character groups as required.
    Best regards and good luck --Gernot Hoffmann

  • Connection pool size limit error

    Hi all,
    I am trying to execute a BAPI function from MII, execution fails with the following message;
    [ERROR] Unable to make RFC call Exception: [Problem retrieving JCO.Function object: Connection pool <ECC_Server>:800:02:EN:ECCUser is exhausted. The current pool size limit (max connections) is 1 connections.]
    [WARN] [SAP_JCo_Function_0] Skipping execution of output links due to action failure.
    [ERROR] Uncaught exception from SAP_JCo_Function_0, Problem retrieving JCO.Function object: Connection pool <ECC_Server>:800:02:EN:ECCUser is exhausted. The current pool size limit (max connections) is 1 connections.
    Config:
    1. In 'SAP MII: Connections' of type JCO and have given pool size to 100.
    2. In 'SAP MII: Credential Stores' store is created and same is being used in Start Session.
    3. In  JCO_Function block, we can search for the Function Module and set it.
    MII Version:
    14.0.2 Build(82)
    Am I missing something?
    Has any one seen this? please advise.
    Thanks,
    Message was edited by: Shridhar N

    Check if there is another JCo connection configured with the same IP and User. I have found in the past that even though there are two connections configured because they have the same ip and user they are put into one pool with the lowest max pool of the two connections.

  • Newby question: I keep on getting "No size set" error

    Hello,
    I'm trying to integrate an Oracle database into my ASP.NET application and I keep on getting an error:
    "Parameter: ENTITY_NAME. No size set for variable length data type: String"
    The parameter is set as VarChar2 in the database, size 50, and the C# code sets this as a VarChar.
    My ASP.NET code is:
    Connect();
    // setup the command to the stored procedure
    OracleCommand DBCmd = new OracleCommand("HDB.PRL_PAYROLL_PKG.GET_ENTITIYID_BY_STOREID", this.Connection);
    DBCmd.CommandType = System.Data.CommandType.StoredProcedure;
    DBCmd.Parameters.Add("STOREID", OracleType.Number).Value = StoreID;
    DBCmd.Parameters.Add("STOREID", OracleType.Number).Direction = System.Data.ParameterDirection.Input;
    DBCmd.Parameters.Add("HDB_ENTITIES_ID", OracleType.Number).Direction = System.Data.ParameterDirection.Output;
    DBCmd.Parameters.Add("ENTITY_NAME", OracleType.VarChar).Direction = System.Data.ParameterDirection.Output;
    DBCmd.Parameters.Add("ENTITY_NAME", OracleType.VarChar).Size = 50;
    // Execute Procedure.
    OracleDataReader reader = DBCmd.ExecuteReader(System.Data.CommandBehavior.SequentialAccess);
    Can anybody steer me in the right direction?
    Thanks in advance for your help.
    Steve

    I have recieved no answers to this question.
    I think I'll go back to SQL Server 2005.

  • Index:0 Size:0 error for non administrator group

    Hello, I have some dasboards and webis that I want to run in the iPad, If I login as Administrator everything is fine, but if I login as any other user I get the error: Index:0 Size: 0 can anyone tell me what I am missing? 
    I already check the note 1836197 - MOB00082 index:0, Size:0 in SAP BI Mobile App when using a non administartor group member  But I still have the error.
    I have these:
    SAP BusinessObjects BI Platform 4.1 Support Pack 5
    Version: 14.1.5.1501
    In all Cases the assigned access level is Full Control ( just to try)
    User: Test
    Authentication Type: Enterprise
    Group: Mobile
    Category: Mobile
    User Security of the Goup Mobile with Full Control :
    Folder:  Root and  Prueba EDU
    Dashboard:   Ventas2015_prueba27Abr  (Inherited)
    Applications:  SAP BusinessObjects Mobile Extra: WebIntelligence, Dashboards, IDT, Universe Designer
    Category: Mobile and to the  Top-Level Security
    Folders
    Root folder:  (CMC-->Folders-->Manage-->Top-Level security-->All Folders-->Add principal 'Mobile' Group  -->Grant user view right)
    Folder for  Webi & Dashboard:  “Prueba EDU”
    Categories
      root categories: (CMC-->Categories-->Manage-->Top-Level security-->All Categories-->Add Principals and Add user 'Mobile'-->Assign Security-->Advanced tab-->Add/Remove Rights-->View objects-->Apply)
    Category Mobile:
    Applications:
    Dashboards
    SAP BusinessObjects Mobile
    IDT
    Universe design tool
    Web Intelligence
    Note 1783173
    Dashboard and Webi
    Login as Test:

    HI Erika,
    This is an unexpected error. This error belongs to ArrayIndexOutOfBound exception of Java framework - where the list of size is 0 or null and you try to access object on that list.
    Since this is a coding defect (which may or may not be resolved by changing configuration). Next steps - I would strongly recommend that you contact Product Support through the official channel .  http://support.sap.com/incident
    Regards,
    Ashutosh

  • "Index: 0, Size: 0" error when using lexical references

    I got "Index: 0, Size: 0" when using lexical references in data template. Can any body tell me what happen? The detail error is:
    [042308_084608187][][EXCEPTION] java.lang.IndexOutOfBoundsException: Index: 0, S
    ize: 0
    at com.sun.java.util.collections.ArrayList.RangeCheck(ArrayList.java:492
    at com.sun.java.util.collections.ArrayList.get(ArrayList.java:306)
    at oracle.apps.xdo.dataengine.DataTemplateParser.getParentDataSource(Dat
    aTemplateParser.java:1802)
    at oracle.apps.xdo.dataengine.XMLPGEN.writeDefaultGroup(XMLPGEN.java:329
    at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:2
    84)
    at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:271)
    at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:213)
    at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:252)
    at oracle.apps.xdo.dataengine.DataProcessor.processDataStructre(DataProc
    essor.java:390)
    at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.ja
    va:355)
    at oracle.apps.xdo.servlet.data.bind.AdvancedQueryBoundValue11.callDataP
    rocessor(AdvancedQueryBoundValue11.java:212)
    at oracle.apps.xdo.servlet.data.bind.AdvancedQueryBoundValue11.getValue(
    AdvancedQueryBoundValue11.java:101)
    at oracle.apps.xdo.servlet.ReportContextImplV11.getReportXMLData(ReportC
    ontextImplV11.java:399)
    at oracle.apps.xdo.servlet.CoreProcessor.process(CoreProcessor.java:143)

    Here is the data template, the lexical reference is &where_clause, thanks.
    <dataTemplate name="Tamplate" dataSourceRef="dmdb" defaultPackage="RRBY_PKG">
         <properties>
              <property name="debug_mode" value="on"/>
         </properties>
         <parameters>
                   <parameter name="BUName" dataType="character"/>
              <parameter name="StartDate" dataType="date"/>
              <parameter name="EndDate" dataType="date"/>
         </parameters>
    <dataTrigger name="beforeReport" source="RRBY_PKG.dynamic_where(BUName =&gt; :BUName)"/>
         <dataQuery>
         <sqlstatement name="GroupByAgent">
                   <![CDATA[SELECT
      NVL(businessunit.name, 'Unassigned') UNITNAME,
      queue.name QUEUENAME,
      NVL2(businessunit.name, 'Unassigned', businessunit.name || ': ' || queue.name) FULLQUEUENAME,
      COUNT(queueEvent.requestNumber) REQNUM
    FROM((((queueevent queueevent
    INNER JOIN assignment assignment ON queueevent.assignmentkey = assignment.assignmentkey)
    INNER JOIN datedim datedim ON queueevent.datekey = datedim.datekey)
    INNER JOIN businessunit businessunit ON queueevent.businessunitkey = businessunit.businessunitkey)
    INNER JOIN queue queue ON queueevent.forwardedqueuekey = queue.queuekey)
    INNER JOIN timedim timedim ON queueevent.timekey = timedim.timekey
    WHERE dateDim.FULLDATE >= TO_DATE(:StartDate, 'yyyy-mm-dd')
    AND BW_COMMON_DATEADD('s', timeDim.SECONDOFDAY, BW_COMMON_DATEADD('s', queueEvent.EVENTDURATION, dateDim.FULLDATE)) > TO_DATE(:StartDate, 'yyyy-mm-dd')
    AND BW_COMMON_DATEADD('s', timeDim.SECONDOFDAY, BW_COMMON_DATEADD('s', queueEvent.EVENTDURATION, dateDim.FULLDATE)) &lt; TO_DATE(:EndDate, 'yyyy-mm-dd') AND &where_clause
    group by businessunit.name, queue.name]]>
              </sqlstatement>
         </dataQuery>
    </dataTemplate>

  • Time Machine Backup Size Calculation Error

    This is what I have:
    Internal:
    Mac OS partition: 266GB (257GB Used)
    BootCamp partition: 32GB ( 12GB Used)
    External:
    External USB 2.0 HD: 153GB (142GB Used)
    TM Backup Drive: 466GB ( 0GB Used)
    *What I have excluded:*
    - TM Backup Drive
    - BootCamp partition
    *Therefore what I'm trying to backup are only:*
    - MacOS partition
    - External USB 2.0 HD
    Time Machine Preferences Options Pane reports "Total Included: 398.4GB", and that's totally correct for what I'm intending to backup (i.e. MacOS partition + External USB 2.0 HD = 257GB + 142GB = 399GB). So far so good.
    But when TM kicks off after the countdown, an error dialog pops up saying:
    *Time Machine Error*
    This backup is too large for the backup volume. The backup requires 478.0 GB but only 465.5GB are available.
    To select a large volume, or make the backup smaller by excluding files, open System Preferences and choose Time Machine.
    [Preferences] [OK]
    Now how does TM figure out that 478.0GB number?
    If I add up all used spaces for all drives (excl. TM drive), I only get 411GB.
    If I add up all capacity of all drives (excl. TM drive), I only get 451GB.
    How in the world did TM calculate that 478.0GB number? Why is there a discrepancy between what's reported in the options pane and the error dialog?
    BTW, I have verified all my disks and they are all fine.
    All my drives and partitions (except the bootcamp partition) are formatted properly to Mac OS Extended (Journaled).
    Someone please advice.
    Much appreciated.

    Disregarding the Mac/Win partitions, my internal HD as a whole is 298GB. My external USB drive is 153GB.
    nestea247,
    Your computer info says : iMac Aluminum 24" ....... 320GB HD.
    So, I assumed your internal HD is 320GB and you are currently using 298GB of it. Therefore my simple calculation was not "298GB + 153GB" but "320GB + 153GB(ca.)". Did I misunderstand?
    My point was: For the first-time backup, in order to copy the entire image (including the *free space*) of the volume to backup, TM might think it needs about the same size of backup volume as your internal HD ( + external USB drive, in your case). Not simply adding up the size of the *used space*.
    Leter, however, it will get more realistic and adjust to the actual data size; so, after completing all the hard link setup, the size of its backup seems to "shrink." Your TM could be still calculating.... perhaps struggling to adjust? (I too hope it is not a critical bug.)
    I'm afraid my reply doesn't help solve the mystery of 478.0GB. Hope someone else can.
    Best of luck!

  • Find/Change object size width

    Hi guys,
    So this is the problem:
    I have over 900 pages long catalog and I made a little changes to a textframe options and other object styles, but bottomline is that now I have to change all the textframes width to 62 mm (its now 61 mm). I have tried the Find/Change "Object" options, but I just can't find the right way to do it. Is it even possible to do it with the Find/Change Object? I have to change over 6000 textframes manually if this dosen't work :/
    Do I have to do this with Grep scripting and how is that possbile if I have to do it with it?
    Thanks beforehand if you reply to this problem!

    Ha!
    I found the solution(ish), basically it's possible to change object dimensions with the "Find/Change Object". Thanks Bart Van de Wiele for the "Columns Fixed width" tip.
    ."Find Object Format" -> What kind of "Object style" you are looking for and then put "Text Frame Options" -> Width (exp. 55 mm)
    "Change Object Format" -> go to "Text Frame General Options" -> "Columns: Fixed width" -> width (exp. 56 mm, I have 3 mm inset spacing left&right so 56 + 6 is 62 mm).
    Change the desired textframes, BUT THEN you have this kind of problem where you can not change the textframes width sizes because they are "fixed sized".
    Click one of the changed textframes and go to "Style options" where you get that "+" -sign. Click in the options "Clear overrides".
    Now you have changed the all desired textframes and you can change the width too.

Maybe you are looking for