Translation problem: No language independent code..

Hi guys!
I'm currently customizing an existing system with 2 different languages(English and French)
So far so good, but I get the following error message when I try to create a new Appointment or Task:
"No language independent code exists for the value 'En cours' and type 'EVENT_STATUS' with language 'ENG' in table 'S_LST_OF_VAL'. (SBL-DAT-00510)"
The field 'Status' is a read-only picklist with a default value 'En cours' in the french section of the system. I've translated the value of 'En cours' to 'On Going' for the english section, but I still receive the same error message..
Any tips how to solve this problem?
Thanks!

I would recommend that you submit a service request to CRM On Demand customer care in reference to this issue.

Similar Messages

  • No language independent code exists......

    No language independent code exists for value '108010' and type 'HTSC_CUST_STATUS' with language 'ENU' in table 'S_LST_OF_VAL'.But the data exists in S_LST_OF_VAL and LIC exists for this value and the lanuage is ENU and type is HTSC_CUST_STATUS. The Problem happens when executing task UI but behaves normal when invoking NewRecord Method in List Applet,provided Predefault value or Post default value is set as "Expr: "LookupValue(""HTSC_CUST_STATUS"",""118010"")""Anybody knows why?Thanks.

    Hi,
    Confirm whether the "Display Value" for the LOV is "108010" or the Language Independent Code (LIC). Check at the Database level what value has been stored for the Value and LIC Column. This could also be a problem if there is any discrepancy on this.
    Regards,
    Joseph

  • Problem in language Translation

    Hi Experts,
    I am having problem in language translation of smart form.
    I have include all text as text element and have done translation in SE63. But when I login in to translated language the output remains in English.
    I have made the translation from English to Chinese in SE63.
    Please suggest why the output does not come into translated language.

    Hi ,
    I have been working on translations for 8 months now. I think i can resolve your issue.
    Remember one thing in mind when you do translations firstly when you go to se 63 and make some changes make sure that you have not opened the smartform in Change mode. If you do so then you will face this sort of probelm. As per your messages i think you have already checked the language in the form
    If not make sure you do it. Now try again in SE63 make changes in what ever langauage you are doing and then "saveactive" .
    One more final thing if anytext in smartform say   &invoivce_no& is blank in smartform then it will not show up in se63 i think you know about this.

  • How to translate english into other language in codes?

    Hi Experts,
    Is there any API in ABAP to translate one language into another?
    Thanks

    Hi Vincent,
    There are different ways to translate into other languages.
    For text elements in reports, Menu GOTO -> translation.
    SE63 also you can use depends on the type object/text.
    Let me know if you want more info.
    Regards,
    Manju

  • Translation problem , While conversion from English to Poland

    Hello Gurus
    Pl suggest  Translation problem , While conversion from English to Poland  getting message
    "Code page not found for Poland "
    Code page 1401 exits in system
    SAP version 4.6C
    Best regards
    Krish

    Dear Vamsi,
    Please check the below lonk may be it heps.
    Translation to different languages. How??????
    Regards
    Pranay

  • Translation Problem – Region Disappearing

    Translation Problem – Region Disappearing
    I recently started working on translating my application to German. When I apply my xlif file I have a problem with the contents of all my report regions using Vertical Report Look 2 disappear.
    The report region is still visible, however the report contents (corresponding to the report template) have completely disappeared.
    When I switch back to English (setting FSP_LANGUAGE_PREFERANCE) the report contents are once again visible.
    I am using theme 7.
    Thanks in advance.
    -Immanuel

    Hi Joel,
    Dont worry about that last request, i have already fixed the problem.
    If anyone else has this problem they can fix it by creating a custom report template with the following code:
    Report template Before Rows:
    <table summary="Vertical" class="t7vertical3" align="center" border="0" cellspacing="0" cellpadding="0">
    Include the following in your Theme.css (or theme_V2.csss in the case of theme 7):
    table.t7vertical3 {border:0px #bbbbbb solid;border-collapse:collapse;background:#ffffff;font-size:8pt;}
    table.t7vertical3 tr {border-top:1px;}
    table.t7vertical3 td.L{font-weight:bold;vertical-align:top;padding:2px;white-space:nowrap;width:30%;text-align:right;border:0px #bbbbbb solid;background:#999999;color:#ffffff;border:1px #bbbbbb solid;}
    table.t7vertical3 td{padding:2px;border:1px #bbbbbb solid;text-align:left;}
    Cheers,
    Immanuel

  • Error regarding share relocation object or Position Independent Code.

    Problem related to Shared Object relocation or Position Independent code.
    For reference:
    Specification for -b option with ld (link editor/Runtime linker)
    ========================================================================
    In dynamic mode only, does no special processing for relocations that reference symbols in
    shared objects. Without the -b option, the link-editor creates special position-independent
    relocations for references to functions defined in shared objects. In addition, the
    link-editor arranges for data objects that are defined in shared objects to be copied into the
    memory image of an executable at runtime.
    The -b option is intended for specialized dynamic objects and is not recommended for
    general use. Its use suppresses all specialized processing required to insure an object's
    shareability, and can even prevent the relocation of 64-bit executables.
    ========================================================================
    I want -b option, and also I want working application.
    Please help.
    # ls -lrt
    total 6
    -rw-rw-r-- 1 sdk_25 sdk_grp 102 Jan 12 14:01 main.c
    -rw-rw-r-- 1 sdk_25 sdk_grp 24 Jan 12 14:01 aux.h
    -rw-rw-r-- 1 sdk_25 sdk_grp 60 Jan 12 14:02 aux.c
    # cat main.c
    #include <stdio.h>
    #include "aux.h"
    void main() {
    printf("Hello World\n");
    remote_display();
    # cat aux.h
    void remote_display();
    # cat aux.c
    void remote_display() {
    printf("Remote Hello World\n");
    # cc -o libaux_64.so -G -b -xarch=v9 aux.c
    cc: Warning: option -b passed to ld
    # cc -o main_64 -laux_64 -xarch=v9 -b main.c
    cc: Warning: option -b passed to ld
    # ./main_64
    ld.so.1: main_64: fatal: relocation error: R_SPARC_WDISP30: file main_64: symbol remote_display: value 0xffffffff9fc7fe9d does not fit Killed
    # cc -o libaux_64.so -G -xarch=v9 aux.c
    # cc -o main_64 -laux_64 -xarch=v9 main.c
    # ./main_64
    Hello World
    Remote Hello World
    Please tell how may I prepare a working shared object along with the program (with -b option).
    Thank you.

    The problem seems to be due to the use of -b. The manual warns you that it can prevent proper relocation in a shared library.
    You don't say what compiler you are using, so I tried your example without -b, using Sun Studio 12, with -m64 instead of the deprecated -xarch=v9: (I also added the missing #include <stdio.h> to aux.c)
    % cc -o libaux_64.so -G -m64 aux.c -Kpic
    % cc  -o main_64 -L . -laux_64 -m64  main.c -R .
    % ./main_64
    Hello World
    Remote Hello World

  • Portal Language through code

    Hi,
    I currently have the following code to check the language of a user within Portal, but when the user has no language populated I would like to set this to a default.  How can I check the value as when I have coded this before this has errored.
    IUser me = request.getUser();
    String language = "en";
    Locale myLocale = me.getLocale();
    language = myLocale.getLanguage();
    try {
    IUserMaint modUser = userFact.getMutableUser(me.getUid());
    if (language.equalsIgnoreCase(""))
         modUser.setLocale(Locale.UK);
    if (language.equalsIgnoreCase("english"))
         modUser.setLocale(Locale.UK);
    if (language.equalsIgnoreCase("italian"))
         modUser.setLocale(Locale.ITALIAN);
    if (language.equalsIgnoreCase("german"))
         modUser.setLocale(Locale.GERMAN);
    modUser.commit();
    modUser.save();
    catch (Exception e) {
         response.write("<br>Problem setting language: "+e.getMessage());
         oksofar = false;
    Any help would gratefully appreciated.

    Hi Kai,
    > when I have coded this before this has errored
    Are you talking about the code snippet given? If yes, what kind of error?!?!
    > when the user has no language populated I would like to set this to a default
    If that what you want to try with the code snippet given? The snippet is (a) wrong and (b) strange:
    a) Wrong. locale.getLanguage never returns "english" or "italian" or "geman"; it returns the language code (a lowercase ISO 639 code).
    b) Strange. You want to check if it is set to "german" and then you set it to german?! Don't understand your logic...
    You should also call save() first and then commit(); see http://help.sap.com/javadocs/nw04s/current/se/com/sap/security/api/IPrincipalMaint.html#save()
    Also, keep in mind that you cannot change the locale of a user if this attribute would be mapped to some LDAP attribute and if the LDAP is connected read-only.
    Hope it helps
    Detlev

  • Smartform Translation Problem

    Hi Experts,
    i developed a smartform for invoice printing , i used in smartform do not translate option for restricting translations to other languages. But still i am getting in other languages. how to solve this issue?
    Thanks & regards,
    Satheesh .

    hi,
    are you using driver program ,
    if not please use the code in your sf source code.

  • Problem with language specific characters on e-mail sending

    Hi,
    Problem with language specific characters on e-mail sending.
    How can it be fixed?
    Thanks.

    Hi,
    try to work on the charecter code set UTF-8 or UTF-16. You can define this in html.
    Or encode the charecter using java script.
    Hope this may help you.
    Deepak!!!

  • I am making code to try to make a game and my problem is that my code......

    I am making code to try to make a game and my problem is that my code
    will not let it change the hit everytime so im getting the first guy to hit 1 then next hits 8 and so on and always repeats.
    Another problem is that I would like it to attack with out me telling it how much times to attack. I am using Object oriented programming.
    Here is the code for my objects:
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class rockCrab {
         //Wounding formula
         double sL = 70;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 50;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         rockCrab() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              double done = rint(fH - fA);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("Rockcrab hit" +done);
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class self {
         //Wounding formula
         double sL = 1;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 1;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         self() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("You hit" +done);
    }Here is the main code that writes what the objects do:
    class fight {
         public static void main(String[] args) {
              self instance1 = new self();
              rockCrab instance2 = new rockCrab();
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
    }when the code is run it says something like this:
    you hit 1
    RockCrabs health is 9
    RockCrab hit 7
    your health is 38
    you hit 1
    RockCrabs health is 8
    RockCrab hit 7
    your health is 31
    you hit 1
    RockCrabs health is 7
    RockCrab hit 7
    your health is 24
    you hit 1
    RockCrabs health is 6
    RockCrab hit 7
    your health is 17
    my point is whatever some one hits it always repeats that
    my expected output would have to be something like
    you hit 1
    RockCrabs health is 9
    RockCrab hit 9
    your health is 37
    you hit 3
    RockCrabs health is 6
    RockCrab hit 4
    your health is 33
    you hit 2
    RockCrabs health is 4
    RockCrab hit 7
    your health is 26
    you hit 3
    RockCrabs health is 1
    RockCrab hit 6
    your health is 20
    Edited by: rade134 on Jun 4, 2009 10:58 AM

    [_Crosspost_|http://forums.sun.com/thread.jspa?threadID=5390217] I'm locking.

  • Urgent: cannot access the portal home page because of problem’s language

    I have installed Oracle 9iAS, including infrastructure with language FRENCH_FRANCE.WE8ISO8859P15 and portal and wireless type I don’t have problem for access to http://machine:1810 and http://machine:7779 in French.
    But when I access this url: http://machine:7779/pls/portal, there is a error : java.io.IOException:
    Unsupported character encoding: "ISO-8859-15"
    at oracle.webdb.page.BaseContentRequest.getResponseJavaEncoding(Unknown Source)
    at oracle.webdb.page.BaseContentRequest.getReader(Unknown Source)
    at oracle.webdb.page.PageBuilder.getMetaData(Unknown Source)
    at oracle.webdb.page.PageBuilder.process(Unknown Source)
    at oracle.webdb.page.ParallelServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    When I install infrastructure, I select FRENCH_FRANCE.WE8ISO8859P15. I check in sql*plus in the v$NLS_PARAMETERS and NLS_LANGUAGE is FRENCH, NLS_TERRITORY is FRANCE, NLS_DATE_LANGUAGE is FRENCH and NLS_CHARACTERSET is WE8ISO8859P15. It seems all well.
    But I check in the Windows registry, I find that NLS_LANG is FRENCH_FRANCE.WE8MSWIN1252 under under HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/HOME1 and HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/HOME2. Then I correct in FRENCH_FRANCE.WE8ISO8859P15 in the Windows registry.
    Also I check in EM web_site in
    To check the DAD settings, in my EM Console, I go to Http Server/PLSQL Properties/DAD status. I correct NLS Language with FRENCH_FRANCE.WE8ISO8859P15.
    Also I correct langinst.cmd under OH/portal/admin/plsql to replace WE8MSWIN1252 with WE8ISO8859P15
    case f:
    setenv NLS_LANG FRENCH_FRANCE.WE8ISO8859P15
    breaksw
    case frc:
    setenv NLS_LANG FRENCH_FRANCE. WE8ISO8859P15
    breaksw
    All that I do is not useful for access the portal home page, thers is always the error java.io.IOException: Unsupported character encoding: "ISO-8859-15"
    I don’t have problem in language English. My page portal is running well in a another machine where I install Oracle9iAS in English, but I have always problem in the machine where I install Oracle9iAS in French.
    I find there are lots of this problem in this forum, but there isn’t a answer. So thanks for anyone to resolve this problem.

    Hello Michael,
    Thanks for your help !
    I think that the problem is in the PlsqlNLSLanguage. But I couldn’t check it now with the version French WE8ISO8859P15, because today I’ve installed oracle902 AS with WE8MSWIN1252 and it functions well. I find the PlsqlNLSLanguage in my $ORACLE_HOME_INFRA/Apache/mod_plsql/conf/dads.conf is FRENCH_FRANCE.WE8MSWIN1252
    , and in my $ORACLE_HOME/Apache/mod_plsql/conf/dads.conf is AMERICAN_AMERICA.WE8MSWIN1252. But I don’t understand why it doesn’t create the language’s problem.
    I will try again in another machine with WE8ISO8859P15.

  • Translation Problem in app Map

    Hi, there is a translation problem in the new app Map. The Hong Kong City Hall is a place to perform art like dancing and drama, and its name in traditional Chinese is 香港大會堂.However, the map use a name of "中國香港特別行政區市政府" which means "China Hong Kong SAR government office" which is completly wrong polictically and logically. This is a very serious problem that Apple should fix ASAP in order to prevent users complaining on the simple mistake Apple just made.
    Looking forward from your reply
    Seravee

    Apple does not monitor these forum for suggestions. I would follow the instructions here:
    How to add a location or report a problem in iOS 6 Maps | iMore.com
    You can also go here:
    Apple - iPod touch – Feedback

  • Which team can help if the name of iView is not translated in other languag

    Hi All,
    Do you know which team can help if the name of iView is not translated in other language such as Portuguese?
    Thanks,
    Eda

    Above statement is correct: contact Portal Team to debug the iView/application.
    But you need to also check with your IT team - because it might be the case that the proper browser setting/network setting is figured to be EN (English - assuming).
    To test, you yourself can verify if it's the case, change the browser language to Portuguese and test the application. If it gets translated to Portuguese, then that means it's the browser/network/ISP setting/configuration.
    Regards,
    Jan

  • Problem in modifying the code using work area concept

    Hi,
    I am working on a code in which i am on the code in which i am using the modify statement but it is not giving the right output.
    here's d code:-
    LOOP AT T_ITPO5 INTO W_ITPO5.
            LOOP AT T_ITPO4 INTO W_ITPO4 WHERE AUFNR = W_ITPO5-AUFNR.
           LOOP AT T_ITPO4 INTO W_ITPO4 FROM WV_INDEX.
             IF W_ITPO4-AUFNR EQ W_ITPO5-AUFNR.
             IF ITPO4-NTGEW <> 0 .
                CALL FUNCTION 'ZGET_ITEM_WEIGHT'
                  EXPORTING
                    P_BUID   = W_ITPO4-WERKS
                    P_ITEMID = W_ITPO4-MATNR
                    P_QTY    = 1
                    P_UOM    = W_ITPO4-MEINS
                    P_UOM1   = 'KG'
                  IMPORTING
                    P_RETVAL = W_ITPO4-WTKG.
                TOTWT1 = W_ITPO4-WTKG * W_ITPO4-MENGE.
             IF W_ITPO4-BWART = '261'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY + TOTWT1.
             ELSEIF W_ITPO4-BWART = '101' OR W_ITPO4-BWART = '531'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY - TOTWT1.
             ENDIF.
           ENDLOOP.
             MODIFY T_ITPO5 INDEX SY-TABIX FROM W_ITPO5.
           MODIFY T_ITPO5 FROM W_ITPO5 TRANSPORTING AUFNR.
       ENDLOOP.
         WRITE: / 'PRD.NO       ITEM DESCRIPTION                               WIP(KGS)'.
        ULINE.
        LOOP AT T_ITPO5 INTO W_ITPO5.
          READ TABLE T_ITPO1 INTO W_ITPO1 WITH KEY AUFNR = W_ITPO5-AUFNR.
          SELECT SINGLE MAKTG FROM MAKT INTO W_ITPO5-ITEMDESC WHERE MATNR = W_ITPO1-MATNR.
          if sy-subrc = 0 .
          WRITE: / W_ITPO5-AUFNR,W_ITPO5-ITEMDESC,W_ITPO5-I_QTY.
          TOT_QTY = TOT_QTY + W_ITPO5-I_QTY.
          else.
          write 'Unsuccessful'.
          endif.
        ENDLOOP.
        ULINE.
        FORMAT COLOR 3.
        WRITE: / 'GTOTAL',55 TOT_QTY.
        FORMAT COLOR OFF.
    plzz provide me guidelines to solve this problem.

    here's d code;-
    TYPES: BEGIN OF ITPO1,
           AUFNR TYPE AFPO-AUFNR,      "Order Number
           PSMNG TYPE AFPO-PSMNG,      "Order item quantity
           WEMNG TYPE AFPO-WEMNG,      "Quantity of goods received for the order item
           DWERK TYPE AFPO-DWERK,      "Plant
           MATNR LIKE AFPO-MATNR,      "Item Id
           END OF ITPO1.
    DECLARATION FOR AUFM TABLE
    TYPES: BEGIN OF ITPO4,
           AUFNR TYPE AUFM-AUFNR,      "Order Number
           BWART TYPE AUFM-BWART,      "Movement Type (Inventory Management)
           MENGE TYPE AUFM-MENGE,      "Quantity
           MEINS TYPE AUFM-MEINS,      "Base Unit of Measure
           BLDAT TYPE AUFM-BLDAT,      "Document Date in Document
           WERKS TYPE AUFM-WERKS,      "Plant
           MATNR TYPE AUFM-MATNR,      "Material Number
           NTGEW TYPE MARA-NTGEW,      "Net Weight
           WTKG  TYPE MARA-NTGEW,
           END OF ITPO4,
           BEGIN OF ITPO5 ,
           AUFNR TYPE AUFM-AUFNR,
           MENGE TYPE AUFM-MENGE,
           I_QTY TYPE AUFM-MENGE,
           ITEMDESC LIKE MAKT-MAKTG,
           END OF ITPO5.
        WORK AREA AND INTERNAL TABLE DECLARATION
    DATA : W_ITPO1 TYPE ITPO1,
           W_ITPO4 TYPE ITPO4,
           W_ITPO5 TYPE ITPO5,
           T_ITPO1 TYPE ITPO1 OCCURS 0,
           T_ITPO4 TYPE ITPO4 OCCURS 0,
           T_ITPO5 TYPE ITPO5 OCCURS 0.
    VARIABLES
    DATA: TOTWT1 LIKE AUFM-MENGE,
          TOT_QTY LIKE AUFM-MENGE.
    PARAMETERS N SELECT-OPTIONS
    PARAMETERS: PLANT LIKE AFPO-DWERK.
    SELECT-OPTIONS: PO_DATE FOR AFKO-GSTRP.
        LOOP AT T_ITPO5 INTO W_ITPO5.
            LOOP AT T_ITPO4 INTO W_ITPO4 WHERE AUFNR = W_ITPO5-AUFNR.
                CALL FUNCTION 'ZGET_ITEM_WEIGHT'
                  EXPORTING
                    P_BUID   = W_ITPO4-WERKS
                    P_ITEMID = W_ITPO4-MATNR
                    P_QTY    = 1
                    P_UOM    = W_ITPO4-MEINS
                    P_UOM1   = 'KG'
                  IMPORTING
                    P_RETVAL = W_ITPO4-WTKG.
                TOTWT1 = W_ITPO4-WTKG * W_ITPO4-MENGE.
             IF W_ITPO4-BWART = '261'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY + TOTWT1.
             ELSEIF W_ITPO4-BWART = '101' OR W_ITPO4-BWART = '531'.
              W_ITPO5-I_QTY = W_ITPO5-I_QTY - TOTWT1.
             ENDIF.
           ENDLOOP.
             MODIFY T_ITPO5 INDEX SY-TABIX FROM W_ITPO5.
           MODIFY T_ITPO5 FROM W_ITPO5 TRANSPORTING AUFNR.
       ENDLOOP.
         WRITE: / 'PRD.NO       ITEM DESCRIPTION                               WIP(KGS)'.
        ULINE.
        LOOP AT T_ITPO5 INTO W_ITPO5.
          READ TABLE T_ITPO1 INTO W_ITPO1 WITH KEY AUFNR = W_ITPO5-AUFNR.
          SELECT SINGLE MAKTG FROM MAKT INTO W_ITPO5-ITEMDESC WHERE MATNR = W_ITPO1-MATNR.
          if sy-subrc = 0 .
          WRITE: / W_ITPO5-AUFNR,W_ITPO5-ITEMDESC,W_ITPO5-I_QTY.
          TOT_QTY = TOT_QTY + W_ITPO5-I_QTY.
          else.
          write 'Unsuccessful'.
          endif.
        ENDLOOP.
        ULINE.
        FORMAT COLOR 3.
        WRITE: / 'GTOTAL',55 TOT_QTY.
        FORMAT COLOR OFF.
    I want to have output that the production order is displayed along with the deficit quantity. but using this concept it shows only production order no. and qty 0.

Maybe you are looking for

  • CSS11500 SSL handling question for multiple url/FQDNs with the same ip address

    I know that it's possible on the CSS to handle multiple incoming HTTP requests that terminate on the same IP address and port and balance them to various servers based on the url.   For instance, I can set up www.cats.com and www.dogs.com at the same

  • Options for XML parsing in WAS 6.20 ABAP and higher

    Hello Experts,    What options are available to me for working with XML documents in SAP R/3 4.7? I am working on SAP WAS 6.20 ABAP and was wondering which tools/techniques I can use for parsing XML files?    I am developing an ABAP program and prima

  • Why does adobe bridge come on when I plug in my phone?

    when i plug my phone or ipod touch into the computer sync cable the photo downloader comes on (this i like) but also adobe bridge. How can I make it not do that?thanks kt

  • How can I fix my front camera

    Guys I need your help I can't use my camera when I reverse it in front of me but when I reverse it again it would work what should I do can you really pls help me I only use my camera twice and now I can't use it anymore.  Pls answer............

  • Sql Server 2008 - problems after incorrect installation of SSIS component

    During the addition of SSIS component to an existing installation of Sql Server 2008 the setup has been made using Sql Server 2008 R2 media. Now SSMS shows the following error during the connection to the instance : Method not found: 'Int32.Microsoft