Fields TABW & LFZTA in Extractor 2LIS_02_ITM

Hi Gurus,
From the SAP Help, I know how the fields TABW & LFZTA in Extractor 2LIS_02_ITM are calculated.
But I could not find the related code in the extractor MCEX_BW_LO_API.
Can you help me in finding relevant code.
Thanks
Nageswara

Hi,
Thanks for the reply.
The url for the extractor is http://help.sap.com/saphelp_nw04/helpdata/en/58/f6383fdb800804e10000000a114084/frameset.htm.
TABW - http://help.sap.com/saphelp_nw04/helpdata/en/a3/7cdb38209b2474e10000000a11402f/content.htm
LFZTA - http://help.sap.com/saphelp_nw04/helpdata/en/ac/622f38e4c1f605e10000009b38f8cf/content.htm
Regards
Nageswara

Similar Messages

  • Table for checking the appended fields in the standard extractor

    Hello,
    Please let me know the table name for checking the appended fields in the standard extractor.
    Thanks in advance

    Hello,
    From Rsa6 , goto your extractor from there you may get the name of your strucutre
    Go to DD03L and enter this name
    And you get to see all the fields there..
    waiting for your feedback.
    Regards
    Nitin Bhatia

  • Using Fields in FI-GL Extractor in FI-AP Extractor

    Hi Guys,
    I have a new requirement for FI-AP and I was missing three fields(User Name, Session Name and Document Header Text)
    in the extractor.  I already have these fields in the FI-GL extractor and all the way to to Cube.  Would this pose
    any problem trying to use the same fields since it's already been captured in FI-GL extractor or do not attempt?
    Will this bring along unwanted fields to FI-AP or I can just use Append Structure to bring these fields to FI-AP
    extractor?
    Thanks,
    Timi

    OK TJ,
    So for the BSIK fields you can try just to add the fields using append struc (use same fieldnames as SAP) and check if they get populated automatically (tcode RSA3). If not try below approach.
    For the BKPF fields I'm afraid you need to program an exit (or BAdi) to populate them (after adding them to the struc). You can use BUKRS, BELNR, and GJAHR (from BSIK -> already being extracted) to access table BKPF and fetch the desired fields.
    now I see your point (I think): you want to use the fields - already in BW via FI-GL load - and do a lookup in BW for these fields out of AP flow? - Yes this should be possible as all is FI-related ***
    Grtx
    Marco
    Edited by: Marco Verbaan on Feb 22, 2010 6:32 PM

  • Some fields are missing from extractor to datsource in standard content

    Hi
    I have a standard datsource in CRM. when I see the extractor I can som eadditional fields which are not there in Datasource..
    I hav enot enhance any fields. There some include structure in extract structure...
    thanks for your help.
    Sudha..

    Extract structure can have more fields than what you see in your datasource...
    The additional fields in the extract structure can be BW hidden or not relevant for BW..
    You can check this in table ROOSFIELD for your relevant datasource

  • Adding Custom Fields to Communication Structure of 2LIS_02_ITM (MCEKPO)

    Hi
    I have a question about addiing additional fields (KO_PPRCTR) into MCEKPO and enabling it as part of 'true' DELTA.
    The question is then:
    Does the fact that we have this Custom field from EKPO added to MCEKPO would cause DELTA to be triggered automatically each time this field would change? (irrespective of whether a Standard field in MCEKPO has also changed or not).
    Thanks
    BC

    Hi Blues,
    According to the sap online document about data source 2LIS_02_ITM http://help.sap.com/saphelp_sm32/helpdata/en/58/f6383fdb800804e10000000a114084/frameset.htm
    "if you change a purchasing document, the system only takes into consideration the data that is relevant for extraction. The system therefore only executes a delta update for this DataSource if changes are made to purchasing document header data or item data that has a corresponding field in the DataSource."
    which means only changes to standard fields of the datasource will trigger a delta update.
    But who knows, Stefan's answer may be right. Practice is the sole criterion for testing truth, so why not have a test?
    Additionally, you could also check the famous blog article about this topic by Roberto Negro:
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    Hope it helps.
    Regards,
    Qing

  • Questions on adding z fields to the standard extractor, Please reply !!!

    We have 0material, 0customer in our daily process chains where we do full loads daily, now we need to make that delta loads so that we can reduce the time of the execution of the pc. I know that these extractors can be delta enables but the problem is we have a few z fields for these extractors, like 20 fields for 0material and 3 fields for 0customer and currently we are doing full loads for these 2 infobjects. I want to know if these can be delta enabled so that zfields will be delta enabled. I mean in short if we make these delta enabled, will the z fields will come along with the standard fields since we are adding the z fields to the standard tables. Do we need to handle the code separately or is their any complicated code written along with it in the CMOD or just adding the zfields will bring the delta to BI. Please provide some links or any information on this regard. Please let me know if you need any other information. Thanks in advance.

    Hi Daniel,
    Deltas would be extracted based on some specific fields such as timestamp, dates or some kind of numeric pointer.
    In your case, lets say if you have some date field for eg. Changed on in your table on which delta would be picked up then that delta should also fetch up changes related with address.
    If this address field is directly present into your main talbe then changes would be directly picked up without any need of logic because table containing changed on date <your delta relevant field> also contains this address field.
    But if this address is coming up from some other table then some sort of logic should be written to populate the changes in address field with respect to that "changed on" date field.
    Rgrds,
    Nilima

  • End Routine to populate custom AFS field for Billing Item extractor

    I have the following scenario for Billing 2LIS_13_VDITM datasource
    Doc_No   Item  Material    Item_Categ   AFS_field
    2000        11     XYZ          123
    2000        12     XYZ          123                  US1
    3000        11     PQR          456                 
    3000        12     PQR          456                  CA1
    I need to populate the AFS_field in the first row also for all Doc Nos for certain Item categories (eg 123 & 456). I need to do this on the first transformation from PSA to DSO. I was planning to write a SELECT statement in the Start Routine with the PSA table as the reference as seen below and then write an End Routine calling this reference table. But the PSA table name is different in Dev, QA and Prod so I cannot use this.
    TYPES: BEGIN OF S_AFS,
    VBELN TYPE C LENGTH 10,
    PSTYV TYPE C LENGTH 4,
    MATNR TYPE C LENGTH 18,
    J_4KRCAT TYPE C LENGTH 16,
    J_4KSCAT TYPE C LENGTH 16,
    END OF S_AFS.
    DATA: LT_AFS TYPE STANDARD TABLE OF S_AFS,
          LS_AFS TYPE S_AFS.
    DATA: LT_DATA TYPE tyt_SC_1.
    LT_DATA[] = SOURCE_PACKAGE[].
    SORT LT_DATA DESCENDING BY VBELN MATNR J_4KRCAT.
    DELETE ADJACENT DUPLICATES FROM LT_DATA COMPARING VBELN MATNR.
    SELECT VBELN MATNR J_4KRCAT J_4KSCAT
    INTO CORRESPONDING FIELDS OF TABLE LT_AFS
    FROM /BIC/B0000777001
    FOR ALL ENTRIES IN LT_DATA WHERE VBELN = LT_DATA-VBELN AND MATNR =
    LT_DATA-MATNR.
    SORT LT_AFS BY VBELN MATNR.
    I am not an expert in writing ABAP code. Any suggestions are greatly appreciated and points will be assigned. Thank you.

    Hi
    why do want to select the data from PSA table ?Already your trying to load data from PSA to DSO.
    you want to populate the AFS field value in DSO right?
    1. First you have to add AFS field in ur DSO
    2. Write the Start routine based on ur scenario(select the data based on ur scenario and put into internal table).
    3. wirte AFS field leval  transfer routine(Read the corresponding record based on docu num,item num) pass into RESULT.
    Regards,
    GR

  • No Data Initialized for Purchasing Extractors (2LIS_02_ITM)

    Hello Experts,
    We are in R/3 4.6 C PI 2005, I am trying to fill the setup tables  for Purchasing Extractors. I tried with different seletions. After executing the T-code OLI3BW, in RSA3 always it is showing 0 Records. Please advice.
    Following is the Error message some times I will Get, If I have a selection( Ex PO NUmbers Rage, or Date Range) I wont Get any error message same time it wont display any other message.
    =====
    ABAP runtime errors    TABLE_INVALID_INDEX                                                           
           Occurred on     06/08/2009 at 14:00:13                                                                               
    >> Short dump has not been completely stored. It is too big.                                                                               
    1. "INDEX idx" for specifying the line number in the table                                           
    "\PROG=SAPLEINS\DATA=XMCEKET[]"                                                                     
       where you want to change, insert or delete.                                                       
    2. "FROM idx" for specifying the start index when deleting a line                                    
       area from or inserting a line area into the table                                                 
    "\PROG=SAPLEINS\DATA=XMCEKET[]".                                                                    
    3. "TO idx" for specifying the end index when deleting a line                                        
       area from or inserting a line area into the table                                                 
    "\PROG=SAPLEINS\DATA=XMCEKET[]".                                                                               
    How to correct the error                                                                               
    If the error occurred in one of your own programs or in an SAP program                               
    that you modified, try to correct it yourself.                                                                               
    If the error occurred in a non-modified SAP program, you may be                                      
    able to find a solution in the SAP note system.                                                      
    If you have access to the note system yourself, use the following                                    
    search criteria:                                                                               
    "TABLE_INVALID_INDEX"                                                                               
    "SAPLEINS " or "LEINSF2U "                                                                          
    "LIS_VERTEILUNG_LF"                                                                               
    ============
    Thanks.
    Edited by: BPSNEW on Jun 18, 2009 10:38 PM

    Hi Krishna:
    Please check if SAP Note 1454260 - "BW/LIS: RMCENEUA dump with TABLE_INVALID_INDEX" is applicable to your system.
    Regards,
    Francisco Milán.

  • No hide fields or select fields in SAP Query Extractor?

    HI Gurus,
    I want to generate a data source, extraction data from SAP Query.
    Now I want to hide some fields or to mark some fields as relevant for selection.
    But after saving my settings are unavaiable...?
    Does somebody have an idea? Is this standard when extracting from Query or is this maybe an OSS...?
    Thanks

    Hello,
    Just logoff and Login again, then check it.
    Also see
    SAP Note 1014073 DFG: Changes to the DataSource are displayed incorrectly
    SAP Note 1073714 DataSource in RSA6: Unable to display/change customer fields
    SAP Note 925398 RSA6: DataSource enhancement only visible after restart
    Thanks
    Chandran

  • Enhancement fields from ekko - LIS extractor

    Hi,
    I append in structure MCEKKO two fields (RLWRT and FRGRL from the EKKO table) but in order to come up these fields include in others releases and conflicts can be generated, I put them a "zz" at the beginning but preserving the data type.
    Then in LBWE transaction I added these fields using arrow buttons provided and I understand there is no need to write user exit code to populate these new fields.
    Then the data source is activated with the changes.
    When I simulate 2LIS_02_HDR with the RSA3 transaction, these fields do not fill.
    The ZZ at the beginning would be the problem? What could be?
    I appreciate your help,
    Regards,
    Victoria

    Hi Subray,
    When I remove the ZZ a warning is showed.
    "Field RLWRT does not lie within customer namespace."
    But the activation is permitted.
    This is the procedure:
    "If they are new fields or fields which are only used in structures, you are recommended to change the field names and the reports which access them."
    "The field name for fields of database tables cannot be changed without the corresponding data being lost. It is only necessary to change the field name if the same name is used by SAP."
    But the field is the same by SAP, because is the same. :S
    Message was edited by: Victoria León

  • Making fields vieabel in my extractor

    I am working with an extracotr and I need to change the fiedls so some are visible.  wher do I do this?  I tried several places but i can't chinge them

    In RSA6:
    Find you datasource then right click and "change Datasource"
    Hope it helps (if so, please assign some points..),
    Gili

  • Add field to extractor

    Hi expert,
    I need to view data from table ESSR, field SBNAMAN.
    I found Just the extractor 2LIS_02_ITM  with some field from table ESSR but these field are not the field SBNAMAN.
    Two questions.
    Do you know any extractor with this field? I can't found any.
    Can I add this field (SBNAMAN) to extractr 2LIS_02_ITM ? how?
    Thanks in advance.
    Mauricio

    Hello Mauricio,
    So far there's no standard extractor with this field.
    While you can append MC02M_0ITM with SBNAMAN and populate it in cutomer exit, I do not recommend this, since the field won't be delta enabled.
    I suggest you create customer extractor on ESSR table with AEDAT field for generic delta.
    BR
    Ondrej

  • How to find table name for the fields from Standard Extractor in CRM system

    How to find table name of fields from the standard extractor in CRM system ?
    e.g. We use LBWE TCode in R/3 system to find table name for the field from Extractor VCSCL(e.g.).
    Likewise is there any way to find table name for the fields from Standard extractor like 0CRM_LEAD_I.

    Hi ,
    Please find the link below for understanding BW CRM analysis.
    http://help.sap.com/bp_biv135/html/bw.htm
    activate the CRM DSs by scenario:
    1) Activate the application component hierarchy (tcode RSA9). Changes made to the application component hierarchy in the CRM system can be transferred to the BW using the "Edit Application Component Hierarchy" (SBIW - Postprocessing of DataSources).
    SAP Note 434886 must be implemented in CRM 3.0 before the application component hierarchy is activated.
    2) Activate the Business Content DataSources (tcode RSA5).
    Select/enter the application component and choose Execute (F8).
    To compare the shipped and active versions, choose the 'Select Delta' pushbutton. If there is no active version of the DataSource, it is selected automatically.
    To activate the shipped version, choose the 'Transfer DataSources' pushbutton.
    3) Management of the versions of the BW-Adapter metadata (tcode BWA5). All DataSources are displayed that are managed by the BW Adapter.
    As in transaction RSA5 (Service API Metadata Activation), the 'Select Delta' function can be used to select the inactive DataSources or compare shipped and active versions.
    You can also go directly to the screen for maintaining DataSources that are managed by the BW Adapter.
    The 'Compare Version' function makes a detailed comparison of the shipped and active versions.
    All BW-Adapter metadata is considered when versions are compared:
    Header information (Table SMOXHEAD)
    Mapping information (Table SMOXRELP)
    Global selection conditions (Table SMOXGSEL)
    Attribute key fields (Table SMOXAFLD)
    Hope this helps.
    Regards,
    csm reddy

  • 2LIS_02_ITM - Adding field problem

    While adding field KTWRT from LBWE to 2LIS_02_ITM ,I get the error as below.
    Entries for application 02 still exist in the extraction queue ->
    Message no. MCEX151
    Diagnosis
    Changing extraction structure MC02M_0ITM for application 02 is forbidden, because there are entries that have not yet been processed into an extraction queue for application 02 for at least one client.
    If an extraction structure is changed to the entries that are still open in an extraction queue, then these are no longer able to be read and can cause terminations with the collective update.
    Procedure
    Start the collective update using the function "Job Control" in the Logistics Extraction Structures Customizing Cockpit.
    To get an overview of the logistics extraction queues, see the Logistics Queue Overview.
    Sounds stupid ,however activities i carried out as listed below to ensure all the steps i covered.
    PS -
    <b>All the contents from LBWQ,SM13,RSA7,Setup table in all the clients available in  R/3 system has been deleted.
    Deactivated the update.
    </b>
    Any help appreciated
    Thanks
    Chetan
    @CP..

    Hi,
    I am getting the same error.
    There are no entries in LBWQ for the MCEX11 and
    also no entries in SMQ1 for application 11.
    I also ran the collective update using job control with immediate option. There were zero LUW's  that were processed.
    But, still the error is returned,
    Entries for application 11 still exist in the extraction queue ->
    Message no. MCEX151
    Diagnosis
    Changing extraction structure MC11VA0SCL for application 11 is forbidden, because there are entries that have not yet been processed into an extraction queue for application 11 for at least one client.
    If an extraction structure is changed to the entries that are still open in an extraction queue, then these are no longer able to be read and can cause terminations with the collective update.
    Procedure
    Start the collective update using the function "Job Control" in the Logistics Extraction Structures Customizing Cockpit.
    To get an overview of the logistics extraction queues, see the Logistics Queue Overview.
    Chetan, Can you please let me know,
    how you were able to resolve?
    Thanks,
    Raj

  • How to make a field as required fields in Generic extractor

    Hi!
    Can any one please let me know , how can i make a field mandatory in generic extractor. I am creating extractor using function module.
    Thanks
    Y

    Hi,
    You can do this in the FM i guess.When u capture the values from the section screen of the extractor check it that particular field is empty or not if its empty display an error message saying that field is compulsory.
    i.e where u do the filling of  range tables after that do a check for that field if its empty or not.
    Hope this helps.
    Ravi

Maybe you are looking for

  • My front panel controls are disappeari​ng after the vi starts. Anyone one know how to fix this?

    I have some vis that ran fine on an older machine, but with the new computer controls on the front panel dissappear after awhile and can be made to reappear after closing and reloading the vi.  I am not doing any programmatic hiding of any controls. 

  • How to create a relationsship between a DB Bock and Non DB Block

    Hi All, I am working with oracle forms 10g. I have created a Custom form. I have two block. One is a DB Block and another is control block(ie multi record blk). I tried to create a master detail relationship between these two block. Master block:LC_M

  • Row to column conversion during excel download

    Dear Experts, I have an internal table with one column. It has some entries say ten. I want this ten rows of entries to be displayed in the excel sheet as a single row. It means each row entry of the internal table should fit in to each cell. Is ther

  • Live Cache Monitoring. DBM_CONNECT DBM Error

    Hi Gurus, I have Installed TM7.0 system which is on NW7.0 with EHP1 on windows server2003 and Oracle DB. i have also installed SCM optimizer. after i installed Live Cache, in transaction LC10 i have maintained the data in integration tab. When i clic

  • Agent is Ready by don´t apper queue by Supervisor

    Hi Guys, My Customer have the solution UCCX 8.0.2. The Agent is working normally (Ready), but, for Supervisor the all Agent is appearing with not ready. Any Idea about  This. The Supervisor did restart the software, but, the problem continue. Thanks,