Unable to change window properties after upgrading project from X5 to RH8

Hi,
I just upgraded an existing project from X5 to RH8.  In Windows Properties (HTML Help), if I make any changes and click OK, I receive the following message:
"For Width field please enter a value between 65 and 24."
If I do enter a value within those parameters in any of the "Width" options on the Properties page, I'm still presented with the same error message. 
How can this be corrected?
Thanks!

Hi there
Perhaps try creating a totally new window definition and configuring the parameters as desired.
Once in a blue moon we see that the window definition somehow becomes corrupt.
Cheers... Rick
Helpful and Handy Links
RoboHelp Wish Form/Bug Reporting Form
Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
Adobe Certified RoboHelp HTML Training
SorcerStone Blog
RoboHelp eBooks

Similar Messages

  • Unable to Sign in  analytics After Upgraded obiee from 10g to 11g

    Hi all,
    I have problem when upgrading catalog from 10g to 11g.
    The error is:" Unable to Sign In . An invalid User Name or Password was entered. "
    I upgraded following the steps like this:
    1.Login EM and check BI server is running successfully.
    2.Started the UA.bat.
    Select the operation:Upgrade Oracle BI RPD and Web Catalog.
    Step by Step,and the upgrade completed successfully.
    3.Open the RPD online using the Admintool succefully.
    4.But when I Login the BI and view the dashboard with the 10g's user (Administrator),the page appear the error "*Unable to Sign In . An invalid User Name or Password was entered.* "
    5.Then I Try to Regenerating User GUIDs
    1. Update the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter in NQSConfig.INI:
    a. Open NQSConfig.INI for editing at:
    b. ORACLE_INSTANCE/config/OracleBIServerComponent/coreapplication_obisn
    c. Locate the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter and set it to YES, as follows:
    d. FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES;
    e. Save and close the file.
    2. Update the Catalog element in instanceconfig.xml:
    a. Open instanceconfig.xml for editing at:
    b. ORACLE_INSTANCE/config/OracleBIPresentationServicesComponent/
    c. coreapplication_obipsn
    d. Locate the Catalog element and update it as follows:
    e. <Catalog>
    f. <UpgradeAndExit>false</UpgradeAndExit>
    g. <UpdateAccountGUIDs>UpdateAndExit</UpdateAccountGUIDs>
    h. </Catalog>
    i. Save and close the file.
    3. Restart the Oracle Business Intelligence system components using opmnctl:
    4. cd ORACLE_HOME/admin/instancen/bin
    5. ./opmnctl stopall
    6. ./opmnctl startall
    7. Set the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter in NQSConfig.INI back to NO.
    Important: You must perform this step to ensure that your system is secure.
    8. Update the Catalog element in instanceconfig.xml to remove the UpdateAccount GUIDs entry.
    9. Restart the Oracle Business Intelligence system components again using opmnctl:
    10. cd ORACLE_HOME/admin/instancen/bin
    11. ./opmnctl stopall
    12. ./opmnctl startall
    BUT THE ERROR ALSO EXISTING!
    So,waiting for the help,thanks!

    Hi,
    if your using oracle db please make sure your db settings and tnsnames.oRA settings
    also try you please try below troubleshooting steps:
    1) please check latest error message and find the root cause,
    presentation catalog log path:
    obiee installed Drive:\Oracle\Middleware\instances\instance1\diagnostics\logs\OracleBIPresentationServicesComponent\coreapplication_obips1\sawlog0.txt file
    also check it nqserver.log file
    oracle bi server log path ref:
    obiee installed Drive:\Oracle\Middleware\instances\instance1\diagnostics\logs\OracleBIServerComponent\coreapplication_obis1\nqserver.log
    2)can you try to login RPD,EM and console by using your weblogic a/c then try to login with some other user.
    if its not working then try to delete that users from catlog and check it Check OPMN services are running state.
    e.x:
    C:\Oracle\Middleware\instances\instance1\bin>opmnctl startall
    opmnctl startall: starting opmn and all managed processes...
    C:\Oracle\Middleware\instances\instance1\bin>opmnctl status
    Processes in Instance: instance1
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    coreapplication_obiccs1 | OracleBIClusterCo~ | 4992 | Alive
    coreapplication_obisch1 | OracleBIScheduler~ | 2420 | Alive
    coreapplication_obijh1 | OracleBIJavaHostC~ | 1856 | Alive
    coreapplication_obips1 | OracleBIPresentat~ | 5684 | Alive
    coreapplication_obis1 | OracleBIServerCom~ | 5232 | Alive
    3) Refresh GUIDs and Restart WebLogic and OPMN Services then try it again...still if your getting same issues then try to
    check DB(try to login and confirm) and check it RPD --> physical layer connection pool setting and try to
    view physical data.
    also paste it your latest error log message (nqserver.log and sawlog01.log message) here
    THanks
    Deva

  • Administrator cannot change printer properties on "Advanced" tab from "Devices and Printers" on Windows Server 2012 R2

    Hello, dear Colleagues.
    User with administrators rights cannot change printer properties on "Advanced" tab from "Devices and Printers" on Windows Server 2012 R2. 
    If to launch "Devices and Printers" on server, all printer properties on "Advanced" tab are inactive (see screen below). 
    But I can change it manually with "Print Management". Features become active.
    The main purpose - to uncheck "Enable advanced printing features"  with powershell
    scripts.
    $erroractionpreference = "continue"
    $colPrinters = Get-Wmiobject -Class win32_printer -computername print_server -Filter "Name like 'printer1' or Name like 'printer2' or Name like 'printer3' or Name like 'printer4' or Name like 'printer5' or Name like 'printer6'" # get printers on server and filter with names
    ForEach ($objPrinter in $colPrinters) { # get printer details from WMI
    If ($objPrinter.RawOnly -ne "True") { # check that Advanced printing fetaures is turned on
    Write-host $objPrinter.Name
    Write-Host $objPrinter.RawOnly
    $objPrinter.RawOnly = "True" # Untick and update the object in WMI
    $objPrinter.Put()
    It works on Windows 7 workstation, but does not on print server Windows Server 2012 R2 with error
    Exception calling "Put" with "0" argument(s): "Generic failure "
    At \\print_server\c$\DisableAdvancedPrintingFeatures.ps1:8 char:17
    + $objPrinter.Put()
    + ~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException
    Can you help me with that? Look like somethings with rights.
    Thank you.

    Hello, Alan
    Morris.
    Thanks for your reply.
    I've tried to runs PS Script both locally and remotely, previously running Powershell ISE as Administrator.
    I've noticed interesting thing - if to
    check "Enable advanced printing features"
    manually thru Print Management snap-in, script works fine. But, time to time after some manipulations on print server, this advanced feature returns to enabled state automatically by system, I think. In this case PS Script does not work. Next, if to disable
    feature manually again (thru Print Management snap-in),
    and enable manually again, PS Script will work. Very strange situation.
    Thanks.

  • My ipod touch version 4.2.1 is not recognized by Windows 7 after upgrading i tunes to 11.2. I have gone through all the trouble shooting suggestions twice

    My ipod touch version 4.2.1 is not recognized by Windows 7 after upgrading i tunes to 11.2. I have gone through all the trouble shooting suggestions twice

    Did it work with previous ii.x version?
    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar
    Did you do everything here:
    iOS: Device not recognized in iTunes for Windows
    Including
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    New cable and different USB port?
    Runs this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Try on another computer to help determine if computer or iPod problem

  • Unable to change the status of a project to approved

    Dear Members,
    I am using the Oracle Vision Instance version 12.1.3 and Database 11.2.0.3.0
    I have created a project. I am unable to change the status of the project to APPROVED. I am getting the below error:-
    Please enter an active project manager for this project in order to change or update this information._
    Can any one please help me in resolving this issue.
    Many thanks in advance.
    Regards.

    R4S wrote:
    Dear Members,
    I am using the Oracle Vision Instance version 12.1.3 and Database 11.2.0.3.0
    I have created a project. I am unable to change the status of the project to APPROVED. I am getting the below error:-
    Please enter an active project manager for this project in order to change or update this information._
    Can any one please help me in resolving this issue.
    Many thanks in advance.
    Regards.Please see these docs.
    CMRO Partially Implemented Visit Errors with "Please enter an active project manager for this project in order to change or update this information" [ID 864812.1]
    Update_Project Erroring With PA_PR_INSUF_PROJ_MGR While Creating Task For Templates [ID 1085068.1
    Thanks,
    Hussein                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Why won't my itunes  open on my windows vista after upgrading it

    why won't my itunes open up on my windows vista after upgrading it?

    Hello maxandsadiesmom,
    We have a number of steps that are typically very helpful in getting iTunes to stop misbehaving in Windows.
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1717
    Best regards,
    Allen

  • I am unable to sync my iPad after upgrading to latest operating system.  iTunes can't see my iPad when attached to PC.  Anyone else having this problem?

    I am unable to sync my iPad after upgrading to latest operating system.  iTunes can't see my iPad when attached to PC.  Anyone else having this problem?

    Nicholas...
    You may need to restart the Apple Mobile Device.
    Follow the instructions here >  iOS: Device not recognized in iTunes for Windows

  • Has anyone seen a DRASTIC change in speed after upgrading to 5.7?

    Has anyone seen a DRASTIC change in speed after upgrading to 5.7? Just the simple task of copying photos now takes FOREVER. Importing iphoto for just two years of photos (my smallest iphoto library by far) took A WEEK. I did not have access to Lightroom for a week. I thought it was just going to be the iphoto import, but now my regular import is taking almost 1/2 an hour and only 22 photos into the import.

    Oh no! I think I might be experiencing the same problem, oddly with almost exactly the same time to import from iPhoto, just shy of 7 days...
    I also posted this problem to the form and am actually on the phone with Adobe support right now. I have an iPhoto library of ~15,000 photos and I didn't expect it to be very fast, but it's taking an average of at least 40 seconds per photo to import, and it has kept complete focus of LR so I can't even confirm that it isn't importing duplicates. By my calculations it should take over 166 hours to complete the import! Something has to be wrong here. I've been going for over 48 hours and am scared to stop the import if this really is normal performance.
    Are normal import tasks also slow for you now? Can you share any more details? I can't test myself yet since the iPhoto import is still churning, but it could help troubleshooting with support. I'll let you know if they come back with anything, I'm on hold now.

  • I am not able to change the object after upgrade(SPAU Activity).

    HI All,
    I am not able to change the object after upgrade(SPAU Activity). Please any one can tell what is the reason with below details.
    You are not authorized to make changes
    Message no. 37202
    Diagnosis
    You have no authorization for the authorization object 'S_DEVELOP', which would allow you to change the screen concerned.
    There is also a second possibility:
    You want to edit a modified SAP screen in a customer system after an upgrate (SAP transport). The screen remains locked for editing until the new SAP version and the customer version have been aligned (Transaction SPAU).
    System Response
    Authorizations are assigned to users in profiles. Profiles are stored in the user master record.
    Procedure
    Comsult your system administrator.
    Thanks in Advance,
    Mahesh Devershetty

    Hi,
    Does the user who would like to change the screen have the authorisation
    for S_DEVELOP in his profile? Please run transaction /NSU53 after the
    failed authorisation. You will get an information which authorisation
    is missing.
    Additional please check if you have open entries in transaction SPAU for
    that object.
    If you couldn´t solve the issue I need an user to analyse it in your
    development system.
    That user needs all authorisation for development and has to be
    registrated as developer.
    The system uses the authorization object S_DEVELOP for Workbench objects
    can you please check your user master record whether it contains the
    required autorization or not.
    Please also ensure that modification adjustment is turned on as per note:
    197600  Switching the Modification Assistant off and on
    Aidan

  • Why capital letters change in lower after copying them from a PDF document, or otherwise, why some uppercase are in fact lowercase when I look in the Text Property in any PDF Reader.

    Why capital letters change in lower after copying them from a PDF document (Made by InDesign), or otherwise, why some uppercase are in fact lowercase when I look in the Text Property in any PDF Reader.

    your home page to get into your Web site should be index.html (for Mac) or index.htm  (on PC)
    You can name it something other than index, but will be harder to find.  when you create the subjects and link to them, they can can be named anything with the html extension  Or if your using PHP end in .php. There is a Microsoft type asp or aspx but your hosting service has to set up using windows server system.
    My hosting service use a Linux server normally but can convert Windows for a Fee.  UNIX Linux has no concept of asp or aspx.
    See this : https://skitch.com/pjonescet/8mnnx/dreamweaver

  • After upgrade BPC from 7.0 to 7.5 NW we facing issue in Legal consolidation

    Hi
    After upgrade BPC from 7.0 to 7.5 NW we facing issue in Legal consolidation where in case of equity knock off the amount is not get balanced even after we run legal consolidation package in group currency.
    Regards
    Vikash

    Hi sandeep ,
    Hence the problem was not there with previous versions where the .js files were simply not compressed by default.
    Solution :
    I believe switching off javascript compression is a suitable option in this case as the script files are usually cached by the browser as well and will not be transmitted every time.
    Kindly follow these steps:
    1. Enter the J2EE Config tool.
    2. drill down: Global Server Configuration->services->http
    3. on the right hand side, click on NeverCompressed
    4. on the bottom, add at the end: ,*.js
    5. Apply the changes
    6. restart the J2EE.
    After this clear the browser cache and then log onto the portal and check if the issue gets resolve
    I hope it will useful to you.
    Thanks@ Re grads
    G.srinu

  • Facing Parse Errors after upgrading database from 10g to 11g

    Hi,
    We are facing parse errors in the SQL's after upgrading database from 10g to 11g.
    Kindly look into below parse errors.
    ********************************** Parse Error *****************************************************
    Tue Aug 13 14:13:08 2013
    kksSetBindType 16173533-2: parse err=1446 hd=3c73061fb8 flg=100476 cisid=173 sid=173 ciuid=173 uid=173
    PARSE ERROR: ospid=15598, error=1446 for statement:
    SELECT ROWID,ORGANIZATION_CODE,PADDED_CONCATENATED_SEGMENTS,PRIMARY_UOM_CODE,REVISION,SUBINVENTORY_CODE,TOTAL_QOH,NET,RSV,ATP,ORGANIZATION_NAME,ITEM_DESCRIPTION,INVENTORY_ITEM_ID,ORGANIZATION_ID,LOCATOR_ID,LOCATOR_TYPE,ITEM_LOCATOR_CONTROL,ITEM_LOT_CONTROL,ITEM_SERIAL_CONTROL FROM MTL_ONHAND_LOCATOR_V WHERE (INVENTORY_ITEM_ID=:1) and (ORGANIZATION_ID=:2) order by ORGANIZATION_CODE,SUBINVENTORY_CODE,REVISION, organization_code, padded_concatenated_segments
    Tue Aug 13 14:13:10 2013
    kksfbc 16173533: parse err=942 hd=3c387c4028 flg=20 cisid=3266 sid=3266 ciuid=3266 uid=3266
    PARSE ERROR: ospid=29813, error=942 for statement:
    Select feature from toad.toad_restrictions where user_name=USER or user_name in ( select ROLE from sys.session_roles)
    kksfbc 16173533: parse err=942 hd=3c97d83648 flg=20 cisid=3266 sid=3266 ciuid=3266 uid=3266
    PARSE ERROR: ospid=29813, error=942 for statement:
    SELECT password
    FROM SYS.USER$
    WHERE  0=1
    kksfbc 16173533: parse err=6550 hd=35185e4278 flg=20 cisid=3266 sid=3266 ciuid=3266 uid=3266
    ----- PL/SQL Stack -----
    ----- PL/SQL Call Stack -----
      object      line  object
      handle    number  name
    319e277050        30  anonymous block
    319e277050        57  anonymous block
    PARSE ERROR: ospid=29813, error=6550 for statement:
    BEGIN sys.dbms_profiler."146775420110782746251362632012"; END;
    kksfbc 16173533: parse err=942 hd=3c142d8600 flg=20 cisid=3266 sid=3266 ciuid=3266 uid=3266
    ----- PL/SQL Stack -----
    ----- PL/SQL Call Stack -----
      object      line  object
      handle    number  name
    319e277050        67  anonymous block
    PARSE ERROR: ospid=29813, error=942 for statement:
    SELECT 1 FROM plsql_profiler_data WHERE 0 = 1
    Please help.
    Regards
    Suresh

    Hi Suresh,
    Apologies for misunderstanding..
    Tue Aug 13 14:13:08 2013
    kksSetBindType 16173533-2: parse err=1446 hd=3c73061fb8 flg=100476 cisid=173 sid=173 ciuid=173 uid=173
    PARSE ERROR: ospid=15598, error=1446 for statement:
    SELECT ROWID,ORGANIZATION_CODE,PADDED_CONCATENATED_SEGMENTS,PRIMARY_UOM_CODE,REVISION,SUBINVENTORY_CODE,TOTAL_QOH,NET,RSV,ATP,ORGANIZATION_NAME,ITEM_DESCRIPTION,INVENTORY_ITEM_ID,ORGANIZATION_ID,LOCATOR_ID,LOCATOR_TYPE,ITEM_LOCATOR_CONTROL,ITEM_LOT_CONTROL,ITEM_SERIAL_CONTROL FROM MTL_ONHAND_LOCATOR_V WHERE (INVENTORY_ITEM_ID=:1) and (ORGANIZATION_ID=:2) order by ORGANIZATION_CODE,SUBINVENTORY_CODE,REVISION, organization_code, padded_concatenated_segments
    Assuming you see the above error message in the alert log file, which was your original post, follow the below steps:
    1 Get the 'ospid' value from the error
    2. Issue the below command:
    SQL> select request_id,ORACLE_PROCESS_ID
      2 from fnd_concurrent_requests
      3 where request_id = 15598;
    3. After obtaining the request_id
    4, Query it from the front-end using SYSADMIN responsibility
    Hopefully this should get you the respective concurrent report/program.
    Thanks &
    Best Regards,

  • Problems with charts after upgrading APEX from 3.2 to 4.1

    After upgrading apex from 3.2 to 4.1 the combination stacked bar/Stepline charts no longer works. Any help would be appreciated.
    Thanks.

    Hi "904055",
    I believe the reason your chart is no longer working is because you are attempting to generate a chart type that is not covered by our AnyChart Flash charts license i.e. Stepline charts are not one of our support chart types. We only support the chart types exposed via the Application Express UI i.e. the chart types listed in the Create wizards. If you wish to create other AnyChart chart types, you will need to contact AnyChart directly, in order to obtain a separate license and swf file.
    If you believe that your chart is only using chart types covered by our license, but are still experiencing issues, then please place a testcase on apex.oracle.com, post some login credentials, and I'd be happy to take a look.
    Regards,
    Hilary

  • How do I get iphoto to upgrade photo library after upgrading os from snowleopard to yosemite?

    How do I get iphoto to upgrade photo library after upgrading os from snowleopard to yosemite?

    To add to OT's advice:
    You may need to delete your current iPhoto from the Applications folder, if it is a version of iPhoto '11, before the App Store will allow you to download it from the main page.
    To locate iPhoto at the AppStore, open the "Featured" tab and enter "iPhoto" into the search field.

  • What is the role of an abaper in upgradation project from 4.7 to ecc6.0?

    Hi anybody pls forward  any documentation and ppts to understand the upgradation project
    What is the role of an abaper in upgradation project from 4.7 to ecc6.0?
    what we have to check and we have to upgrade give some guidance
    thanks in advance.

    Hi,
    check the below link..
    http://www.thespot4sap.com/upgrade_guide_v2.pdf
    reward if helpfu.
    Regards,
    Nagaraj

Maybe you are looking for

  • Strange error while deploying on Weblogic

    Hello, We have a simple JEE project (JSF, JEE), and we are using the Weblogic deployer (used by jenkins) to deploy a simple ear on WebLogic. The project is running perfectly under Glassfish on a local desktop. But when we try to deploy it on our dev

  • "The Clip/ Video /Audio adjustment menu doesn't open any more. Was it something I did?"

    "The Clip/ Video /Audio adjustment menu doesn't open any more. Was it something I did?"

  • Reference Document required

    Hello, I am looking for a standard Reference document suggested by SAP on "How to create a custom application for e-service CR_B2B (Complaints and Returns)". I already referred How_To_Create_Custom_App_ECO5200.pdf document and created custom applicat

  • No sound output on Solaris 8 and an Ultra 5

    I have recently installed Solaris 8 on a Sun Ultra 5 after a few minor problems, everything seems to be working great. However, I am unable to use any of the system sound notifications under KDE or Gnome. KDE starts the arts sound server just fine wi

  • How do I clean up my computer hard drive?

    When I go to the tab for Find out More about Computer, it claims I have 96G of "Other" and 46G of movies, but I can't find them! What are the steps I need to take to clean house so I can properly use my computer?! I have manually gone through and era