CDR-20043: Non-versioned repository has no workarea or insufficient privileges

After Installing Designer 6i on NT 4.0 service pack 6
and after I created the Repository
Running the Designer produce this error:
CDR-20043: Non-versioned repository has no workarea or insufficient privileges
all privileges from check requirments are Ok!
Please Help..........

Hi,
You may want to try enabling version support in the Repository.
From the RAU, choose Options->Enable Version Support...
Brian

Similar Messages

  • Desinger 10g Issue CDR-20043

    I have installed Oracle Designer 10g with Oracle 10g database on Windows XP, after repository creation when i try to connect designer its giving me a message < CRD-20043 Non-versioned repository has no workarea or insufficient privileges > . 2nd when i go to Repository object navigator to Invoke Workarea its disable.
    Please help me in this regard.
    Regards
    SS

    Sounds like an improperly installed reposity
    Try these instructions. This is set to my pc so youwill have to adjust to yours.
    After you install the IDS 10G in a new oracle home on the Client windows PC you will find the intall manual under:
    start - programs- Oracle Developer Suite - Designer documentation - Repository instalation Guide
    The following are the step I use to build a new repository
    You will need to set paths and names as you desire for your local PCs and repostiory.
    -- Step 1
    Log on as SYS
    This is so you can get the path name of your datafiles:
    select file_name, tablespace_name from dba_data_files;
    -- D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\TEMP_65.DBF
    create tablespace constant_grow_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\constant_grow_indexes_01.dbf'
    size 4000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace constant_grow_TABLES
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\constant_grow_tables_01.dbf'
    size 15000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace dependency_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\dependency_indexes_01.dbf'
    size 5600k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace dependency_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\dependency_tables_01.dbf'
    size 9000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace diagram_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\diagram_indexes_01.dbf'
    size 1000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace diagram_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\diagram_tables_01.dbf'
    size 2000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace lob_data
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\lob_data_01.dbf'
    size 1200k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace rapid_grow_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\rapid_grow_indexes_01.dbf'
    size 250000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace rapid_grow_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\rapid_grow_tables_01.dbf'
    size 500000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace system_meta_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system_meta_indexes_01.dbf'
    size 20000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace system_meta_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system_meta_tables_01.dbf'
    size 30000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace temporary_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\temporary_indexes_01.dbf'
    size 5000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace temporary_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\temporary_tables_01.dbf'
    size 9000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace version_indexes
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\version_indexes_01.dbf'
    size 9000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    create tablespace version_tables
    datafile 'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\version_tables_01.dbf'
    size 12000k
    default storage (initial 100k next 100k minextents 1 maxextents UNLIMITED pctincrease 0);
    -- Step 2
    Make sure you ave plenty of space in your system tablespace
    select tablespace_name, sum(bytes)/1024/1024 from dba_free_space
    group by tablespace_name;
    alter tablespace system add datafile
    'D:\ORACLE2\PRODUCT\10.2.0\ORADATA\ORCL1022\system03.dbf' size 140m;
    -- Step 3
    As SYS
    create user owner identified by owner default tablespace users
    temporary tablespace temp;
    Run this file as SYS
    @ D:\Designer_Home\IDS10_1_2\repadm61\UTL\CKROROLE.SQL
    GRANT EXECUTE ON DBMS_LOCK TO owner;
    GRANT EXECUTE ON DBMS_PIPE TO owner;
    GRANT CREATE TABLE TO owner;
    GRANT CREATE VIEW TO owner;
    GRANT CREATE PROCEDURE TO owner;
    GRANT CREATE SYNONYM TO owner;
    GRANT CREATE SEQUENCE TO owner;
    GRANT SELECT ON v_$nls_parameters TO owner WITH GRANT OPTION;
    GRANT SELECT on sys.V_$PARAMETER TO owner;
    GRANT SELECT ON dba_rollback_segs TO owner;
    GRANT SELECT ON dba_segments TO owner;
    GRANT CREATE ANY SYNONYM TO owner;
    GRANT DROP ANY SYNONYM TO owner;
    GRANT CREATE PUBLIC SYNONYM TO owner;
    GRANT DROP PUBLIC SYNONYM TO owner;
    GRANT ck_oracle_repos_owner to owner;
    GRANT CONNECT, RESOURCE TO owner;
    GRANT dba TO owner;
    (If you want Row Level Security (RLS) on)
    GRANT execute on dbms_rls to owner;
    -- Step 4 Adding a user
    create user user65 identified by user65 default tablespace users
    temporary tablespace temp;
    GRANT CONNECT, RESOURCE TO user65;
    GRANT CKR_OWNER TO USER65;
    GRANT CREATE TABLE TO user65;
    GRANT CREATE VIEW TO user65;
    GRANT CREATE PROCEDURE TO user65;
    GRANT CREATE SYNONYM TO user65;
    GRANT CREATE SEQUENCE TO user65;
    GRANT SELECT ON dba_rollback_segs TO user65;
    GRANT SELECT ON dba_segments TO user65;
    GRANT CKR_OWNER TO USER65;
    GRANT EXECUTE ON SDD_ACC_PRIV_LIST TO USER65;
    GRANT EXECUTE ON SDD_SYS_PRIV_LIST TO USER65;
    GRANT SELECT ON SDD_DEPENDENCY_TYPES TO USER65;
    GRANT SELECT ON I$RM_ELEMENT_TYPES TO USER65;
    GRANT SELECT ON SDD_GLOBAL_NAMES TO USER65;
    GRANT EXECUTE ON JR_UTIL TO USER65;
    GRANT EXECUTE ON JR_SYSTEM_UTIL TO USER65;
    GRANT EXECUTE ON CKMIGFUN TO USER65;
    -- Step 5
    The following are the recommended minimum settings.
    optimizer_mode = Choose
    compatible = 9.0.0 # for an Oracle9i database
    compatible = 8.1.7 # for an Oracle8i database
    max_enabled_roles = 30
    sort_area_size = 262144
    sort_area_retained_size = 65536
    hash_area_size = 1048576
    optimizer_index_caching = 50
    optimizer_index_cost_adj = 25
    shared_pool_size = 32000000
    db_block_buffers # comment out on an Oracle9i database
    db_block_buffers = 2000 # on an Oracle8i database
    open_cursors = 3000
    processes = 100
    db_file_multiblock_read_count=16 # for a 4K Oracle block size
    db_file_multiblock_read_count=32 # for a 2K Oracle block size
    db_file_multiblock_read_count=8 # for a 8K Oracle block size
    Step 5b - (Oracle 9i or 10.2 DB) Install Oracle 9i or 10.2 Import and Export Utilities
    Before installing Designer Repository on an Oracle 9i or 10.2 database, you need to set up the installation workstation to use the Oracle 9i or 10.2 import and export utilities. To do so, perform the following steps at the workstation from which you will be running the repository installation:
    From the Oracle 9i or 10.2 installation media, install the Oracle 9i or 10.2 import and export utilities in a dedicated Oracle home.
    In the Windows Registry, locate the key named:
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_HomeName\REPOS61
    where HOMEn is the home number of the home installed into for a multiple Oracle home environment, but is not present where the default Oracle home is being used.
    Change the value of the EXECUTE_IMPORT and EXECUTE_EXPORT variables to point to the new Oracle home. Thus, if the new Oracle home is d:\des_9i, the settings would be:
    d:\des_9i\bin\exp.exe
    d:\des_9i\bin\imp.exe
    -- Step 6
    Log on to the Repository Admin Utility of Designer
    start - programs- Oracle Developer Suite - Designer - Repository Admin Utility
    Install Repository button
    Make sure both check boxes are checked(one is grayed out) Next
    Select the proper tablespace for the seletced box
    Start the install.

  • CDR-02508: REPOSITORY_OWNER has insufficient privileges to Manage Workarea.

    In the Repository Object Navigator (Designer 6i), we are trying to rename the default workarea 'Global Shared Workarea'.
    The following error occurs:
    CDR-02508: REPOSITORY_OWNER has insufficient privileges to Manage Workarea.
    REPOSITORY_OWNER is the oracle user that owns the repository.

    Hi Ashvini,
    Yes, you should be able to rename the Global Shared
    Workarea. Are you using a versioned or non versioned
    repository?
    I could not find any bugs for your problem, but found
    some cases where you will receive the same error, e.g.
    when trying to export workareas.
    The fix is to ensure that the repository owner user has
    the 'Workarea' box in the section 'Allow Management Of.'
    selected. To find this:
    1. Connect as Repos owner to the Repos Admin Utility
    2. Click on the Maintain Users button
    3. Select the Repos owner user, then click the Properties
    button.
    4. Check that the 'Workarea' box in the section 'Allow Management Of...' is selected.
    Hope this helps. Regards,
    Dominic
    Designer Product Management
    Oracle Corp

  • Versioned repository

    Hi All,
    We had a non-versioned Designer9i repository with Headstart added on. We subsequently moved to a versioned Designer 9i and migrated applications in the non-versioned repository to the new versioned one.
    The question is what about Headstart? What do we have to do in the versioned Designer 9i to ensure Headstart required objects are accessible and correctly configured/installed to work with our versioned world.
    Regards,
    jb

    See my examples below for the checkin and checkout
    -- checkout, just for the change
    l_mod_ivid := jr_version.check_out( i_irid => l_mod_irid
    ,i_ivid => l_mod_ivid
    ,i_lock => true);
    -- checkout, after cdapi.close_activity
    l_mod_ivid := jr_version.check_in ( i_irid => l_mod_irid
    ,i_ivid => l_mod_ivid
    ,i_lock => true
    ,i_notes=> 'my notes'
    ,i_vlabel =>'3.0');

  • Import repository from Designer concerning non-versioned applications (EA2)

    Hello
    I've downloaded last version of Data Modeler -> v3.0 EA2 because correcting bug about import from designer for non-versioned applications.
    I tried to import from my Designer connection but I can see only versionned applications ! I would like to see all the applications (like in Data Modeler v2). Version 3 EA2 is supposed to correct the problem ?!
    The exact version is V3.0.0.653 ! Is that right ????
    Thanks to all!

    Hello,
    On our designer we have ; one workarea and 22 Applications system and several sub-application system. Only a couple on these applications systems are versionned.
    I would like to import the 20 applications and sub-applications in Data Modeler but even if I have the Data modeler EA2 I cannot see them ! I was talking about the Data modeler version lattest version (EA2). Is it the V3.0.0.653 ?
    thanks regards,
    Rocco

  • I just updated my pages and now it won't load. This is on my iPad. The first version which has the latest version it can have 5.1 or something like that. I am trying to open a document and am worried that if I uninstall and reinstall I will lose all my do

    I just updated my pages and now it won't load. This is on my iPad. The first version which has the latest version it can have 5.1 or something like that. I am trying to open a document and am worried that if I uninstall and reinstall I will lose all my documents

    I just uninstalled it and am waiting for it to reinstall. I sincerely hope that I have not lost everything that I worked on so hard. Now that mobile me is gone, I have not been able to go between devices to transfer things. I was merely trying to take a document I had worked on and open it in pages, but it said my version was too old. When I updated, it wouldn't load. Now I cannot do anything. I hope that the reinstall fixes it without losing everything. Please advise!!! Yes, I am in panic mode.

  • How do I tell what version (update / release level) of version 6 has been applied to my system?

    Question
    How do I tell what version (update / release level) of version 6 has been applied to my system? I have applied several different release levels to version 6 of FF but all the about feature tells me is Version 6.0. no version! This seems to be a change in the way updates are handled. Is that a bending because of the speed of which you're pushing out updates and new releases?
    contact me if you need something more
    ''deleted email address''

    @cchur <br />
    Nope, I never used Chrome, but I did try Chromium on my Windows desktop PC for a few months last year. I got tired of the Google updater. exe running all the time and Google's method of doing updates, so it's gone. I do have Chromium on my Linux EeePC since last summer, but Ubuntu handles all updates and gives the user the capability to accept or deny, any or all updates - much more to my liking, similar to the way Mozilla does it. I don't like software developers forcing to update until I am ready to proceed.
    There's a lot more about this new Fast Release system, than just the lack of visible version numbers, that I don't like. The Nightly, Aurora, Beta, & Release sequence is dumb with the way it changes the version numbers. I prefer installing (for instance) what will become version 7 and have that installation progress thru the 4 stages, instead. Now it's like Nightly going from 7 to 8, Aurora going from 6 to 7, and Beta doing - hell, I won't know if it becomes a Release or if it just dies and I will have to install the Release version myself. ''Quite honestly I don't care, because I don't think this new "system" is going to last too long without major modifications. Too damn many users are so pissed off, that when Firefox starts losing large numbers of users, Chrome keeps growing and eventually passes Firefox in number of users and market share of usage - Mozilla will wake up and see the "light" and change back to the way things used to be done, to a certain extent.''
    I also dislike the UI changes in 4/5/6/7 enough that I am still using Firefox 3.6 for almost everything and Firefox 2.0.0.20 for the rest. I have been setting my toolbars up almost like Mozilla did for Firefox 4, since Firefox '''0.7''' in 2003 and I haven't come up with a workable combination of mods and extensions to configure Firefox to look and work the way I have been doing for almost 8 years now.

  • McAfee SiteAdvisor is no longer working with my Safari 8.0.  I never had trouble using it with Safari before this latest version.  Has anyone else had this problem?

    McAfee SiteAdvisor is no longer working with my Safari 8.0.  I never had trouble using it with Safari before this latest version.  Has anyone else had this problem?  I contacted McAfee support and they said nobody else is reporting this issue.

    Wow, life is certainly tough for you.
    S***t happens.  That's why there's a warranty.

  • How can I find out the java version Oracle has ?

    How can I find out the java version Oracle has built in?
    I've tried with ..
    SELECT comp_id, comp_name, version
    FROM dba_registry ;
    But I get.."table doesn't not exist".
    Thenks in advance!

    Pl post details of OS and database versions. Pl see this MOS Doc
    What Version of Java is Compatible With The Database JVM? [ID 438294.1]     
    and these Oracle docs
    11gR2 - http://docs.oracle.com/cd/E11882_01/appdev.112/e25518/adfns_environments.htm#ADFNS654
    11gR1 - http://docs.oracle.com/cd/B28359_01/java.111/b31225/whatsnew.htm
    HTH
    Srini

  • Search Example Code inside for Versioned and non-Versioned Documents

    These may be of use to someone...
    File names:
    AttributeSearch.java
    AttributeContentSearch.java
    The AttributeSearch application will search for documents (both versioned and non-versioned) with a file name containing "txt", residing in the user "system"'s home directory.
    The AttributeContentSearch application will search for documents (both versioned and non-versioned) with a file name containing "txt", and document content containing the word "hello", residing in the user "system"'s home directory.

    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.common.CleartextCredential;
    import oracle.ifs.common.ConnectOptions;
    import oracle.ifs.common.IfsException;
    import java.util.Locale;
    import oracle.ifs.beans.DirectoryUser;
    import oracle.ifs.beans.PrimaryUserProfile;
    import oracle.ifs.beans.PublicObject;
    import oracle.ifs.beans.Document;
    import oracle.ifs.beans.Folder;
    import oracle.ifs.beans.ContentObject;
    import oracle.ifs.beans.Search;
    // SEARCH RESULT
    import oracle.ifs.beans.SearchResultObject;
    // CONTENT + ATTRIBUTE SEARCH
    import oracle.ifs.search.ContextSearchSpecification;
    // SELECT, FROM
    import oracle.ifs.search.SearchClassSpecification;
    // ORDER BY
    import oracle.ifs.search.SearchSortSpecification;
    // WHERE
    import oracle.ifs.search.SearchClause;
    import oracle.ifs.search.SearchQualification;
    import oracle.ifs.search.JoinQualification;
    import oracle.ifs.search.FolderRestrictQualification;
    import oracle.ifs.search.AttributeQualification;
    import oracle.ifs.search.ContextQualification;
    public class AttributeContentSearch
    public static void main(String args[])
    try {
    LibraryService ifsService = new LibraryService();
    System.out.println("Oracle iFS Version " + ifsService.getVersionString());
    CleartextCredential credentials = new CleartextCredential("system","manager");
    ConnectOptions options = new ConnectOptions();
    options.setLocale(Locale.getDefault());
    options.setServiceName("ServerManager");
    options.setServicePassword("ifssys");
    LibrarySession ifsSession = ifsService.connect(credentials,options);
    DirectoryUser thisUser = ifsSession.getUser();
    System.out.println("Connected as \"" + thisUser.getDistinguishedName() + (thisUser.isAdminEnabled() ? "\" (admin enabled)" : "\""));
    PrimaryUserProfile userProfile = thisUser.getPrimaryUserProfile();
    SearchResultObject[] sro = runSearch (ifsSession,"hello");
    if (sro != null)
    for (int i = 0; i < sro.length; i++)
    System.out.print (((PublicObject)sro.getLibraryObject()).getName());
    System.out.println (" (" + ((PublicObject)sro[i].getLibraryObject()).getId() + ")");
    } catch (IfsException e)
    public static SearchResultObject [] runSearch( LibrarySession ifsSession, String searchCriteria) throws IfsException
    ContextSearchSpecification ss = null;
    SearchClassSpecification scs = new SearchClassSpecification();
    SearchSortSpecification sss = new SearchSortSpecification();
    SearchQualification sc = null;
    ss = new ContextSearchSpecification();
    ss.setContextClassname(ContentObject.CLASS_NAME);
    scs.addSearchClass( PublicObject.CLASS_NAME );
    scs.addSearchClass( Document.CLASS_NAME );
    scs.addSearchClass( ContentObject.CLASS_NAME );
    scs.addResultClass( Document.CLASS_NAME );
    sss.add( Document.CLASS_NAME, "NAME", true );
    sc = buildSearchClause( ifsSession, searchCriteria);
    ss.setSearchClassSpecification( scs );
    ss.setSearchQualification( sc );
    ss.setSearchSortSpecification( sss );
    Search s = new Search( ifsSession, ss );
    s.open();
    SearchResultObject [] sro = s.getItems();
    s.close();
    return sro;
    public static SearchQualification buildSearchClause( LibrarySession ifsSession, String searchCriteria ) throws IfsException
    Folder f = ifsSession.getUser().getPrimaryUserProfile().getHomeFolder();
    FolderRestrictQualification frq = new FolderRestrictQualification();
    frq.setStartFolder( f );
    frq.setSearchClassname(PublicObject.CLASS_NAME);
    AttributeQualification aq = new AttributeQualification();
    aq.setAttribute(Document.CLASS_NAME, PublicObject.NAME_ATTRIBUTE);
    aq.setOperatorType(AttributeQualification.LIKE);
    aq.setValue("%txt%");
    ContextQualification cq = new ContextQualification();
    cq.setQuery(searchCriteria);
    cq.setName("Test0");
    JoinQualification jq1 = new JoinQualification();
    jq1.setLeftAttribute ( Document.CLASS_NAME, Document.CONTENTOBJECT_ATTRIBUTE );
    jq1.setRightAttribute( ContentObject.CLASS_NAME, null);
    JoinQualification jq = new JoinQualificatio n();
    jq.setLeftAttribute ( PublicObject.CLASS_NAME, PublicObject.RESOLVEDPUBLICOBJECT_ATTRIBUTE );
    jq.setRightAttribute( Document.CLASS_NAME, null);
    SearchClause sc;
    sc = new SearchClause(jq, jq1, SearchClause.AND);
    sc = new SearchClause(sc, cq, SearchClause.AND);
    sc = new SearchClause(sc, frq, SearchClause.AND);
    sc = new SearchClause(sc, aq, SearchClause.AND);
    return sc;
    null

  • Server Error Either the Macromedia application server(s) are unreachable or none of them has a mappi

    Server Error Either the Macromedia application server(s) are unreachable or none of them has a mapping to process this request.I got this error.I installed coldfusion 8 on windows 7 64 bit.What should I do?Can't I use coldfusion?Is there any suggestion???

    Yes I google before and I tried to do all advice.But there is nothing change.Can you explain or send a link for solving this?

  • Is versioned repository part of Oracle ATG Web Com 10 Impl cert topic?

    All, Does anyone know if the 'versioned repository' is part of the "Oracle ATG Web Commerce 10 Implementation Developer Essentials" topics ? Oracle University website says that its is part of the certification (http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_org_id=13&lang=HR&p_exam_id=1Z0_510) however the Partner website doesn't talk about the 'versioned repository' repository. (http://www.oracle.com/partners/en/knowledge-zone/applications/atg-web-commerce-implement-exam-1529925.html)
    Thanks,
    Sanju

    +1 with Gurvinder. It is mentioned in Oracle ATG Web Commerce 10 Implementation Developer Essentials - Exam Study Guide
    http://www.oracle.com/partners/en/knowledge-zone/applications/atg-impl-dev-st-guide-1532521.pdf
    Check out Topic 11: Advanced Repository Concepts. The second sample question mentioned there is itself from versioned repository.

  • Business Rule Repository has not been configured?

    Hi,
    In EAS trying to open Business Rules, I get "Repository has not been configured or you are not authorized to use Business Rules" (I get this with the admin creds)
    In details, "Error loading objects from Data Source", "SQLSyntaxExceptionError: ORA-00942 table or view does not exist"
    This is relatively new Production install running v. 11.1.2.1
    I ran into this after my LCM migration of a Planning app failed, unable to create business rules.
    IT folks tell me "the database looks fine" when I asked them about the ORA-00942 table.
    Can anyone help point me to a configuration step that might have been missed?
    Everything works in development environment, so if there's something to compare between the two, I'd appreciate any help.
    Thanks,

    Its necessary to do the following
    SE80 -> BSP Application -> Tunguska -> Pages with Flow Logic -> start_sts.htm   or  start_sts2.htm-> Right click & display in same window -> Properties tab -> Transfer Options -> HTTPS should be UNCHECKED.

  • Hi, I was working on a PDF writing comments using Adobe Reader on a Mac.  I clicked save and got a 'cannot save' message.  I then clicked save as instead, Reader froze and my PDF disappeared.  The only version saved has only my first comment.  Does Adobe

    Hi, I was working on a PDF writing comments using Adobe Reader on a Mac.  I clicked save and got a 'cannot save' message.  I then clicked save as instead, Reader froze and my PDF disappeared.  The only version saved has only my first comment.  Does Adobe Reader save to temporary files that I can access in order to recover my work?  Is there any other way to recover it?  Thanks!

    Hi @Pat Willener,
    since I got the same problem as pdfprincess I hope you can help me. The 'Automatically save document changes to temporary file...' is enabled in my adobe reader.
    A file I worked (commented) on a lot crashed. When I reopened the file, adobe reader didn't ask if I want to restore my changes in this file, as it is written on the help.adobe.com page. Is there any possibility to restore the changes manually from the temporary file?
    Thanks in advance - it is really important for me to restore these changes!!

  • After doing some editing in Lightroom I want to continue the edit in CS 5 but Lightroom is not exporting the edited version, this has not happened before, what am I doing wrong please? anybody

    After doing some editing in Lightroom I want to continue the edit in CS 5 but Lightroom is not exporting the edited version, this has not happened before, what am I doing wrong please? anybody

    You should be getting an error message that PS CS5 requires a higher version of ACR with two options "render using Lightroom" or "open anyway". You should choose the first option. If you are not seeing the error message then go to your Lightroom prefrences >General Tab> under Prompts> select "Reset all warning dialogs", then try the edit in function again. 

Maybe you are looking for