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

Similar Messages

  • 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

  • Not able to save any projects to PWA server from MSPS client

    HI,
    We are not able to save any project to PWA server using MSPS client. It says saving (0%). But not getting processed to pwa.
    Thanks!
    Shamsuddeen

    Hi Shamsuddeen, 
    Have you correctly configure in MSProject the connection to Project Server?
    See reference below:
    http://office.microsoft.com/en-us/project-help/connect-log-on-to-project-server-HA010373238.aspx
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • OLAP Variable in DTP - Not able to save the selection

    Hi Guru's
    We are on BI 7.0 and supportpack 13. I am facing an issue with the OLAP variable in DTP filter . I am not able to save the selection/filter  within DTP via OLAP variable. I am able to test the values of the OLAP variable within DTP screen (just like in infopackage) , but when i save it, it does not appear in the selection.
    Have any of u faced this issue? I searched for SAP notes , but could not find any matching this issue. Could u please help?
    Thanks & regards

    Hi Voodi,
    Thanks for ur response. But i have checked that too. I am not saying that the value need to appear in selections screen. The filter in DTP is not showing a check tick mark and also no variable is found even though i had saved it and activated the DTP.
    I also checked running thisDTP and checked the selections in the header of the monitor. No selection is shown there.
    Thanks

  • I am not able to save the pdf with filled data or related to reader extension

    Hi,
    I have designed a pdf with some text field controls. But i am not able to save the document when i fill some data into the pdf.
    or whenever i save data it says that the pdf will be saved blank.
    I know that this is the reader extension issue. How to i add this reader extension feature into it.
    I know that reader extension can be
    1. cached
    2. A document can be made reader extended using adobe live cycle process.
    3. also it can be embedded while designing the pdf.
    Can any body let me know how do i incorporate reader extension feature while designing and at runtime too.
    I know we have taken reader extension license but dont know how to use this reader extension feature.
    Regards
    Sunil

    Hi Sunil,
    You indicate that you have a Reader Extensions license, did you also purchase Adobe LiveCycle Reader Extensions ES2? You would apply the license to your form using this server product.
    You can also apply reader rights using Acrobat Standard v9 (or Acrobat Professional v8), but this has license restrictions - see EULA. Also the rights that are enabled using this route will not be as many when compared to LC Reader Extensions ES2.
    I have a summary here:
    http://assurehsc.ie/blog/index.php/2010/05/using-livecycle-forms-in-acrobat-and-reader/
    Also have a look at the Adobe page:
    http://www.adobe.com/products/livecycle/readerextensions/
    Maybe talk to the Adobe sales in your region.
    Good luck,
    Niall

  • 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

  • Macbook wiped clean (2008 model), and I'm not able to save the installer and can't get mac os x.  Any suggestions?

    I recently bought a used macbook (2008) and was told that it was set back to factory settings and came with all the orignal software, box etc.  The first Installer disk of the Mac os X was already in the disc drive, but I'm not able to get past where it saves the installer.  It wasn't able to find anywhere to save it.  I have no clue what to do.  Any suggestions?  Thanks for your help!

    Snow Leopard disc must look like this to run on a 2008 MacBook:
    and not say Update, Dropin, OEM, or any Mac model on it.
    2008 MacBooks could at minimum also use the 10.5.6 retail disc that looked like:
    And some of the earliest 2008 models can use 10.5.4 as well, but it couldn't say Upgrade, Dropin, or OEM or a Mac model on it, except MacBook, if it was the one bundled with that MacBook.
    If the disc is stuck in the drive, use this tip to remove it:
    https://discussions.apple.com/docs/DOC-1015

  • Can not able to save the data while executing the package/procedure

    Hi,
    I created one package and schedule this in JOB, job is running successfully but data is not inserting in table,
    CREATE OR REPLACE package body LST_RPT as
    procedure gender_proc(gender varchar2) is
    begin
    insert into gender_count
    select * from mag_hotline_gender;
    end;
    end LST_RPT;
    after that I am executing this
    exec MSREUL.MKE_LST_RPT.gender_proc('M');
    but it is not saving the data
    can anybody suggest where I am doiing mistake

    Hi Arun,
    Thanks for the suggestion.
    I checked my table structure, gender_count was GTT(global temporary table), Now I changed the structure package is executing sucessfully and able to commit the data
    exec MKE_LST_RPT.gender_proc('M');
    commit;
    can you plz help on another point I want to schedule this package on job means it runs on every day and commit automatically, I am using TOAD but unable to create job can you plz help on this issue.

  • F-44 Vendor Clearing: Not able to save the reason code

    Hello Experts,
    We are testing t-code F-44.  We are attempting to perform a vendor clearing with a Debit Balance Write-off.  As part of the test we require to add a Reason Code to the transaction posting.  Unfortunately, the reason code is not being saved to the FI transaction being generated.
    I will be glad to provide further information if needed, also points will be rewarded as soon as suitable answer is received.
    Thanks,

    Hello Experts,
    We are testing t-code F-44.  We are attempting to perform a vendor clearing with a Debit Balance Write-off.  As part of the test we require to add a Reason Code to the transaction posting.  Unfortunately, the reason code is not being saved to the FI transaction being generated.
    I will be glad to provide further information if needed, also points will be rewarded as soon as suitable answer is received.
    Thanks,

  • Not able to save the form

    Hi
    I have created a form which has one field called Target user of type Lookup.
    From the property tab, I have added a property to the field. Property name is Lookup Query and Property value is "one of the select query".
    Now when I preview the form, I get the right result but when I am trying to make this version as active version, It gives me following error: "Required property have not been set for the field: Target USer".
    I believe I have already assigned property to Target User field by adding Lookup Query to that.
    Am I missing something? Or my approach itself is not correct?
    Any help would be appreciated.
    Thanking You
    Kiran Thakkar

    Lookups require the following properties:
    Lookup Query - SQL query, select usr.usr_first_name, usr.usr_last_name, usr_login from usr usr where usr.usr_login not like 'XEL%'
    Column Names - name of the column(s) like usr_login or lkv_decoded. If you display multiple, no spaces in your value, like usr_last_name,usr_first_name,usr_login
    Column Captions - displayed field name, Last Name, First Name, Login
    Column Widths - i just always use 100 - 100,100,100
    Lookup Column Name - this is what is returned when the item is selected. usr_login
    This lookup will return all users who are not the three default users in oim.
    -Kevin

  • Not able to save the ibot

    Hai,
    When i perform same in the latest version i am able to do this.
    but when i am doing in the 10.1.3.2.1 it displays error as,
    1)when i click on the Delivers-->
    System Delivery Profile not available:      Error finding SA System subject area. See the Oracle BI Presentation Server log for details.
    2)while saving the report, it displays an error as,
    Oracle BI Scheduler Error: [nQSError: 68019] Authentication Failed.
    + Error Details
    Error Codes: GYFPI8RN
    will u pls let me know where the error occurs.

    1 ) see http://gerardnico.com/wiki/dat/obiee/sasystem
    2 ) You miss the credential step in the configuration of the scheduler
    http://gerardnico.com/wiki/dat/obiee/bi_scheduler/obiee_scheduler_configuration#credential
    Cheers
    Nico

  • I am not able to save the themes on the new Yahoo. mail site

    The new yahoo mail themes will not load and remain. When I log off and then log in again I lose the theme I saved before. I am able to do so with IE, but not firefox. I want to use firefox exclusively, but this is a problem.

    -> click '''Firefox''' button and click '''Options''' -> '''Privacy''' panel -> '''History''' section -> ''under'' '''Firefox will:''' ''select'' '''"Use Custom Settings for History"'''
    * Remove Checkmarks from (1) '''Always use Private Browsing mode''' (2) '''Clear History when Firefox closes'''
    * place Checkmarks on (1) '''Accept Cookies from sites''' (2) '''Accept Third-party Cookies''' -> ''under'' '''Keep Until :''' ''select'' '''They Expire''' -> Now click '''Exceptions''' button and click '''Remove''' button for all entries which have status set to other than '''Allow''' -> Now type addresses of websites whose Cookies you want to be stored by Firefox e.g. mail.yahoo.com , login.yahoo.com , yahoo.com , mail.live.com , login.live.com , hotmail.com , msn.com , mail.google.com , google.com , etc. & click '''Allow''' button for each of these websites (One by One) -> click Close
    * click OK on Options window
    -> IF you use Clear Recent History feature, DO NOT select '''Cookies, Site Preferences'''
    * [[Clear Recent History#w_what-things-are-included-in-my-history|Clear Recent History items]]
    -> IF you use Privacy Cleanup softwares like CCleaner, DON'T SELECT FIREFOX IN ITS SETTINGS.
    * These softwares can be responsible for Deleting your Firefox Settings.
    Check and tell if its working.

  • Query Designer - Not able to "Save" the entered data

    Hi Folks,
    I've created a planning-enabled query in BI 7.0 Query designer. When I execute (in the web), it allows me to make manual entries. However, there's no standard "Save" button to save/update the values. 
    The cube is Real-Time and the query I built is on an aggregation level defined for this cube.
    Any help will be appreciated,
    Thanks
    Baris

    Hi,
    you need to define your save button.
    -> if you execute your query in the designer you can only display. To save your data you need to create a workbook in the analyser with your planquery in it and define a save button.
    D

  • Not able to save a newly created Data Model in BI Publisher.

    Hello everyone,
    I was trying to create a new Report (my very first report) in BI Publisher. I created a new Data Model and a Data Set. But I am not able to save the Data Model and thus not able to proceed to the report. There's no error shown. Same happens with reports too.
    Kindly provide me with a solution.
    Regards
    Ash
    Edited by: 902739 on 28-Dec-2011 01:02

    You should have a group called 'XMLP_ADMIN' in your repository and administrator or the user you are using should be part of that group. Look into paint.rpd for all these.

  • Not able to save report output in a text file and RTF file

    I am using Oracle Developer6.0 . I am facing problem with reports. I am invoking reports from form using run_product.
    1. I could not able to save the report in text file . Whenever i try to save the report output in a text file.It gives dump and application get closed.
    2. In RTF format , it execute the query which i have given at the design time while creating a report . But while running i am passing query either through lexical parameter or passing value of where criteria user parameters. It display the output for the specified value. But when i save this report output in rtf file . It execute design time query and save that in a rtf file.
    If any body is having any idea about it . Please let me ASAP . It is very urgent for me.
    Thanks in advance

    Try the following:
    Do not generate the report to .rep file, but rename/copy the .rdf file to .rep file and execute it.

Maybe you are looking for

  • Error in form tag which calls a javascript function

    Following is the code <script type="text/javascript"> try{      var variable3=(document.forms[0]).server_Name.value;      var variable=(document.forms[0]).job_Name.value;      }catch(err){}   function returnall()        var vald2=checkempty();       

  • How to assign "Public Group" and "Privilege" to user create with ldapadd

    Hello, We create users with ldapadd and a ldif file. The ldif file is like that : dn: cn=user1,cn=users,dc=def,dc=eau,dc=cgeaux,dc=fr sn: user1 cn: user1 userPassword: user1 mail: [email protected] objectClass: top objectClass: person objectClass: in

  • HT4753 Can auto save work with Photoshop 5.0?

    Can auto save work with Photoshop 5.0? [email protected]

  • 6120 Camera Results (very bad)

    hey... i've just bought 6120 Classic... it takes pictures good in daylight but very bad in low light (even light behind the camera)... i see alot of green lines (noise) on screen n in the picture it says on the lable underneath battery 'Nokia 6120 C1

  • Template for Test Scripts in running process chain

    Hello all, I am in urgent need of Test script Template...if any have that pls send one template.I will modify accordingly... Thanks a lot in advance my mail id   [email protected] -Venkat