Unable to open a view in edit mode

Hi All,
I have a Notes assignment block in the Account Overview page. It contains a text area and an EDIT button to modify the notes. Corresponding view and context node for this block are  BP_DATA/NOTES and NOTES respectively. Notes context node is bound to Text context node of the component controller.
The issue is, when agent confirms an account, goes to Overview page and clicks on EDIT button of the Notes block, then, if the block already has some text, then it turns in to EDIT mode. But if Notes section is empty initially, then, on click of EDIT button will not make the view editable.
During debugging, I can see that if notes section is already filled with some text, then there is an entity in the collection wrapper of the NOTES context node(also in the component controller collection wrapper). But if notes section is initially empty, then collection wrapper is empty(both view and component controller context nodes).
My requirement is to make the notes section editable even if there is no text present in it initially. It will be very helpful if someone could give me suggestions on this issue.
Thanks and Regards,
Naren

Hi Nitish,
Thanks for your reply. Infact I only coded the event handler. In the first line, I am reading the entity from the collection wrapper of the context node. If it is bound, only then I can set it in EDIT mode.
ob_entity ?= me->typed_context->notes->collection_wrapper->get_current( ).
IF ob_entity IS BOUND.
Sets the view in EDIT mode
Now, ob_entity is null if there is initially no data in the notes section of the confirmed account. However, if notes is not empty, then, ob_entity is bound and I can set the view to edit mode. This is the issue.
Regards,
Naren

Similar Messages

  • Unable to open Webi report in edit mode

    Hi All,
    While i am trying to open a web intelligence report in "Modify" mode, its throwing an error "The document cannot be created or opened. The error code is: FILE NOT FOUND."
    Please let me know how to retrieve the report as i am not having a back up of the reports.
    Version: BO XI 3.1 SP3
    Regards,
    Akhil

    Hi Akhil,
    Generally if the "Preferences" you have set in InfoView for Creating/Modifying webi documents is Desktop, then this error is thrown.
    You have 2 choices:
    01. Change the preferences to "Web" and try the workflow.
    02. Do this workflow where WebI Rich Client is installed.
    Thanks
    Niranjan

  • TS1702 Help ... iBooks ... Unable to open an view my books that i have purchased in the catalogue .ibooks always opening in the section books purchased etc. when I press the button library it is not changing to the catalogue

    iBooks opens but not on the catalogue page whereby I can open my books ab read way I have purchased ?

    Hi Nitish,
    Thanks for your reply. Infact I only coded the event handler. In the first line, I am reading the entity from the collection wrapper of the context node. If it is bound, only then I can set it in EDIT mode.
    ob_entity ?= me->typed_context->notes->collection_wrapper->get_current( ).
    IF ob_entity IS BOUND.
    Sets the view in EDIT mode
    Now, ob_entity is null if there is initially no data in the notes section of the confirmed account. However, if notes is not empty, then, ob_entity is bound and I can set the view to edit mode. This is the issue.
    Regards,
    Naren

  • Unable to open jsp file in Design mode

    Hi,
    I am unable to open jsp files in design mode, I am using eclipse Version: 3.6.1.
    Please help.
    Regards,
    Ale Hasan

    Hi Ale,
    Thank you for the additional information. Unfortunately, there does not seem to be anything unusual about your project based on your description. I'm surprised you don't see any processes listed in the process view while waiting for the page to open. I thought you might see something related to a queue manager job to "Manage Resource Event Jobs".
    Are there any messages in the error.log? You can open a view to the error log from the menu option, "Window -> Show View -> Error Log". I'm curious if there are any messages about a process timing out, unable to reset some object within a certain time, or any exceptions logged.
    If you change to another workspace with just a single JSF web project containing a smaller number of JSP, do you experience the same behavior?
    Can you also try using a more recent release of OEPE to see if that helps? The 11.1.1.6.1 release is about a year old.
    http://www.oracle.com/technetwork/developer-tools/eclipse/downloads/index.html
    Kind regards,
    Carlin

  • Opening an attachment in Edit mode

    Hi All,
    I would like to be able to open Word attachments in Edit mode automatically (when the attachment is double-clicked), rather than right-click > Edit.
    Is this possible?
    Thanks!

    ss2012,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • [JS] Open TextFrame in "Text-Edit-Mode"...

    Hey guys,
    i use Javascript and InDesign CS4. And my simple question is how can i open
    an textframe in edit mode for the user ?
    Thx!

    Thanks! Thats just to simple

  • How to get the view in editable mode with OCA button.

    Dear Experties,
    I am new to CRM WEB UI ,I have got the requirement to develope a view with OCA button on it and when i click on the button it should direct to the second view  and it should open with edit mode.
    The Source view is table type and target view is form type.
    I am able to achieve this but unable to get it in editable mode.
    I have added the below code in do_prep_output method but getting dump  at the line
    lr_entity ?= me->typed_context->EMAINLEG->collection_wrapper->get_first( ).
    The error message is
    Long text During a 'CAST' operation ('?=' oder 'MOVE ? TO')a type conflict occurred. The source type '\CLASS=CL_BSP_WD_MIXED_NODE' is not compatible for assigning with the target type '\CLASS=CL_CRM_BOL_ENTITY'.
    Please somebody help me on this
    lv_display = me->view_group_context->is_view_in_display_mode( me ).
      IF lv_display EQ abap_false.
      ELSE.
         me->view_group_context->set_view_editable( me ).
      ENDIF.
      DATA:    lr_tx           TYPE REF TO if_bol_transaction_context,
              lr_entity       TYPE REF TO cl_crm_bol_entity,
               lr_comp type REF TO ZL_BT131QI__BSPWDCOMPONEN_IMPL.
      lr_comp ?= me->comp_controller.
      Check lr_comp is BOUND.
      lr_entity ?= lr_comp->typed_context->BTADMINI->collection_wrapper->get_current( ).
      CHECK lr_entity IS BOUND.
      IF lr_entity->lock( ) = abap_true.
        me->view_group_context->set_view_editable( me ).
      ENDIF.
      lr_entity ?= me->typed_context->EMAINLEG->collection_wrapper->get_first( ).
      WHILE lr_entity IS BOUND.
        lr_entity->lock( ).
        lr_entity ?= me->typed_context->EMAINLEG->collection_wrapper->get_next( ).
      ENDWHILE.
    The following error text was processed in the system:
    Source type \CLASS=CL_BSP_WD_MIXED_NODE is not compatible, for the purposes of assignment, with target type \CLASS=CL_CRM_BOL_ENTITY
    Exception Class CX_SY_MOVE_CAST_ERROR
    Error Name MOVE_CAST_ERROR
    Program ZL_ZBT131QI_EMAINLEG_IMPL=====CP
    Include ZL_ZBT131QI_EMAINLEG_IMPL=====CM00C
    ABAP Class ZL_ZBT131QI_EMAINLEG_IMPL
    Method EH_ON_EDIT
    Line 33 
    Long text During a 'CAST' operation ('?=' oder 'MOVE ? TO')a type conflict occurred. The source type '\CLASS=CL_BSP_WD_MIXED_NODE' is not compatible for assigning with the target type '\CLASS=CL_CRM_BOL_ENTITY'.
    Thanks in advance!!!

    Hi,
    in CRM a context can consist of model nodes,  value nodes and, unfortunately, mixed nodes. While mixed nodes implement the same interface as model nodes they can't be casted into a CL_CRM_BOL_ENTITY directly. Instead you need to perform the following conversion in order to get the model node from the mixed node:
    DATA:  mixed_node     TYPE REF TO cl_bsp_wd_mixed_node,
               entity              TYPE REF TO cl_crm_bol_entity.
    mixed_node = me->typed_context->EMAINLEG->collection_wrapper->get_first( ).
    entity = ?= mixed_node->if_bsp_wd_ext_property_access~get_model_node( ).
    Best,
    Christian

  • Unable to open and view photos in iphoto

    I am unable to view my photos in iphoto, or from anywhere else on my computer.  iphoto looks normal but is running very slow.  My thumbnails are all there.  I will click on a thumbnail, but the border turns from yellow to light blue, but the photo does not open for viewing, editing, or slideshow.  I have a MacBookPro, MAC OS X 10.6.8. iphoto version 8.1.2
    I have tried to open photos from my external hard drive without success.  Also, I can't attach a photo to an email.  When I attempt any of these things, this type of error message pops up:
    Any suggestions? Thanks.
    Process:    
    Preview [1255]
    Path:       
    /Applications/Preview.app/Contents/MacOS/Preview
    Identifier: 
    com.apple.Preview
    Version:    
    5.0.3 (504.1)
    Build Info: 
    Preview-5040100~2
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [112]
    Date/Time:  
    2012-11-12 22:56:22.392 -0600
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    271423 sec
    Crashes Since Last Report:      
    9
    Per-App Interval Since Last Report:  8393769 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    0F3586A7-CAE1-46A2-ABC6-93B2AE5BC86A
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000052b84faf0
    Crashed Thread:  2  Dispatch queue: com.apple.root.default-priority
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x0000000100b40d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x0000000100b413ed mach_msg + 59
    2   com.apple.CoreGraphics   
    0x0000000103069230 _CGSSynchronizeWindowBackingStore + 97
    3   com.apple.CoreGraphics   
    0x000000010304eda9 _CGSLockWindow + 4515
    4   com.apple.CoreGraphics   
    0x000000010305593f CGSDeviceLock + 535
    5   libRIP.A.dylib           
    0x000000011b6dbe7b ripd_Lock + 46
    6   libRIP.A.dylib           
    0x000000011b6e21f9 ripl_BltImage + 294
    7   libRIP.A.dylib           
    0x000000011b6e1e61 ripc_RenderImage + 323
    8   libRIP.A.dylib           
    0x000000011b6e4c64 ripc_DrawImages + 7966
    9   com.apple.CoreGraphics   
    0x000000010306f63d CGContextDrawImages + 228
    10  com.apple.coreui         
    0x00000001065dd316 CUIRenderer::DrawWindowFrameDark(CUIDescriptor const*) + 4990
    11  com.apple.coreui         
    0x00000001065dfc77 CUIRenderer::Draw(CGRect, CGContext*, __CFDictionary const*, __CFDictionary const**) + 4787
    12  com.apple.AppKit         
    0x0000000101abb516 _NSDrawThemeBackground + 1111
    13  com.apple.AppKit         
    0x0000000101abafe3 -[NSThemeFrame _drawUnifiedToolbar:] + 916
    14  com.apple.AppKit         
    0x0000000101aba6b8 -[NSThemeFrame _drawTitleBar:] + 604
    15  com.apple.AppKit         
    0x0000000101aba3f9 -[NSThemeFrame drawFrame:] + 947
    16  com.apple.AppKit         
    0x0000000101ab9f80 -[NSFrameView drawRect:] + 773
    17  com.apple.AppKit         
    0x0000000101ab96e9 -[NSThemeFrame drawRect:] + 109
    18  com.apple.AppKit         
    0x0000000101ab8d75 -[NSView _drawRect:clip:] + 3566
    19  com.apple.AppKit         
    0x0000000101ab654b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2112
    20  com.apple.AppKit         
    0x0000000101ab5b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    21  com.apple.AppKit         
    0x0000000101ab23de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    22  com.apple.AppKit         
    0x0000000101a2bc0e -[NSView displayIfNeeded] + 969
    23  com.apple.AppKit         
    0x0000000101bdcf09 -[NSControl drawCell:] + 82
    24  com.apple.AppKit         
    0x0000000101bdc7a4 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1548
    25  com.apple.AppKit         
    0x0000000101bdbdbf -[NSSegmentedCell trackMouse:inRect:ofView:untilMouseUp:] + 1303
    26  com.apple.AppKit         
    0x0000000101bdb2f5 -[NSControl mouseDown:] + 624
    27  com.apple.AppKit         
    0x0000000101af53a7 -[NSWindow sendEvent:] + 5409
    28  com.apple.AppKit         
    0x0000000101a2aafa -[NSApplication sendEvent:] + 4719
    29  com.apple.Preview        
    0x000000010000290c -[PVApplication sendEvent:] + 357
    30  com.apple.AppKit         
    0x00000001019c16de -[NSApplication run] + 474
    31  com.apple.AppKit         
    0x00000001019ba3b0 NSApplicationMain + 364
    32  com.apple.Preview        
    0x0000000100001454 start + 52
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x0000000100b59c0a kevent + 10
    1   libSystem.B.dylib        
    0x0000000100b5badd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib        
    0x0000000100b5b7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib        
    0x0000000100b5b2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib        
    0x0000000100b5ac08 _pthread_wqthread + 353
    5   libSystem.B.dylib        
    0x0000000100b5aaa5 start_wqthread + 13
    Thread 2 Crashed:  Dispatch queue: com.apple.root.default-priority
    0   com.apple.Preview        
    0x000000010002c056 -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 1360
    1   com.apple.Preview        
    0x000000010001edd6 -[PVIVImageTile loadLevel:onOperation:] + 195
    2   com.apple.Preview        
    0x000000010001ec8f -[PVIVImageTileLoadOp main] + 46
    3   com.apple.Foundation     
    0x0000000101129dd0 -[__NSOperationInternal start] + 681
    4   com.apple.Foundation     
    0x0000000101207bd5 ____NSOQSchedule_block_invoke_2 + 129
    5   libSystem.B.dylib        
    0x0000000100b7cd64 _dispatch_call_block_and_release + 15
    6   libSystem.B.dylib        
    0x0000000100b5b2d1 _dispatch_worker_thread2 + 239
    7   libSystem.B.dylib        
    0x0000000100b5ac08 _pthread_wqthread + 353
    8   libSystem.B.dylib        
    0x0000000100b5aaa5 start_wqthread + 13
    Thread 3:  Dispatch queue: com.apple.root.default-priority
    0   com.apple.CoreGraphics   
    0x0000000103039775 CGRectEqualToRect + 580
    1   com.apple.CoreGraphics   
    0x0000000103033c01 bindDisplayMapping + 414
    2   com.apple.CoreGraphics   
    0x000000010303931d updateAllDisplayInfoAsNeeded + 227
    3   com.apple.CoreGraphics   
    0x00000001030391c3 CGSGetNumberOfDisplays + 32
    4   com.apple.opengl         
    0x000000010023a6f1 CGLGetPixelFormatRetainCount + 293
    5   com.apple.opengl         
    0x0000000100232549 CGLChoosePixelFormat + 132
    6   com.apple.AppKit         
    0x0000000101a6fbe7 createPixelFormat + 53
    7   com.apple.AppKit         
    0x0000000101a6fb7d -[NSOpenGLPixelFormat initWithAttributes:] + 80
    8   com.apple.Preview        
    0x00000001000138b1 +[PVIVImageView defaultPixelFormat] + 56
    9   com.apple.Preview        
    0x0000000100023cba -[PVIVGLContextPool _lockedContextPoolItem] + 255
    10  com.apple.Preview        
    0x0000000100023bac -[PVIVGLContextPool lockedGLContext] + 16
    11  com.apple.Preview        
    0x000000010002bb54 -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 78
    12  com.apple.Preview        
    0x000000010001edd6 -[PVIVImageTile loadLevel:onOperation:] + 195
    13  com.apple.Preview        
    0x000000010001ec8f -[PVIVImageTileLoadOp main] + 46
    14  com.apple.Foundation     
    0x0000000101129dd0 -[__NSOperationInternal start] + 681
    15  com.apple.Foundation     
    0x0000000101207bd5 ____NSOQSchedule_block_invoke_2 + 129
    16  libSystem.B.dylib        
    0x0000000100b7cd64 _dispatch_call_block_and_release + 15
    17  libSystem.B.dylib        
    0x0000000100b5b2d1 _dispatch_worker_thread2 + 239
    18  libSystem.B.dylib        
    0x0000000100b5ac08 _pthread_wqthread + 353
    19  libSystem.B.dylib        
    0x0000000100b5aaa5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib        
    0x0000000100b5aa98 start_wqthread + 0
    Thread 5:
    0   libSystem.B.dylib        
    0x0000000100b5aa98 start_wqthread + 0
    Thread 2 crashed with X86 Thread State (64-bit):
      rax: 0x0000000108b1a070  rbx: 0x0000000108ba7a80  rcx: 0x0000000000000018  rdx: 0x0000000108be7930
      rdi: 0x0000000000000000  rsi: 0x0000000108bf0a80  rbp: 0x000000011d3ddd20  rsp: 0x000000011d3ddbf0
       r8: 0x0000000000000001   r9: 0x0000000000000000  r10: 0x0000000108bc5b70  r11: 0x0000000000000004
      r12: 0x0000000108ba7a80  r13: 0x000000010a0e0ed0  r14: 0x0000000000000002  r15: 0x00000001012c839c
      rip: 0x000000010002c056  rfl: 0x0000000000010246  cr2: 0x000000052b84faf0

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Open content area in edit mode

    Hello,
    Is it possible to open content area and all folders in edit
    mode. By default content area and folders are open in view mode.
    Thanks

    You can use URL items to display links to folders instead of
    using Folder or subfolder links. Set the URL in the URL item to
    the URL for the folder Edit mode.
    Regards,
    Jerry

  • Open a view for EDIT

    In SSMS I can right click on a table or view and select EDIT TOP 200.
    Is there a way to open a table or view in this EDIT mode using a TSQL script?
    Jim Brown

    The closest possible way is this
    UPDATE t
    SET Field1=<somevalue>,
    Field2 =<somevalue>
    FROM
    SELECT ROW_NUMBER() OVER (ORDER BY PK ASC) AS Rn,*
    FROM Table
    )t
    WHERE Rn <= 200
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Issue with opening the Outline in Edit mode

    Hello Gurus,
    I am opening a huge outline in the Edit mode on EAS Console & it's giving me an error "not enough memory to perform this operation", while I am able to open the other small outlines on EAS Console/Same server in the edit mode.
    Is this to do with freeing up Java memory. Will restart of EAS service work in this issue & free up Java memory?
    Thanks in advance.

    Hi RishiI've had problems with opening up the outline in edit mode before. Haven't come across this error no, and I can't find anything on the knowledge base. Try this though...- Check at the Analytic server level for Locks and Locked Objects. If there are any get rid.- "Update Mode" in the Spreadsheet Add-In will cause similar problems by locking data blocks.- All else fails! Reboot serverIf it's something else drop me a line back. I'll be interested to hear whats causing the problem.TaMark

  • SharePoint 2010 and PowerPoint 2010: Open PPTX File in Edit Mode and Open PPSX in in Slide Show Mode

    I have the following issue while opening PowerPoint PPTX file and PPSX from the Document ID link provided by SharePoint 2010.
    Issue
    Initially when I opened PPTX file from the DOC ID link from SharePoint 2010, it is opening up in Slide Show mode which is not how we want it to be.
    For PPSX, it is opening in Slide Show mode which is what we wanted.
    Thus, I did some research online and found this article at support.microsoft.com/kb/q299824  which requires some modification to the Registry of the client machine.
    I did the change as follows
    Open Registry
    Look for “Computer\HKEY_CLASSES_ROOT\PowerPoint.Show.12”
    Set BrowserFlags value to a
    After the change, PPTX is opening in Edit Mode in PowerPoint which is correct but PPSX is also opening in Edit Mode in PowerPoint which is not correct
    This issue only occurs if I open the document from the Doc ID link in SharePoint. If the documents are downloaded, it will not have this issue.
    Questions
    Can I set PPTX to open in Edit Mode and PPSX to open in Browser Mode?
    Is this fixed as in if I change the registry setting it will affect both file types?
    Is there other ways I can achieve opening PPTX in Edit and PPSX in Browser Mode?
    [Environment]
    My Client machine is running on I.E 9 and Office 2010.
    Thank you.

    Hi,
    To make the PPTX file open in Edit mode and PPSX file open in Slide Show mode, I recommend to edit the registry key HKEY_CLASSES_ROOT\PowerPoint.Show.12 to 8.
    I tested the scenario in my environment with changing the key value to 8, after that PPTX file opened in Edit mode and PPSX file opened in Slide Show mode.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Cannot open VI file in edit mode.

    I cannot open a VI project that I was working on. Every time I try to open the file it gives me a message that "not enough memory to complete this operation".
    This is a large project and I need to be able to access the block diagram.
    This happens when I try to open it in edit mode.
    Thanks.
    Message Edited by Minguccio on 01-06-2006 11:41 AM

    Minguccio,
    I've done some poking around and may have found some useful information. This error will ocurr if you have too many (and I mean a ton) of controls on the front panel. I haven't heard of this error since LabVIEW 5.1 though and we've upgraded the number of controls you can have on your front panel since then. However, try deleting some controls from your front panel to see if this helps out.
    My investigation also lead me to tcp errors. Are you using tcp\ip anywhere in your programming? I found this discussion that may help out if that's the case.
    Let us know what you find.
    Best Regards,
    Chris C
    Applications Engineering
    National Instruments
    Chris Cilino
    National Instruments
    LabVIEW Product Marketing Manager
    Certified LabVIEW Architect

  • Unable to open Lab-view - getting pop-up "unable to open resourse files"

    Hi
    I have had Lab-view 7.1 running on my PC  for months.  On loading up this morning I got the pop-up "unable to open resourse files".
    Presumably this is a fatal error and I need to uninstall then reinstall.  The rest of my PC applications are working fine.  Has anybody else had this problem?
    Regards
    Ashley

    hi there
    when i rename or remove the directory  ..\National Instruments\LabVIEW 7.1\resource i got the same error message as you. check this directory. i attached a list of contents of my LV 7.1 resource directory. the contents of your own directory may differ.
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"
    Attachments:
    Resource_LV71.txt ‏5 KB

  • Problem opening the outline in edit mode

    when i try to open the outline its saysthere is a problem loading the outlineinto memory error#1,250,012thanks rishi

    Hi RishiI've had problems with opening up the outline in edit mode before. Haven't come across this error no, and I can't find anything on the knowledge base. Try this though...- Check at the Analytic server level for Locks and Locked Objects. If there are any get rid.- "Update Mode" in the Spreadsheet Add-In will cause similar problems by locking data blocks.- All else fails! Reboot serverIf it's something else drop me a line back. I'll be interested to hear whats causing the problem.TaMark

Maybe you are looking for

  • 2nd gen nano no longer appears in itunes

    My 2nd gen nano does not appear in iTunes. I have windows 7. was ok until last update. device icon does not even appear. nano plays through earbuds but wont appear anywhere.

  • Using internal SSL Certs for Webview and Reskill (ICM 7.2.X)

    Hi, I would like to use corporate ssl certs for webview and reskill to avoid the user having to install the self signed certificate on the local machine. Has anyone any experience of this? Can it cause any unforseen problems? My plan for webview is t

  • Using a G4 Mini with a RAID

    I have a 1.5Ghz G4 Mac Mini which already gets the benefit of booting to a 7200RPM Firewire drive... Could my work benefit further by my keeping project files on a RAID set up with 2 other 7200 RPM FW drives? anyone doing this with a mini? R

  • Clipping Path Script from lowres to hires

    Hello all. I am trying to find out if there is a script that can transfer a clipping path from a low resolution to a high resolution image. Perhaps from one folder of low res images to another folder of high resolution images of the same file name. D

  • JSP cannot be found Error when trying to Priview an Iview made of a PAR fil

    We created a project using the Netweaver Developer Studio including our code (the jsps, required libraries with it).We then created our PAR file and deployed it on the Portal using the PDK. After this we created a Iview using the PAR which we had dep