ABAP Report Text ID FKK0 language EN not found

I'm having a problem with my program. I added the following code and Iu2019m getting the below error from u2018FKK0u2019 can anyone help with my problem?
*& Form DISPLAY
text
--> p1 text
<-- p2 text
form DISPLAY .
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
id = 'FKK0'
language = 'E'
name = opbel
object = 'FKKKO'
ARCHIVE_HANDLE = 0
LOCAL_CAT = ' '
IMPORTING
HEADER =
tables
lines = textlines
EXCEPTIONS
ID = 1
LANGUAGE = 2
NAME = 3
NOT_FOUND = 4
OBJECT = 5
REFERENCE_CHECK = 6
WRONG_ACCESS_TO_ARCHIVE = 7
OTHERS = 8
IF sy-subrc = 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
endform. " DISPLAY
Text IDFKK0 language EN not found
Message no. TD600
Diagnosis
You want to read a text which does not exist in the data base (or update memory).
SystemResponse
Reading could not be carried out.
Procedure
You need to create this text:
1. Initialization (module INIT_TEXT)
2. Save (module SAVE_TEXT)

Based on the information I believe you are correct. (cannot confirm since the object FKKO is not in our system).
The only thing I would like to add is that the
id = '0001'
c/b configurable so it could well be that the text id you are after has a differnt id.  This can be confirmed with the functional analyst (or checked in SPRO ( maybe ->OBT3 (Maintain Text Determination Configuration).
Robert

Similar Messages

  • Error while creating so "Text 0000001025 ID 0012 language EN not found

    Dear Sirs,
    I am creating sales order but when i enter the material i am getting an error message
    "Text 0000001025 ID 0012 language EN not found
    Message no. TD600
    Diagnosis
    You want to read a text which does not exist in the data base (or update memory).
    System Response
    Reading could not be carried out.
    Procedure
    You need to create this text:
    1. Initialization (module INIT_TEXT)
    2. Save (module SAVE_TEXT)"
    Can any one please let me know what i am doing wrong?
    Thank & regards,
    Sameer

    Hi,
    I hope its an error related to ABAP developements,either smartforms or reports related so you consult your abaper to resolve it.
    Here is an sample ABAP code using the READ_TEXT function module without Exceptions uncommented.
    This sample ABAP code is taken from a SAP Smartform which is created for SAP invoice output document.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    CLIENT = SY-MANDT
      id = 'ZI01' " Billing Item Text
      language = 'I'
      name = lv_name " Invoice
      object = 'VBBP' " Billing
    ARCHIVE_HANDLE = 0
    LOCAL_CAT = ' '
    *IMPORTING
    HEADER =
    tables
      lines = lt_lines
    *EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    NOT_FOUND = 4
    OBJECT = 5
    REFERENCE_CHECK = 6
    WRONG_ACCESS_TO_ARCHIVE = 7
    OTHERS = 8
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thank you

  • Long Text 0000000015120044ZOH ID ZOH language EN not found

    Hi Good day,
    i am trying to Create, Save and Read the long Text.
    for that i have done the following.
    1. SE75 Created the Object and Object ID  Ex :
    Now when i implement the logic in the Program,
    at the end when i execute ,
    1. it does the CALL FUNCTION 'INIT_TEXT' successfully , SAVE_TEXT Successfully but when i try to READ_TEXT it says
    Text 0000000015120044ZOH ID ZOH language EN not found
    this is my logic
    TABLES : ZEHS00_EXA_CARD.
    PARAMETERS SRV_NUM TYPE CHAR16.
    DATA:  textname         LIKE thead-tdname,
            func,
            co_co            LIKE sy-index.
    * Interne Tabellen
    DATA  t_tf02hz LIKE thead OCCURS 0 WITH HEADER LINE.
    DATA  t_tf02lz LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA: ltxtflg             LIKE bapistdtyp-boolean.
    DATA : l_text_tab LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA: ltxtflg1             LIKE bapistdtyp-boolean.
    DATA : l_text_tab1 LIKE tline OCCURS 100 WITH HEADER LINE.
    DATA : description(225).
    DATA : description1(225).
    DATA: line(132) TYPE c,
           text_tab LIKE STANDARD TABLE OF line,
           text_tab1 LIKE STANDARD TABLE OF line,
           WA_TAB LIKE STANDARD TABLE OF LINE,
           WA_TAB1 LIKE LINE OF text_tab1,
           field LIKE line.
    DATA: line1(132) TYPE c,
           field1 LIKE line.
    DATA: e_header  TYPE thead,
        i_header  TYPE  STANDARD  TABLE  OF thead,
        w_tline   TYPE tline,
        i_tline   TYPE  STANDARD  TABLE  OF tline  WITH  HEADER  LINE.
    e_header-tdobject =  'ZSYS_ACT1'.
    e_header-tdid =  'ZOH'.
    e_header-tdspras = sy-langu.
    e_header-tdlinesize =  072.
    CONCATENATE SRV_NUM e_header-tdid     INTO textname.
    CALL FUNCTION 'C14G_TEXT_INPUT_EDIT'
         EXPORTING
           i_windowtitle           = 'Systolic action Description'
           i_tablename             = 'CCIHT_IP'
           i_fieldname             = 'ACDESC'
           i_language              = sy-langu
           i_actype                = 'X'
         TABLES
           x_text_tab              = l_text_tab
         CHANGING
           x_text                  = description
           x_ltxtflg               = ltxtflg.
    CALL FUNCTION 'INIT_TEXT'
       EXPORTING
         id       = 'ZOH'
         language = sy-langu"'E'
         name     = textname
         object   = 'ZSYS_ACT1'
       IMPORTING
         header   = t_tf02hz
       TABLES
         lines    = t_tf02lz.
    LOOP AT l_text_tab.
       MOVE :l_text_tab-TDLINE TO LINE.
       APPEND line TO t_tf02lz.
    ENDLOOP.
    CONCATENATE SRV_NUM e_header-tdid     INTO e_header-tdname.
    **  APPEND 'DevComments for Obj 1' to  i_tline.
    CALL FUNCTION 'SAVE_TEXT'
       EXPORTING
         client          = sy-mandt
         header          = e_header
         savemode_direct = 'X'
       TABLES
         lines           = i_tline
       EXCEPTIONS
         id              = 1
         language        = 2
         name            = 3
         object          = 4
         OTHERS          = 5.
    CLEAR : l_text_tab[].
    CALL FUNCTION 'READ_TEXT'
                       EXPORTING
                        CLIENT                        = SY-MANDT
                         ID                            = 'ZOH'
                         LANGUAGE                      = 'E'
                         NAME                          = e_header-tdname"textname
                         OBJECT                        = 'ZSYS_ACT1'
                       TABLES
                         LINES                         = l_text_tab."t_tf02lz.
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.
    IF     l_text_tab[] IS NOT INITIAL.
    ENDIF.
    thank you,
    J.

    Hi,
    Go to tcode SE11 check table STXH whether the text stored in it. If yes, then see the layout of field TDNAME.
    Thanks.
    Regards,
    Keng Haw

  • Error_Text 3100000030802447 ID MATK language EN not found during BOM transf

    Hi Experts,
    When the user do the BOM transfer , they got the error message : Text 3100000000308020447 ID MATK language EN not found.
    Message no. TD600
    Diagnosis :
    You want to read a text which doese not exist in the data base ( or update memory )
    System response :
    Reading could not be carried out.
    Procedure :
    You need to create this text.
    1 . Initializaion ( module INIT_TEXT )
    Could someone help me to solve ?
    BR, Shubin

    Hi Virendra,
    Thanks a lot  !
    BR , Shubin

  • Urgent - Report Column based on LOV - Value not found in LOV

    Hi All,
    Recently, we have upgraded to HTMLDB 2.0 from HTMLDB 1.5.
    I have a SQL report. One of the columns is based upon LOV - Display as Text (Based on LOV, does not save state).
    For the "Ids" of the report, it should display the corresponding "Names" from the LOV.
    But, for the cases, where no record exist in LOV for some Id, then it is directly showing the Id instead of "-" (which i have specified in Display Null Text) in the report column attributes.
    Before upgrade, it was working fine.
    Any idea where is the issue.
    Please help.
    Thanks in advance,
    Monika

    Hi,
    Can anybody help me in sorting out this issue please.
    For your reference, i have made a test case on
    http://apex.oracle.com/pls/otn/f?p=20451:4:3519837362944582:::::
    Here, there are 2 tables
    1. MY_EMP_COUNTRY(emoid, empname, cntry_id)
    2. MY_COUNTRY_LOOKUP(id, name,active)
    LOV is created on table 2
    select name d, id r
    from my_country_lookup
    where active = 'Y'
    And, on the page a SQL report is created
    select empname, cntry_id
    from my_emp_country
    where, cntry_id is based upon the LOV.
    Since, in lookup table, cntry_id = 4 is set inactive, it is not picked up by the LOV and hence on the report instead of showing the NULL text it is showing the cntry_id (4).
    The attributes of report column cntry id -
    Named LOV = CNTRY_LOV
    Display Null = YES
    NULL text = -
    Display Extra Value = YES
    Am I missing anything.
    thanks,
    Monika

  • Report export (CSV) results in page not found error

    Hello,
    I'm having this strange error which i cannot seem to figure out. I have enabled report export through CSV in a report (report attributes). When i click the link in the report i get a page not found error (http 404). At first i thought it was a problem with the http-server. But as other applications (on different databases) don't have this problem i'm thinking it has to do with this apex-instance. Till 2 days ago it did work on this instance too.
    I'm really out of ideas, so if anyone can push me in the right direction i would really appreciate!
    Apex 3.2
    DB 10.2.0.4
    Thanks,
    Patrick

    Does this compare to the same as the url for your page?
    Has your server changed?
    Have you changed the dad file recently?
    have you checked the Apache access/error logs right after the 404 error is encountered ?
    Gus..

  • OS 6 Multi-language "FILE NOT FOUND"

    Someone here please see this post.
    I am trying to download the software update for the bold, the multilanguage file.
    After you enter your phone number, I am redirected to a page that says "File not Found"
    PLEASE fix this.. or let me know where I can download the multi-language os

    I have provided some information below that may help.
    To download the Blackberry 6 Multi-language software, please follow the steps below:
    Step 1 – Visit the website www.vzam.net/blackberry
    Step 2 – From the main page select the Personal Email (for consumer) or Corporate Email (if you are going to use a BES or company email)
    Step 3 – Choose the model Blackberry you will be using
    Step 4 – Follow the steps on the page and select the options
    -Choose upgrade if it is going to be a web-based upgrade, or continue with the instructions below if it is going to be through desktop manager.
    -Select Multilanguage
    -Enter your 10 digit mobile number
    -Select download at the bottom of the page
    I hope this helps.

  • Obant reports ORABPEL-00005 (collaxa library directory not found)

    Hi,
    I´m trying to deploy some tasks using obant and several build.xml´s. I´ve done this for dozen times now, but today I got an error message that says:
    build.xml:42: ORABPEL-00005
    Collaxa-Library-Verzeichnis nicht gefunden.
    Das angegebene BPM-Library-Verzeichnis "lib/" wurde nicht gefunden.
    Here a maybe-translation:
    build.xml:42: ORABPEL-00005
    Collaxa-Library-Directory not found
    The indicated BPM-Library-Directory "lib/" was not found
    Well, the funny thing is, that when I´m running "obant" from command-line everything works fine - but when I´m calling the it from another ant-script it fails. The corresponding line in build.xml points to the bpelc-task:
    <target name="main">
    <bpelc input="${basedir}/bpel.xml" rev="${rev}" deploy="${deploy}" />
    </target>
    I´ve inserted an <echo ... /> to get the values of those variables (basedir/rev/deploy) used and everything seems to be in order. Here´s how I call this build.xml.
    main/build.xml:
         <target name="deployBPELServices">
              <property name="deploy" id="deploy" value="testDomain"/>
              <ant dir="services/all" antfile="build.xml" target="all">
                   <reference refid="deploy"/>
              </ant>
         </target>
    main/services/all/build.xml:
    <property name="deploy" id="deploy" value="default"/>
    <property name="rev" value="1.0"/>
         <target name="BpelProcess1">
              <ant dir="${basedir}/../BpelProcess1/"/>
         </target>     
    <target name="all" depends="BpelProcess1"/>
    main/services/BpelProcess1/build.xml:
    <target name="main">
    <bpelc input="${basedir}/bpel.xml" rev="${rev}" deploy="${deploy}" />
    </target>
    Usualy I start the deployment by using "obant deployBPELServices", which fails. When I´m using "obant" directly from main/services/all it works flawless.
    Any ideas or suggestions?
    Thnx in advance,
    Max

    Hi Clemens,
    Yes, the sample´s build.xml were my reference on how to set up this whole thing. I did it this the very same procedure for the last year with 26 BPEL-processes and yesterday just added a new process and this happend. Nevertheless, also if I remove the changes made to the main build.xml it doesn´t work (tested on 2 systems). Well at least, obviously this is my fault, not BPEL´s :) Whatever, I succeeed with the following:
    Instead of using
    <target name="deployBPELServices">
    <property name="deploy" id="deploy" value="testDomain"/>
    <ant dir="services/all" antfile="build.xml" target="all">
    <reference refid="deploy"/>
    </ant>
    </target>
    I´m now doing it this way:
    <target name="deployBPELServices">
    <property name="deploy" id="deploy" value="testDomain"/>
    <exec dir="services/all" executable="cmd">
    <arg line="/c ${ORABPEL}/bin/obant.bat -Ddeploy=${deploy}"/>
    </exec>
    </target>
    ${ORABPEL} points to my BPEL installation.
    Thnx anyway :)
    Greetings,
    Max

  • Text 4030100048 ID F02 language EN not found error while running PO

    Hello friends,
                      If i add schema group in XK02 for that particular PO vendor ... i.e for Pricing procedure ... i'm getting this error .. i'm unable to see printpreview of PO .
    please help me out. i f i won't use  that schea group then its coming properly ...please its urgent ..
    Thanks& Regards
    Lavanya

    Hi!
    If you check the texts in the 4030100025 order with transaction ME23N, you'll see, it is not filled on the system, when the error occurs.
    Try it like this: open the ME23N, choose TEXTs tab on header part. Choose header text. Double click on the texts editor area. A larger editor will open. Here choose Goto-Header and you'll see the technical data of the text.
    In this case it is "F01", so the text below this one, will be  the "F02". And it is not filled in your case, that's why it occurs "error".
    Regards
    Tamá

  • When trying to view a Russian website, the message "Language File Not Found" appears. How can I view the site?

    Before updating to 3.6.8, I was able to view the site just fine, but now it can't find the language file, and I have no idea where to get it from.

    Can you post a link?
    Did you try to clear the cookies from that site and maybe the cache as well?
    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"<br />
    "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Your above posted system details show outdated plugin(s) with known security and stability risks.
    * Java Plug-in 1.5.0_02 for Netscape Navigator (DLL Helper)
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)

  • Reports Server - Rep - 1246: Chart document not found

    Hi, seem to be in a bit of bother here.
    If I run the report in report runtime all is fine graph and data table are produced.
    If I run the report using the scheduler or through the browser then I get the above message.
    I have made sure the path of the object is correct.
    Can anybody give me any clues?
    Many thanks
    Aron

    Aron,
    Any luck solving this problem?
    I am getting the same error message on a graphical report.
    Thanks,
    Trenton

  • Text not found for item line in PO

    Hi,
    When creating an item line in ME23N, I get the error message:
    TEXT ID Z155 language EN not found.
    When are these texts maintained ?

    Hi,
    use READ_TEXT FM.
    goto se37 READ_TEXT keep brk-pt in source code...
    run ur transaction ME23N ull come to know whats happ........
    Cheers,
    Will.

  • Getting 404 not found error-while creating classic report - after sql query

    my work space - upgrade
    while iam trying to develop a page today in work space - under classic report - after i provided the query and when pressed next to go to report attribuites section - iam facing 404 not found issue.,
    this is happening just today.
    and all teh other pages are working fine - do not know what ios the issue - can anybody help me here please..
    query used for classic report
    select DISTINCT cust.customer,prod.ebs_team
    from
    CUSTOMER_11i@upgrade Cust
    ,BUG_PRODUCTS@upgrade PROD
    where 1=1
    and cust.product_id = prod.product_id
    and prod.prodline = 'EBS'
    and IS_CUST_11 = 'YES'
    and NVL(IS_CUST_121,'NO') = 'NO'
    and NVL(IS_CUST_12,'NO') = 'NO'
    order by 1;
    with regards
    Shiva Prasad.k
    Edited by: user759720 on Feb 14, 2012 5:00 AM

    Hi Shiva,
    to diagnose a 404 error please have a look at http://www.inside-oracle-apex.com/oracle-apex-got-404-not-found-2/
    This should give you sufficient information to find out what is actually failing.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • XL Reporter error - MetaInfo.xml not found

    User encountered following error message when running XL Reporter reports on Excel 2003 running on OS Windows 7 with window administrator rights. However, same XL reports can be generated on Excel 2003 when running on OS Windows XP on another B1 client workstation.
    "An error occured during the process "Report Initialize"
    Description: (667) MetaInfo.xml not found!
    (Please contact the administrator to fix the repository connection)
    XL Reporter Startup Failed!
    Please advise.
    Thanks,
    Priscilla

    Hi Gordon,
    Where can I turn off the UAC? Is there any documentation on this?
    Thanks,
    Priscilla

  • ME22N  'F01' Not Found

    Hi all...,
    i have developed PO  format in SF and program.
    attached in Nace.
    ME22N transaction
    whenever PO Header Text is available i am getting the print.
    suppose PO Header Text is empty, i am getting the error message
    ''  PO Number' ID F01 Language EN not found,
    after this i am not able to get PO print preview and print.

    Hi,
       check the standard text  created if it is created based on th PO number and if the PO number is empty then definately it won't be existing in the system. May be that it is the reason it is giving the error message.
    or
    The standard text which you are trying to pull may not be available in English language. Create a text in English and then call.
    Check in the debuggin the text name and go to so10 and check whether that text is available.
    Br,
    Laxmi.

Maybe you are looking for

  • After upgrading to Mavericks, macbook pro very slow

    Hiya I upgraded to Mavericks and ever since then my macbook pro is very slow. When I try to open a new finder window, I get the rainbow ball. Chrome is extremely slow. Word is also slow to open, slow to wake, and slow to shut down. Pretty much everyt

  • Why is the stub generated from the implementation and not the interface?

    Why is the stub generated from the implementation and not the interface?

  • To import it

    Hi, The password is correct and and I can use it to connect to the XE But I've got this C:\oraclexe\app\oracle\product\10.2.0\server\BIN>imp system/???? dumpfile=c:\dp\may_chan.dmp schema=may_chan LRM-00101: 未知的參數名稱 'dumpfile' IMP-00022: 無法處理參數, 請鍵入

  • Where is the landscape/protrait button on the print menu?

    I want to change the orientation of a photo from landscape to portrait by cropping the two ends of the landscape view, in effect zooming in on the people and leaving out the scene.  I get the photo as I like it in iPhoto using the edit feature.  When

  • How can I get my 6700 classic to use 3g?

    I am told this phone should be working on the new 3g network & a symbol should show on the phone? Ive never seen the symbol. Is there any way to check if it is indeed on 3g?