Need FM to know value table of Data element

Hello frieds ,
I need such function module which will give me domain , value table of Specified data element .
Something like if I give WDY_BOOLEAN it should return me abap_true and abap_false too possible values from value table.
I urgently need it in WD ABAP .
Points will be rewarded surely .
Cheers
Parry

see this sample code.
DATA : BEGIN OF int_orient OCCURS 10,
           domvalue_l LIKE dd07v-domvalue_l,
           ddtext LIKE dd07v-ddtext,
           END OF int_orient.
DATA: ZPETS_PORTORIEN type dd07l-domname,
        int_values_table  TYPE dd07v OCCURS 0 WITH HEADER LINE.
  CALL FUNCTION 'GET_DOMAIN_VALUES'
    EXPORTING
      domname         = 'ZPETS_PORTORIEN'
      text            = 'X'
    TABLES
      values_tab      = int_values_table
    EXCEPTIONS
      no_values_found = 1
      OTHERS          = 2.
  LOOP AT int_values_table.
     int_orient-domvalue_l = int_values_table-domvalue_l.
    int_orient-ddtext = int_values_table-ddtext .
    append int_orient.
  ENDLOOP.
Rgds
Anver

Similar Messages

  • Need help summing row values based on several elements

    Hello All,
    I need to print two values in the trailer. The sum of all negative quantities where 1 - Trade Date is equal to settle date or record id = 2 and the sum of all position quanties with the same two conditions. Below you can see my xsl but my numbers are coming out incorrect. BTW, the results that are being parsed are coming from a database query return.
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text" omit-xml-declaration="yes"/>
    <xsl:template match="/">
    <xsl:apply-templates select="result"/>
    </xsl:template>
    <xsl:template match="result">
    <xsl:apply-templates select="entry"/>
    <xsl:call-template name="trailer"/>
    </xsl:template>
    <!-- Data definition -->
    <xsl:template match="entry">
    <!-- Acct # -->
    <xsl:value-of select="substring(ClientAccountNumber, 1, 6)"/>
    <!-- Trade Date -->
    <xsl:value-of select="substring(TRADE_DATE, 3, 6)"/>
    <!-- Settle Date -->
    <xsl:value-of select="substring(SettleDate, 3, 6)"/>
    <!-- Quantity -->
    <xsl:value-of select='format-number(NetQuantity, "0000000000000.0000")
    <!-- Record Id -->
    <xsl:value-of select="RecordId"/>
    </xsl:template>
    <!-- Trailer definition -->
    <xsl:template name="trailer">
    <xsl:value-of select="count(//entry[NetQuantity>0 and TRADE_DATE = SettleDate or TRANS_REC_ID_C ='02'])"/>
    <xsl:value-of select='format-number(sum(//entry[./LongQuantity>0][./TRADE_DATE = SettleDate][./TRANS_REC_ID_C<3]/LongQuantity), "0000000000000.0000")'/>
    <xsl:with-param name="padVar" select='format-number(sum(//entry[./ShortQuantity>0][./TRADE_DATE = SettleDate][./TRANS_REC_ID_C<3]/ShortQuantity), "0000000000000.0000")'/>
    </xsl:template>

    Hello All,
    I need to print two values in the trailer. The sum of all negative quantities where 1 - Trade Date is equal to settle date or record id = 2 and the sum of all position quanties with the same two conditions. Below you can see my xsl but my numbers are coming out incorrect. BTW, the results that are being parsed are coming from a database query return.
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="text" omit-xml-declaration="yes"/>
    <xsl:template match="/">
    <xsl:apply-templates select="result"/>
    </xsl:template>
    <xsl:template match="result">
    <xsl:apply-templates select="entry"/>
    <xsl:call-template name="trailer"/>
    </xsl:template>
    <!-- Data definition -->
    <xsl:template match="entry">
    <!-- Acct # -->
    <xsl:value-of select="substring(ClientAccountNumber, 1, 6)"/>
    <!-- Trade Date -->
    <xsl:value-of select="substring(TRADE_DATE, 3, 6)"/>
    <!-- Settle Date -->
    <xsl:value-of select="substring(SettleDate, 3, 6)"/>
    <!-- Quantity -->
    <xsl:value-of select='format-number(NetQuantity, "0000000000000.0000")
    <!-- Record Id -->
    <xsl:value-of select="RecordId"/>
    </xsl:template>
    <!-- Trailer definition -->
    <xsl:template name="trailer">
    <xsl:value-of select="count(//entry[NetQuantity>0 and TRADE_DATE = SettleDate or TRANS_REC_ID_C ='02'])"/>
    <xsl:value-of select='format-number(sum(//entry[./LongQuantity>0][./TRADE_DATE = SettleDate][./TRANS_REC_ID_C<3]/LongQuantity), "0000000000000.0000")'/>
    <xsl:with-param name="padVar" select='format-number(sum(//entry[./ShortQuantity>0][./TRADE_DATE = SettleDate][./TRANS_REC_ID_C<3]/ShortQuantity), "0000000000000.0000")'/>
    </xsl:template>

  • Problem when define Value range for data element

    Dear
    When I define a new data element in ABAP Dictionary, for example, ZDATA_ELEMENT_TEST.
    I use domain ZDOMAIN_TEST.
    (Data type is DEC, the length is 10, and decimals is 2 with sign.)
    Now, I want to restrict that, user can ONLY input the value from 10 to 100.
    From ABAP course and the Internet, I switch to "Value Range" tab, and define 10 for Lower Limit, 100 for Upper Limit in Intervals section.
    And write the simple program.
    PARAMETERS test TYPE ZDATA_ELEMENT_TEST.
    WRITE: test.
    And run it.
    Line: -
    But, there is a problem.
    When I input 200 for test, the program still run and display 200 to screen without any error report or notification. The ABAP runtime system doesn't check the input value.
    I want to config for the domain that can satisfies, if the user input the wrong value (e.g: 200 in the previous case), the program will auto raise the error report, or exception, or sth like that.
    Any help is welcome.

    Hi Hanni,
    Welcome to forum.
    Try to attach key word VALUE CHECK to your PARAMETER statement.
    I.e:
    PARAMETERS test TYPE ZDATA_ELEMENT_TEST VALUE CHECK.
    Note: The addition VALUE CHECK cannot be used together with the additions AS CHECKBOX, RADIOBUTTON, or NO-DISPLAY.
    Regards,

  • Sorting table by date doesn't work properly

    what am I doing wrong?
    I've made a table with 5 columns and many rows, with one column being the date.
    I need to sort the entire table by date, but it doesn't seem to be very accurate - sorted items appear out of date order
    suggestions?
    pete

    Hello
    I know that.
    But if you receive a foreign document (ie not a Pages one) embedding dates stored as mm/dd/yyyy or dd/mm/yyyy, your app will not recognize them as dates.
    I get this behavior every day.
    I repeat, not with iWork '09 documents because in these ones, dates are stored as numbers (number of seconds since 01/01/2001) and displayed matching your system settings.
    If you receive a CSV or a TSV file, your machine will not recognize the embedded dates because most of these formats's users ignore what is the ISO format.
    Back to the date storage.
    At first, only column B was filled. The string "Yvan" was just used to help me to reach this storage area in the index.xml file. Here is a screenshot of this area.
    Small arrows are pointing the numbers describing the dates.
    In the completed table, in column C I copied the values stored in the index.
    The cell D2 contain the formula :
    =-DATEDIF(B,$B$3,"D")
    I was forced to use the reverse of others because DATEDIF refuse a start date greater than an end one.
    In D3, the formula is :
    =DATEDIF($B$3,B,"D")
    then apply fill down
    They calculate the count of days.
    In E2, the formula is :
    =D*24*60*60
    apply fill down
    It calculate the number of seconds corresponding to the number of days and of course, it matches what is stored in the index.xml file.
    Given that, opening in every location an iWork '9 document created everywhere, we will get correct dates whichever format is used for creation or for reading.
    Theoretically, it would work the same if you import a M…Soft document (they use also numbers to store dates).
    I can't check for iWork '08 documents because I don't have old foreign ones in good health. Those which I kept are corrupted ones in which I look from time to time trying to find where is the wrongdoer.
    When the source file is a CSV or a TSV one, the apps have no way to decide which is the format used.
    Of course, if the third component has four digits, it's a year.
    If a first two digits component is greater than 12, it's a day
    If a second two digits component is greater than 12, it's a day
    but that's all.
    No way to know for sure what is 5/6/2010
    As you use the ISO format, for you it will be a string
    For an US user, it will be 6 may 2010
    For a French user, it will be 5 juin 2010
    If the value is the well known  31/12/1943
    for you and for US users, it will be a string
    Happily, for me, it's 31 décembre 1943.
    As you often wrote, it would be easier if everybody was using the ISO format but I'm not sure that the grand children of my grand son will use it.
    Yvan KOENIG (VALLAURIS, France) samedi 2 juillet 2011 19:01:15 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Procedure for creating transparent table, data element and domain

    Hi,
    Can anybody let me know the procedure for creating transparent table, data element and domain.
    Thanks,
    Mahathi

    Hi
    Database table and its components
    A database table is the central data structure of the ABAP/4 data dictionary.
    The structure of the objects of application development are mapped in tables on the underlying relational database.
    The attributes of these objects correspond to fields of the table.
    A table consists of columns (fields) and rows (entries). It has a name and different attributes, such as delivery class and maintenance authorization.
    A field has a unique name and attributes; for example it can be a key field.
    A table has one or more key fields, called the primary key.
    The values of these key fields uniquely identify a table entry.
    You must specify a reference table for fields containing a currency (data type CURR) or quantity (data type QUAN). It must contain a field (reference field) with the format for currency keys (data type CUKY) or the format for units (data type UNIT). The field is only assigned to the reference field at program runtime.
    The basic objects for defining data in the ABAP Dictionary are tables, data elements and domains. The domain is used for the technical definition of a table field (for example field type and length) and the data element is used for the semantic definition (for example short description).
    A domain describes the value range of a field. It is defined by its data type and length. The value range can be limited by specifying fixed values.
    A data element describes the meaning of a domain in a certain business context. It contains primarily the field help (F1 documentation) and the field labels in the screen.
    A field is not an independent object. It is table-dependent and can only be maintained within a table.
    You can enter the data type and number of places directly for a field. No data element is required in this case. Instead the data type and number of places is defined by specifying a direct type.
    The data type attributes of a data element can also be defined by specifying a built-in type, where the data type and number of places is entered directly.
    <b>Two Level Domain Example</b>
    A domain defines a field technically and therefore it may
    be used at different business levels.
    A data element describes the meaning of a domain in a certain business context.
    A domain, however, is used for the technical definition of a table field (for example field type and length).
    Therefore, although a take-off airport (data element S_FROMAIRP) would have a different business meaning from an airport where a plane lands (data element S_TOAIRP), they could still have the same domain(here S_AIRPID) because technically we could assign the same number of characters whether the airport is a take-off or a landing airport.
    <b>Definitions of Table in Database</b>
    In SAP R/3 tables are defined as
    A) Transparent tables: All of the fields of a dictionary table correspond to a field in the real database table.
    B) Pooled tables: Different tables which are not linked to each other with a common key are combined into a TABLE POOL. Several logical tables thus exist as a single real database table.
    C) Cluster tables: Several tables linked by a common key may sometimes be combined by the data dictionary and made to exist on the database schema as a single table.
    SAP is evolving R/3 tables in transparent tables.
    <b>Elaboration on each of the definitions</b>
    A transparent table is automatically created on the database when it is activated in the ABAP Dictionary. At this time the database-independent description of the table in the ABAP Dictionary is translated into the language of the database system used.
    The database table has the same name as the table in the ABAP Dictionary. The fields also have the same name in both the database and the ABAP Dictionary. The data types in the ABAP Dictionary are converted to the corresponding data types of the database system.
    The order of the fields in the ABAP Dictionary can differ from the order of the fields on the database. This permits you to insert new fields without having to convert the table. When a new field is added, the adjustment is made by changing the database catalog (ALTER TABLE). The new field is added to the database table, whatever the position of the new field in the ABAP Dictionary.
    Tables can also reside on the database as Pooled tables or cluster tables
    Pooled Tables: Different tables which are not linked to each other with a common key can be combined into a Table Pool. The tables contained within this pool are called Pooled Tables. A table pool is stored in the database a simple table. The table's data sets contain, in separate fields, the actual key for the data set to be stored, the name of the pooled table and the contents of the data set to be stored.
    Using this schema, several logical tables are combined into a single real database table. Although the data structure of each set is lost during the write to the table pool, it is restored during the read by the ABAP/4 Data Dictionary. The ABAP/4 Data Dictionary utilizes its meta-data to accomplish this.
    Since information must be prepared (defined) within the ABAP/4 Data Dictionary when it is read or written to (or accessed), this process itself defines these as not transparent tables
    Cluster Tables: Occasionally, several tables may be linked by a common key. The ABAP/4 Data Dictionary can also combine these tables into a single table. Each data set of the real table within the database contains a key and in a single data field, several data sets of the subsequent table for this key.
    As mentioned above, these table types require special data handling, therefore they are not transparent tables.
    <b>Technical Settings in Dictionary</b>
    The data class logically defines the physical area of the database (for ORACLE the table space) in which your table should be created. If you choose the data class correctly, the table will automatically be created in the appropriate area on the database when it is activated in the ABAP Dictionary.
    The most important data classes are master data, transaction data, organizational data and system data.
    Master data is data that is rarely modified. An example of master data is the data of an address file, for example the name, address and telephone number.
    Transaction data is data that is frequently modified. An example is the material stock of a warehouse, which can change after each purchase order.
    Organizational data is data that is defined during customizing when the system is installed and that is rarely modified thereafter. The country keys are an example.
    System data is data that the R/3 System itself needs. The program sources are an example.
    Further data classes, called customer data classes (USER, USER1), are provided for customers. These should be used for customer developments. Special storage areas must be allocated in the database.
    The size category describes the expected storage requirements for the table on the database.
    An initial extent is reserved when a table is created on the database. The size of the initial extent is identical for all size categories. If the table needs more space for data at a later time, extents are added. These additional extents have a fixed size that is determined by the size category specified in the ABAP Dictionary.
    You can choose a size category from 0 to 4. A fixed extent size, which depends on the database system used, is assigned to each category.
    Correctly assigning a size category therefore ensures that you do not create a large number of small extents. It also prevents storage space from being wasted when creating extents that are too large.
    Modifications to the entries of a table can be recorded and stored using logging.
    To activate logging, the corresponding field must be selected in the technical settings. Logging, however, only will take place if the R/3 System was started with a profile containing parameter 'rec/client'. Only selecting the flag in the ABAP Dictionary is not sufficient to trigger logging.
    Parameter 'rec/client' can have the following settings:
    rec/client = ALL All clients should be logged.
    rec/client = 000[...] Only the specified clients should be logged.
    rec/client = OFF Logging is not enabled on this system.
    The data modifications are logged independently of the update. The logs can be displayed with the Transaction Table History (SCU3).
    Logging creates a 'bottleneck' in the system:
    Additional write access for each modification to tables being logged.
    This can result in lock situations although the users are accessing different application tables!
    <b>Create transparent table</b>
    Go to transaction SE11. Enter name of table you want to create (beginning with Y or Z) and click on create pushbutton
    Enter the delivery class and the table maintenance criteria
    The delivery class controls the transport of table data when installing or upgrading, in a client copy and when transporting between customer systems .
    The display/maintenance indicator specifies whether it is possible to display/maintain a table/view using the maintenance tools Data Browser (transaction SE16) and table view maintenance (transactions SM30 and SM31).
    Enter the name of the table field and the data element. The
    System automatically populates the technical details for
    existing data elements.
    So far as possible it is advisable to use existing data elements which befit the business requirements.
    However, we may create data elements if need be. The same is shown in the next slide.
    To create a data element simply double click on it.
    Alternately create a data element by simply choosing the
    data type radio button on SE11 initial screen.
    <b>Create data element</b>
    The system prompts you to create a new data element.
    Choose the Yes pushbutton.
    Under the data type tab enter the domain name which
    determines the technical characteristics of the field.
    Further characteristics tab: Allows you to specify a search help assigned to the data element.
    It also allows you to specify a parameter id which helps you populate a field from SAP memory.
    Field label: Can be assigned as prefixed text to a screen field referring to the ABAP Dictionary. The text is displayed on the screen in the logon language of the user (if the text was translated into this language).
    <b>Create domain</b>
    If the domain does not exist in the data dictionary the
    system prompts you to create one.
    Give the technical characteristics under the definition
    tab. Value range allows you value restriction at domain
    level.
    Value range tab:
    As explained in the section Consistency through input checks one can restrict the possible values for a field at domain level itself by either entering fixed values or by specifying a value table under the tab Value range.
    <b>Currency/Quantity fields in a table</b>
    A currency or a quantity field must be assigned a reference field from a reference table containing applicable qty unit or currency unit.
    Field of the reference table, containing the applicable quantity unit or currency
    A field containing currency amounts (data type CURR) must be assigned a reference field including the currency key (data type CUKY).
    A field containing quantity specifications (data type QUAN) must be assigned a reference field including the associated quantity unit (data type UNIT).
    <b>Create transparent table continue</b>
    Maintain the technical settings of the table by clicking on the tab

  • Need some help on CRM tables which have the details of the order created

    Hi,
    Can anyone help me in knowing the tables which stores the information of an order . I need to find the status, priority, category and the partner functions of a particular order. Is there any table which stores all these data.
    Thanks & Regards,
    Anuradha.P

    Hi Anuradha,
    basically you link  partner function of an order with view:
    CRMV_LINKPARTNER.
    In this view you can find :
    Guid of an order coming from CRMD_ORDERADM_H
    Guid of BP coming from BUT000,
    and <b>partner function</b> stored in field PARTNER_FCT.
    For sold-to-party you have to select 00000001.
    Concerning priority and category I suggest you investigating with "where used list", tool in which tables the data element is used.
    Then start from CRMD_ORDERADM_H or CRMD_ORDERADM_I , and with the guid go to CRMD_LINK.
    Extract the proper Guid set and try going into the table/s you select, previuosly.
    Regards,
    AndreA
    <b></b>

  • Without data element can we create table

    without data element is it possible to create table
    if it is possible how ?
      could u plz expain steps.

    Hi,
    Yes u can create table without data element.
    In that case in place of Data element u need to specify the Predefined type.
    Enter the name of field and the press on Built-In type button. This will disable the data element entry fields and enable the Built-in type field where in u can put the predefined type like CHAR, INT1 etc.
    Regards,
    Himanshu

  • Modify Table column data type

    Dear All,
    We have one user contains more than 100 tables(Production). I need to change some of table columns data types without affect data's.
    Please suggest me to do that.
    Thanks in advance,
    Moorthy.GS

    Dear Sybrand,
    Thanks for your reply.
    I tried below ways to modify the datatypes.
    1) Tried to modify datatype FLOAT to NUMBER while data is persists.
    2) Tried to take a export of that user and import the dump without data's and modify the datatype. After that, i tried to import the dump with rows=y option. But it failed due to constraint problems.
    Please advise...
    Cheers,
    Moorthy.GS

  • Adding new data elements to Org Modeler.

    We are trying to add 4 fields to the org Modeler. However it is nowhere to be found like in the orgchart.
    Org Modeler 3.0 SP2
    PA0001, PA0008, HRP1005 and HRP1008. (also linking to the texts in T001P, so we will require a table inner join)

    Hi Wade,
    In order to get the fields in OrgModeler scenarios you need to make sure that your hierarchy data element in the Source OrgChart contains all fields that you want. For this I recommend creating a NakisaRFC function for the additional data, creating a data element for it and then creating a linked data element to link together the new data element and the existing hierarchy data element. There is no data center in OrgModeler so you will need to do this manually.
    Best regards,
    Luke

  • How to display data elements in the tempalte header

    Hello friends
    i've this date_from and date_to parameters which are date parameters that user enters..
    based on these date parameters I want to display them in the header as
    day of date_from(for example if the date_from is 13-nov-2010.then I should display 13)and for date_to it should dispaly as 15 if for example the user enters
    16-nov-2010.(date-1's day)
    so it should break down to
    date_from-13-nov-2010, 13
    date_to- 16-nov-2010, 15
    I want these two values to be displayed in the header of the template how to do this
    pls help
    also let me know how to display data elements in the template header
    Edited by: erp on Dec 22, 2010 12:44 AM

    Hi Ananth..Thanks for ur timely reply
    Can I use it with <? substring(':date_from',1,2)?>
    where date_from is an input parameter which user enters at the run time of the report.
    I've to capture the date entered by the user and print it in the header..
    Pls reply

  • Required Data Elements

    Hi
    I am working on a Proxy to Web service scenario in PI 7.1 Version
    I have SAP Pre defined message on Source side, and External Parter Message on the target side,
    Some of the data elements on the Target side are required fields, I am passing the values to Required Data elements based on the certain condition,
    For example: If Category code which is on the source side is 2 then I am passing the Organization First name:Second name to Commerical name which is required Data element on the target side, If the Category code is other than 2 then I am moving the Blanks to Required field, and eventually I am receing the following error
    Please let me know what value I can assign to the required fields in the exceptional Case, (i.e if the category code is other than 2)
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Request Message Mapping
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">EXCEPTION_DURING_EXECUTE</SAP:Code>
      <SAP:P1>com/sap/xi/tf/_MM_ECC_Claimsinfo_to_ISO_</SAP:P1>
      <SAP:P2>com.sap.aii.mappingtool.tf7.IllegalInstanceExcepti</SAP:P2>
      <SAP:P3>on: Cannot create target element /ClaimInvestigati</SAP:P3>
      <SAP:P4>onAddRq/ClaimsParty/GeneralPartyInfo/NameInfo/Com~</SAP:P4>
      <SAP:AdditionalText />
      <SAP:Stack>Runtime exception occurred during application mapping com/sap/xi/tf/_MM_ECC_Claimsinfo_to_ISO_; com.sap.aii.mappingtool.tf7.IllegalInstanceException: Cannot create target element /ClaimInvestigationAddRq/ClaimsParty/GeneralPartyInfo/NameInfo/Com~</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Thanks a lot for the inputs
    PR

    I am using Blanks in the Constant Map (  ). Not any values, If I assign any constant value then the error will not occur
    Without assigning any Values how can I get rid of this error 
    Thanks
    PR

  • Changing size of standard data element.

    Hello here,
    I need some clarification.
    I have standard data element TIDNR - Technical identification number (Used in PM tables).
    It has Data Type - CHAR and Length  25.
    Is it possible to increase his length to 35?
    Maybe, it is possible to create new data element ZTIDNR and make reference to TIDNR?
    Or easily is to add some user field to equipment time segment?
    Thank You in advance.
    Edited by: andriy.hulyk on Nov 1, 2011 3:23 PM
    Edited by: andriy.hulyk on Nov 1, 2011 3:24 PM

    Hi andriy,
    always be careful.
    Check what the where-used-list says: It's not only the use in programs and database tables, all input/output fields are also affected and must be changed manually (which is a modification).
    You may create an own translation table: If i.e. you allow only 96 characters as defined ind [CDC display code|http://en.wikipedia.org/wiki/CDC_display_code] , this can be reduced to 8 characters in 6 bytes or 33 chars in the original data element. Some bit&byte operations required for the conversion. If you define your own code with, say only A-Z, 0-9 and space and some more you can reduce to 5 bits having 8 characters in 5 bytes and so forth.
    If you are on unicode with 2 bytes per char, possibilties are even more...
    Yes, it's kind of a challenge - but at least an idea.
    Regards,
    Clemens

  • SAPScript: includung a domain documentation in a data element documentation

    Dear ABAPers,
    I have a couple of (self-defined) DDIC data elements referring all to the same domain. How does the SAPScript INCLUDE-command need to look like in order to include the domains text in the data element text? (which object and which ID needs to be provided for domain documentation?).
    Thanks in advance
    Andreas

    Hi Pushpraj,
    for any kind of DDIC-object (table, structure, data element, domain...) you can maintain documentation, which is saved as SAPScript (there is a button "Documentation" or in the case of the domains you have to go via the menu "Goto -> documentation"). In that sort of SAPScript-based texts you can basiscally include any other SAPScript-Text with the INCLUDE-Command.
    Example: with SAPScript Command "INCLUDE BELEGART" you can reuse SAPs standard help-text for field BKPF-BLART. But usually the SAPScript INCLUDE command looks like this:
    INCLUDE <name_of_text> OBJECT <object> ID <ID>.
    Thanks
    Andreas
    Edited by: Andreas Fluegel on Mar 9, 2009 3:11 PM

  • Data element query

    hi guys,
       Is it possible to know that a particular Data Element is used in what all transactions?
    Thanks in Advance.

    Hi,
    Goto SEll tcode and enter DataElement name For example Enter MATNR in place of  (.) DataType and select this radio button and click on 3rd button on the Application ToolBar i.e Where used list .
    You will get a choice from where we need this list like TableFields,
    struct fields,
    View fields,
    Interfaces.
    Then select your list of choices and click on Exceute Button .From this list you can choose the needed one.
    Regds
    Parvathi
    Please reward points if helpful...

  • Data element which can store approx. 700 characters

    Hi everybody,
    I would like to know is there any Data element which can store approx. 700 characters. or i needed to create one.
    Thanks in advance.
    Mohammadi.

    Mhmd,
    I have a question from you can you pls do fevor me?
    Hi,
    For storing approx. 700 char, followinf data types can be used.
    1. ICPST
    2. ISTRING
    3. VVXVAR700"I replied this
    OR
    U can also find the predefined as follows -
    1.Go to SE11
    2. In domain write CHAR* and click F4.
    3. Find a domain of length more than 255
    4. Use where used list for it, to get all the dataelements using this domain."This reply given by Chandrashekhar
    Hope this will help u.
    Regards,
    Aleem."finally Aleem Help you :-)
    can you tell us which answer solved your problem?
    cause Aleem used a CONCATENATE keyword
    Amit.

Maybe you are looking for