Data element-reward point guranteed

Hi all,
         i am in a peculiar problem.I have to go through a hell lots (50+) of ztable and find the domian used and corresponding data element.
going thorugh SE11 and finding the things are going to take lots of time.
i have a report program , sending it to you, it displays details of info of listed table.
just run the report.
but the thing is , it rerieves the data type, instead of data element and domain.
somehow if i get those two things(domian & data element instead of data type of each field) , my work will be easier.
i will simply run this report and download the content of the priniting internal table int an excel ****.
can you just do some modification in this report to print DATA ELEMENT AND DOMAINS OF RESPECTIVE.
here it is ,
REPORT ZANID_TEST message-id zz NO STANDARD PAGE HEADING
       LINE-SIZE 178 LINE-COUNT 65.
TABLES: DD03L, DD04T, DD02T, DD02L.
SELECT-OPTIONS: TABNAME FOR DD02L-TABNAME.
*SELTEXT E  'SAP Table Name(s)'
DATA: BEGIN OF TAB OCCURS 500,
     TABNAME LIKE DD03L-TABNAME,
     POSITION LIKE DD03L-POSITION,
     FIELDNAME LIKE DD03L-FIELDNAME,
     STXT LIKE DD04T-DDTEXT,
     KEYFLAG LIKE DD03L-KEYFLAG,
     DATATYPE LIKE DD03L-DATATYPE,
     LENG     LIKE DD03L-LENG,
     DECIMALS LIKE DD03L-DECIMALS,
     CHECKTABLE LIKE DD03L-CHECKTABLE,
     REFTABLE LIKE DD03L-REFTABLE,
     REFFIELD LIKE DD03L-REFFIELD,
     END OF TAB.
DATA: LINE-COUNT TYPE I.
SELECT * FROM DD03L WHERE TABNAME IN TABNAME.
  MOVE-CORRESPONDING DD03L TO TAB.
  IF TAB-FIELDNAME CS '.inc'.
  ELSE.
    SELECT * FROM DD04T WHERE ROLLNAME   = DD03L-ROLLNAME
                          AND DDLANGUAGE = SYST-LANGU
                          AND AS4LOCAL   = 'A'.
    ENDSELECT.
    IF SYST-SUBRC = 0.
      TAB-STXT = DD04T-DDTEXT.
    ENDIF.
    APPEND TAB.
  ENDIF.
ENDSELECT.
DESCRIBE TABLE TAB LINES LINE-COUNT.
IF LINE-COUNT EQ 0.
  MESSAGE E009 WITH 'Table Not Found'.
ENDIF.
SORT TAB BY TABNAME POSITION.
LOOP AT TAB.
  ON CHANGE OF TAB-TABNAME.
    NEW-PAGE.                          "Page Break for New Table
  ENDON.
  WRITE: /  TAB-FIELDNAME, 20 TAB-STXT,
           81 TAB-KEYFLAG,  85 TAB-DATATYPE,
           90 TAB-LENG, 100 TAB-DECIMALS,
           110 TAB-CHECKTABLE,
           121 TAB-REFTABLE,
           132 TAB-REFFIELD.
ENDLOOP.
TOP-OF-PAGE.
  FORMAT INTENSIFIED OFF.
  WRITE: /  SY-REPID,
           'Run by', SY-UNAME(8), 'on', SY-DATUM, SY-UZEIT,
           'System', SY-SYSID(4), 'Client', SY-MANDT.
  WRITE: / SY-TITLE CENTERED.
  FORMAT INTENSIFIED ON.
*include zconinc3.
FORMAT INTENSIFIED OFF.
CLEAR DD02T.
SELECT * FROM DD02T WHERE TABNAME EQ TAB-TABNAME
                      AND DDLANGUAGE EQ SYST-LANGU
                      AND AS4LOCAL   EQ 'A'.
ENDSELECT.
CLEAR DD02L.
SELECT * FROM DD02L WHERE TABNAME EQ TAB-TABNAME
                      AND AS4LOCAL   EQ 'A'.
ENDSELECT.
WRITE: / 'Table Name   ', TAB-TABNAME,
         'Type=', DD02L-TABCLASS,
          DD02T-DDTEXT.
WRITE: /  'Field',       20 'Description',
         81 'Key',        75 'Type',
         90 'Length', 100 'Decimals',
         110 'Check Table',
         121 'REF Table',
         132 'REF Field'.
FORMAT INTENSIFIED ON.

Here you go:
REPORT ZANID_TEST message-id zz NO STANDARD PAGE HEADING
LINE-SIZE 255 LINE-COUNT 65.
TABLES: DD03L, DD04T, DD02T, DD02L.
SELECT-OPTIONS: TABNAME FOR DD02L-TABNAME.
*SELTEXT E 'SAP Table Name(s)'
DATA: BEGIN OF TAB OCCURS 500,
  TABNAME LIKE DD03L-TABNAME,
  POSITION LIKE DD03L-POSITION,
  FIELDNAME LIKE DD03L-FIELDNAME,
  STXT LIKE DD04T-DDTEXT,
  KEYFLAG LIKE DD03L-KEYFLAG,
  DATATYPE LIKE DD03L-DATATYPE,
  LENG LIKE DD03L-LENG,
  DECIMALS LIKE DD03L-DECIMALS,
  CHECKTABLE LIKE DD03L-CHECKTABLE,
  REFTABLE LIKE DD03L-REFTABLE,
  REFFIELD LIKE DD03L-REFFIELD,
  rollname like dd03l-rollname,
  domname like dd04l-domname,
END OF TAB.
DATA: LINE-COUNT TYPE I.
SELECT * FROM DD03L WHERE TABNAME IN TABNAME.
  MOVE-CORRESPONDING DD03L TO TAB.
  select single domname from dd04l into tab-domname
    where rollname = dd03l-rollname.
  IF TAB-FIELDNAME CS '.inc'.
  ELSE.
    SELECT * FROM DD04T WHERE ROLLNAME = DD03L-ROLLNAME
    AND DDLANGUAGE = SYST-LANGU
    AND AS4LOCAL = 'A'.
    ENDSELECT.
    IF SYST-SUBRC = 0.
      TAB-STXT = DD04T-DDTEXT.
    ENDIF.
    APPEND TAB.
  ENDIF.
ENDSELECT.
DESCRIBE TABLE TAB LINES LINE-COUNT.
IF LINE-COUNT EQ 0.
  MESSAGE E009 WITH 'Table Not Found'.
ENDIF.
SORT TAB BY TABNAME POSITION.
LOOP AT TAB.
  ON CHANGE OF TAB-TABNAME.
    NEW-PAGE. "Page Break for New Table
  ENDON.
  WRITE: / TAB-FIELDNAME, 20 TAB-STXT,
  81 TAB-KEYFLAG, 85 TAB-DATATYPE,
  90 TAB-LENG, 100 TAB-DECIMALS,
  110 TAB-CHECKTABLE,
  tab-rollname,
  tab-domname.
ENDLOOP.
TOP-OF-PAGE.
  FORMAT INTENSIFIED OFF.
  WRITE: / SY-REPID,
  'Run by', SY-UNAME(8), 'on', SY-DATUM, SY-UZEIT,
  'System', SY-SYSID(4), 'Client', SY-MANDT.
  WRITE: / SY-TITLE CENTERED.
  FORMAT INTENSIFIED ON.
*include zconinc3.
  FORMAT INTENSIFIED OFF.
  CLEAR DD02T.
  SELECT * FROM DD02T WHERE TABNAME EQ TAB-TABNAME
  AND DDLANGUAGE EQ SYST-LANGU
  AND AS4LOCAL EQ 'A'.
  ENDSELECT.
  CLEAR DD02L.
  SELECT * FROM DD02L WHERE TABNAME EQ TAB-TABNAME
  AND AS4LOCAL EQ 'A'.
  ENDSELECT.
  WRITE: / 'Table Name ', TAB-TABNAME,
  'Type=', DD02L-TABCLASS,
  DD02T-DDTEXT.
  WRITE: / 'Field', 20 'Description',
  81 'Key', 75 'Type',
  90 'Length', 100 'Decimals',
  110 'Check Table',
  141 'Data Element',
  172 'Domain'.
  FORMAT INTENSIFIED ON.
Message was edited by: Erik Verbeeck

Similar Messages

  • What is domain and dataelement.....diff b/w domain and data element

    dear all
    what is domain?
    what is data element?
    In one domain how many data elements are possible to used?
    with out data element how can u create a table? explain briefly.

    To clarify it little further the Data element and Domains are used in combination where similiar type of data fields are to be used with some more additional characteristics to each Data element.
    For example consider creating a table which contains Employee details. The Columns Name1 and Name2 are to be of type char and length 40. There are 2 ways to do this,
    1. You can assign the fields Name1 and Name2 directly to CHAR40(as the data element) in SE11. But this will make both the fields to have same characteristics with no difference among them.
    2. The other way is to assign the columns Name1 and Name2 to seperate Data elements say DE_NAME1 and DE_NAME2. This method has tha advantage of adding further charectristics and labels to the data element. Hence in this case you can add a label "Name1" for the data element DE_NAME1 and "Name2" for data element DE_NAME2. And both these data element will point to the same domain CHAR40, hence length and type is same.
    Hope this helps.
    Thanks,
    Prasath N

  • Creation of Data Element

    Hi,
    I am working on special project of Automation of all utility billing and housing system for a big company in SAP.
    For that I have to create 26 tables and obviously I am creating a lot of dataelements.
    Now the problem is my quality dept says that I should use the inbuilt data elements and refrain from creating new ones. In this case the field label is not matching my field. He says that who is going to see the table and says that you can change the field description in reports as you like. Is it justified.
    I can see that there are more than 500 standard datalements created for  a char field of length 4 by SAP. but none of the description matches my field description. if the case is of reducing the load then does sap recommend not to create z data elements. 
    Can we create dataelement just for the sake of field label and what is the other purpose of a dataelement if not
    How much load will be generated by creating a dataelement.
    kindly give some insight into the need to create dataelements.

    Hi!
    If your Quality people are that much particular about creation of data elements, there is one way to solve this problem. Use standard data elements.
    I know here you will get a doubt that after creating a maintenance generator you will not be able to see the description whatever you want in SM30. For this follow the below procedure.
    While creating maintenance generator you will give the function group name right, go to SE80 -> and give the function group name there -> double click on the screen number of maintenance -> click on element list tab -> click on 'Texts/I/O templates' tab -> now against the field names under 'Text or I/O Field' column remove the value '+____________' and type the field description there -> repeat the procedure for all the fields -> now save, check and activate the screen as well as function group.
    Now if you go to SM30, you can see the field description for every field.
    This is somewhat time consuming, but it may help you.
    Reward points, if useful.
    Regards,
    Venkat.

  • Data element description not changing in ALV output

    Hi Friends
      I changed the description of the data element from xx to yy,but this is not reflecting in the alv output,
    It is still showing xx,After activating everything and running the report I get the same problem,
    Can any one help?

    Hi,
    Write your code in following manner.
    ATA:ist_fieldcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    DATA: wa_fieldcat LIKE LINE OF ist_fieldcat.
    DATA : l_pos TYPE i VALUE 1.
      ist_fieldcat-fieldname = 'POSID'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 24.
      ist_fieldcat-col_pos   = l_pos.
    *  ist_fieldcat-ddictxt = 'L'.
      ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Appropriation Request Number'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'TXT04'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 4.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
    *  ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Status'.
      ist_fieldcat-EMPHASIZE = 'C400'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'UDATE'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 8.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
      ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Status Date'.
    *  IST_FIELDCAT-EMPHASIZE = 'C600'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'CRTD'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 4.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
    *  ist_fieldcat-key = 'X'.
        IST_FIELDCAT-EMPHASIZE = 'C700'.
      ist_fieldcat-seltext_l = 'Status CRTD'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
    <i>Rewards point if helpful</i>
    <b>Debjani</b>

  • "Further characteristics" in Data Element

    Hi
    I'm new to ABAP...
    what is the functionality and use of "Further characteristics" in Data Element creation?
    What is the functionality of "Pre-defined Type" and "Reference Type" in Data Type tab?
    Please assist.

    Hi,
    check the tables CDHDR AND CDPOS...Moreover SCDO transaction is used for change pointers concept for idoc..in this transaction we can specify the ztable directly  and then in BD52 we can give the change object name ,ztable and the fields ..when we give these entries,will be stored in BDCP table.
    Reward points  if u find useful..
    Regards,
    Nagaraj

  • What is conversion routine which is found in data element

    Hi all,
    I was just trying to creating a data element assigned to a particular domain in se11. While i am creating i can see a conversion routine
    Can anyone tell me what is the use of that conversion routine with an example.
    thanxs in advance
    hari

    Hi,
    Depending on the data type of the field, there is a conversion when the contents of a screen field are converted from display format to SAP-internal format and vice versa. If this standard conversion is not suitable, it can be overridden by defining a conversion routine in the underlying domain.
    Conversion routines are identified by a five-place name and are 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 converts from display format to internal format, and the OUTPUT module converts from internal format to display format.
    When is a Conversion Routine Executed?
    If a screen field refers to a domain with a conversion routine, this conversion routine is executed automatically when entries are saved in this screen field or when values are displayed in this screen field. The conversion routine of the domain is also triggered when the field contents are output with the WRITE statement.
    Table SPFLI in the  flight model contains information about the flights offered by the carriers. The time for each flight is recorded in field FLTIME. Enter and display the time of the flight in input templates in the form HHH:MM (hours:minutes). Store the flight time entered in the database as an integer number (number of minutes of the flight). An entry 3:27 is therefore stored in the database as 207 (3 hours, 27 minutes = 207 minutes).
    Field FLTIME refers to domain S_DURA, to which conversion routine SDURA is assigned. The value is thus converted by the two function modules <b>CONVERSION_EXIT_SDURA_INPUT</b> and <b>CONVERSION_EXIT_SDURA_OUTPUT</b>.
    A conversion routine can also be triggered by specifying its five-place name in the attributes of a field in the Screen Painter or with the addition <b>USING EDIT MASK <Name of conversion routine></b> in the WRITE command in the program. With the USING NO EDIT MASK addition in the WRITE statement, you can skip a conversion routine defined for a domain when outputting.
    Parameters
    The two function modules of a conversion routine must have precisely two parameters with the names INPUT and OUTPUT for the value to be converted and the converted value.
    The INPUT parameter in the INPUT conversion and the OUTPUT parameter in the OUTPUT conversion should not have any reference fields because the value passed in the call could have a different length than that expected.
    Programming Conversion Routines
    ABAP statements that result in an interruption of processing (such as CALL SCREEN, CALL DIALOG, CALL TRANSACTION, SUBMIT, COMMIT WORK, ROLLBACK WORK, MESSAGE I, MESSAGE W) are not allowed in conversion routines.
    Only A messages are meaningful in output conversion, but A, E and S messages can be triggered in input conversion (although S messages are not very meaningful here). E messages result in an error dialog. Exceptions are not intercepted in the call.
    The output conversion is also triggered with WRITE and WRITE TO. The conversion routine may therefore occur very frequently with lists. The output conversion should therefore be programmed as efficiently as possible.
    No external performs should be used in conversion routines. Programs that are called externally use the table work areas of the first calling main program. In conversion routines this can result in errors that cannot be easily analyzed since they are sometimes called at unpredictable times in the program flow.
    <b>Pls refer link which contains code as an example to conversion routine used in abap</b>.
    <a href="http://www.bwexpertonline.com/downloads/source_code.doc">http://www.bwexpertonline.com/downloads/source_code.doc</a>
    Pls reward points.
    Regards,
    Ameet

  • 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

  • URL in data element documentation (F1 help)

    Hi, is it possible to insert a URL within a data element documentation ? I know it is possible to link the F1 help functionality to go to a URL instead of the data element documentation, but what was asked is to display the regular documentation for the data element, but include a URL to a web site for further information. Any idea how to do this ?

    Hi,
    Check This Link
    http://help.sap.com/saphelp_erp2005/helpdata/en/49/e8884118aa1709e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/b6/ab3a9003ac11d4a73f0000e83dd863/frameset.htm
    <b>Also to add link in Documentation</b>
    Do this
    1) Open Program
    2) Click on documention ( open documentation Window for any program )
    3) Follow this Menu Option.
    Insert--->Link
    A dialog Box will Be opened
    In Documentation Class
    Select <b>WeB Application</b> From F4 Help Option
    Save and activate.
    <b>Rewards Points & Mark Helpful Answers if it helps.</b>
    Message was edited by: Manoj Gupta

  • 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 could not be created- error mesaage

    hi all,
    we are getting some wierd error when transporting to quality system. The transport for satrasfer structure datasource etc fails. The transfer structure does not get activated and we get following error message:
    DD_DTEL_PUT: Act. parameter ROLLNAME=<space> invalid
    DD_DTEL_PUT: Act. parameter ROLLNAME=<space> invalid
    Data element for InfoObject BELNR 0DOC_NUM could not be created
    Data element for InfoObject BELNR 0DOC_NUM could not be created
    if you check the infoobjects data element it is active in that system. And this is not getting solved even if you recollect the trasfer structure and transport it. We have to ask for reimport. But we dont understand why is this happening. We have got this error 4-5 times and only in this system.
    Please suggest how to resolve this. if any setting or basis related configuration is missing or what could be issue.
    Any help will be rewarded by points.
    Thanks and Regards

    Hi ,
    The problem is probably with the number range for transferstructure data elements.
    Number range objects are maintained with transaction SNUM. BI_TSDTEL is
    used for naming of transferstructure dataelements. The status must    
    always be bigger than the highest transferstructure dataelement number.
    Please refer to the notes 1009638 and 674818 for further information.
    Best Regards,
    Des.

  • How to control required and optional data elements

    I am developing a web service using a stateless EJB. By default, when I use servicegen, the WSDL contains nillable="true" for all elements. How can I modify my EJB code so I can specify which elements are required vs optional?
    Thanks.

    Hi,
    Use Function Module READ_TEXT to retrive the long text.
    Pass below values for parameters
    text name - <data element name>
    text id - 'TX'.
    text object - 'DOKU'.
    <b>Reward points for helpful answers</b>
    Satish
    Message was edited by:
            Satish Panakala

  • What does Field Label tab does in Data element properties

    Hi,
    Please explain What does Field Label tab does in Data element properties. It has following interface:
                     Length              Field Label
    Short       
    Medium
    Long
    Heading
    Thanks!
    ~Sid
    Max Points for precise answers

    Hi
    <b>Short Field Label</b>
    Definition
    One of the following:
    - Short field label
    - Medium field label
    - Long field label
    Can be assigned as prefixed text to a screen field referring to the ABAP Dictonary. The text is displayed on the screen in the logon language of the user (if the text was translated into this language).
    A heading can be defined to output the field values in lists. This heading is automatically included in the list header row, in the logon language.
    <b>Medium Field Label</b>
    Definition
    One of the following:
    - Short field label
    - Medium field label
    - Long field label
    Can be assigned as prefixed text to a screen field referring to the ABAP Dictonary. The text is displayed on the screen in the logon language of the user (if the text was translated into this language).
    A heading can be defined to output the field values in lists. This heading is automatically included in the list header row, in the logon language.
    <b>Long Field Label</b>
    Definition
    One of the following:
    - Short field label
    - Medium field label
    - Long field label
    Can be assigned as prefixed text to a screen field referring to the ABAP Dictonary. The text is displayed on the screen in the logon language of the user (if the text was translated into this language).
    A heading can be defined to output the field values in lists. This heading is automatically included in the list header row, in the logon language.
    <b>Heading</b>
    Definition
    One of the following:
    - Short field label
    - Medium field label
    - Long field label
    Can be assigned as prefixed text to a screen field referring to the ABAP Dictonary. The text is displayed on the screen in the logon language of the user (if the text was translated into this language).
    A heading can be defined to output the field values in lists. This heading is automatically included in the list header row, in the logon language.
    <b>Reward If Usefull</b>

  • TCODE USED IN DATA ELEMENT

    Hi All,
    I have one data element and i want to find out in which tcodes these data element is used?
    Pls dont suggest me to check where used list, bcoz there is no option for checking tcodes in where used list .
    Thnks,
    Sunita

    HI
    U CAN CHECK IT IN SE11. there is a button in tollbar with arrows called' WHERE USED LIST'.
    Type in ur data element in the field on se11.
    select the button and select checkbox Transaction for that
    regards
    ravish
    <b>plz dont forget to reward points if useful</b>

  • Data Element Dcoumentation -urgent

    HI,
               has any one modified the data element documentaion for any Data Elwement in CMOD.If so for what Data Elemet you have done and what was the necessaity.Plz do help me its too urgent i wud reward points for all the answers.

    Hi ,
    To have the control over datapacket size (no of records in a datapackage) you can have settings in infopackage.
    In info package > Scheduler --> DataS. Default Data Transfer.This would be a local settings whenever you run the load through that IP.The changes that you make here takes priority over the default settings (SBIW) and applicable only for the loads from this info package.Default is 20000kB. You should specify it for the correct update method, ie if its a delta IP, you shud mention the size against delta IP. you can define number of datapackets per idoc as 10.
    You can also try RSCUSTV* where * is an integer to change data load settings.
    Change Datapackage size for extraction, use Transaction RSCUSTV6.
    Change Datapackage size when upload from an R/3 system, set this value in R/3 Customizing (SBIW -> General settings -> Control parameters for data transfer).
    IN R/3, T-Code SBIW --> Genaral settings --> Maintain Control Parameters for Data Transfer (source system specific)
    Try
    http://help.sap.com/saphelp_nw04/helpdata/en/51/85d6cf842825469a51b9a666442339/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1955ba90-0201-0010-d3aa-8b2a4ef6bbb2
    This is related to loading performance, take a look at this doc 'bw load performance and analysis'
    data packet
    SAP Note 138794 Extraction parameter on BW/OLTP
    SAP Note 130253 General tips on uploading transaction data to BW
    SAP Note 365762 Loading data Pre-analysis of (performance)problems
    Note 409641 - Examples of packet size dependency on ROIDOCPRMS
    Note 417307 - Extractor package size: Collective note for applications
    I hope this will help you,
    Assign points if this helps.
    Thanks...
    Vasu...

  • Field exits - is the exit called wherever the data element is used?

    Since field exits are at the data element level - does this mean that the field exit will be executed for any screen that uses it?  i only have one screen that I want this exit to be called - do I control that when creating the field exit?  Or do you not have any control over that?
    Thanks!
    Scott

    No. Field exit will not be called where ever the data element is used. When you create the field exit, you create it for a perticular field in a screen only. So effectively the exit will be triggered only for that field.
    - Guru
    Reward points for helpful answers

Maybe you are looking for