The Unit Converter is ERROR

The Unit Converter is ERROR with Currency Exchange
i did send the letter to yahoo, please check it out, man

no, the problem existed before, a couple of weeks already.
I just checked again, on my old mac mini, w/ safari 3, same problem.
I guess the connection to yahoo-finance (i.e. the data the widget gets from Y!) is somehow messed up.

Similar Messages

  • Problem with unit converter widget

    I am having a weird problem with my unit converter widget on 10.4.9.
    I re-installed my system, and now when I go to open the unit converter widget, I can no longer see the British pound currency, there are all these othere European currencies.
    Is there anyway to get the British pound currency back, do I need to re-install the widget, and how do I do that.

    Then I'd try removing & reinstalling it...
    http://docs.info.apple.com/article.html?artnum=301629
    If it's one that came with OSX, you may have to get pacifist to extract it from your install Disk.

  • My Unit Converter Widget is not right

    I'd been stop using Unit Converter widget from Dashboard since many months ago, now it's getting very inconvenient for me because even after many OS X updates, my Unit Converter shows wrong information of the currency conversion.
    Here's a screen capture image I took:
    http://edrian.com/unitconverter.png
    I tried to delete this Widget and replace from other Mac running OS X Leopard, but it still doesn't work right. Any ideas and how can I fix this issue?

    I updated to the latest OS X 10.5.4 and the unit converter widget still not working properly. Obviously Apple didn't look into this at all.
    I would recommend downloading this Currency Converter http://widgets.palple.net/

  • Unit converter widget on kde

    does anyone use the unit converter on kde?
    I have been using it for a long while, and it has been working fine, but since the last few kde upgrades, I cannot type anything into the unit converter data field, so I cannot convert anything.
    anyone else got this issue?

    I have found out why this is occuring, but I do not know how to resolve it..
    The text that is being entered has a white font colour, and the backgroung is also white, so I cannot see it. If I highlight (double click) what has been entered, I can see the text.
    This is also happening on the calendar widget (where the week no, and the date are entered in text at the bottom).
    Does anyone know how to change the font colour or the background colour for these? (I have tried changing the clock backgroung colour, but this has no effect on the text boxes).
    Last edited by kierank01 (2010-05-12 10:43:40)

  • I am trying to setup my new time capsule but it is not working. after entering the airport utility and locating the TC, after I tell the program to continue, the unit just disappear and the setup menu says there is an error. Any idea of what is happening?

    I am trying to setup my new time capsule but it is not working. after entering the airport utility and locating the TC, after I tell the program to continue, the unit just disappear from the menu and the setup menu says there is an error. I tried using the wireless connection, and also the cable, but none worked. Any idea of what could be happening?

    What are you setting it up as.. join wireless network .. the very worst setup, it will disappear.. reboot the whole network in order modem. router TC.. clients and it will likely reappear.
    Tell us what network setup you are using..
    If you setup with cable to a computer completely isolated from the network with TC also isolated.. finish the setup of everything you want. .before update.. then plug it into the network. .then restart everything in correct order.. it will work most of the time.

  • Error message  "Enter the unit of measure" in WebClient ???

    Hello Experts,
    We are working on CRM 5.0 SP 7, IC WebClient and have implemented the BAdi "CRM_SERVICEPROD_BADI" to assign a service product ''INVESTIGATION' whenever user selects service ticket in WebClient.
    However, when confirming a Business Partner and accessing the service ticket, an error is getting displayed stating "Enter the unit of measure".
    We have already mentioned the unit of measure in Product but it seems it is not picking from there.
    Please help me to remove this error.
    Reward points assured for useful answers.
    Regards,
    Amit

    Hi Amit
    Gerhard is 100% correct. Please make sure that your unit of measures are maintained on the product master(trans COMMPR01).
    Use the code below in CRM_PRODUCT_I_BADI to set uom.
      if cs_product_i_badi-process_qty_unit is initial.
        cs_product_i_badi-process_qty_unit = 'EA'.
        cs_product_i_badi-process_qty_num = 1.
        cs_product_i_badi-process_qty_den = 1.
      endif.
    Also, you will find you get error to specify product quantity. This can be done in badi CRM_SCHEDLIN_BADI with code below.
    if is_schedlin_wrk-quantity is initial.
       cs_schedlin_badi-quantity = 1.
    endif.
    Regards
    johan.

  • Converting the units of a weight field

    Hi,
    I want to convert weight field's units   into KG. i want to add the all weights but i want to convert it into KG before. as it may contain the units other than KG. plz tell me its veryvery urgent.
    i think u understood..
    weight( (VBRP-BRGEW)
    units (VBRP-GEWEI)
    Kumar

    this  sample  code   must   help  u ....
    *&      Form  z_unit_conversion_kg
    This form is used to convert weight unit in 'LB'
    -->  p1        text
    <--  p2        text
    FORM Z_UNIT_CONVERSION_LB.
      I_LN_ITEMS-BRGEW_KG = I_LN_ITEMS-BRGEW.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = I_LN_ITEMS-BRGEW
                UNIT_IN  = C_KG
                UNIT_OUT = C_LB
           IMPORTING
                OUTPUT   = I_LN_ITEMS-BRGEW_LB.
    I_LN_ITEMS-NTGEW_KG = I_LN_ITEMS-NTGEW.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = I_LN_ITEMS-NTGEW
                UNIT_IN  = C_KG
                UNIT_OUT = C_LB
           IMPORTING
                OUTPUT   = I_LN_ITEMS-NTGEW_LB.
      MODIFY I_LN_ITEMS TRANSPORTING NTGEW_KG NTGEW_LB.
    ENDFORM.                               " z_unit_conversion_lb
    *&      Form  z_unit_conversion_lb
    This form is used to convert weight unit in 'KG'
    -->  p1        text
    <--  p2        text
    FORM Z_UNIT_CONVERSION_KG.
      I_LN_ITEMS-BRGEW_LB = I_LN_ITEMS-BRGEW.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = I_LN_ITEMS-BRGEW
                UNIT_IN  = C_LB
                UNIT_OUT = C_KG
           IMPORTING
                OUTPUT   = I_LN_ITEMS-BRGEW_KG.
      MODIFY I_LN_ITEMS TRANSPORTING BRGEW_LB BRGEW_KG.
    I_LN_ITEMS-NTGEW_LB = I_LN_ITEMS-NTGEW.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = I_LN_ITEMS-NTGEW
                UNIT_IN  = C_LB
                UNIT_OUT = C_KG
           IMPORTING
                OUTPUT   = I_LN_ITEMS-NTGEW_KG.
      MODIFY I_LN_ITEMS TRANSPORTING NTGEW_LB NTGEW_KG.
    ENDFORM.                               " z_unit_conversion_kg
    *&      Form  z_unit_conversion_kg_lb
    This form is used to convert weight unit in 'KG' and 'LB'
    -->  p1        text
    <--  p2        text
    FORM Z_UNIT_CONVERSION_KG_LB.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = I_LN_ITEMS-BRGEW
                UNIT_IN  = I_LN_ITEMS-GEWEI
                UNIT_OUT = C_KG
           IMPORTING
                OUTPUT   = I_LN_ITEMS-BRGEW_KG.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = I_LN_ITEMS-BRGEW_KG
                UNIT_IN  = C_KG
                UNIT_OUT = C_LB
           IMPORTING
                OUTPUT   = I_LN_ITEMS-BRGEW_LB.
      MODIFY I_LN_ITEMS TRANSPORTING BRGEW_KG BRGEW_LB.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = I_LN_ITEMS-NTGEW
                UNIT_IN  = I_LN_ITEMS-GEWEI
                UNIT_OUT = C_KG
           IMPORTING
                OUTPUT   = I_LN_ITEMS-NTGEW_KG.
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
           EXPORTING
                INPUT    = I_LN_ITEMS-NTGEW_KG
                UNIT_IN  = C_KG
                UNIT_OUT = C_LB
           IMPORTING
                OUTPUT   = I_LN_ITEMS-NTGEW_LB.
      MODIFY I_LN_ITEMS TRANSPORTING NTGEW_KG NTGEW_LB.
    ENDFORM.                               " z_unit_conversion_kg_lb

  • How to Convert the Warning Message to Error Message in Standard Transaction

    Hi,
        I face one problem in Standard Transaction Code CS02. In that  by entering the material Number, Plant, bomstatus press enter. it gives a warning message. How to convert the Warning message to Error. In abap how to do that. Please help me.

    Mohan,
    It appears that there is some configuration you can do for BOM Message types to change the message type.  The IMG link for this function is:
    Production->Basic Data->Bill of Material->General Data->Change Message Type
    However you need to read the IMG documentation to see if this will work for you.  There are only certain messages that can be changed with this configuration step.
    Also, please do not double post questions in the forums.
    Best Regards,
    Chris H.

  • HT1904 I purchased an iTunes card in the United States yesterday. I arrived home in the Bahamas today and tried to redeem the card  but got an error message stating that  I can only redeem  my card in a United States store. How to redeem a card outside th

    I purchased an iTunes card in the United States yesterday. I arrived home in the Bahamas today and tried to redeem the card but got an error message stating that  I can only redeem  the card in a United States store. How to redeem a card outside the US?

    Sorry - iTunes cards can only be redeemed in the country in which they were purchased.
    GB

  • I want to know the function moulde used to convert the unit of measure

    The whole process should be done in the Portugues login language.
    For the login language PT( Portuguese). In table MARA, if i choose the menu settings-> use parameters-> and chek this field (conversion field exit) . Then for any material if i check the unit of measure (MEINS), is display of all the material its shows differently, but if i select one material and see all the fields of that material, the MEINS field is changed. For example when all the materials are show the MEINS is ST. but when i select one material and display it . it shows PEC in portugues language.
    I want to know the function moulde used to convert the unit of measure

    HI,
    There exits the conversion routine for that particular field in its domain level..
    copy that conversion routine and search for that in SE37 your conversion routine
    you will find the function module this gives you the internal and external formats
    Fms are listed below for MEINS
    CONVERSION_EXIT_CUNIT_INPUT    Conversion exit for commercial (3-char) measurement unit INPUT
    CONVERSION_EXIT_CUNIT_OUTPUT   Conversion exit for commercial (3-char) measurement unit OUTPUT
    For convertiung quantity into base unit of measure you can do this way
    CALL FUNCTION 'ME_CONVERSION_MEINS'                       "#EC *
        EXPORTING
          i_matnr             = "give material number"
          i_mein1             = "Unit of measurement "
          i_meins             = "base unit of measure
          i_menge             = "quantity
        IMPORTING
          menge               = "quantioty in your required measurement
        EXCEPTIONS
          error_in_conversion       = 1
          no_success                = 2
          OTHERS                    = 3.
    HOpe this helps you
    Reward if useful
    regards,
    nazeer
    Message was edited by:
            nazeer shaik

  • Changing unit text limitations -error 1128

    Hey everyone,
    I'm developing a VI which uses the native power of LabVIEW Units to do all my number conversions.
    Here's my question, once the units are set for a control at edit-time can i change the Unit Text to something unrelated at run-time in order to prepare my indicator for a different signal? For instance lets say Channel 1 is a temperature for Test1 so programmatically converting from Fdeg to Cdeg and back is no problem for LabVIEW. For Test2, the same VI is used but now Channel 1 is a pressure. Can i programmatically change my indicator units from Fdeg now to a pressure unit like psi, atm, or bar? I'm getting Error 1128 "Input unit is not compatible with the current unit." even though the unit is correct when entered at Edit-time.  Any thoughts?
    Thanks,
    Craig
    Solved!
    Go to Solution.

    Hi craige,
    no, you can't change the unit type at runtime. This will be fixed at compilation time... You can only change to other representations of the same physical property (like Pa to bar or to some obscure psi for pressure).
    One old trick when using units:
    You may use "$1" as unit for a control. Using a "Convert unit" function also set to "$1" you can then strip the unit. So your subVI will accept any unit for the connected control - but that doesn't solve your perticular problem
    Message Edited by GerdW on 12-30-2009 08:31 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Unit of measurement error

    i
    hi guys
    crested po with unit of measure kg and also made migo,miro and RFQ  but now when i change unit of measurement from kg to pc in material master there is error
    the base unit of measure cannot be changed choose display errors
    1 if there are no stock of the material in the current period and in the previous period if there are stock in the previous period you can clear them as follow
    -post the stock in the previous period to the current period so that the stock for the previous period is the same as the stock for the current period
    -clear the stock with the posting date in the previous period
    -if no purchase order exist for the material
    i have already made po migo,miro, RFQ , please can you guide me step by step how to change the unit of measurement
    thanks in advance

    Hi
    Goods issue the particular material to some cost center. Then there will not be any stock for the particular material. Then change the UOM.
    It will work out.
    Then reverse the Goods Issue.
    Regards,
    Raman

  • Unit of measure error in BAPI_MATERIAL_SAVEDATA

    Hi Guru's,
    i am trying to upload the material master data using BAPI...while uploading ia m getting beloow error ..please guide me anyone you..where i am doing mistake.....
    1st this error i am getting while executing:
    internal unit HR ,language EN is not maintained.
    and afetr execution in gs_return i am getting below error:
    Unit of measure ****** is not defined; check your entry
    error number :490
    dont get tence for code and all the values ae moving properly into BAPI...and
    here i am consider the unit of mesure as HR (hour)..
    here i am caliculating like ex: for employe (material) generating bill in hour basis.that is per 1hour $100.
    please let me know if my question is not clear..
    thanks in advance and will full points to reply....
    *& Report  ZERP_MATERIAL_CREATE_UPLOAD
    REPORT  zerp_material_create_upload.
    DATA:gs_bapimathead          TYPE bapimathead,
         gs_clientdata           TYPE bapi_mara,
         gs_clientdatax          TYPE bapi_marax,
         gs_plantdata            TYPE bapi_marc,
         gs_plantdatax           TYPE bapi_marcx,
         gs_forecastparameters   TYPE bapi_mpop,
         gs_forecastparametersx  TYPE bapi_mpopx,
         gs_valuationdata        TYPE bapi_mbew,
         gs_valuationdatax       TYPE bapi_mbewx,
         gs_salesdata            TYPE bapi_mvke,
         gs_salesdatax           TYPE bapi_mvkex,
         gs_storagelocationdata  TYPE bapi_mard,
         gs_storagelocationdatax TYPE bapi_mardx,
         gt_materialdescription  TYPE STANDARD TABLE OF bapi_makt,
         gwa_materialdescription TYPE bapi_makt,
         gt_taxclassifications   TYPE STANDARD TABLE OF bapi_mlan,
         gwa_taxclassifications  TYPE bapi_mlan,
         gt_prtdata              TYPE STANDARD TABLE OF bapi_mfhm,
         gwa_prtdata             TYPE bapi_mfhm,
         gt_prtdatax             TYPE STANDARD TABLE OF bapi_mfhmx,
         gwa_prtdatax            TYPE bapi_mfhmx,
         gt_unitsofmeasure       TYPE STANDARD TABLE OF bapi_marm,
         gwa_unitsofmeasure      TYPE bapi_marm,
         gt_unitsofmeasurex      TYPE STANDARD TABLE OF bapi_marmx,
         gwa_unitsofmeasurex     TYPE bapi_marmx,
         gs_return               TYPE bapiret2.
    TYPES:BEGIN OF gty_itab1,
             matnr(18),   "material
             mbrsh(1),    "industry sector
             mtart(4),    "material type
             vkorg(4),    "sales org
             vtweg(2),    "distr chan
             kondm(2),    "mat prcing grp
             ktgrm(2),    "acc asgn grp
             dwerk(4),    "plant
             meins(3),    "base uom
             tragr(4),    "tarns grp
             matkl(9),    "mat grp
             spart(2),    "division
             ntgew(13),   "net weight
             gewei(3),    "weight unit
             werks(4),    "plant
             ladgr(4),    "loading grp
             dismm(2),    "mrp type
             mtvfp(2),    "available check
             disgr(4),    "mrp grp
             dispo(3),    "mrp controller
             beskz(1),    "procurement type
             prmod(1),    "forecasting mode
             bklas(4),    "valution class
             stprs(11),   "std price
             vprsv(1),    "price control
             peinh(5),    "price unit
             lgort(4),    "storage location
             maktx(40),   "mat description
             taxkm(1),    "tax class
             planv(3),    "task list usage
             brgew(13),   "gross weight
             mtpos(4),    "gen it gross grp
          END OF gty_itab1.
    DATA:gt_itab1 TYPE STANDARD TABLE OF gty_itab1,
         gwa_itab1 TYPE gty_itab1.
    TYPES:BEGIN OF gty_itab2,
          abc(178),
    END OF gty_itab2.
    DATA:gt_itab2 TYPE STANDARD TABLE OF gty_itab2,
         gwa_itab2 TYPE gty_itab2.
    PARAMETERS:p_files TYPE string.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    *using call method uploading CSV file into internal table
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = p_files
          filetype                = 'ASC'
        TABLES
          data_tab                = gt_itab2
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT gt_itab2 INTO gwa_itab2.
        gwa_itab1 = gwa_itab2-abc(178).
        APPEND gwa_itab1 TO gt_itab1.
      ENDLOOP.
      LOOP AT gt_itab1 INTO gwa_itab1.
        SPLIT gwa_itab1 AT ',' INTO
              gwa_itab1-matnr
              gwa_itab1-mbrsh
              gwa_itab1-mtart
              gwa_itab1-vkorg
              gwa_itab1-vtweg
              gwa_itab1-kondm
              gwa_itab1-ktgrm
              gwa_itab1-dwerk
              gwa_itab1-meins
              gwa_itab1-tragr
              gwa_itab1-matkl
              gwa_itab1-spart
              gwa_itab1-ntgew
              gwa_itab1-gewei
              gwa_itab1-werks
              gwa_itab1-ladgr
              gwa_itab1-dismm
              gwa_itab1-mtvfp
              gwa_itab1-disgr
              gwa_itab1-dispo
              gwa_itab1-beskz
              gwa_itab1-prmod
              gwa_itab1-bklas
              gwa_itab1-stprs
              gwa_itab1-vprsv
              gwa_itab1-peinh
              gwa_itab1-lgort
              gwa_itab1-maktx
              gwa_itab1-taxkm
              gwa_itab1-planv
              gwa_itab1-brgew
              gwa_itab1-mtpos.
    *header data
        gs_bapimathead-material                      = gwa_itab1-matnr.
        gs_bapimathead-ind_sector                    = gwa_itab1-mbrsh.
        gs_bapimathead-matl_type                     = gwa_itab1-mtart.
        gs_bapimathead-basic_view                      = 'X'.
        gs_bapimathead-sales_view                      = 'X'.
        gs_bapimathead-purchase_view                   = 'X'.
        gs_bapimathead-mrp_view                        = 'X'.
        gs_bapimathead-storage_view                    = 'X'.
        gs_bapimathead-account_view                    = 'X'.
        gs_bapimathead-cost_view                       = 'X'.
    *sales data
        gs_salesdata-sales_org                       = gwa_itab1-vkorg.
        gs_salesdatax-sales_org                      = '8888'.   "'X'.
        gs_salesdata-distr_chan                      = gwa_itab1-vtweg.
        gs_salesdatax-distr_chan                     = '88'.   "'X'.
        gs_salesdata-mat_pr_grp                      = gwa_itab1-kondm.
        gs_salesdatax-mat_pr_grp                     = 'X'.
        gs_salesdata-acct_assgt                      = gwa_itab1-ktgrm.
        gs_salesdatax-acct_assgt                     = 'X'.
        gs_salesdata-delyg_plnt                      = gwa_itab1-dwerk.
        gs_salesdatax-delyg_plnt                     = 'X'.
    *client data
        gs_clientdata-base_uom                       = 'HR '.   "gwa_itab1-meins.
        gs_clientdatax-base_uom                      = 'X'.
        gs_clientdata-trans_grp                      = gwa_itab1-tragr.
        gs_clientdatax-trans_grp                     = 'X'.
        gs_clientdata-matl_group                     = gwa_itab1-matkl.
        gs_clientdatax-matl_group                    = 'X'.
        gs_clientdata-division                       = gwa_itab1-spart.
        gs_clientdatax-division                      = 'X'.
        gs_clientdata-net_weight                     = gwa_itab1-ntgew.
        gs_clientdatax-net_weight                    = 'X'.
        gs_clientdata-unit_of_wt                     = gwa_itab1-gewei.
        gs_clientdatax-unit_of_wt                    = 'X'.
       gs_clientdata-item_cat                       = gwa_itab1-mtpos.
       gs_clientdatax-item_cat                      = 'X'.
    *Plant data
        gs_plantdata-plant                           = '8888'. "gwa_itab1-werks.
        gs_plantdatax-plant                          = '8888'.   "'X'.
        gs_plantdata-loadinggrp                      = gwa_itab1-ladgr.
        gs_plantdatax-loadinggrp                     = 'X'.
        gs_plantdata-mrp_type                        = gwa_itab1-dismm.
        gs_plantdatax-mrp_type                       = 'X'.
        gs_plantdata-availcheck                      = gwa_itab1-mtvfp.
        gs_plantdatax-availcheck                     = 'X'.
        gs_plantdata-mrp_group                       = gwa_itab1-disgr.
        gs_plantdatax-mrp_group                      = 'X'.
        gs_plantdata-mrp_ctrler                      = gwa_itab1-dispo.
        gs_plantdatax-mrp_ctrler                     = 'X'.
        gs_plantdata-proc_type                       = gwa_itab1-beskz.
        gs_plantdatax-proc_type                      = 'X'.
        gs_plantdata-period_ind                      = 'M'.   "HARD CODED FOR PERKZ peroid indicator
        gs_plantdatax-period_ind                     = 'X'.
        gs_plantdata-inhseprodt                      = '0'.   "hard coded for DZEIT inhouse production
        gs_plantdatax-inhseprodt                     = 'X'.
    *forecast parameeters
        gs_forecastparameters-plant                  = '8888'.   "gwa_itab1-prmod.
        gs_forecastparametersx-plant                 = '8888'.   "'X'.
        gs_forecastparameters-fore_model             = gwa_itab1-prmod.
        gs_forecastparametersx-fore_model            = 'X'.
    *valution data
        gs_valuationdata-val_area                   = '8888'. "gwa_itab1-bklas.
        gs_valuationdatax-val_area                  = '8888'.   "'X'.
        gs_valuationdata-val_class                   = gwa_itab1-bklas.
        gs_valuationdatax-val_class                  = 'X'.
        gs_valuationdata-std_price                   = gwa_itab1-stprs.
        gs_valuationdatax-std_price                  = 'X'.
        gs_valuationdata-price_ctrl                  = gwa_itab1-vprsv.
        gs_valuationdatax-price_ctrl                 = 'X'.
        gs_valuationdata-price_unit                  = gwa_itab1-peinh.
        gs_valuationdatax-price_unit                 = 'X'.
    *storage location dat
        gs_storagelocationdata-plant              = '8888'.  "gwa_itab1-lgort.
        gs_storagelocationdatax-plant             = '8888'.  "'X'.
        gs_storagelocationdata-stge_loc              = gwa_itab1-lgort.
        gs_storagelocationdatax-stge_loc             = '8888'.   "'X'.
    *material discription
        gwa_materialdescription-langu                = 'E'.
        gwa_materialdescription-matl_desc            = gwa_itab1-maktx.
    *tax classification
       gwa_taxclassifications-taxclass_1            = gwa_itab1-taxkm.
        gwa_taxclassifications-depcountry            = 'US '.         "HARD CODE FOR TAX
    *prt data
        gwa_prtdata-plant                        = '8888'.   "gwa_itab1-planv.
        gwa_prtdatax-plant                       = '8888'.   "'X'.
        gwa_prtdata-prt_usage                        = gwa_itab1-planv.
        gwa_prtdatax-prt_usage                       = 'X'.
    *unitsof measure
        gwa_unitsofmeasure-alt_unit                  = 'HR '.   "gwa_itab1-brgew.
        gwa_unitsofmeasurex-alt_unit                  = 'HR '.  "'X'.
        gwa_unitsofmeasure-unit_of_wt                  = 'KG'.    "gwa_itab1-brgew.
        gwa_unitsofmeasurex-unit_of_wt                  = 'X'.
        gwa_unitsofmeasurex-sub_uom                  = 'X'.
        gwa_unitsofmeasure-gross_wt                  = gwa_itab1-brgew.
        gwa_unitsofmeasurex-gross_wt                  = 'X'.
    *appending workarea to table's
        APPEND gwa_materialdescription    TO gt_materialdescription.
        APPEND gwa_taxclassifications     TO gt_taxclassifications.
        APPEND gwa_prtdata                TO gt_prtdata.
        APPEND gwa_prtdatax               TO gt_prtdatax.
        APPEND gwa_unitsofmeasure         TO gt_unitsofmeasure.
        APPEND gwa_unitsofmeasurex        TO gt_unitsofmeasurex.
    *calling FM BAPI for uploading the Material master data
        CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
          EXPORTING
            headdata            = gs_bapimathead
            clientdata          = gs_clientdata
            clientdatax         = gs_clientdatax
            plantdata           = gs_plantdata
            plantdatax          = gs_plantdatax
            forecastparameters  = gs_forecastparameters
            forecastparametersx = gs_forecastparametersx
            valuationdata       = gs_valuationdata
            valuationdatax      = gs_valuationdatax
            salesdata           = gs_salesdata
            salesdatax          = gs_salesdatax
          IMPORTING
            return              = gs_return
          TABLES
            materialdescription = gt_materialdescription
            unitsofmeasure      = gt_unitsofmeasure
            unitsofmeasurex     = gt_unitsofmeasurex
            taxclassifications  = gt_taxclassifications
            prtdata             = gt_prtdata
            prtdatax            = gt_prtdatax.
    Check the return table.
        IF sy-subrc NE 0.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          WRITE: / 'Error occured while creating material'.
        ELSE.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
          WRITE: / 'material',gwa_itab1-matnr,'created'.
        ENDIF.
      ENDLOOP.

    Hi Aparna..
    even with HUR also i am getting same error.....
    is there any changes required in the SPRO .......
    i mean in BAPI had ..unitofmeasure we have around 21 fields( here extra fields is DEL FLAG)
                          but in unitofmeasurex has only 20 fields...
    we need to anything in SPRO for avoiding DEL FLAG.....
    sorry if i am confusing u.....
    thanks for responce and send few more inputs for resolving the issuee....

  • I get this message -can't read ore write to the unit- when trying to sync any of my ios

    When I try to sync my units (iPhone 5, iPad 2, iPod Classic) I get a message that it can't be syncronized because it's not possible to either read from or write to the unit. Problems started about 6 weeks ago, maybe after the latest update of iTunes. before that everything worked fine. I have restored, started up as new unit and so on, but no luck.

    This Apple doc is a good place to start -> 'Disk cannot be read from or written to' when syncing iPod or 'Firmware update failure' error when updating or restoring iPod
    If you have a USB hub, try removing it and connecting the iPhone, iPad or iPod to the back of your Mac.

  • I have an old Mac Tower.  I need to move data from the unit to an external hard drive. What kind of hard drive do I purchase.  There is not a lot of data to be transferred.

    I have an old Mac Tower.  I need to move data from the unit to an external hard drive.  What kind of of hard drive must I purchase so that it works with the Tower?  There is not a lot to transfer.

    MG,
    What we might need to do is to change the question.  What computer do you plan to use the data on in the future?  For example, if you have a newer tower, just move the hard drive to the new tower.  If you want to use the data, what about an ethernet LAN to get the data over?  If you want to archive the data, how do you store the second drive?  What are your plans for the first drive?  If the new software will not recognize the old file type, the data must be exported.  Just getting files to another hard drive will not finish your journey.
    As Allan said, knowing the exact model and year of your tower is important.  My suggestion is to find a user group near you.  Please post back with more information, including the name of a large city near you.
    For example, our user group just experimented with a 1983 Apple IIc that predates the Mac.  It started right up, read files from 1984  and saved them from a 5.25" floppy to a 3.5" floppy.  That 3.5 floppy will go into a platinum G3 which will read PRODOS files using Apple File Exchange.  That G3, with a USB card, will allow saving the files to a USB flash drive.  But, somewhere along the way, some software has to read the file and convert it to data that is useable by current software.
    Ji~m

Maybe you are looking for