Project check in is required Not Working

For all stages in my workflow the "<label for="ctl00_ctl00_PlaceHolderMain_PWA_PlaceHolderMain_idFormCheckinReqd_ctl02_CheckinRequired">Project check in is required</label>" check box is checked, but when users submit their
project in PWA the Workflow kicks off approvals associated with the next stage even though the project is not checked in.  What is this check box supposed to be doing?

I am having same issue, I have tried uninstalling and installing at about five times but still same result, what's going on with ISO6?

Similar Messages

  • Check Function Module is not working

    Hi All Expert,
    I'm new in workflow and  develop custom workflow for Transaction FB65 ( Vendor Credit Memo) and using business object FIPP , event CREATED.
    Actually  requirement is that when user  click on park button in FB65 then should  be trigger workflow only for particular vendor code .
    Now my workflow is working fine for all vendor code.
    For particular vendor code, I have created an new entries in  SWE2 and assigning a check function module to that
    Refer Link :         http://www.****************/Tutorials/Workflow/checkfunctionmodule/demo.htm
    and also same entries create in SWETYPV But Check Function Module is not working before workflow trigger.
    Appreciate your help and support.
    Regards
    Saurabh

    Hi
    : Check FM  : ZWF_DR_CR_MEMO 
    SourceCode :
    FUNCTION ZWF_DR_CR_MEMO.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(OBJTYPE) LIKE  SWETYPECOU-OBJTYPE
    *"     VALUE(OBJKEY) LIKE  SWEINSTCOU-OBJKEY
    *"     VALUE(EVENT) LIKE  SWETYPECOU-EVENT
    *"     VALUE(RECTYPE) LIKE  SWETYPECOU-RECTYPE
    *"  EXPORTING
    *"     REFERENCE(RESULT) TYPE  C
    *"  TABLES
    *"      EVENT_CONTAINER STRUCTURE  SWCONT
    *"  EXCEPTIONS
    *"      NOT_TRIGGERED
    BREAK-POINT.
    TABLES : VBSEGK.
      DATA : LV_VEND TYPE VBSEG-LIFNR.
      CLEAR : LV_VEND.
      SELECT SINGLE  LIFNR FROM  VBSEGK INTO LV_VEND WHERE BELNR EQ OBJKEY.
        if sy-subrc eq 0
          IF LV_VEND = '0000120510'.
            RAISE NOT_TRIGGERED.
          ENDIF
      endif.
    ENDFUNCTION.

  • How do I remove music from my iphone 5?  Un-checking and syncing does not work.

    How do I remove music from my iphone 5?  Un-checking and syncing does not work.

    Hello mail4bru,
    I read your post, and it sounds as though you'd like to learn more about iTunes syncing. I have linked to an article that will instruct you on that:
    iTunes 11 for Mac: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/ph12113
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • Merged WebHelp Pro projects in RH8 - CSH options not working

    Hi -
    We are trying to upgrade from RH7 to RH8. Currently, we have several context-sensitive WebHelp Pro projects that are merged on the RH7 Pro server. To accomplish this, we simply select the "merge projects" check box in the Admin tool. (Nothing is done in the RoboHelp client w/respect to merging as must be performed with non-Pro projects.)
    The master project is master by virtue of being listed first in the Web Administrator. The order of the remaining projects defines their order in the merged Help TOC. The master project specifies two named custom windows and a custom skin. In the WebHelp Pro options for the child projects, we set Skin = Default and Default Window = None.
    The Help implementation is context-sensitive using map IDs. Some have the older context strings, defined in their respective projects' .ppf file. All works as expected in RH7. When a map ID is called from one of our applications, the individual Help topic inherits the master project's custom window and skin. The topic with the specified map ID or context string appears in the right-hand pane of the custom frameset. The TOC lists the topics of all merged projects. We used the RoboHelp-supplied RoboHelp_CSH.js in the design of the Help system. The call looks like this:
    <a
    href="javascript:RH_ShowHelp(0,'http://<ServerURL>/roboapi.asp>MyHelpWindow',HH_HELP_CONTEXT,'5108')">Help</a>
    We don't specify a project name and the server is happy (still resolves the map ID). For RH8, we have set things up identically on the server. However, the 'child' projects are not inheriting the 'look' (window/skin) defined in the master project. Either that, or the map IDs are not resolving. We also have a single-pane window defined in the master project for Help pop-ups, which now insists on appearing with the other custom window's frameset (button bar, TOC, and topic pane). We have changed nothing, other than importing the RH7 projects into the RH8 client. The server's "merge" check box is selected. The call to Help for RH8 needed to change and so far looks like this:
    <a href=http://<serverURL>/<context>/server?area=Area_51&ctxid=5108&wnd=MyHelpWindow>Help</a>
    Note that we haven't tackled using the Robohelp_CSH.js file that is packaged with RH8 yet. First things first, i.e. make sure server is running correctly and we have devined the new parameter syntax correctly. The question is, what needs to change for our Help application to work in RH8? The link specified above displays the correct HTML frameset, but the topic pane is empty/blank. If we leave out wnd=MyHelpWindow, we get the correct topic, but it apears in the user's default browser window, with no TOC. Also, if we target the single-pane window I mentioned above, it appears in the expected size and location defined in the master project, but it is multi-paned (again, with a blank topic pane).
    Here is one observation. We did find that in the RH7 Web Admin, selecting the master project and clicking View Project shows the master's default topic in the custom frameset. Doing the same for some child projects, they display their default topic in a plain window (no frameset). In RH8, many child projects would display the default RoboHelp frameset and a 404 error in the topic pane. By carefully investigating the child projects' NewWindow settings, we've found that RH8 is particularly sensitive if those settings are anything other than having 'One Pane' and 'Use Default Browser Settings' selected.
    Does anyone know why this is still not working? Any help appreciated.

    Hi RoboHobo,
    Unfortunately my previous post got a little messed up. I wanted to point you to link http://forums.adobe.com/message/2220336#2220336 , but somehow the url for that hyperlink was set incorrectly and it pointed to another post of mine.
    Anyways I hope this one gets posted properly. The workaround I was talking about is this(just a copy paste from my other post) :
    The page that you get has javascript code to open a popup window to launch page containing context sensitive help. If you view source of the page you get for CSH link, you will find it has javascript code like :
    <script language="JavaScript" src="/robohelp/robo//server/resource/window.js"></script>
    <script language="JavaScript">
    //function Main()
            var cWnd = new CWindow();
            cWnd.m_bUseProp = 1;
            cWnd.m_strFrameName = 'DHW_TestCSH|RHS_CSH';
            cWnd.m_strURL  = '/robohelp/server?%26mgr%3Dagm%26agt%3Dwsm%26wnd%3DTestCSH%7CRHS_CSH%26tpc%3D%2 Frobohelp%2Frobo%2Fserver%2Fgeneral%2Fprojects%2FTestCSH%2FTopic1.htm%26ctxid%3D 2%26project%3DTestCSH';
            SetRect( cWnd, 5, 5, 90, 90, 0, 0, 0, 0 );
            SetProperty( cWnd, 1, 1, 0, 1, 1, 1, 1 );
            Execute( cWnd );
    </script>
    May be you have popup blocker enabled in your browser and that’s why popup window containing the help doesn’t open up.
    The reason its launched in a separate browser window is so that CSH window properties specified in help layout can be applied on the new window.
    If you have to do away with the popup window and want the page to open directly by entering the URL, then there is a workaround, but in that case your CSH window won’t have the properties specified in Webhelp Pro window used while publishing Webhelp Pro to RoboHelp Server 8.
    The workaround is as follows:
    1) Backup <RHS8_Install>/WEB-INF/SysWebPrjLst/wnd_ie_iframe.asp and <RHS8_Install>/WEB-INF/SysWebPrjLst/wnd_ns_window.asp
    2) Stop Tomcat service
    3) Edit <RHS8_Install>/WEB-INF/SysWebPrjLst/wnd_ie_iframe.asp and <RHS8_Install>/WEB-INF/SysWebPrjLst/wnd_ns_window.asp and copy following text in these files:
    <html>
    <head>
    <meta http-equiv="Refresh" content="0; url=<%=strWorkspaceURL%>">
    </head>
    <body>
    <font face="Verdana, Arial, Helvetica" size="2">The help page you are looking for can be found at <a href="<%=strWorkspaceURL%>">here</a>.</font>
    </body>
    </html>
    4) Delete all files in <RHS8_Install>/robo/server/resource
    5) Start tomcat service again
    Now the CSH url should take you directly to the help page you are looking for.
    Regards
    Tulika.

  • I want to have all my tabs return after closing. In Tools/Options/General/ I have' Show my Windows and Tabs from last time' checked, but it does not work. When I open FF again none of my formerly open Tabs show... FF v.4.

    When I open FF up again after I have closed it, I want all tabs to return. In Tools/Options/General/ I have' Show my Windows and Tabs from last time' checked-does not work. In addition, the feedback window fails to 'Submit...!'

    Some things to check:
    #'''Browsing history must be saved'''
    #*Firefox button: Firefox button > Options > Options > Privacy > [X] Remember my browsing history
    #*Menu Bar: Tools > Options > Privacy > [X] Remember my browsing history
    #'''Also make sure you do not clear "Browsing History" when using Clear Recent History or when closing Firefox'''
    #*Using Clear Recent History
    #**Firefox button: Firefox button > History >Clear Recent History
    #**Menu Bar: Tools > Clear Recent History
    #*When closing Firefox
    #**Firefox button: Firefox button > Options > Options > Privacy (checked) > Settings
    #**Menu Bar: Tools > Options > Privacy (checked) > Settings
    #**See: https://support.mozilla.com/en-US/kb/Clear%20Recent%20History
    #'''Make sure you are not in Private Browsing mode''' or '''in permanent Private Browsing mode''':
    #*See: https://support.mozilla.com/en-US/kb/Private%20Browsing
    #'''If you have the'''Tab Mix Plus'''extension''', then disable the built-in session restore.

  • Programatical checking of checkbox is not working in Jdeveloper 11.1.1.3.0

    Hi,
    I've a table whose first column is a checkbox bound to a ViewObject attribute(SelectFlag).
    I've another checkbox placed on column header for Select-All feature.
    The functionality is that when we check Select-All checkbox, it should check checkboxes for all the rows(first column) and when we uncheck Select-All checkbox, it should uncheck checkboxes for all the rows.
    I've the partial trigger on table for the Select-All checkbox.
    Here is the ValueChangeListener code for Select-All checkbox:
    public void checkAll(ValueChangeEvent valueChangeEvent) {
    Boolean isSelected = ((Boolean)valueChangeEvent.getNewValue()).booleanValue();
    System.out.println("New Check Value:"+isSelected);
    ViewObject vo = getIteratorBoundVO("KrcCapabilitiesVO1Iterator");
    vo.clearCache();
    vo.reset();
    vo.setWhereClause("KrcCapabilitiesEO.ACTIVITY_ID = 446");
    vo.executeQuery();
    while(vo.hasNext())
    Row row = vo.next();
    if(isSelected){
    row.setAttribute("SelectFlag",true);
    System.out.println("Checked Value for CapabilityId :: " + row.getAttribute("CapabilityId"));
    else{
    row.setAttribute("SelectFlag",false);
    System.out.println("Unchecked Value for CapabilityId :: " + row.getAttribute("CapabilityId"));
    This code is not working in latest Jdeveloper version 11.1.1.3.0 which uses WebLogic Server Version: 10.3.3.0
    It's working fine in Jdeveloper version 11.1.1.1.0 which uses WebLogic Server Version: 10.3.1.0
    Is this a bug? Can anyone help me on this please.
    Thanks,
    Bhaskar

    Hi Frank,
    Thanks for your response.
    You are right, the selection state is not shown in the table.
    I'm taking the ViewObject from Iterator Binding.
    Here is the entire code:
    public static Object evaluateEL(String el){
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ELContext elContext = facesContext.getELContext();
    ExpressionFactory expressionFactory = facesContext.getApplication().getExpressionFactory();
    ValueExpression exp = expressionFactory.createValueExpression(elContext,el,Object.class);
    return exp.getValue(elContext);
    public static ViewObject getIteratorBoundVO(String voIterator)
    DCBindingContainer dcb = (DCBindingContainer)evaluateEL("#{bindings}");
    DCIteratorBinding dciter = dcb.findIteratorBinding(voIterator);
    dciter.invalidateCache();
    ViewObject vo = dciter.getViewObject();
    return vo;
    public void checkAll(ValueChangeEvent valueChangeEvent) {
    Boolean isSelected = ((Boolean)valueChangeEvent.getNewValue()).booleanValue();
    System.out.println("New Check Value:"+isSelected);
    ViewObject vo = getIteratorBoundVO("KrcCapabilitiesVO1Iterator");
    vo.clearCache();
    vo.reset();
    vo.setWhereClause("KrcCapabilitiesEO.ACTIVITY_ID = 446");
    vo.executeQuery();
    while(vo.hasNext())
    Row row = vo.next();
    if(isSelected){
    row.setAttribute("SelectFlag",true);
    System.out.println("Checked Value for CapabilityId :: " + row.getAttribute("CapabilityId"));
    else{
    row.setAttribute("SelectFlag",false);
    System.out.println("Unchecked Value for CapabilityId :: " + row.getAttribute("CapabilityId"));
    Thanks,
    Bhaskar

  • Photoshop CC opens Application Manager, says "Sign in Required", not working. Help?

    Photoshop CC today opens Adobe Application Manager, says "Sign in Required", but with correct info gives error message. Also, CC desktop not working. I haven't had any problem in the previous two months. I also was just build two weeks ago, and had to update my billing information. I tried online chat, after 30 minutes of typing, I've been disconnected twice. The funny thing is, Photoshop CC does open, and it works fine. However this message is irritating concerning. I'm on a Mac running the latest operating system and hardware.

    Please Update CC App from following link:
    http://www.adobe.com/appsmanager/index.html and then try signing in.
    Do let us know if it works for you.
    Regards
    Pragya

  • Sync only checked song and videos - not working

    On my iTouch, the only way I can get music on it is manually or through a playlist. The "Sync only checked song and videos" will not work. Am I doing something wrong?

    Under the 'Music' tab (when you connect the iPT, and under the 'Devices'), make sure that 'Sync all Music' is selected, not the 'Sync playlists' option.

  • CFFORM Required not working

    I have creatred a CFFORM and if I don't enter anything into
    any field it still passes me on to the action form. Have made many
    forms before and I am driving myself crazy trying to see the
    difference why this one is not working.

    Do you know if your server has the cfform.js and masks.js
    files available to your app? If not, the form checking will fail
    and move on to the next page. I had this happen and wasn't able to
    access the web server to add the two .js files. I copied them to my
    application script folder and linked them in my header template.
    Not sure if that'll help you or not but it could be the issue.
    <script language="JavaScript" type="text/javascript"
    src="scripts/cfform.js"></script>
    <script language="JavaScript" type="text/javascript"
    src="scripts/masks.js"></script>

  • Project Considerations for Team Development not work

    Dear All
    how can tell the responsible of this site "Oracle ADF Insider" about any link is not working ?
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/adfinsider-093342.html
    i try many times to see this sample but it not work
         Project Considerations for Team Development April 2011
    regards

    you can mail [email protected] regarding this.
    who has created this video.
    Edited by: Nikhil Gokhale on Apr 29, 2011 7:45 PM

  • Have IOS5 and new Pages version. Spell check in French does not work

    Pages works fine on my IPadI, but how can I get it to spell check in French, used to work fine with other version.
    Checked my preferences on my IPad, they are french. What to do?
    Thanks for any help you can provide.

    Checked and yes I did have Pages in French and had the French keyboard checked on my IPad preferences.  Your suggestion reminded me of that "world key". Read something about it, long time ago.  Never used it before but when I taped it, it brought me a choice of keyboards, so now I can go back and forth from English to French on my Pages texts, and all that without going back to my system preferences!
    Thank you for the comment, helped jog my memory.
    Regards

  • 128 bit encryption requirement not working

    Using S1 6.0 sp5 on solaris 8, connecting to WAS 4.5 application servers.
    The require 128 bit encryption setting is in obj.conf with an error page to serve if lower than 128 bit encryption is used.
    This works fine for all plain text html requests, however, when a request goes to the websphere application the encryption requirement is ignored.
    Has anyone seen anything of this nature before?

    I'm not using SiteMinder or weblogic, my suggestion was based on your problem description. If you can show us your obj.conf file, we can check and try to find out a solution. You are right, AuthTrans will come before PathCheck but this should still allow PathCheck stage functions to be processed when the request processing goes through the pathcheck stage....I don't know how SiteMinder implements the SAF though.
    Thanks
    Manish

  • Select Preferred Vendor in Describe Requirement not working

    Dear all
    We are in SRM4.0, Classic Scenario, R/3 4.6c backend
    When I create a Describe Requirement and then go to Source of Supply tab to propose a preferred vendor, I am able to search for a vendor (valid for my POrg), to select one but it is not transferred to my SC.  Why?
    I had the impression that it was working in the past but I am not sure and I don't what I changed to cause the problem
    Thanks for your help
    RD

    RD-
    This does seem very strange and it does work in a standard system.  Given this it seems that you ought to look for any changes you have made recently - in particular have you done anything in the document change badi that might be causing the source to be lost?
    Have you tried the scenario running bbpsc01 in gui mode - does the issue persist in that case?  If so check out HTML template changes?
    Just my thoughts on your potential problem area.
    Regards-
    b

  • Check menue item does not work

    Hello,
    I create a menu item MI_DEBUG of type Check in a submenu named EXTRAS_MENU.
    In the menu item code I want to enable debug logging of the current user actions.
    In the Menu Startup Code I set the status UNCHECKED.
    When the user clicks the menu item I want the status to be changed to CHECKED and back on a second click
    Menu Startup Code
    DECLARE
        mi_id   MENUITEM;
    BEGIN
        mi_id   := find_menu_item('EXTRAS_MENU.MI_DEBUG');
        IF id_null(mi_id) THEN
            my_debug.pl('EXTRAS_MENU.MI_DEBUG not found','zvc_menu.mmb Menu Startup Code');
        ELSE
            set_menu_item_property(mi_id,CHECKED,PROPERTY_FALSE);
        END IF;
    END;Menu Item Code
    DECLARE
        mi_id   MENUITEM;
    BEGIN
        mi_id   := find_menu_item('EXTRAS_MENU.MI_DEBUG');
        IF id_null(mi_id) THEN
            my_debug.pl('EXTRAS_MENU.MI_DEBUG not found','zvc_menu.mmb mi_debug');
        ELSE
            my_debug.pl('EXTRAS_MENU.MI_DEBUG found','zvc_menu.mmb mi_debug');
            my_debug.pl('Status '||get_menu_item_property(mi_id,CHECKED),'zvc_menu.mmb mi_debug');
            IF get_menu_item_property(mi_id,CHECKED) = 'TRUE' THEN
                my_debug.pl('property(CHECKED) = TRUE','zvc_menu.mmb mi_debug');
                set_menu_item_property(mi_id,CHECKED,PROPERTY_FALSE);
            ELSE
                my_debug.pl('property(CHECKED) = FALSE','zvc_menu.mmb mi_debug');
                set_menu_item_property(mi_id,CHECKED,PROPERTY_TRUE);
            END IF;
        END IF;
    END;But I never get the checked sign in the menu and every time my debug messages say, that the property CHECKED = 'TRUE'.
    I even have tried it with PROPERTY_ON/OFF as some examples suggest, but it doesn't work.
    Any ideas what is wrong with my code?
    Forms [32 Bit] Version 11.1.1.4.0 (Production)
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    Regards
    Marcus

    Hm. In that case the only thing that comes to my mind is to apply the latest patchset for forms 11gR1 which is 11.1.1.6 if memory serves.Not possible, applying patches requires tons of tests for many applications.
    Does it work in a previous version of forms?This is a new menu item and I have not other version available to test.
    Another thing I found: When I open or close a form after clicking the menu item, then the check mark appears. Changing the label of an item works without opening a form.
    Therefore I changed my Menu Item Code to
    DECLARE
        mi_id   MENUITEM;
    BEGIN
        mi_id   := find_menu_item('EXTRAS_MENU.MI_DEBUG');
        IF id_null(mi_id) THEN
            my_debug.pl('EXTRAS_MENU.MI_DEBUG not found','zvc_menu.mmb mi_debug');
        ELSE
            my_debug.pl('EXTRAS_MENU.MI_DEBUG found','zvc_menu.mmb mi_debug');
            my_debug.pl('Status '||get_menu_item_property(mi_id,CHECKED),'zvc_menu.mmb mi_debug');
            IF get_menu_item_property(mi_id,CHECKED) = 'TRUE' THEN
                my_debug.pl('property(CHECKED) = TRUE','zvc_menu.mmb mi_debug');
                set_menu_item_property(mi_id,CHECKED,PROPERTY_FALSE);
                set_menu_item_property(mi_id,LABEL,'Debug on');
            ELSE
                my_debug.pl('property(CHECKED) = FALSE','zvc_menu.mmb mi_debug');
                set_menu_item_property(mi_id,CHECKED,PROPERTY_TRUE);
                set_menu_item_property(mi_id,LABEL,'Debug off');
            END IF;
        END IF;
    END;Now when I click the menu item the first time, the label changes immediately, but not the check mark. When I click the menu item a second time without opening a form the label does not change, this means, that the property CHECKED is only changed, when a form is opend/closed.
    Even better: The initial label id Debug, clicking the item should change it to+ Debug on+ and on subsequent clicks change between Debug on and Debug off
    1. Click -> Label changes to "Debug on", check mark unchanged
    2. open a form
    3. Check mark is shown but label is the default Debug
    4. close the form
    5. Check mark is not shown, label is back to Debug on
    6. Repeat step 2 - 5 with the same result
    Different sequences of clicking and opening/closing forms give seemingly random combinations of check mark on/off and label texts.
    Conclusion:
    A menu check item is a very obstinate thing. I will not use it if I can avoid it.
    Regards
    Marcus

  • User Entered - Required not working????

    I'm developing a form (Adobe Acrobat Professional 8/LiveCycle Designer 8 ) in which the customer must fill many of the fields (mix of text and date fields). I'm setting the Object - Value - Type to User Entered - Required for these fields. However, I can tab right through them even when they are blank/null. I don't want the fields to work that way. If I get into the field (tabbing or mouse click) and I've set the field to User Entered - Required, I don't want to be able to get out of the field until I've filled it in.
    I thought this was the way it worked early in my testing, but I had to work a different project for a while. Now that I'm back, it just acts as if the "null checking" has been turned off. Any suggestions as to what I need to do to get this working (again?).
    Also, I have put a message in each of the empty message fields. I'm noticing that I can tab through blank fields :( but if I put data in one of those fields, clear the field and try to tab out, I do get the empty message text I specified.
    Thanks!

    Hi RAM,
         I'll try to answer your questions one by one. Any comments and feedback are welcome.
    1.- I assume that you have created a Model, a Service Controller and binded the data to your view.
    At this point, you need to bind the property datasource of your interactive form to a node in your context hierarchy.
    This data will be available at the form Data View Palette.
    Then you have to edit your form, drag a Drop Down List to the form and in the Fields Tab of the Object Palette you need
    to bind the List Items property. Just click the link and in the "Dynamic Properties" window, choose the table root node for Items, and the Text and Value atributes for Text and value properties respectively.
    After that, in the binding tab, you will have to do the "default binding", and bind the values clicking on "Specify Item Values".
    Edited by: Aldo Velazquez on Nov 29, 2010 4:32 PM

Maybe you are looking for

  • Am I the only one getting less than 30Mbps??

    Hi, I'm just trying to figure out if I have a problem or whether I just have to accept my speed. I notice most people who post on here seem to get well above 30Mbps and I just wondered if anyone else was in my situation? My IP profile started off aro

  • How to update from WSUS 3.2 SP2 running on Windows 2008 R2 to WSUS 4.0

    Hello, with WSUS 4.0 already in the market, is it adviseable to update from WSUS 3.2 SP2? I am looking at a bare installation of WSUS 4.0 in Server 2012 R2, from basic looks I have not seen yet anything different. We have 12 WSUS servers servicing a

  • Mac book not starting - renaming of Mac HD

    I installed Leopard 7 days ago and have been having no significant problems until this morning when the machine would not start. The "chord" sound plays, and the Apple Logo on the grey screen shows, along with the little spinning indicator, but it go

  • When Burning a DVD from IDVD it does not encode Video

    I am having trouble burning a DVD that will not freeze. All of them come out and are read by DVD players of all kinds, but it gets about 3 minutes into the video, and it freezes. I saved as Image to Disk, and it went through the Burning process flawl

  • G5 powermac tower unable to boot

    Tried to boot up this morning. the screen froze with apple logo showing but no other movement, then after about 3 mins fans start to make noise. Tried to reset PRAM but to no avail. I then connected G5 to my G3 laptop via firewire in target mode and