Not able to update the project using 'BAPI_PROJECT_MAINTAIN'.

I  want to create a project , with reference to an already existing project.
I am using 'BAPI_PROJECT_GETINFO' to get the data of the existing project.
  The bapi gives the following:
1)     e_project_definition.
2)     e_wbs_element_table.
3)     e_wbs_hierarchie_table
I am passing the u2018e_project_definitionu2019 to 'BAPI_PROJECTDEF_CREATE' to create project.The project is created successfully.
But I am not able to update the project with u2018e_wbs_element_tableu2019
and u2018e_wbs_hierarchie_tableu2019. I am using 'BAPI_PROJECT_MAINTAIN' to update the project.
The program is not giving an error, but it is also not updating the E_WBS_ELEMENT_TABLE and E_WBS_HIERARCHIE_TABLE.
I am attaching the code below.
*& Report  ZTEST_PC.
DATA: project_definition   TYPE  bapipr-project_definition,
      with_activities      TYPE  bapipr-with_activities,
      with_milestones      TYPE  bapipr-with_milestones,
      with_subtree         TYPE  bapipr-with_subtree,
      e_project_definition TYPE  bapi_project_definition_ex,
      return               TYPE  bapireturn1.
DATA: i_wbs_element_table         TYPE TABLE OF     bapi_wbs_elements,
      e_wbs_element_table         TYPE TABLE OF     bapi_wbs_element_exp,
      e_wbs_milestone_table   TYPE TABLE OF bapi_wbs_milestone_exp,
      e_wbs_hierarchie_table  TYPE TABLE OF bapi_wbs_hierarchie,
      e_activity_table        TYPE TABLE OF bapi_network_activity_exp,
      e_message_table         TYPE TABLE OF bapi_meth_message.
DATA: wa_wbs_element_table    TYPE      bapi_wbs_element_exp,
      wa_wbs_hierarchie_table TYPE  bapi_wbs_hierarchie.
DATA: l_new_proj_no TYPE  prpss-posid.
DATA: l_project_definition        TYPE  bapi_project_definition.
DATA: l_project_definition_upd    TYPE  bapi_project_definition_up.
DATA: l_project_definition_stru   TYPE  bapi_project_definition.
DATA :l_pspnr      TYPE ps_intnr,
      l_pspid      TYPE ps_pspid,
      l_pro_def(9) TYPE c.
DATA :l_proj  TYPE proj.
DATA :l_len TYPE i VALUE '0'.
DATA: lt_dd03l TYPE TABLE OF dd03l,
      ls_dd03l TYPE dd03l.
DATA: fieldname(50), fieldname1(50) TYPE c.
DATA: p_ddic_name(40), struc(40), fun_struc(50) TYPE c.
FIELD-SYMBOLS: <struc>, <c>, <sc>, <def_field> TYPE any.
DATA : i_method_project    TYPE TABLE OF bapi_method_project,
       wa_method_project   TYPE  bapi_method_project.
DATA : l_index TYPE bapi_method_project-refnumber.
DATA : it_wbs_element_table         TYPE TABLE OF bapi_wbs_element,
       it_wbs_hierarchie_table      TYPE TABLE OF bapi_wbs_hierarchie.
DATA : wl_wbs_element_table         TYPE bapi_wbs_element,
       wl_wbs_hierarchie_table      TYPE bapi_wbs_hierarchie.
DATA : l_wbs_element_table_update   TYPE bapi_wbs_element_update.
DATA : i_wbs_element_table_update   TYPE TABLE OF bapi_wbs_element_update.
Get the project info of the Project 'C01.10995'
CALL FUNCTION 'CONVERSION_EXIT_ABPSN_INPUT'
  EXPORTING
    input  = 'C01.10995'
  IMPORTING
    output = project_definition.
CALL FUNCTION 'BAPI_PROJECT_GETINFO'
  EXPORTING
    project_definition     = project_definition
  IMPORTING
    e_project_definition   = e_project_definition
    return                 = return
  TABLES
    i_wbs_element_table    = i_wbs_element_table
    e_wbs_element_table    = e_wbs_element_table
    e_wbs_milestone_table  = e_wbs_milestone_table
    e_wbs_hierarchie_table = e_wbs_hierarchie_table
    e_activity_table       = e_activity_table
    e_message_table        = e_message_table.
Automate the process the process to get the next number for the func module 'CN_SUCHE_FREIE_NUMMER'.
CLEAR : l_pspnr, l_pspnr, l_pspid, l_pro_def.
SELECT MAX( pspnr ) FROM proj INTO l_pspnr.
SELECT SINGLE * FROM proj INTO l_proj WHERE pspnr EQ l_pspnr.
l_pspid = l_proj-pspid.
CALL FUNCTION 'CONVERSION_EXIT_ABPSN_OUTPUT'
  EXPORTING
    input  = l_pspid
  IMPORTING
    output = l_pspid.
l_pro_def = l_pspid+4(5) + 1.
CONDENSE l_pro_def.
CONCATENATE 'C01.' l_pro_def INTO l_pspid .
function module to generate the nect free number between the given range.
CALL FUNCTION 'CN_SUCHE_FREIE_NUMMER'
  EXPORTING
    search_imp = '2'
    prps_s_imp = l_pspid
    prps_e_imp = 'C01.29999'
    no_dialog  = 'X'
  IMPORTING
    prps_exp   = l_new_proj_no.
IF sy-subrc <> 0.
  EXIT.
ENDIF.
Update the fields of 'l_project_definition_upd' as 'X' for the fields which has values in 'E_PROJECT_DEFINITION'.
Get the New Project Number.
MOVE-CORRESPONDING e_project_definition TO l_project_definition.
l_project_definition-project_definition = l_project_definition-project_definition+0(3).
l_new_proj_no = l_new_proj_no+4(5).
CONCATENATE l_project_definition-project_definition '.' l_new_proj_no INTO l_project_definition-project_definition.
TRANSLATE l_project_definition-project_definition TO UPPER CASE.
MOVE-CORRESPONDING l_project_definition TO l_project_definition_stru.
Create the New project with the New project Number.
CALL FUNCTION 'BAPI_PROJECTDEF_CREATE'
  EXPORTING
    project_definition_stru = l_project_definition_stru.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
  EXPORTING
    wait = ' '.
Populate internal table i_method_project for the bapi_project_maintain func module.
CLEAR : wa_wbs_element_table,wl_wbs_element_table,wa_wbs_hierarchie_table,
        wl_wbs_hierarchie_table, it_wbs_element_table, it_wbs_hierarchie_table.
CLEAR : wa_method_project, i_method_project, l_index .
l_index = 0.
LOOP AT e_wbs_element_table INTO wa_wbs_element_table.
  MOVE-CORRESPONDING wa_wbs_element_table TO wl_wbs_element_table .
  APPEND  wl_wbs_element_table  TO it_wbs_element_table .
  wa_method_project-objecttype = 'WBS_ELEMENT'.
  wa_method_project-method     = 'CREATE'.
  wa_method_project-objectkey  = wa_wbs_element_table-wbs_element.
  l_len = strlen( wa_wbs_element_table-wbs_element ).
Setting Levels as reference number.
  CASE l_len.
    WHEN '9'.
      l_index = 1.
    WHEN '12'.
      l_index = 2.
    WHEN '15'.
      l_index = 3.
    WHEN '18'.
      l_index = 4.
  ENDCASE.
  wa_method_project-refnumber  =  l_index .
  TRANSLATE wa_method_project-objectkey TO UPPER CASE.
  APPEND wa_method_project TO i_method_project.
  CLEAR :wa_method_project, l_index.
ENDLOOP.
l_index = l_index + 1.
wa_method_project-refnumber  = ' '.  "l_index .
wa_method_project-objecttype = ' '.  "'WBS_ELEMENT'.
wa_method_project-method     = 'SAVE'.
wa_method_project-objectkey  = ' '.
APPEND wa_method_project TO i_method_project.
CLEAR wa_method_project.
LOOP AT e_wbs_hierarchie_table INTO wa_wbs_hierarchie_table.
  MOVE-CORRESPONDING wa_wbs_hierarchie_table TO wl_wbs_hierarchie_table.
  APPEND wl_wbs_hierarchie_table TO it_wbs_hierarchie_table.
ENDLOOP.
Update the fields of 'l_project_definition_upd' as 'X' for the fields which has values in 'E_PROJECT_DEFINITION' respectively.
CLEAR : l_project_definition_upd.
p_ddic_name = 'BAPI_PROJECT_DEFINITION_UP'.
struc       = 'l_project_definition_upd'.
fun_struc   = 'E_PROJECT_DEFINITION'.
TRANSLATE: p_ddic_name TO UPPER CASE,
           struc       TO UPPER CASE.
SELECT * FROM dd03l INTO TABLE lt_dd03l WHERE tabname = p_ddic_name.
LOOP AT lt_dd03l INTO ls_dd03l.
  ASSIGN ls_dd03l-fieldname TO <c>.
  fieldname = ls_dd03l-fieldname .
  CONCATENATE fun_struc '-' fieldname INTO fieldname.
  ASSIGN (struc) TO <struc>.
  ASSIGN COMPONENT <c> OF STRUCTURE <struc> TO <sc>.
  ASSIGN (fieldname) TO <def_field>.
  IF NOT <def_field> IS INITIAL  .
    <sc> = 'X'.
  ENDIF.
ENDLOOP.
Update the fields of 'l_wbs_element_table_update' as 'X' for the fields which has values in 'e_wbs_element_table' respectively.
READ TABLE e_wbs_element_table INTO wa_wbs_element_table INDEX '1'.
CLEAR : l_wbs_element_table_update, fieldname1, p_ddic_name, struc, fun_struc .
p_ddic_name = 'BAPI_WBS_ELEMENT_UPDATE'.
struc       = 'l_wbs_element_table_update'.
fun_struc   = 'WA_WBS_ELEMENT_TABLE'.
TRANSLATE: p_ddic_name TO UPPER CASE,
           struc       TO UPPER CASE.
SELECT * FROM dd03l INTO TABLE lt_dd03l WHERE tabname = p_ddic_name.
LOOP AT lt_dd03l INTO ls_dd03l.
  ASSIGN ls_dd03l-fieldname TO <c>.
  fieldname = ls_dd03l-fieldname .
  CONCATENATE fun_struc '-' fieldname INTO fieldname.
  ASSIGN (struc) TO <struc>.
  ASSIGN COMPONENT <c> OF STRUCTURE <struc> TO <sc>.
  ASSIGN (fieldname) TO <def_field>.
  IF NOT <def_field> IS INITIAL  .
    <sc> = 'X'.
  ENDIF.
ENDLOOP.
Append the value of l_wbs_element_table_update TO the table i_wbs_element_table_update for Bapi_project_maintain.
CLEAR i_wbs_element_table_update.
APPEND l_wbs_element_table_update TO i_wbs_element_table_update.
CALL FUNCTION 'BAPI_PROJECT_MAINTAIN'
  EXPORTING
    i_project_definition       = l_project_definition
    i_project_definition_upd   = l_project_definition_upd
  TABLES
    i_method_project           = i_method_project
    i_wbs_element_table_update = i_wbs_element_table_update
    i_wbs_element_table        = it_wbs_element_table.
   i_wbs_hierarchie_table     = it_wbs_hierarchie_table.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
  EXPORTING
    wait = ' '.
Please help me to solve the issue.

I am not sure why it is not working??  Try for any other alternate function modules.
But i see one issue with your coding, always check the return table message type and use commit work, instead of sy-subrc check. This fails for BAPI's

Similar Messages

  • When I log in to update a page it says that's someone else is already logged in (but they are not) so I'm not able to update the page - any suggestions?

    When I log in to update a page it says that's someone else is already logged in (but they are not) so I'm not able to update the page - any suggestions?

    I take it you are not the administrator for the site? If so, you would be given the option to unlock the page (it will be near the top of the screen in a yellow box).
    Do you have access to the site outside of Contribute. If you can't unlock it via the administrative function mentioned above, you need to go into the site using Windows Explorer (if it's a local development site) or an FTP client and find a file with the same name as the page but with a .lck extension and delete it. That will unlock the page.

  • HT4623 I have an iPhone 4 and for some reason I'm not able to update the software. I go to Settings then General but it doesn't even have a Software Update option. Am I missing something?

    I have an iPhone 4 and for some reason I'm not able to update the software. I go to Settings then General but it doesn't even have a Software Update option. Am I missing something?

    With iOS 4, the only way to update your software is connected to iTunes.  OTA (over the air) updates were not available until iOS 5.  You will need to connect your iPhone to a computer and use iTunes to download and install the iOS updates on your iPhone (at least until your iOS version is 5.0 or higher).

  • Hi. I am not able to update the Adobe Flash Player on my MackBook Pro. The problem I am getting is a blank page for Step3. Can someone help please?

    Hi. I am not able to update the Adobe Flash Player on my MackBook Pro. The problem I am getting is a blank page for Step3. Can someone help please?

    If you already have an older version of Flash Player, open the Preference pane and select Check Now... under the Update portion under the General tab:
    You shouldn't have to install a new version from the website (I'm not even sure if you can) if you've already installed Flash Player.
    Clinton

  • Not able to change the password using FNDCPASS

    I am not able to change password using FNDCPASS. I am getting follwoing error while executing following command with APPLMGR user ( before that I have source the .env file ) (OS-Linux)
    [applmgr@ora11 /]$ FNDCPASS apps/apps 0 Y system/manager SYSTEM APPLSYS WELCOME
    Log filename : L2741743.log
    Report filename : O2741743.out
    APP-FND-01630: Cannot open file L2741743.log for appending
    Cause: FDPFOP encountered an error when attempting to open file L2741743.log for appending.
    Action: Verify that the filename is correct and that the environment variables controlling that filename are correct.
    Action: If the file is opened in read mode, check that the file exists. Check that you have privileges to read the file in the file directory. Contact your system administrator to obtain read privileges.
    Action: If the file is opened in write or append mode, check that you have privileges to create and write files in the file directory. Contact your system administrator to obtain create and write privileges.
    Can some one pls guide me on this

    Duplicate post-
    Not able to change the password using FNDCPASS
    Please post only once.
    Thanks,

  • Certen user is not able to create the sc using sepecific vendor

    Hi,
    User is not able to create the SC entering specific  vendor .
    This vendor is in maintained in SRM for one pur.org (I have checked in PPOMA_BBP).
    Then why he is not able to creating the sc using this Vendor

    whether user is belong to same region of the Vendor or different. Is there any enhancements you have like that.
    Please check those things.
    Hope this will help.
    Thanks
    Venkatesh P

  • HT4623 HI, i am using I POD 3rd generatin with OS 3.1.3.  I am not able to update the new IOS and i could not found the update button in my POD.  Pleaese help me how do that.  regards

    Dear Friends,
    I am using IPOD touch 3rd generation with OS 3.1.3 (7E18) (Model MA623LL), i am not able to upgrade the IOS.  My IPOD does not have the software update button.
    Please help me how to upgrade the IOS for this version i could not able to download the games and new features.
    Please guide me.
    regards
    Nagaraju T
    [email protected]

    You iPod, model MA623LL , is a 1G iPod and those can only go to iOS 3.1.3
    Identifying iPod models

  • Not Able to Update the PSA Request.

    Hi All,
    I am facing one Problem I am having 10 requests in my PSA.9 requests are updated in to my Data Target but last 10th request is having some erroneous records which I didnu2019t notice that error records next day I have seen the error request in PSA then I have corrected those erroneous records. Now I am not able to update this request to my data target.
    When I went through the PSA manage tab there I have selected the erroneous request and when I press the button Update with Scheduler that is going to the Info Package Screen there I am not able to see my data target. When I start the info package its giving error (Data Target is not defined)
    My data target is contain the Aggregates is there any issue with the Aggregates.
    Any one please advise on this how to update this error request.
    Advance Thanks.

    Hi Sudheer,
    check your authorization, it seems you have only loading authorization not deleting.
    creat one more infopackge and select PSA and datatarget option try loading using this infopackage.
    Regards
    Daya Sagar

  • While creating project from inactive dc not able to view the project struct

    Dear All,
    I have created project from inactive dc now when I open the project in the webdynpro explorer I am not able to view the application, component and models.  I have tried reloading and repairing but still the structure is not appearing.  Can anyone tell what I may be doing wrong.
    Thankyou
    Regards,
    Ganesh

    Dear Bala,
    I have got about 8 to 10 DC's out of which only this one is showing the missing structure and as this dc is being used by other dc's I am getting the error like missing component.  Previously we were using the client desktop and doin the work now we have shifted it to our individual systems.  Now any project I am creating whether from same track or different same problem comming the structure is missing.
    Regards,
    Ganesh
    Edited by: Ganesh Sawant on Sep 8, 2009 9:42 AM

  • I am trying to authenticate at Filevault preboot using external Serial (RS232) to USB convertor where USB port is connected to my mac machine.But on preboot I am not able to type the password using console where my machine is connected.

    I am using an external keyboard which is actually a Device KeyAT who do the keyboard simulator kind of operation over Serial (RS232) to USB connector.
    I have a controller machine connected with Serial Port and MAC machine is connected by a USB port to that device.
    I am able to type the password on OS X login screen but on using the same device and set up on Filevault preboot I am not able to type the password.
    This connector is detected as a USB 2.0 composite device in System Hardware table.
    Can someone hints or point out a potential cause or to rectify this issue.
    Thanks in Advance.

    Which os version are you using? 
    Which iPod Nano model do you have?  iPod Models 
    iPod not recognized in iTunes and Mac desktop 

  • HT1695 I am not able to update the calendar app or reminder app. There is no ability to update and siri is also unable to set a reminder or update the calendar. This is a new phone.

    I am not able to update my calendar or reminders. I've looked at other iPhones and they have a + button to allow you to update. How do I fix this. Also, Siri also does not update the reminders or calendar.
    Please help

    Earlier iOS apps are becoming increasingly difficult to find.  You may want to look at VintApps, new in the Apple app store, that makes this much easier.
    Vintapps info/support:  https://www.facebook.com/VintApps313
    For a web based method see,
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/finding-a pps-for-older-devices
    Although I wrote my 99 cent app specifically to help solve this problem, I need to add that "I may receive some form of compensation, financial or otherwise, from my recommendation or link."
    Be sure to backup your current apps on earlier devices.  Once the vendor updates them past your maximum iOS, they can not be downloaded again.

  • Update-Help cmdlet not able to update the help with https protocol.

    Hi all,
    I am using powershell 3.0 and trying to implement this updatable feature for our custom powershell module. But I getting the below error:
    PS C:\Users\scorchsvc> update-help -Module <modulename> -Force
    update-help : Failed to update Help for the module(s) 'modulename' : HelpInfoURI
     https://10.65.182.141/dev_releases/modulename/onlinehelp does not start with http.
    At line:1 char:1
    + update-help -Module modulename-Force
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (HelpInfoUri:Uri) [Update-Help], Exception
        + FullyQualifiedErrorId : InvalidHelpInfoUriFormat,Microsoft.PowerShell.Commands.UpdateHelpCommand
    I am able to get this work if I use "http". Error message clearly says that it only expects http. But in the Microsoft help topic for Update-Help cmdlet, it is mentioned that cmdlet works for both http and https both.
    Here are my enteries:
    •HelpInforURI entry in module manifest file is:
                        HelpInfoURI = "https://10.65.182.141/dev_releases/modulename/onlinehelp"
    •HelpContentURI in HelpInfo.xml file is:
                       <HelpContentURI> https://10.65.182.141/dev_releases/modulename/onlinehelp </HelpContentURI>
    I am running powershell as an administrator.
    I am not behind any proxy.
    Windows firewall is off.
    I am mentioning it AGAIN that I am ABLE to update help for our custom module if I use http in HelpInfoURI.
    I am also able to access the URI in IE with http/https.
    Can any one please help?
    Thanks,
    Vinay Ravish

    Hi vinay,
    It seems the certificate issue.
    Please access HelpInfoURI =
    https://10.65.182.141/dev_releases/modulename/onlinehelp with https header to see if your computer could access that.
    If it doesn't work, add it to your trusted site and download to see if there is related certification on that website to download and install it to trusted root certificate for test.
    Karen Hu
    TechNet Community Support

  • Not able to see the added Used DC webdynpro compoent in used Webdynpro Comp

    Hi All,
    I have three DC's, A,B,C
    I have declared as B and C components as public parts,
    I have have added the B,C as used DC's in A dc.
    Now i tried add B as used webdynpro component in A dc, by using "used Webdynpro Component".
    I am able to  add B as used webdynpro component. But when  chooose "Add used component" -> then browse -> i am able to see only B componet , C component is not visible.
    I have added the C component as used dc in A dc.
    Can any body tell me what could be the problem.
    Actually A dc is in SCA file. and B and C dc's are different SCA files. These B&C  .SCA files defined as dependencies for A dc SCA file.
    Regards
    Vijay

    Hi,
    Please ensure that you have created two Public Parts per DC.
    In the Wizard that will help you create the Public Parts - you will find a radio button (one for API and one for SDA).
    You need to create both for each of the components B and C. And if you still dont see any change then the Public Parts are not being created correctly.
    To correct this - I usually delete the public parts and the usages. Then close both the probjects and reopen them. Then recreate public parts and the usages. (Its a silly suggestion I know - but it seems to work!)
    Hope that helps.
    Thanks.
    p256960

  • Not able to save the project

    hi,
    When i am trying to save the project, not able to do it.please help me to solve this issue.
    I am getting following error.
    preference.properties
    (Acess denied)
    Preference.properties (Access is denied)
    java.io.FileNotFoundException: Preference.properties (Access is denied)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:70)
         at oracle.wh.service.sdk.OWBPreferences.saveToClientStorage(OWBPreferences.java:367)
         at oracle.wh.ui.console.WorkBenchController.doRealcommit(WorkBenchController.java:1155)
         at oracle.wh.ui.console.commands.CommitCmd.performAction(CommitCmd.java:24)
         at oracle.wh.ui.console.commands.TreeMenuHandler$1.run(TreeMenuHandler.java:188)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:189)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:478)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Thanks
    dadivela

    Hi
    Carsten Herbe is right you do not have read and write permission on the file.
    either login by Administrator or ask Administator to give Read and write permission onthe same filePreference.properties
    or
    better to take Read and write permission on %OWB_HOME folder

  • Not able to update a contract using BAPI

    Hi All,
    I am tryin to use a BAPI to update the contract and for this I have coded the following:
    v_ponumber = 'abc-123' .
       MOVE v_ponumber  TO poheader2-number.
        MOVE 'X'  TO poheaderx-number.
        MOVE '00001' TO po_item2-ITEM_NO.
        MOVE 'test text' TO po_item2-SHORT_TEXT.
        APPEND po_item2.
        MOVE '00001' TO po_item2_x-ITEM_NO.
        MOVE 'X' TO po_item2_x-ITEM_NOX.
        MOVE 'X' TO po_item2_x-SHORT_TEXT.
        APPEND po_item2_x.
    CALL FUNCTION 'BAPI_CONTRACT_CHANGE'
      EXPORTING
        PURCHASINGDOCUMENT          = v_ponumber
       HEADER                      = poheader2
       HEADERX                     = poheaderx
    TABLES
       ITEM                        = po_item2
       ITEMX                       = po_item2_x
       RETURN                      = return2
    if sy-subrc = 0.
    commit work.
    endif.
    in the return table I am getting the message which says that the contract has been updated but I went to see the contract was actually not updated.... any advise where I am missing?
    Thanks,
    Rajat

    I am not sure why it is not working??  Try for any other alternate function modules.
    But i see one issue with your coding, always check the return table message type and use commit work, instead of sy-subrc check. This fails for BAPI's

Maybe you are looking for

  • CAn i cuse an external hard drve in imovie?

    i have a portabe brand new western digital hard drive that has fat32 system on it. it does not run via firewire cable rather through usb2 port! can i use this hard drive in imovie 08?

  • FileNotFoundException in XMLProvider

    I modified the SampleXML provider's URL property to point to "http://www.w3schools.com/xml/simple.xml" and have a xsl file under the defaults. I get this exception when i run the portal. I can open this url in the browser and it brings up the xml pag

  • JTable getColumnName not working with numbered rows

    you know when you read through the same code for a day and can't find the problem but someone who has never seen it before can find the problem in a second? i've got that going on right now. I saw a thread, http://forum.java.sun.com/thread.jspa?forum

  • Fastest way to get libreoffice betas on archlinux?

    hi, I noticed that the libreoffice 3.6 series will have a feature that would enormously simplify some work i have to do. So my question is, assuming that i don't want to compile the whole libreoffice, what's the fastest way to instal libreoffice 3.6

  • Printer Item level targeting via printer preferences

    I am trying to do item level targeting via printer preferences. I have tried numerous ways numerous times and cannot get this to work. I currently have 120 printers I am trying to assign via terminal server client ip range, workstation IP range , for