Data element problem

Hi Experts
       I have used EBELN domain for my field, its length is 10,
      now i want to increase the length of the data element, what can i do.
      can i change the data element to the field ebeln.
      If i change it, will it affects the data in the production server which already transported to production.
Pls advise me on this same.

hi,
You cant change directly.It will ask Access Key.
changing SAP standard data element is so critical and it will never give the result you expected.
Because so many tables and programs use ebeln and do some validations on field size also.
Its like playing with standard programs.
Please do in other way like creating zebeln in se11 tcode and give size according to your requirement and use this for your field.
Reward if useful
Thanks
Sivaparvathi
null

Similar Messages

  • A problem when using a data element in BAPI

    Hi there,
    I build a function module, and want to use it as a BAPI. But when I add the function module as a method of a BAPI object, it gives me the following error: data type xxxxx cannot be used for methods.
    I guess the problem happens because of the type of data element I used for the input parameter of the function module. Thus I tried many other data elements, but I keep getting the same error. I am really out of the game. Could anyone tell me which data element I should use for the input parameter of the function module? The function module has only one input parameter, which should be a string with length less than 100.
    Thank you so much!!
    Sincerely,
    Bing

    The function module has only one input parameter, which should be a string with length less than 256. (I tried many predefined data element like RPLM_STRING, but when I tried to add the function module as a method of BAPI, the SAP always gave me the error: data type xxxxx cannot be used for methods)
    It only has one output parameter: RETURN (associated type: BAPIRETURN)
    I am really not familiar with ABAP program, let alone BAPIs. Any suggestions would be very helpful to me. I sincerely appreciate your help.
    Bing

  • Problem when define Value range for data element

    Dear
    When I define a new data element in ABAP Dictionary, for example, ZDATA_ELEMENT_TEST.
    I use domain ZDOMAIN_TEST.
    (Data type is DEC, the length is 10, and decimals is 2 with sign.)
    Now, I want to restrict that, user can ONLY input the value from 10 to 100.
    From ABAP course and the Internet, I switch to "Value Range" tab, and define 10 for Lower Limit, 100 for Upper Limit in Intervals section.
    And write the simple program.
    PARAMETERS test TYPE ZDATA_ELEMENT_TEST.
    WRITE: test.
    And run it.
    Line: -
    But, there is a problem.
    When I input 200 for test, the program still run and display 200 to screen without any error report or notification. The ABAP runtime system doesn't check the input value.
    I want to config for the domain that can satisfies, if the user input the wrong value (e.g: 200 in the previous case), the program will auto raise the error report, or exception, or sth like that.
    Any help is welcome.

    Hi Hanni,
    Welcome to forum.
    Try to attach key word VALUE CHECK to your PARAMETER statement.
    I.e:
    PARAMETERS test TYPE ZDATA_ELEMENT_TEST VALUE CHECK.
    Note: The addition VALUE CHECK cannot be used together with the additions AS CHECKBOX, RADIOBUTTON, or NO-DISPLAY.
    Regards,

  • Problem when using a different data element in Employee Tab Contact Info

    Hello,
    My version: Nakisa OrgChart 4.1
    I created a data element whose fields I wanted to show in the Position details (in the Employee Profile panel, which use the default Static layout 'Employee Tabs'). I am trying to display some contact info, and I used the Employee Tab Contact Info section within Employee Tabs to do it. Somehow the fields captions do not show once I do that (see picture attached). I tried using the 'Employee Tab Data Sheet' section to display the same information, and it works fine.
    Any thoughts what could cause this behavior? All the fields captions have values that were configured in the data element.
    Thanks
    M.E.

    Sorry, just re-reading from the start, you are saying this is purely dependent on the type of section you select. Right?
    With "Employee Tab Contact Info", you say it doesn't show; Have you tried using Field/Value Section (Multiple)?
    Also, when it doesn't work, what <presentation> is referenced in your custom section within "OrgUnitPositionEmployeeDetail.xml" (in \.delta\AppResources\detailconfiguration)?
    Stephen

  • Problem while creating a new Data element in a new table?

    Hello Everyone,
    I have downloaded Netweaver 7.1 trail version from internet and while creating a data element through the data dictionary: i got this input box:
    Register Object
    SAP Release 701
    Access key needed?
    Installation DEMOSYSTEM
    What could an access key be here in this demo version?
    please help experts. thanks for writing back.
    Cheers
    lastw0nd3r
    P.S:
    I tried this access key already which was in devaccess table
    29671482393151224771  but it didn't worked.
    Edited by: lastw0nd3r on Jun 8, 2010 5:30 PM

    in processformrequest() i wrote this:
    if ((tableBean.getName().equals(pageContext.getParameter(SOURCE_PARAM)))
    &&(ADD_ROWS_EVENT.equals(pageContext.getParameter(EVENT_PARAM))))
    am.invokeMethod("createRecordInv") ;
    in Amimpl.java
    i wrote
    public void createRecordInv()
    try
    OAViewObject vo = getARTransactionLineVO1();
    if (!vo.isPreparedForExecution())
    {   vo.executeQuery();     }
    if (vo != null)
    vo.setMaxFetchSize(0);
    ARTransactionLineVORowImpl row1 = ( ARTransactionLineVORowImpl)vo.createRow();
    if (vo.getFetchedRowCount() == 0)
    {vo.insertRow(row1); }
    else
    { vo.insertRowAtRangeIndex(vo.getFetchedRowCount(),row1); }
    row1.setNewRowState(row1.STATUS_INITIALIZED);
    catch(Exception ex)
    { ex.getMessage();  }
    i am getting error
    oracle.apps.fnd.framework.OAException: java.lang.ClassCastException

  • Problem in data element

    hi experts,
    i am developing a report to display details of equipment number(transaction ie03).
    in that to get the partner function details (parvw ' vw ' person responsible)
    we have partner (PARNR I_PARNR CHAR 12 0 Partner) and name of that person. so based on parnr we get details from table pa0001 .
    here we have PERNR (PERNR PERSNO NUMC 8 0 Personnel number)
    (here pernr is equivalent to parnr of ihpa but data elements differ) so we get the details that is ename(employee name ).
    but when i write select query i get the following error
    select objnr parvw parnr
    from ihpa
    into table it_ihpa
    for all entries in it_itab
    where objnr = it_itab-objnr
    and parvw = c_vw.
    select pernr ename
    from pa0001
    into table it_pa01
    for all entries in it_ihpa
    where pernr = it_ihpa-parnr.
    error : when using the addition "for all entries in itab",
    the field pernr and it_ihpa-parnr must have same type and length.

    Hi,
    The field PERNR and PARNR are different.So u can't directly write in the where condition.Try like this as given jayanti
    if not it_ihpa[] is initial.
    select pernr ename
    from pa0001
    into table it_pa01
    for all entries in it_ihpa
    where pernr = it_ihpa-parnr+4(8).
    endif.
    Regards,
    Nagaraj

  • Data element-reward point guranteed

    Hi all,
             i am in a peculiar problem.I have to go through a hell lots (50+) of ztable and find the domian used and corresponding data element.
    going thorugh SE11 and finding the things are going to take lots of time.
    i have a report program , sending it to you, it displays details of info of listed table.
    just run the report.
    but the thing is , it rerieves the data type, instead of data element and domain.
    somehow if i get those two things(domian & data element instead of data type of each field) , my work will be easier.
    i will simply run this report and download the content of the priniting internal table int an excel ****.
    can you just do some modification in this report to print DATA ELEMENT AND DOMAINS OF RESPECTIVE.
    here it is ,
    REPORT ZANID_TEST message-id zz NO STANDARD PAGE HEADING
           LINE-SIZE 178 LINE-COUNT 65.
    TABLES: DD03L, DD04T, DD02T, DD02L.
    SELECT-OPTIONS: TABNAME FOR DD02L-TABNAME.
    *SELTEXT E  'SAP Table Name(s)'
    DATA: BEGIN OF TAB OCCURS 500,
         TABNAME LIKE DD03L-TABNAME,
         POSITION LIKE DD03L-POSITION,
         FIELDNAME LIKE DD03L-FIELDNAME,
         STXT LIKE DD04T-DDTEXT,
         KEYFLAG LIKE DD03L-KEYFLAG,
         DATATYPE LIKE DD03L-DATATYPE,
         LENG     LIKE DD03L-LENG,
         DECIMALS LIKE DD03L-DECIMALS,
         CHECKTABLE LIKE DD03L-CHECKTABLE,
         REFTABLE LIKE DD03L-REFTABLE,
         REFFIELD LIKE DD03L-REFFIELD,
         END OF TAB.
    DATA: LINE-COUNT TYPE I.
    SELECT * FROM DD03L WHERE TABNAME IN TABNAME.
      MOVE-CORRESPONDING DD03L TO TAB.
      IF TAB-FIELDNAME CS '.inc'.
      ELSE.
        SELECT * FROM DD04T WHERE ROLLNAME   = DD03L-ROLLNAME
                              AND DDLANGUAGE = SYST-LANGU
                              AND AS4LOCAL   = 'A'.
        ENDSELECT.
        IF SYST-SUBRC = 0.
          TAB-STXT = DD04T-DDTEXT.
        ENDIF.
        APPEND TAB.
      ENDIF.
    ENDSELECT.
    DESCRIBE TABLE TAB LINES LINE-COUNT.
    IF LINE-COUNT EQ 0.
      MESSAGE E009 WITH 'Table Not Found'.
    ENDIF.
    SORT TAB BY TABNAME POSITION.
    LOOP AT TAB.
      ON CHANGE OF TAB-TABNAME.
        NEW-PAGE.                          "Page Break for New Table
      ENDON.
      WRITE: /  TAB-FIELDNAME, 20 TAB-STXT,
               81 TAB-KEYFLAG,  85 TAB-DATATYPE,
               90 TAB-LENG, 100 TAB-DECIMALS,
               110 TAB-CHECKTABLE,
               121 TAB-REFTABLE,
               132 TAB-REFFIELD.
    ENDLOOP.
    TOP-OF-PAGE.
      FORMAT INTENSIFIED OFF.
      WRITE: /  SY-REPID,
               'Run by', SY-UNAME(8), 'on', SY-DATUM, SY-UZEIT,
               'System', SY-SYSID(4), 'Client', SY-MANDT.
      WRITE: / SY-TITLE CENTERED.
      FORMAT INTENSIFIED ON.
    *include zconinc3.
    FORMAT INTENSIFIED OFF.
    CLEAR DD02T.
    SELECT * FROM DD02T WHERE TABNAME EQ TAB-TABNAME
                          AND DDLANGUAGE EQ SYST-LANGU
                          AND AS4LOCAL   EQ 'A'.
    ENDSELECT.
    CLEAR DD02L.
    SELECT * FROM DD02L WHERE TABNAME EQ TAB-TABNAME
                          AND AS4LOCAL   EQ 'A'.
    ENDSELECT.
    WRITE: / 'Table Name   ', TAB-TABNAME,
             'Type=', DD02L-TABCLASS,
              DD02T-DDTEXT.
    WRITE: /  'Field',       20 'Description',
             81 'Key',        75 'Type',
             90 'Length', 100 'Decimals',
             110 'Check Table',
             121 'REF Table',
             132 'REF Field'.
    FORMAT INTENSIFIED ON.

    Here you go:
    REPORT ZANID_TEST message-id zz NO STANDARD PAGE HEADING
    LINE-SIZE 255 LINE-COUNT 65.
    TABLES: DD03L, DD04T, DD02T, DD02L.
    SELECT-OPTIONS: TABNAME FOR DD02L-TABNAME.
    *SELTEXT E 'SAP Table Name(s)'
    DATA: BEGIN OF TAB OCCURS 500,
      TABNAME LIKE DD03L-TABNAME,
      POSITION LIKE DD03L-POSITION,
      FIELDNAME LIKE DD03L-FIELDNAME,
      STXT LIKE DD04T-DDTEXT,
      KEYFLAG LIKE DD03L-KEYFLAG,
      DATATYPE LIKE DD03L-DATATYPE,
      LENG LIKE DD03L-LENG,
      DECIMALS LIKE DD03L-DECIMALS,
      CHECKTABLE LIKE DD03L-CHECKTABLE,
      REFTABLE LIKE DD03L-REFTABLE,
      REFFIELD LIKE DD03L-REFFIELD,
      rollname like dd03l-rollname,
      domname like dd04l-domname,
    END OF TAB.
    DATA: LINE-COUNT TYPE I.
    SELECT * FROM DD03L WHERE TABNAME IN TABNAME.
      MOVE-CORRESPONDING DD03L TO TAB.
      select single domname from dd04l into tab-domname
        where rollname = dd03l-rollname.
      IF TAB-FIELDNAME CS '.inc'.
      ELSE.
        SELECT * FROM DD04T WHERE ROLLNAME = DD03L-ROLLNAME
        AND DDLANGUAGE = SYST-LANGU
        AND AS4LOCAL = 'A'.
        ENDSELECT.
        IF SYST-SUBRC = 0.
          TAB-STXT = DD04T-DDTEXT.
        ENDIF.
        APPEND TAB.
      ENDIF.
    ENDSELECT.
    DESCRIBE TABLE TAB LINES LINE-COUNT.
    IF LINE-COUNT EQ 0.
      MESSAGE E009 WITH 'Table Not Found'.
    ENDIF.
    SORT TAB BY TABNAME POSITION.
    LOOP AT TAB.
      ON CHANGE OF TAB-TABNAME.
        NEW-PAGE. "Page Break for New Table
      ENDON.
      WRITE: / TAB-FIELDNAME, 20 TAB-STXT,
      81 TAB-KEYFLAG, 85 TAB-DATATYPE,
      90 TAB-LENG, 100 TAB-DECIMALS,
      110 TAB-CHECKTABLE,
      tab-rollname,
      tab-domname.
    ENDLOOP.
    TOP-OF-PAGE.
      FORMAT INTENSIFIED OFF.
      WRITE: / SY-REPID,
      'Run by', SY-UNAME(8), 'on', SY-DATUM, SY-UZEIT,
      'System', SY-SYSID(4), 'Client', SY-MANDT.
      WRITE: / SY-TITLE CENTERED.
      FORMAT INTENSIFIED ON.
    *include zconinc3.
      FORMAT INTENSIFIED OFF.
      CLEAR DD02T.
      SELECT * FROM DD02T WHERE TABNAME EQ TAB-TABNAME
      AND DDLANGUAGE EQ SYST-LANGU
      AND AS4LOCAL EQ 'A'.
      ENDSELECT.
      CLEAR DD02L.
      SELECT * FROM DD02L WHERE TABNAME EQ TAB-TABNAME
      AND AS4LOCAL EQ 'A'.
      ENDSELECT.
      WRITE: / 'Table Name ', TAB-TABNAME,
      'Type=', DD02L-TABCLASS,
      DD02T-DDTEXT.
      WRITE: / 'Field', 20 'Description',
      81 'Key', 75 'Type',
      90 'Length', 100 'Decimals',
      110 'Check Table',
      141 'Data Element',
      172 'Domain'.
      FORMAT INTENSIFIED ON.
    Message was edited by: Erik Verbeeck

  • Description of field from data element in table control

    hello people !!! I need help !!
    I’m using a table control in my module pool program. I create this table through wizard, taking the fields from an internal table. This internal table was defined like this:
    Table Control ; posting items
    DATA: t_postitems  TYPE stucture_fd OCCURS 0 WITH HEADER LINE.
    Where  <b>stucture_fd</b> is strucuture with the fields.
    The problem that I have is that the titles of the fields does not take their description from the data element.
    How I create this table control from the internal table and that takes the description from the data element? It is very important this, because this development will be used in different languages.
    From already I am thanking for any answer.
    Thank so much.
    Best regards, Esther.

    Gracias, es mas facil para mi en espanol.
    tables: tab_prb.
    types: begin of <b>ti</b>.
               include structure <b>tab_prb</b>.
    types: end of <b>ti</b>.
    data: <b>ti_b</b>kpf type table of ti,
             <b>wa_bkpf</b> type ti.
    Explicacion:
    tab_prb, es una tabla transparent que contiene la estructura <b>struct_fd</b> que tiene los campos mas un flag para la seleccion de fila (flag).
    Defini esta tabla transparente, para que los campos tomen su decripcion desde los elementos de datos.
    Si creo el TB directo de la tabla tab_prb, no me permite seleccionar el campo flag como campo de seleccion, cuya funcion es marcar linea simple.
    Si yo hago la definicion anterior en mi programa, cuando creo el TB, va todo bien, hasta <b>ti_bkpf</b> que seria mi tabla interna, pero cuando me pide el work area, le ingreso <b>wa_bkpf</b> me indica que no esta definido en mi programa o ne es una estrucutura.
    Espero haber aclarado un poco mi respuesta.
    Muchas gracias !!!
    Esther.-

  • Creation of field without data element

    Hi all,
    i want to create a field SLNO without data element, i.e. by assigning direct data type NUMC.
    by doing so while activating it is giving the below message.
    "The table must be adjusted by unloading and reloading
    it in the database. This function has a long runtime and should
    not be performed while the table is being used for production."
    "If you want to start the adjustment nevertheless,
    select a processing type and choose 'Adjust'.
    Otherwise choose 'Terminate'."
    pls let me know which is better i.e. by assingning direct data type, or else can i create a data element with type as 'NUMC'.
    Regards,
    venkat

    hi venkat,
    when creating the db table in se 11 ,if u want to use predefined data type ie char,numc,date etc ... With in se14,in fields tab, click predefined type button which is placed in the first row along with cut ,delete icons.
    When u click predefinedtype button, the field named data type will be enabled and its there ready for editing.Choose the data type u need and data length etc.
    If u r creating the db for the first time, there is no need for , adjusting the db table using se14.
    But if u r trying to edit a db ,that is already been created , then make neccessary changes in the db and go to se14. There give ur edited db name, and click "activate and adjust database " button...Ensure that "save data " option button is selected.
    Note:
    If u r making any structural  changes in already existing db ,then use se14 to adjust ,save and activate the db.
    Hope the content is usefull
    please change the problem  status if its resolved .Thank you.
    thanks
    rajeshwari
    Edited by: Rajeshwari padmanaban on Jan 16, 2009 11:24 AM

  • Creation of Data Element

    Hi,
    I am working on special project of Automation of all utility billing and housing system for a big company in SAP.
    For that I have to create 26 tables and obviously I am creating a lot of dataelements.
    Now the problem is my quality dept says that I should use the inbuilt data elements and refrain from creating new ones. In this case the field label is not matching my field. He says that who is going to see the table and says that you can change the field description in reports as you like. Is it justified.
    I can see that there are more than 500 standard datalements created for  a char field of length 4 by SAP. but none of the description matches my field description. if the case is of reducing the load then does sap recommend not to create z data elements. 
    Can we create dataelement just for the sake of field label and what is the other purpose of a dataelement if not
    How much load will be generated by creating a dataelement.
    kindly give some insight into the need to create dataelements.

    Hi!
    If your Quality people are that much particular about creation of data elements, there is one way to solve this problem. Use standard data elements.
    I know here you will get a doubt that after creating a maintenance generator you will not be able to see the description whatever you want in SM30. For this follow the below procedure.
    While creating maintenance generator you will give the function group name right, go to SE80 -> and give the function group name there -> double click on the screen number of maintenance -> click on element list tab -> click on 'Texts/I/O templates' tab -> now against the field names under 'Text or I/O Field' column remove the value '+____________' and type the field description there -> repeat the procedure for all the fields -> now save, check and activate the screen as well as function group.
    Now if you go to SM30, you can see the field description for every field.
    This is somewhat time consuming, but it may help you.
    Reward points, if useful.
    Regards,
    Venkat.

  • Extended Withholding Tax Certificate Printing-Missing data elements

    Hi
    I am working in 4.7 version and am faced with some issues in TDS.
    (1)  In the TDS certificate printing, the certificate number is not appearing even though the number ranges are exactly maintained for the current year.  I note that for some Official tax keys, it is printed perfect, but for some others it is not printed.
    (2) Another problem is the Cheque number details are not appearing in the certificate.
    (3) Eventhough the PAN number is mentioned in the Vendor Master, the same is not picked up rather it is coming from the J1ID data elements.
    Your valuable comments will aptly rewarded.
    Regards,

    1.In print preview certificate number will not generated, when ever you have given printing then only number will be generated.please note that
    back from preview and give print out, dont give print out from preview.
    2.For getting the cheque number,you need to
    write your own code inside the Function Module
    J_1I7_USEREXIT_CHEQUENO_CERT.This FM is present in the
    note 912767.
    The code needs to be written at the customer end.It was not there in note no.912767
    Kindly take the help of your abaper in this regard.
    for sample coding please use the following link.
    Check/Cheque No. is not printing on the TDS Certificate
    3. Pan number of vendor in form 16A is coming if you update the pan no.from the following areas
    vendor master -Withholding tax-cin details-Pan number
    or In JI1D- Vendor Excise Details- PAN number
    assign points

  • ORABPEL-77005 Uninitialized data element

    Hi,
    I created BPM process and I used BusinessRuleTask in it.
    During testing I get:
    Non Recoverable System Fault :
    <bpelFault><faultType>0</faultType><subLanguageExecutionFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is bpmn:getDataOutput('ruleOutput'). The XPath expression failed to execute; the reason was: ORABPEL-77005 Uninitialized data element. DataOutput ruleOutput is not initialized in flow element BusinessRuleTask. Make sure to initialize DataOutput ruleOutput before using it in flow element BusinessRuleTask. Contact oracle support to resolve the issue. . Check the detailed root cause described in the exception message text and verify that the XPath query is correct. </summary></part><part name="code"><code>XPathExecutionError</code></part></subLanguageExecutionFault></bpelFault>
    Before BusinessRuleTask step I initialized ruleOutput, but the result is the same..
    have you any idea what's wrong?

    Sharing another scenario as it might help others.
    Instead of "DataOutput [variable] is not initialized" I encountered
    Uninitialized data element.
    DataInput execData is not initialized in flow element [task name]
    Make sure to initialize DataInput execData before using it in flow element [process name]
    The issue was in the log-handler (Before Output association) of the human-task, I logged the task execData (which is a system variable that gets populated with task execution data).
    ora:getContentAsString(bpmn:getDataOutput('execData'))
    The problem was resolved after I removed the above statement from the log handler.

  • Searching on data element

    Is there a way to perform a sort and a search against the data element of my key / value pair?
    I have a DB that I use to track some remote files. I have an ID that I use as the key to my key value pair that points me to a given file. This must be unique in the DB. I am trying to use the data portion of the pair to contain the file's last accessed time. At times, I have a need to retrieve all items by age (i.e. those with the oldest last access time).
    Is there a way to accomplish this with Berkley DB? (BTW, I was using a secondary DB table for this but encountered other problems that I have already posted on and received no responses so I am trying to create an implementation that does not use secondary DBs).
    Thanks,
    Chris

    Hi Chris,
    I am not sure if this is what you are looking for,
    but the way I have tracked remote files is using
    a structure containing information about the file
    e.g. filename, fully qualified location, other
    relevant information about the file as my data,
    and fully qualified file name as the key. The data
    structure can contain any information of interest
    about the remote file. In my case, I keep the files
    shareable storage so that my records can participate
    in transactions and replication.
    Thanks,
    Sandra

  • How to add user defined search help to data element -EXTWG ?

    Dear All,
    EXTWG is external material groupp field in Material Master. I am using this field to provide some external material group .But there is no search help attached to it. I want to create a search help and attach to it .I can create a search help but how to attach to a standard date element .How can i do??

    hi
    good
    go through this links ,i hope these ll help you solve your problem
    http://help.sap.com/saphelp_nw2004s/helpdata/en/90/8d7307b1af11d194f600a0c929b3c3/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ee86446011d189700000e8322d00/content.htm
    thanks
    mrutyun^

  • Import data element error !

    Hi all!
    I have a problem with SAPLink when I try to import .nugg file (this file contains data element). I use SAPLink and get a good result with programe, class, smartforms, function group,... but Data dictionary objects.  I install  Data dictionary objects plug-in and active it (active whole worklist). When I use DTEL(Data element) object type to export to .nugg file, it's good but i can't import this file.
    This is error image: http://www.4shared.com/photo/R7f0HWxc/Error.html
    Please give me a suggest !
    Thanks & Regards
             Huandv

    Guys,
    Nilanjan:
    1) All DM Packages gives error, even standard ones: COPY with simple restriction on Category=Actual to Category=Plan.
    2) We only have one client and system.
    3) I will need a new XCEEDZIP.dll file from you guys please. I have tried re-registering it, no joy.
    Same error nilanjan.
    Clyde,Halomoan:
    My selection is based on BASE members not parent. see above with category=actual. Simple selection dear.
    What shall I do, Cant askt eh basis guys to re-install the system in whole, BUt yes, If interested, One of you guys can log on to my machine and have a look.
    Any other Advice ?

Maybe you are looking for

  • 2 AI channels on one DAQ, with different sensitivity range

    This vi is based on the State Machine from "new project" on the splash screen at LV startup. A while loop is in parallel to the main while loop of the state machine, shown in picture.  It runs continuously until the Exit button is pressed. The proble

  • Trouble with HD videos on Satellite M70

    HI, I recently bought a M70-208. It seems that I experience trouble with HD video both with VLC and WMP. For example, while playing the demo video of "HDtoGo", the flow is very slow. Other non Toshiba notebook that I'm using for my job is playing thi

  • Deprecated Class

    I am attempting to 'import com.borland.jbcl.layout' but java now doesn't recgonise this statement. I am trying to use the XYLayout method, but without the correct libarie it won't work. So does anybody know what it's been updated with? Any help would

  • Can't open Excel - not enough memory

    I recently converted files from a PC over to this mac by using an external hard drive. Among other things I don't quite know how to do, I get an error message-not enough memory- when trying to open excel. Word works fine. It is Microsoft 2007. Checke

  • Different afp shares for different network cards (NIC)

    Hi, I have a machine sharing via two connections on two separate physical connectors. One is restricted to LAN, the other is allowed to use the internet connection. How do I set up shares only available on the LAN connection? Thanks