System table for Additional Data - Basic data text (MM03)

Hi
How can I get the system table for stroring data in MM03 in "Additional Data" the "basic data text" ?
Thanks in advance.

Hi,
CALL FUNCTION 'READ_TEXT'
         EXPORTING
            CLIENT                  = SY-MANDT
            ID                      = 'Z610'
            LANGUAGE                = SY-LANGU
            NAME                    = V_TDNAME
            OBJECT                  = 'VBBK'
            ARCHIVE_HANDLE          = 0
         IMPORTING
            HEADER                  = I_TEXT_HEAD
         TABLES
            LINES                   = I_TEXT_LINE
         EXCEPTIONS
            ID                      = 1
            LANGUAGE                = 2
            NAME                    = 3
            NOT_FOUND               = 4
            OBJECT                  = 5
            REFERENCE_CHECK         = 6
            WRONG_ACCESS_TO_ARCHIVE = 7
            OTHERS                  = 8.
Regards,
Bharani

Similar Messages

  • Regarding configuration of "Parameters for determining the basic dates"

    Hi All,
    Can anyone give inputs in which scenario we need to use the configuration "Parameters for determining the basic dates".
    1)Do we have any restrictions for usage of above IMG configuration, 2) any pre-requisites to use the configuration of "Parameters for determining the basic dates" and 3)does configuration of this task is having any integration with any other modules, if yes what is the point of integration with other modules.
    Thanks in advance.

    Dear Aditya,
    Parameters for determining the basic dates in production order are used to calculate the Basic Start date & End date of Production order. It Determines if and how the basic dates or the dependent requirements dates are adjusted during lead time scheduling. You can customize this in OPU3 for planned order & OPU5 for Production Order.
    There are the following possibilities:
    1.The basic dates are adjusted and the dependent requirements are scheduled for the start dates of the relevant operations.
    2.The basic dates are not adjusted and the dependent requirements are scheduled for the start dates of the relevant operations.
    3.The basic dates are adjusted and the dependent requirements are scheduled for the order basic start date.
    4.The basic dates are not adjusted and the dependent requirements are scheduled for the order basic start date.
    1)Do we have any restrictions for usage of above IMG configuration
    For scheduling this has to be. If you want that start date should be calculated based on Inhouse production time & not on routing select opetion 2 or 4
    2) any pre-requisites to use the configuration of "Parameters for determining the basic dates"
    Not as such
    3)does configuration of this task is having any integration with any other modules
    Not directly but with MM to determine dependent requirement Proposal.
    Regards
    ABhijit Gautam.

  • Run queries against system tables for oracle BPEL processes

    I want to run queries against system tables for oracle BPEL processes. It is becoming very difficult for me to us EM as it is very slow,
    and not all the time, it is sufficient for our needs.
    We are doing load testing and we want find out info like how many requests came in and how many faulted and what time is taken by each request...
    So do any of you have the query that I can use and tables that I need to go against?

    Use the BPEL hydration database table "cube_instance".
    There should be plenty of example in the forum regarding this table.

  • Tables for sales & purchase order data relating to delivery

    hi all,
    i am writing a report to download all the delivery data after the delivery is created.i have to download the sales order data & purchase order data relating to this delivery also.
    i am using likp & lips table for delivery.which tables i
    should use to get the sales order data & PO data for the same delivery (likp-vbeln). i.e i need the sales & purchase order related tables which has link with delivery tables like likp & lips etc.
    plz advice me. it is very urgent.
    any idea is highly appreaciated.
    Regards
    pabitra

    in Addition to NM ,
    in case of STO there is no Sales Order , Process will be like this
    PO-->Delivery->PGI--->Billing  then u have to
    link
    *getting the History data of the PO
            select ebeln
                   ebelp
                   belnr
                   menge
                   from ekbe
                   into corresponding fields of table  w_ekbe
                   where ebeln eq w_lips-vgbel
                     and ebelp eq w_lips-vgpos
                     and bewtp eq 'L'.
    Regards
    Prabhu

  • Table for Stock on Specific Date in the Past.

    Hi ..,
    Please give me the Name of the Table to find the stock on Specific Date for a given material in the Past. like the T.code we use MB5B.
    regards.

    Hi
    MB5B uses a list of tables & logic to get the Stock for a particular posting date.
    if you want the stock run this report in your Z- report & export the Values to your Z-report & use them accordingly.
    Hope this helps
    Thanks & Regards
    Kishore

  • BAdI Implementation for Customer/Vendor Basic Data

    My requirement is, In vendor and Customer Invoices I need to include a Employee Data
    [z table] which is a item data and this employee data will be in a table control in the BAdI - BADI_FDCB_SUBBAS01. For doing this, I need a program specifications and Procedure. Please any help me and provide me this
    Thanks in Advance,
    Regards,
    KAMAL KP.

    Hi Nalini,
    Could you help in populating Z segment (ZTAX) which is added to the ZDEBMAS07 (copied from DEBMAS07).
    This segment is added at very last and I only can see sinle method FILL_ALE_SEGMENTS_OWN_DATA in BADI CUSTOMER_ADD_DATA_BI. But not getting logic how can I populate this locating it very last of the tree.
    Its easy for me to put it say after E1KNA1M or after E1KNA11. Please show something if you can.
    Code what I have written still is:
    TYPES: BEGIN OF ty_j_1imocust,
              j_1icstno TYPE j_1imocust-j_1icstno,
              j_1ilstno TYPE j_1imocust-j_1ilstno,
             END OF ty_j_1imocust.
      DATA: ls_j_1imocust1 TYPE ty_j_1imocust.
      DATA: lv_kunnr TYPE kna1-kunnr,
            ls_t_idoc_data TYPE edidd.
      DATA: lv_flag TYPE char1.
      DATA: lv_j1icstno TYPE j_1imocust-j_1icstno,
            lv_j1ilstno TYPE j_1imocust-j_1ilstno.
      DATA: ls_edidd TYPE edidd.
      DATA: ls_j_1imocust TYPE j_1imocust.
        CLEAR ls_t_idoc_data.
        READ TABLE t_idoc_data INTO ls_t_idoc_data WITH KEY segnam = 'E1KNA1M'.
        IF sy-subrc = 0.
          lv_kunnr = ls_t_idoc_data-sdata+3(10).
        ENDIF.
      CLEAR ls_t_idoc_data.
      READ TABLE t_idoc_data INTO ls_t_idoc_data WITH KEY segnam = 'ZTAX'.
      IF sy-subrc = 0.
        DELETE t_idoc_data INDEX sy-tabix.
      ENDIF.
      CLEAR ls_j_1imocust.
      SELECT SINGLE *
      FROM j_1imocust INTO ls_j_1imocust WHERE kunnr = lv_kunnr.
      IF sy-subrc = 0.
        MOVE ls_j_1imocust-j_1icstno TO ls_j_1imocust1-j_1icstno.
        MOVE ls_j_1imocust-j_1ilstno TO ls_j_1imocust1-j_1ilstno.
        ls_edidd-mandt = sy-mandt.
        ls_edidd-segnam = 'ZTAX'.
        ls_edidd-sdata  = ls_j_1imocust1.
        APPEND ls_edidd TO t_idoc_data.
      ENDIF.

  • Problem in filling up the setup tables for 2LIS_11_VAHDR (All SD Data sources)

    Hello All,
    I have been  trying to fillup the setup tables for SD datasources( Application-11 Ex:2LIS_11_VAHDR), but it was not allowing me to do that.
    Below are the steps i have followed,
    1.Deleted the setup tables using tcode-LBWG- Application-11
    2.Cleared the queues in RSA7 and found 0 queues for 2LIS_11_VAHDR D.S by triggereing the I.P till it get zeroes.
    3.Checked the data in RSA3-No data found.
    4.Filling the setup tables using OLI7BW t-code, got a popu(Data for 2LIS_11_VAHDR has to still transfered)
    Do i need clear all the queues for SD-Billings,Orders e.t.c  since i have 8 data sources to be cleared apart from 2LIS_11_VAHDR .
    Could you please suggest any other option to fillup the setup tables.
    Regards,
    Siva

    Did you run the infopackage twice pertaining to 2lis_11_vahdr.One for delta and another time for repeat delta.As delta queue will hold the records in repeat delta mode as well.
    Also in case of Direct Delta --Data is transferred to Base tables and delta queue (RSA7) at the same time.So extraction queue (LBWG )and update tables(SM13) does not come into the picture.
    Regards,
    AL

  • Table for user's default data

    HI all,
    Is there a table to find out the 'date format' of the users in BW/ BI?
    Regards,
    Adarsh

    Adarsha
    Go to TCODE SE16, enter table USR01, for the "User" field select "Multiple Selection" ( arrow sign).
    In the "single vals" tab put user name one bye one. Click on execute-----again execute.
    Now you can see one field called  "Data Format" and values can be 1, 2, 3, 4 , 5......A.B.
    Meaning of these digits are given below..
    1     DD.MM.YYYY
    2     MM/DD/YYYY
    3     MM-DD-YYYY
    4     YYYY.MM.DD
    5     YYYY/MM/DD
    6     YYYY-MM-DD
    You can get the whole list by selecting a particular user and then press F1 on the digit in the "date format"
    Hope this helps...

  • Table for qualitative and quantitative data in qa33

    Hi which table store the qualitative data and quantitative data of SAP QM , t-code qa33, in the t-code qe03 where display the records in qualtitative, I want the specification  of qualitative data so please tell me which table store the qualitative specification  data which is shown in qe033??

    Solved

  • System Tables for Logs

    Does anybody know what system tables store the logs displayed in ST22 and SM37?  Trying to programmatically read and display the logs.
    Thanks a bunch for your help.

    Hi,
    These are tables for Job scheduling
    Once jobs are defined, they are stored in the R/3 database, in the following principal tables in the background processing system:
    TBTCO: The job header table (job management data)
    TBTCP: The job step table (individual processing steps in jobs) -to describe the detailed level for each job.
    TBTCS: The control table for the time-driven job scheduler

  • Table for the Purchase Info Record:Text

    Dear All
    As the Purchase Info Record data is saved in the tables like EINA/EINE/EIPA
    In which table can i find the "Info Record:Text"
    Please help me guys

    Hi,
    It is important to realize that all Text records are not stored transparently in tables like other data. Text records are stored within clusters in SAP.
    You can access these texts in SAP when you create a include text node in your SmartForm. Once created you begin by selecting the Text Type: Include Text.
    The Text Key for an include text is made up of the following parts.
    You can use the ABAP function module u201CREAD_TEXTu201D to access Text records by passing the correct header information. You can see the text in the TDLINE.
    If you go to SE37 u2013 ABAP Function Modules and enter READ_TEXT you can press the Test/Execute button and enter real data into the import parameters and validate that your text can be accessed using this function module. You can then incorporate it into your ABAP program to access any SAP text that you need.
    This is essentially what is done automatically for you in SmartForms when using the Text Type: Include Text.
    Finding Header Information for Info Record Texts
    You can find the header information for text records using the following steps.
    1.Click on the Text tab for either header or item texts
    2.Double-click on any header or item text in the Purchase Order
    3.Go to any existing text
    4.Use menu path Edit u2013> Text u2013> Long Text
    5.Select menu option Goto u2013> Header
    The header information will be displayed and will contain the following field values
    Text Name: Info Record Number 53000128641 090
    Language: EN
    Text ID: BT (Purchase order text)
    Text Object: EINE (Texts, pur. info. pur.org.data).
    For more clarity please check the below link.
    http://www.sap-advisor.com/abap-coding/sap-text-administration-and-info-records-for-purchase-orders/
    I hope this will clear your issue. Thanking you.

  • Tables for additions/write-off/transfer of assets

    Hi,
    What are the tables for getting values reg asset additions/write-off/transfer during year/period.
    Regards
    Ankur

    hI
    Goto SE11 - give in database table- ANLA---click on display tab -
    click on contents Icon which is befire Technical settings
    Goto Menu bar-settingsFormat lst-choose Fields
    Thanks
    P J Anil kumar

  • Table for List of Active  Data Sources

    Hello All,
    I have a requirement like, to collect List of Active Data Sources from which extractions are happening for the past one year.
    Actually i have many Data sources which are in Active State but extractions are happening only on some of the Active Data Sources.
    I can collect List of Active Data Sources from Table RSOLTPSOURCE, but how to collect Active Data Sources from which extractions are happening for the past one year.
    Is there any such table which satisfies my requirement?
    Thanks in Advance!!

    Hi Srikanth,
    I had similar kind of requirement in my project and I used following approach,
    1) We already had a list of all the process chains which extract data from source system. So you also need to get such list if you don't have then goto RSPCLOGCHAIN and get the list of all the active chains.
    2)after that goto table RSPCCHAIN and for all of your chains or for a single chain you can put the TYPE as "loading" and you will get list of all the infopackage.
    3) Once you get the list of all the infopackages which are loading data from your source system.
    4) goto table RSLDPIO and put all your infopackage name and source system you will get the list of all the datasources in OLTPSOURCE field.
    Regards,
    Durgesh.

  • Tables for archived sales order data

    Hi,
    ABAP Gurus would like to know in which tables will I be able to see data of archived sales orders (it is not VBAK)
    Any help would be greatly appreciated.
    Thanks in advance.
    Mick

    Hi,
    If I am understanding correctly, your system has data archiving implemented.
    If that's the case then there is no table which will store archived sales order.
    For that you need to go to T.Code SARA.
    Choose object name SD_VBAK.
    Click on READ.
    This will show a screen giving a name of program and option to execute in background or foreground.
    This is how you can retrieve the info about archived Sales Order.
    Hope this helps
    Regards
    Nishant
    Message was edited by:
            Nishant Rustagi

  • Tables for vendor invoice no, date, amount, tds, deduction

    Hi experts, i m new to implementation. i m now doing report for vendor payment voucher.
    as per per the payment voucher no and date, in item data i want the tables stores the vendor invoice no, date, po no after MIGO & MIRO,  bill amount, tds, deduction (debit note, advance etc).
    regards
    thanks in advance.

    hi,
    LFA1
    LFAS
    LFAT.
        These tables is not useful for now for Report of Vendor payment voucher.
    In header data, i want pament voucher no, date, vendor no, name(i got in table-field REGUP-VBLNR, regup-bldat, regup-lifnr &  lfa1-name1)  .
    now i want in item data vendor invoice no, date, GR no, date, invoice amount, tds amt, deduction amt (separately like advance amt, debit note etc).
    till now i found invoice no,  inv amt (table-field BSIK-BELNR, BSIK-DMBTR).
    Now i need GR no,  GR date, tds amt, deduction details amt.
    Plz send with table-field names, and how to relate with above.
    regards,
    debendra

Maybe you are looking for

  • Where to see the log files of runtime

    For my installation, the locations mentioned in the documentation here http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/admin_guide/index.html?t=modules/logging/c_Head_Logging.html does not contain any log files. Where can i find more informat

  • Captioning Plugin - loading a local DFXP file?

    Hi, I am creating a CD-Rom presentation, the requirements of which are Video and multi-language captioning. I thought this would be a good opportunity to gain experience with OSMF. The first issue I have found is I can not get captioning to work from

  • Itune.exe - itune.dll error when open with windows 7

    Hey tehre friends. I´m brand new ipod 5gs owner, but i having problemn with Itunes. Every time o try to execute him, i get this error: Faulting application name: iTunes.exe, version: 9.0.1.8, time stamp: 0x4ab809c1 Faulting module name: iTunes.dll, v

  • Quicktime Pro Hangs on Export

    I recently purchased the key to unlock Quicktime Pro so that I could export movies for my iPod Touch. However, whenever I try to export a file, regardless of setting, it hangs up and I must force quit. A small window appears, but is blank except for

  • Why does my PhotoShop Elements Program always startup with two windows?

    A few months ago I evidently modified something in PSE such that now, everytime I start the PSE program I get two identical programs going. One program loads, and then immediately another idnetical program loads. Any ideas as to what I did wrong??? B