Negative quantity in deliver field in production order - CO02

Hi All,
I am doing production confirmation and goods receipt for production order through back ground using standard BAPI.While doing GR for production order in background the following error occured.
  System is throughing dump - Arithmatical logical conversion problem.when we analysed through ST22 we came to know that negative quantity appearing in field of delivered in production order.
  Screen name.............. "SAPLCOKO1"
  Screen number............ 0120
  Screen field............. "CAUFVD-GWEMG"
As per standard, delivered field in production order is always in display mode only. So there will not be any chance for user to change the delivered field.
Pls guide me how to overcome the above issue and what is exact root cause for the above problem.
System is throwing error in change mode ( Co02) and display mode ( CO03 ) for the respective production order number
Thanks
P.Srinivasan

Hi,
This inconsistency can be solved with the following correction report. If you want to try by yourself, then implement it manually in transaction SE38 and execute in test mode first to check if the inconsistency is found. And obviously, in a TEST system first.
If you are NOT confident about it, I recommend you to submit a support message for SAP for further investigation since this is a database inconsistency.
Regards,
Marcelo
<pre>
*& Report  ZPCON_076B                                                  *
*& This report checks goods receipt quantity (WEMNG) and value (WEWRT) *
*& of an order item for consistency with the corresponding material    *
*& documents. In UPDATE mode, the quantity and the value calculated    *
*& from the material documents will be written to database table AFPO. *
REPORT  zpcon_076b LINE-SIZE 90.
INCLUDE lcokotyp.
TABLES: afpo.
SELECTION-SCREEN COMMENT /1(80) text1.                      "#EC NEEDED
SELECTION-SCREEN COMMENT /1(80) text2.                      "#EC NEEDED
SELECTION-SCREEN COMMENT /1(80) text3.                      "#EC NEEDED
SELECTION-SCREEN COMMENT /1(80) text4.                      "#EC NEEDED
SELECTION-SCREEN COMMENT /1(80) text5.                      "#EC NEEDED
SELECTION-SCREEN ULINE.
SELECTION-SCREEN COMMENT /1(80) texta.                      "#EC NEEDED
SELECT-OPTIONS r_aufnr FOR afpo-aufnr.
SELECTION-SCREEN ULINE.
SELECTION-SCREEN BEGIN OF BLOCK block WITH FRAME TITLE title."#EC NEEDED
SELECTION-SCREEN COMMENT /1(72) texty.                      "#EC NEEDED
SELECTION-SCREEN BEGIN OF BLOCK block2 WITH FRAME.
PARAMETERS: testmode RADIOBUTTON GROUP mode DEFAULT 'X'.
PARAMETERS: update RADIOBUTTON GROUP mode.
SELECTION-SCREEN END OF BLOCK block2.
SELECTION-SCREEN COMMENT /1(72) textz.                      "#EC NEEDED
SELECTION-SCREEN END OF BLOCK block.
DATA: BEGIN OF ls_afpo.
        INCLUDE STRUCTURE afpo.
DATA: END OF ls_afpo.
DATA  lt_afpo LIKE ls_afpo OCCURS 0.
DATA: BEGIN OF ls_mseg.
        INCLUDE STRUCTURE mseg.
DATA: END OF ls_mseg.
DATA  ls_mseg2 LIKE ls_mseg.
DATA  lt_mseg LIKE ls_mseg OCCURS 0.
DATA  ls_mkpf TYPE mkpf.
DATA l_initial_ltrmi TYPE co_ltrmi VALUE IS INITIAL.
DATA l_orders TYPE sytabix.
DATA l_entries TYPE sytabix.
DATA l_sum_wemng TYPE wemng.
DATA l_sum_wewrt TYPE wewrt.
DATA l_error TYPE xfeld.
INITIALIZATION.
  text1 = 'This report checks goods receipt quantity (WEMNG) and'.
  text2 = 'value (WEWRT) of an order item for consistency with the '.
  text3 = 'corresponding material documents. In UPDATE mode, the'.
  text4 = 'quantity and the value calculated from the material'.
  text5 = 'documents will be written to database table AFPO.'.
  texta = 'Please specify order numbers of orders to be processed.'.
  texty = 'If TESTMODE is set, no database update will occur.'.
  textz = 'Set radio button UPDATE for updating the database entries.'.
  title = 'Mode'.
AT SELECTION-SCREEN.
orders specified?
  IF r_aufnr IS INITIAL.
    MESSAGE e889(co) WITH 'Please specify order numbers'.
  ENDIF.
START-OF-SELECTION.
select order items
  SELECT *
         FROM  afpo
         INTO  TABLE lt_afpo
         WHERE aufnr IN r_aufnr
         AND ( dauty = auftragstyp-fert
            OR dauty = auftragstyp-netw
            OR dauty = auftragstyp-inst
            OR dauty = auftragstyp-rma
            OR dauty = auftragstyp-bord ).
  DESCRIBE TABLE lt_afpo LINES l_orders.
check order items
  LOOP AT lt_afpo INTO ls_afpo.
    REFRESH lt_mseg.
    CLEAR l_sum_wemng.
    CLEAR l_sum_wewrt.
    CLEAR l_error.
    SELECT *
           FROM  mseg
           INTO  TABLE lt_mseg
           WHERE matnr = ls_afpo-matnr
             AND werks = ls_afpo-pwerk
             AND aufnr = ls_afpo-aufnr
             AND aufps = ls_afpo-posnr
             AND kzbew = 'F'
           %_HINTS ORACLE 'rule'.
    IF NOT sy-subrc IS INITIAL.
    no goods movements --> nothing to do.
      DELETE lt_afpo.
      CONTINUE.
    ENDIF.
    LOOP AT lt_mseg INTO ls_mseg.
      IF ls_mseg-shkzg ='S'.
      inward movement
        IF NOT ls_mseg-dmbtr IS INITIAL.
          l_sum_wewrt = l_sum_wewrt + ls_mseg-dmbtr.
        ENDIF.
        IF NOT ls_mseg-bstmg IS INITIAL.
          l_sum_wemng = l_sum_wemng + ls_mseg-bstmg.
        ELSE.
          IF ls_mseg-erfme = ls_afpo-amein.
            l_sum_wemng = l_sum_wemng + ls_mseg-erfmg.
          ELSE.
            IF ls_mseg-meins = ls_afpo-amein.
              l_sum_wemng = l_sum_wemng + ls_mseg-menge.
            ELSE.
              WRITE: 'ERROR - Order', ls_afpo-aufnr COLOR 6.
              DELETE lt_afpo.
              l_error = 'X'.
              EXIT.
            ENDIF.
          ENDIF.
        ENDIF.
        ls_mseg2 = ls_mseg.
      ELSE.
      outward movement
        IF NOT ls_mseg-dmbtr IS INITIAL.
          IF ls_mseg-dmbtr NE ls_mseg-bualt AND
             NOT ls_mseg-bualt IS INITIAL.
            l_sum_wewrt = l_sum_wewrt - ls_mseg-bualt.
          ELSE.
            l_sum_wewrt = l_sum_wewrt - ls_mseg-dmbtr.
          ENDIF.
        ENDIF.
        IF NOT ls_mseg-bstmg IS INITIAL.
          l_sum_wemng = l_sum_wemng - ls_mseg-bstmg.
        ELSE.
          IF ls_mseg-erfme = ls_afpo-amein.
            l_sum_wemng = l_sum_wemng - ls_mseg-erfmg.
          ELSE.
            IF ls_mseg-meins = ls_afpo-amein.
              l_sum_wemng = l_sum_wemng - ls_mseg-menge.
            ELSE.
              WRITE: 'ERROR - Order', ls_afpo-aufnr COLOR 6.
              DELETE lt_afpo.
              l_error = 'X'.
              EXIT.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDLOOP. "AT lt_mseg
  only continue if no error in the calculation occurred
    CHECK l_error IS INITIAL.
    IF ls_afpo-wemng = l_sum_wemng AND
       ls_afpo-wewrt = l_sum_wewrt.
    values are correct, no update necessary
      DELETE lt_afpo.
      CONTINUE.
    ENDIF.
    FORMAT: COLOR 1.
    WRITE: / 'Order', ls_afpo-aufnr, 'material', ls_afpo-matnr.
    FORMAT: COLOR OFF.
    WRITE: /3 'Order item data   : quantity',
              ls_afpo-wemng UNIT ls_afpo-amein, ls_afpo-amein, 'value',
              ls_afpo-wewrt CURRENCY ls_mseg-waers, ls_mseg-waers.
    WRITE: /3 'Material documents: quantity',
              l_sum_wemng UNIT ls_afpo-amein, ls_afpo-amein, 'value',
              l_sum_wewrt CURRENCY ls_mseg-waers, ls_mseg-waers.
    FORMAT: COLOR 2.
    WRITE: /3 'Material doc.  BWART', 30 'stock qty  UoM',
           52 'entry qty  UoM', 77 'value  Curr'.
    FORMAT: COLOR OFF.
    LOOP AT lt_mseg INTO ls_mseg.
      WRITE: /3 ls_mseg-mblnr, ls_mseg-zeile, ls_mseg-bwart,
               ls_mseg-menge UNIT ls_mseg-meins, ls_mseg-meins,
               ls_mseg-bstmg UNIT ls_mseg-bstme, ls_mseg-bstme,
               ls_mseg-dmbtr CURRENCY ls_mseg-waers, ls_mseg-waers.
    ENDLOOP.
    IF NOT update IS INITIAL.
    set delivery date
      IF l_sum_wemng IS INITIAL.
      initial delivery quantity --> initial delivery date
        UPDATE afpo SET   ltrmi = l_initial_ltrmi
                    WHERE aufnr = ls_afpo-aufnr
                      AND posnr = ls_afpo-posnr.
      ELSE.
      read posting date from last valid goods receipt
        SELECT SINGLE * FROM  mkpf
                        INTO  ls_mkpf
                        WHERE mblnr = ls_mseg2-mblnr
                          AND mjahr = ls_mseg2-mjahr.
        IF sy-subrc IS INITIAL.
          UPDATE afpo SET   ltrmi = ls_mkpf-budat
                      WHERE aufnr = ls_afpo-aufnr
                        AND posnr = ls_afpo-posnr.
        ELSE.
        leave LTRMI untouched
        ENDIF.
      ENDIF.
    set quantity and value
      UPDATE afpo SET   wemng = l_sum_wemng
                        wewrt = l_sum_wewrt
                  WHERE aufnr = ls_afpo-aufnr
                    AND posnr = ls_afpo-posnr.
      FORMAT: COLOR COL_POSITIVE.
      WRITE: /3 'Order item data corrected from material documents.'.
      FORMAT: COLOR OFF.
    ENDIF.
    ULINE.
  ENDLOOP. "AT lt_afpo
  WRITE: / 'Number of checked order items     :', l_orders.
  DESCRIBE TABLE lt_afpo LINES l_entries.
  WRITE: / 'Number of inconsistent order items:', l_entries.
  IF NOT update IS INITIAL    AND
     NOT l_entries IS INITIAL.
    WRITE: / 'Inconsistencies were corrected from material documents.'
              COLOR COL_POSITIVE.
  ENDIF.
  ULINE.
</pre>
Edited by: Wilian Segatto on Jan 25, 2011 12:27 PM

Similar Messages

  • Negative quantity in deliver field in CO02

    Hi All,
    I am doing production confirmation and goods receipt for production order through back ground using standard BAPI.While doing GR for production order in background the following error occured.
    System is throughing dump - Arithmatical logical conversion problem.when we analysed through ST22 we came to know that negative quantity appearing in field of delivered in production order.
    Screen name.............. "SAPLCOKO1"
    Screen number............ 0120
    Screen field............. "CAUFVD-GWEMG"
    As per standard, delivered field in production order is always in display mode only. So there will not be any chance for user to change the delivered field.
    Pls guide me how to overcome the above issue and what is exact root cause for the above problem.
    System is throwing error in change mode ( Co02) and display mode ( CO03 ) for the respective production order number
    Thanks
    P.Srinivasan

    Have you checked for SAP Notes?  I don't see any, but I don't have all the search terms from your short dump. 
    I would suspect, though, that there is a customer enhancement that is affecting your data value, and erroneously resulting in a negative value....are you aware of any customer enhancements, user exits, badis, etc.?

  • Profit center field in production order master data in KKF3

    Hi GUrus,
    is there any way of mass updating the profit center field in production order master data in KKF3 transaction. PLease help
    Anusha

    HI charlie,
    When i try to change the profit center, the system gave this message. We already have a profit center for a production order and we need to change the profit center, That is when we are getting the errror message.
    You have changed the profit center from AR00620800 to AR00620301. This is only allowed when the corresponding configuration was made in Customizing. Then this message is only a warning, which you can ignore.  PLease help
    Thanks
    Anusha

  • Cost Center field in Production Order CO01 and PO tables

    Hi SAP Consultants,
    Is there any Cost Center field in Production Order transaction CO01 ?
    What are the tables where Production order data is stored/saved ?
    Any help would be appreciated.
    Thanks in advance.

    Need to understand your purpose first. Let's not make it any more technical than it should be, talking in terms of fields and layouts.
    All the replies given before mine are referring to the operational costs - which are what are passed on "for performing each operation" of the production order. These are the costs coming to the production order from the work center where the operation is performed. At the end of several operations, the production order would have collected all these costs of different operations, and also those of the materials used in the process. There may be other (overhead, etc) costs coming on to the production order too.
    If you're looking for one "cost center" for the entire production order, what cost center is this? Is it the department to which you want to settle the production costs? This is possible, that all the costs accumulated in the production order over the course of its life are finally "settled" to a different cost object, which can be an inventory account, or a sales order, an internal order, or a cost center etc. (There are exceptions, where a production order need not be settled but lets leave this to save us some complexity).
    What exactly are you looking for? What is the business purpose you are trying to achieve? Or is it just a purely technical reason to write a report or something? Even then we need to know the purpose and objective of the report/enhancement before being able to answer your question.
    -Ram

  • I have change some fields in  (Production order component )

    I have change some fields in (Production order component overview)

    Hi,
    do you want to hide or disable the fields or add new fields ??? by the way can you please let us know the transaction that you are referring to ??
    Regards,
    Santosh

  • Quantity Withdrawn field in production order

    Hi all,
    I have a doubt
    there is a component A in production order
    Required quantity is 10
    Initially i issue 15 qty's then the same qty gets updated in "Quantity withdrawn" field (component overview screesn)
    Then i reverse 3 qty's of component A,which is very much visible in documented goods movement
    Whereas the same is not getting update in the ""Quantity withdrawn" field ,Still 15 qty is appearing against "Quantity withdrawn" field
    This may be normal behaviour of the system,I'm not sure
    Can you please confirm on this
    If not then please give me possible reasons why it is not getting updated ?
    Thanks,
    SVP

    Hi all,
    I also wonder about this (actually it's an issue for this customer ... ). As same as production order, Network order (it's activity more correctly) also show withdrawn quantity in CN25 transaction.
    In my case, I've done good issue quantity 2 EA, then I reverse it. and same again. finally I do good issue 2 EA.
    GI         -2 EA : CN25
    cancel GI 2 EA : CN29
    GI         -2 EA : CN25
    cancel GI 2 EA : CN29
    GI         -2 EA : CN25
    (Yeah, normally it will not happen often but it can.)
    I expect withdrawn Quantity 2 EA but it shows 10 EA. So have wonder with actual data table MSEG. It has SMBLN value (referred document number to cancel) as I think. It's very normal.
    Why withdrawn field doesn't count that cancel quantity?
    Is there any configuration that I missed ? or Is it normal result?
    But System should do show 'Cancelled GI Quantity' (so that end-user can notify actual GI quantity) to make it understand.
    Regards,
    Yeum
    Edited by: Hee Chul Yeum on Jan 22, 2009 10:50 AM

  • Fixing the quanitity field in production order

    HI,
    I create a sales order for 10,000 numbers and then after MRP run a production order for same 10,000 numbers is created. My Client has people in the production department  who change the prodcution order quantity to say 12,000. Is there any way by which the quanity field in the production order can be fixed and made non modifiable.
    Thanks
    vikrant

    Hi,
      You need to create a status profile in bs02
       Double click the status profile.
       Enter the user status as crtd
       Tick the initial status as enabled
       Place the cursor on the status profile
       Select the object type as PP ORDER HEADER
        Now choose the user status
        Double click the user status
        Goto  create mode
         select change and set forbid radio button
         save.
        Assign this status profile to order type in opjh tcode.
       Now once you have created the production order the system automatically
        forbids any change.
           Regards,
        nandha

  • Make Scrap portion field in production order header as display only

    Hi Experts,
    We have a requirement to make scrap field(CAUFVD-GASMG) in production order header as display field only. We do not want users to enter any values here to denote the quantity scrapped in production orders. I am not aware of any configuration to make this field as display only. Please let me know which user exit or BADI available for this purpose. We do not want to use any screen variants and transaction variants and would like to restrict this at order type or plant level.
    Thanks
    Rijil

    Hello Rijil,
    If not with variants than check with enhancement.
    PPCO0006  Enhancement to specify defaults for fields in order head
    PPCO0012  Production Order: Display/Change Order Header Data
    PPCO0018  Check for changes to production order header
    Regards,

  • Validation of material BOM quantity at the time of production order confirm

    Hi,
    I want validation on material BOM ,when i confirm production order.
    Actually when i am going to confirm my production order by tcode CO11, In this screen,i click on "Goods Movement" button. According to confirmed quantity , consumed materials will display. Here i can change material quantities. And here i want some validation. I there any user exit for this screen.

    Hi,
             Exit Name Description
    PCSD0001 Applications development R/3 BOMS
    PCSD0002 BOMs: Customer fields in item
    PCSD0003 BOMs: Customer fields in header
    PCSD0004 BOM comparison
    PCSD0005 BOMs: component check for material items
    PCSD0006 Mass changes user exit
    PCSD0007 Check changes in STKO
    PCSD0008 WBS BOM: Customer-specific explosion for creating
    PCSD0009 Order/WBS BOM, determine URL page
    PCSD0010 Order/WBS BOM, determine explosion date
    PCSD0011 Knowledge-based order BOM, parallel update
    PCSD0012 Customer - Mat. number/mat. number during material exchange
    PCSD0013 Customer-specific processing of an explosion for BOM browser
    PCSD0014 Knowledge-Based Order BOM: Status
    BADI's are
    WORKORDER_CONFIRM
    WORKORDER_UPDATE
    WORKORDER_GOODSMVT
    <b>Reward points</b>
    Regards

  • How to set the a quantity during MIGO 101 for Production Order

    Hi Gurus
    My issue is very easy.
    Since few weeks we execute 101-MIGO directly on production dep.t at the end of every shift.
    When MIGO is called the system propose the residual qty (noy yet Posted) for the PP Order.
    Becuase for a PP Order, many 101 movement have to be posted (during differents shifts), I need to clear the qty proposed in field GOITEM-ERFMG. This is becuase sometime users post a single Movement for the total residual quantity !!!!
    Is there an Exit or a Badi or a customizing setting is avaliable to do it ???
    Thank-You in advance for your help.
    Claudio

    Hi Claudio,
    A 101 movement for the production order takes place when
    - You receive the production order via MB31
    or
    - Confirm the last operation which has PP03 control key
    A backflush is done only for the components called by the production order & not for the header material.
    Hope the above answers your query.
    Regards,
    Rahul.

  • Additional Field in Production Order

    Hi,
    I need to add a new field in the production order in the seperate Tab. Can anybody tell me the userexit for this. I need the same field to save some data from that sales order. To save the data i know the Exit but for additional field need ur help.
    Thanks
    SISL

    Hi,
    The exit you're using (PPCO0007) should meet your need.
    The exit - PPCO0006 is called during creation of order, so there could be an option where a user might delete these values.
    Another alternative which you can think of is BADi - WORKORDER_UPDATE.
    Good luck.
    Regards,
    Vivek

  • Sales order field in production order

    Hi Gurus,
    I see there is a field sales order assigned to production order. In my scenario when we create a sales order production order gets created automatically in background due to the strategy group. So in production order, i see a field sales order and also i can see the sales order number in that field which is fine.
    But when we create a sales order with reference to quote, then in production order i see the quote number displayed in sales order field in the production order.
    My client wanted to have sales order number rather quote.
    Please suggest.
    Thanks,
    Quantum.

    Hi,
    Please note that if sales order stock has already been assigned to a quotation, the stock of the resulting orders is also managed under the quotation number.
    If you require to tag the sale order no to the production order then define the requirement type not as the make to order. This you can control at item category level also. While for sales order make requirement type make to order related.
    While doing so please note that you have to use the special rule to determine the requirement type which will based on the item category and mrp type.
    Hope this will help you.
    Thanks and regards,
    Atul

  • Mandatory field in Production order creation field

    Dea All,
    I want to have a field mandatory at the time of production order creation. in CO01 Goods Receipt Tab there is a field of Goods Recipient in the second last row. Please guide me how can i make it mandatory field.

    Dear,
    Yes it is possible through the user exist, input check is carried out for enhancement PPCO0018.
    User exit PPCO00018 should use ful for order header screens GENERAL ASSIGNMENT, GOODS RECEIPT and CONTROL tab.
    Or go to SE51 enter program  SAPLCOKO Screen No 5190 click on change and the Lay out here you can define it as Input field Take help from technical person.
    Regards,
    R.Brahmankar

  • Mandatory field in production order-reg

    Hi,
    In production order, I want to make Good recipient field as mandatory (AFPOD-WEMPF) how to do it.
    I tried through OIAN and SHD0, it is not happening.
    Regards
    Karthikeyan

    Hi,
    You can use transaction variant with transaction SHD0.
    http://help.sap.com/saphelp_webas620/helpdata/en/eb/5fab41d79b11d296190000e82de14a/content.htm
    In the SAP Reference IMG, you can create transaction variants. Choose Basis Components -> Application Personalization -> Tailoring of Application Transactions -> Configure Transaction-Related Display Values for Fields (Transaction SHD0). Transaction variants allow you to preset values for fields in a transaction, set field attributes, or hide entire screens.
    To execute a transaction variant, you define a variant transaction using the Transaction Maintenance transaction (SE93).
    Once you have entered a transaction code and short description, choose transaction type Transaction with variant (Variant transaction).
    To define a variant, enter the name of the transaction and the name of the variant. You can then use the new transaction code to start the special variant of the transaction.
    Hope this will help.
    Regards,
    R.Brahmankar

  • Field in production order

    Hi guys,
    I just need to know is there is any field in the production order that i can use to store hours (example; 10 hours to produce 20 pieces), Right now we are storing all this in excel sheet and this is very hard to do reporting. I would like to know if i can store these hours in production order and just run the report out of sap. Any help be great, Thanks.

    Dear ,
    I hope you are folloing normal Production Cycle having master data like Work Center ( CR01) , BOM( CS01) , Routing (CA02) .All this master data are for Base Qty .Specially , any hrs ( Labour /Machine /Setup or customised Hrs as per the busniess requirement are captured through Stanadrad Vaule Key -CRO02-Work centre -Basic data.
    Based on this above master date , when you will  create Production Order ( Let say 10 pc ) , system will calcualte the Hrs   and store into Operation Over view screen .It will also copy those master data in PO-Master data tab  and hrs will in operation overview-operation line items ( setup , machine , labors) .This are all planned hrs required to produce certain Qty ( example : 10 hrs to produce 20 pc).It can vary as long your requirement changes independntly or customer specific.
    Now , SAP has very good reporting tools like COOIS/COHV/CO46 where you can populated those information very easily rather going to develope report .
    In COOIS -Select Operation -Standard Profile -Entre Order Type and Plant-Execute .Goto Change Lay out option -Select the Standard Values 1-6  as applicable to you based on the Work centre set up ( Check in CR02-Work centre -Basic data tab -how many Standrad Value key -SAP0-SAP6) .This will list down the hrs with qty .You can play around with this change lay out to drag n drop all the information required for your business.
    Hope it is clear
    Revert for farther help
    Regards
    JH

Maybe you are looking for

  • How does one use airport express to extend a non-Apple wifi network?

    Hello. The wifi signal reaching my room shows good on my macbook but weak on my ipod touch. Therefore I want to pick it up on my airport express and extend/boost it. I have tried everything in the auto and manual methods of setup to do this, but the

  • How to Embed Fonts and make Grayscale in Acrobat Pro 9 PDF

    I supplied my printer with a PDF but he says that I need to "Embed The Fonts" in the PDF. I made the original document in MS WORD and then I created the PDF in Acrobat Pro 9 but nowhere along the way did I see anything that asked me to Embed The Font

  • TS1702 Iphone4 on Verizon not able to connect with FaceTime

    FaceTime has been working up until today. I've checked all the settings and software and it all seems set correctly so I don't know why I cannot connect.  Any ideas?

  • Ldap.ora - xe-client - debian

    Hi, I'm using xe-client on debian, but apparently do not use ldap.ora i have this line in sqlnet.ora NAMES.DIRECTORY_PATH = (LDAP,ONAMES,TNSNAMES) and ldap.ora has been correct it's work fine on red hat with Oracle client 9.2 we have a idea ? Thanks

  • Change language after load initial data (ME 5.2)

    Hello, we have an ME system installed with german language settings in the Netweaver config tool. We would like to change this english. I found in the installation guide the following remark: The u2013Duser.country and u2013Duser.language values must