ABAP Dictionary Fields

Hi all,
I have a field related to vendor. It is ktokk. I just want to find out in which vendor master table it is existing like lfa1 or lfb1. What is the best way to find which field belongs to which table. Because If I am doing recording it is referring to  structure.
Regards,
Varun.

In a lot of cases, the field names is the same as the data element that is used.  In SE11, enter the data elment name ktokk and click the appropriate radiobutton, then click the where used.  you will get  a list.  LFA1 is there.  This will not always work if the data element name is different than the actual field name in the table.
Of cousre, if you have some idea about the tables, you can just enter the table name and do a "FIND" once the table fields are displayed.
Regards,
Rich Heilman

Similar Messages

  • ABAP Dictionary type FLTP is not allowed for screen element

    Hi Experts
    I tried to open VBFA in se16 and i got the message in the status bar like this , what does it mean. please explain.
    "ABAP Dictionary type FLTP is not allowed for screen element"

    Hi,
        This is from help
    ABAP Dictionary type FLTP is not allowed for screen element
    Message no. 37048
    <b>Diagnosis</b>
    The format of the ABAP Dictionary field is only for use within the ABAP
    program and cannot be used in the Screen Painter.
    <b>Procedure</b>
    The field cannot be used in screens. If you want to output the
    information in the field or assign a value to the field from the screen,
    you must use an intermediate field with an appropriate format.
    <b>Reward points</b>
    Regards

  • RV13B is not defined in the ABAP dictionary

    Hi Experts,
    Iu2019ve a requirement to create a smartform,and then save it as a pdf and email. I have all of this done except for one part. At present my email address (for testing purposes) is hard coded as the email address. However I want to automatically pick up the email address to which my form is to be sent.
    The email address is found in transaction mn22. The pdf will be emailed to RV13B-PARNR (Partner) based on KOMB-LGORT (storage location). Each storage location is unique.
    Iu2019ve put in the following code:
    SELECT PARNR FROM RV13B INTO CORRESPONDING FIELDS OF TABLE it_vemail[]
    WHERE stor_loc EQ KOMB-LGORT.
    However Iu2019m getting the error RV13B is not defined in the ABAP dictionary as a table, projection view or database view.
    Could anyone give me some help?
    Thanks,
    Mike.

    Mike,
    F1 Technical help will not give you the table name in some cases.Instead of the table it will refer to the structure.In such a case you need to get the corresponding table for that field either from SQL trace or searching the possible tables with such field using SE84 which requires a bit of analysis in zeroing on the correct table where you can get the appropriate data related to that field.
    SE84>>ABAP Dictionary>>Fields>>table fields.
    Give PARNR and get the list of the possible tables containing PARNR as a field.If one is aware of the functionality then it will be easier to zero in on the field and the corresponding table from that list.
    SQL trace can help you in tracing out the possible tables used by a transaction code.ie if you do a SQL trace on VA01 you will come to know all the possible tables of VA01.
    Thanks,
    K.Kiran.

  • Field in structure 'is not defined in the ABAP Dictionary'

    Hi,
    I have created an Infoset (SQ01) based on an external program and structure.
    These two things are required.
    However when I try to generate my Infoset I get an error message for each element in the structure I created in SE11.
    The error is:
    "<structure_name-field_name> is not defined in the ABAP Dictionary"
    Each element in my structure gives this error yet I have defined this in SE11 as a structure and activated it.
    These elements are included in my Infoset and as a field group in the infoset.
    Has anyone come across this error before and knows how to resolve this problem?
    Many Thanks
    David

    Hey,
    I got the same prb.
    Just reset the text buffers.
    Rgds,
    Martin

  • Syntax error - Field is defined differently in screen (ABAP Dictionary)

    Hi
    I get a syntax error after decoupling a dynpro field from its original DDIC type (Disabling checkbox "Frm Dict"). The error message is
    [DE]  Feld ... ist im Dynpro unterschiedlich definiert (ABAP-Feld, DDIC-Feld).
    [EN]  Field ... is defined differently in screen (ABAP/4 field, Dictionary field).
    The error occurs on PLM 600/700 but not on PLM 500.
    Thanks in advance for your help.
    Regards,
    Michael

    hi Praneeth,
    what is the program name,screen number you are trying to modify..,and after appending the field <b>ZZKVGR6 to KNVV</b> , now go to table and choose menu <b>Utilities->Data base Utility-></b> now click on  <b>Activate and Adjust the Data base</b>, then try to add the field.
    and are you adding the field from Dictionary (i.e you have option Get From Dictionary in that give KNVV table name it will list the fields, choose zzkvgr6 from it, and place it in your screen.)
    the exit which you are adding should be appropriate one
    or else you won't get the desired results. what is the exit..
    Regards
    vijay

  • Field -RLTYP is not defined in ABAP-dictionary

    Hello, gurus!
    We have upgraded to ERP 6.0 (from 4.6c).
    Now I have a problem with search help in TX.1
    1. Transaction TX.1
    2. F4 on the field KONTRH
    3. Choose the "Partners by BP Role" tab
    4. F4 on BU_PARTNERROLE
    Next I see message "Field -RLTYP is not defined in ABAP-dictionary" instead of the roles list.
    I appreciate any help!
    Thanks in advance,
    Anton.

    I've found the solution!
    Note 1525604

  • Getting a field's title from the ABAP dictionary

    Hi All,
    I'm learning ABAP and want to include field titles in my program output from the ABAP dictionary, rather than coding them as text elements.
    Is there a function module to do this? Can someone provide some sample code?
    Cheers,
    Steve

    Try this function.
    data: label type string.
    CALL FUNCTION 'DDIF_FIELDLABEL_GET'
      EXPORTING
        tabname              = 'MARA'
        FIELDNAME            = 'MATNR'
    *   LANGU                = SY-LANGU
    *   LFIELDNAME           = ' '
      IMPORTING
        LABEL                = label.
    Regards,
    Rich Heilman

  • ZSD_TABLE is not defined in the ABAP dictionary as a table"

    Hello,
    I created zsd_table and inserted few records
    When i use this table in program system is giving error message "ZSD_TABLE is not defined in the ABAP dictionary as a table"
    How can we define this table in ABAP dictionary?
    Thanks

    Hi,
    Go to Transaction SE11
    Give the table name 'ZSD_TABLE'
    and click on create and enter the fileds
    after entering fields give 'techinical setting' for a table by clicking on technical setting button on tool bar
    save check and activate
    Regards
    Krishna

  • Abap-dictionary

    hi experts,
    what is value table&check table in abap dictionary.
    where we use it. and what is the purpose.
    thank u,
      cnu

    Hi,
    Check this link
    http://help.sap.com/saphelp_nw04s/helpdata/en/e2/667092730811d2959500a0c929b3c3/content.htm
    Value Table
    This is maintained at Domain Level.
    When ever you create a domain , you can entered allowed values.   For example  you go to Domain   SHKZG - Debit/credit indicator.  Here only allowed values is H or S.
    When ever you use this Domain, the system will forces you to enter only these values.
    This is a sort of master check . To be maintained as a customization object. This mean that if you want to enter values to this table you have to create a development request & transport the same.
    Check table
    For example you have Employee master table & Employee Transaction table.
    When ever an employee Transacts we need to check whether that employee exists , so we can refer to the employee master table.
    This is nothing but a Parent & Child relationship .  Here data can be maintained at client level , no development involved.
    As per DBMS what we call foregin key table, is called as check table in SAP.
    There is 1 more important Difference in Value Table and Check Table is that:
    1. The contents of the check will be used as an input help(F4 Help) for a particular field on which a check table is assigned.
        But the contents of Value Table are never used in Input Help.
    The Heirarchy which decides from where to used the Input Help is:
    1. Input help defined explicitly in ABAP Program or Dialog Module.
    2. Input Help Attached to the referenced Database Table field.
    3. Using the contents of Check Table as an input help if neither (1) or (2) help are there.
    4. Input help from Fixed value or Value range given in Domain.
    http://www.sap-img.com/abap/difference-between-a-check-table-and-a-value-table.htm
    Hope thsi helps.

  • What is use of  Conversion Routine in  Abap dictionary

    Hi,
    Can any body please tell me the proper use of <b>Conversion Routine in  Abap dictionary.</b>
    Please give me a practical example where it has been used.
    Thanks
    prabhudutta

    hi,
    here is help for conversion routine
    Conversion takes place when converting the contents of a screen field from display format to SAP-internal format and vice versa and when outputting with the ABAP statement WRITE, depending on the data type of the field.
    If standard conversion is not suitable, it can be overridden by specifying a conversion routine in the underlying domain.
    A conversion routine is identified by its five-place name and is stored as a group of two function modules. The function modules have a fixed naming convention. The following function modules are assigned to conversion routine xxxxx:
    CONVERSION_EXIT_xxxxx_INPUT
    CONVERSION_EXIT_xxxxx_OUTPUT
    The INPUT module performs the conversion from display format to internal format. The OUTPUT module performs the conversion from internal format to display format.
    If a screen field refers to a domain with a conversion routine, this conversion routine is executed automatically each time an entry is made in this screen field or when values are displayed with this screen field.
    regards,
    Raghavendra

  • How I create a structure in the ABAP DICTIONARY?

    I need a structure for a FORM, how can I create a structure in the ABAP DICTIONARY?
    Thanks!!

    Hi Carlos,
    Go to SE11(ABAP Dictionary).
    Select the Data Type radio button.
    Specify the name for your structure.
    Note structure in customer namespace should start with Z or Y.
    Press the create button.
    Then in the next dialog box select the structure radio button.
    Then you will get in to the structure screen.
    Give a meaningful description for your structure.
    Add the relevant fields and finally activate.
    Regards,
    Abdul

  • Maint. Status problem for View in ABAP Dictionary

    Hello, guys. I have a problem with a configuration in my Maintainence View in the ABAP Dictionary.
    I have a maintainence view in my abap dictionary, When i go to the tab "Maint. Status" there, and want to change the "Data Browser/Table View Maint." from "Display/Maintenance Allowed with Restrictions" to "Display/Maintenance Allowed", an error is occured. An error message is displayed, showed "The input field contains prohibited characters (already deleted)."
    So, what should I do in order to change to "display/maintenance allowed with restrictions" status.
    Hope anyone here can provide me a solution. Thanks in advance first. ^^

    Check below SAP help
    http://help.sap.com/saphelp_nw04/helpdata/en/38/81c1351181b73fe10000009b38f839/frameset.htm
    events
    http://help.sap.com/saphelp_nw04/helpdata/en/91/ca9f0ea9d111d1a5690000e82deaaa/frameset.htm
    Regards,
    Atish

  • Abap dictionary activation problem when transfer request dev to prod

    hi experts
    i develop enhancement in that i append structure in afru table.
    when transfering requset dev to production there is error
    abap dictionary activation .
    thanks
    ajay

    hi
    problem not solve.
    see below error.
      Activate table ZZAFRUD
       Field RPM: Component type or domain used not active or does not exist
       Nametab for table ZZAFRUD cannot be generated
       Table ZZAFRUD was not activated.
    structure zzafrud is active but in error it shows not active.
    i used domain zrpm it also active.
    thanks
    ajay.

  • Customise table inconsistency between ABAP Dictionary and the databas

    Hi all,
    I have encountered a problem where by, I was not able to activate a table due to inconsistency between ABAP Dictionary and the database.
    After I run the SE14--> Check Database object. It has show that there is a missing Unique Index(Primary Index) at the Database Level, but at ABAP Dictionary it is there.
    I have try to recreate the primary index at the Database level, but failed. Because one of the primary key field is been dropped from this table.
    So now, may I know how can I still make this table Active again?
    Is it save to folllow the following solution that I found on internet?
    Syntax error in SDCC, table inconsistency between ABAP Dictionary and the database, transport error 8 during the generation of ABAP Dictionary. When you call Transaction SDCC, a termination occurs due to a putative syntax error because a table is not known or active. When you check this with the ABAP dictionary (SE11), you notice, that the table is active or inactive, however it is not possible to activate it. The activation might terminate with the error message 'Inconsistency between ABAP Dictionary and database'. A check of the affected object also delivers this error.
    Solution
    Proceed as follows:
    Log on as user DDIC
    Call Transaction SE14
    Enter the affected table name and
    select EDIT
    In the following screen, choose Table -> Reconstruct
    Confirm the execution
    Call Transaction SE11
    Enter the affected table name
    Display
    Activate
    Thanks.
    CK

    I managed to solved this by
    Solution
    Proceed as follows:
    Log on as user DDIC
    Call Transaction SE14
    Enter the affected table name and
    select EDIT
    In the following screen, choose Table -> Reconstruct
    Confirm the execution
    Call Transaction SE11
    Enter the affected table name
    Display
    Activate
    Thanks.
    CK

  • What are the basic objects in abap dictionary ?

    Try to provide the details if anyone knows about it.

    The DDIC is nothing but the ABAP Dictionary. The ABAP Dictionary centrally describes and manages all the data definitions used in the system.
    Data types
    Data types are the actual type definitions in the ABAP Dictionary. They allow you to define elementary types, reference types, and complex types that are visible globally in the system. The data types of database tables are a subset of all possible types, namely flat structures.
    Data Elements
    Data elements in the ABAP Dictionary describe individual fields. They are the smallest indivisible units of the complex types described below, and are used to specify the types of columns in the database. Data elements can be elementary types or reference types.
    Structures
    A structure is a sequence of any other data types from the ABAP Dictionary, that is, data elements, structures, table types, or database tables. When you create a structure in the ABAP Dictionary, each component must have a name and a data type. In an ABAP program, you can use the TYPE addition to refer directly to a structure.
    If you define a local data type in a program by referring to a structure as follows:
    TYPES <t> TYPE <structure>.
    Table Types
    Table types are construction blueprints for internal tables that are stored in the ABAP Dictionary.
    When you create a table type in the ABAP Dictionary, you specify the line type, access type, and key. The line type can be any data type from the ABAP Dictionary, that is, a data element, a structure, a table type, or the type of a database table. You can also enter a predefined Dictionary type directly as the line type, in the same way that you can with a domain.
    Type Groups
    Before Release 4.5A, it was not possible to define standalone types in the ABAP Dictionary to which you could refer using a TYPE addition in an ABAP program. It was only possible to refer SAP AG BC - ABAP Programming
    Data Types in the ABAP Dictionary to flat structures. Structures in programs corresponded to the structures of database tables or structures in the ABAP Dictionary. In ABAP programs, you could only refer to database tables and structures in the ABAP Dictionary using LIKE. It was, however, possible to refer to individual components of the Dictionary type. Complex local data types such as internal tables or deep structures had no equivalent in the ABAP Dictionary. The solution to this from Release 3.0 onwards was to use type groups. Type groups were based on the include technique, and allowed you to store any type definitions globally in the Dictionary by defining them using TYPES statements.
    Views:
    There are 4 types views are avilable in SAP.
    Database View - To club more than one table
    Projection View - To hide fields in one table
    Maintanance View - To maintain database records in table
    Help View - To provide help for a fields (Same functionality as Search help. This is outdated)
    View are improves perfromance in the following aspects
    1. If you want to use more than two table in 'JOIN' condition better to use Views . It will improves performance of a program
    2. If you want to use mutiple FOR ALL ENTRIES clause, better to club all SELECT statement in a view.
    Lock Objects:
    Lock objects are use in SAP to avoid the inconsistancy at the time of data is being insert/change into database.
    SAP Provide three type of Lock objects.
    Read Lock(Shared Locked)
    protects read access to an object. The read lock allows other transactions read access but not write access to
    the locked area of the table
    Write Lock(exclusive lock)
    protects write access to an object. The write lock allows other transactions neither read nor write access to
    the locked area of the table.
    Enhanced write lock (exclusive lock without cumulating)
    works like a write lock except that the enhanced write lock also protects from further accesses from the
    same transaction.
    You can create a lock on a object of SAP thorugh transaction SE11 and enter any meaningful name start with EZ Example EZTEST_LOCK.
    Use: you can see in almost all transaction when you are open an object in Change mode SAP could not allow to any other user to open the same object in change mode.
    Example: in HR when we are enter a personal number in master data maintainance screen SAP can't allow to any other user to use same personal number for changes.
    Technicaly:
    When you create a lock object System automatically creat two function module.
    1. ENQUEUE_<Lockobject name>. to insert the object in a queue.
    2. DEQUEUE_<Lockobject name>. To remove the object is being queued through above FM.
    You have to use these function module in your program.
    Search Helps:
    These are two types.
    Elementary n Collective.
    1) Elementary search helps describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    2) Collective search helps combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    3)An elementary search help defines the standard flow of an input help.
    4) A collective search help combines several elementary search helps. The user can thus choose one of several alternative search paths with a collective search help.
    5)A collective search help comprises several elementary search helps. It combines all the search paths that are meaningful for a field.
    6)Both elementary search helps and other search helps can be included in a collective search help. If other collective search helps are contained in a collective search help, they are expanded to the level of the elementary search helps when the input help is called.
    See the below link to understand this completely:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ee93446011d189700000e8322d00/frameset.htm
    Rewards if useful

Maybe you are looking for

  • MDB and Database - Listener port stops working

    Hi, I have created an MDB which does the following when a message is received from the queue. 1. Store message in database 2. do some processing At step 1, if there is any issue with the database connection (e.g. database is not available etc), I rol

  • HT201210 None of these solutions are working.

    None of these solutions are working. I plug in my newly restored iPhone and under the category in iTunes, I have the option to click it. When I do so, I get an empty box on the screen, below a Apple logo on the left and a padlock on the right. Any id

  • Change chart style

    how to change chart background color

  • Delivery challan print preview for transaction j1if01 problem

    hi , i have problem with print preview of delivery challan. after creating it from j1if01 im unable to get a print preview of it as i dont find any tab or button for print preview . plz guide me how can i  get an output . also plz give form name for

  • Lost pdf image when saving from 'print'?. Michael

    I have suddenly lost the ability to save as pdf from 'print'. It still save but the image is lost. I can still save as pdf after a scan. I am not aware of making any change, although adobe reader did an update the other day?!.Can anyone help please