QM SetUp Tables Filling Steps

Hi Gurus,
I am trying to fill the setup tables for the QM Module (05).
Even after waiting for a few hours its not filling any records to the Data Sources.
Can you please let me know if i need to do anything else like any other settings before filling the             QM Set Up tables.
When I checked the NPRT   T-Code ...  It shows that the finish date and time along with 0 Number of Documents .
Can someone please let me know the exact steps for filling the QM set up tables .
Regards
Vikram....

Hi Jorge,
I have a live BW 3.5 system connected to this live R/3 system and now we are Re-Implementing the same into BI 7.0 System.
The delta Loads are getting loaded everyday to the existing BW 3.5 System, so I cannot delet the initialization request and i dont see any reason for doing that to fill the setup tables.
I have to do a Full load to the new BI 7.0 System till 2007 Fiscal year and are planning to load the current fiscal year data during cut over period.
So,I need to fill the Setup tables to load the Historical Data till 2007 Fiscal Year. Can you please help me out with this issue....
Regards
Vikram...

Similar Messages

  • Setup table filling for 2lis_04

    Hi gurus,
    While the job RMCFNEUA was working I have received the below-mentşoned log related to the job.
    28.04.2014 21:16:38 Job started
    28.04.2014 21:16:39 Step 001 started (program RMCFNEUA, variant &0000000000011, user ID ECARL)
    29.04.2014 00:06:14 Internal session terminated with a runtime error DBIF_RTAB_ILLEGAL_CALL (see ST22)
    29.04.2014 00:06:14 Job cancelled
    Does anyone encounter such error? What is this error and how could I rectify it? I am running initialization twice and I wonder if that would happen again.
    Thanks for the responses.
    Eddy.

    Hi,
    it seems to be job was canceled while filling the setup table of  2LIS_04.
    i got same issue then i check with the basis team.
    i think it is a sap kernal problem.
    one more time check the filling and deleting of setuptables.
    Thanks,
    Phani.

  • Setup tables filling  currency error

    Hi ,
    When i am trying fill Sales data to the setup tables i am getting the below error please some on help me
    Error determining rate : forign curr. INR date 20.08.2006(Doc 11320)
    Thanks,
    GAL

    The exchange rates are maintained.I have already checked the table TCURR.
    I checked in the debugging where the error is occuring and it is during the conversion of the local currency into statistics currency.Since the statistics currency is blank for the document the conversion FM is returning the error.

  • Setup table filling for c-- b-- f detailed levels

    Hello experts,
    we need yo fill setup tables for shopfloor contoro lapplciation. (oli4bw).
    for this we are filling for selections C , B and F detailed levels.
    we have triggered C frst and after 10 mnts B....is it fine or we need to fill one by one ???
    parlelly triggering is acceptable or not?
    need your inputs...
    Thanks
    Raki

    Note 1081396 - BW-PP: Functionality of the INIT of PP extractors
    Use this note as PP setup is a bit complex but follow the guidelines in the note.
    Cheers
    Suyash

  • BW Setup table filling for Billing

    Hi
    We are trying to fill the setup table for the Billing application (13).
    When we execute the Tcode OLI9BW to fill the setup table, we are prompted to fill in the Info-structure name.
    When we fill in S262 (SD - billing doc) we are receiving error - "No updating active for information structure."
    Now I have 2 queries:
    1 - When I am using LO cockpit, why is it asking me to fill in Info strucure which is an old concept of LIS.
    2 - If anyways I have to fill then what should I give in the Info-structue.
    Please suggest.

    Hi,
    First you will activate SD Billing Data sources (2LIS_13_VDITM . etc ) in LBWE and RSA5. select the your update mode in LBWE. After that delete your Application u2013 13  setup table and Initialize the setup table .
    Regards,
    Krishna.

  • Period for Setup table Fill

    Hi Experts,
    Is there anyway of giving time ranges for filling up sales order & billing document setup tables?
    LIke, i want to fillup setup table for sales order for the month of Jun to August 2007.....can do this?how?
    Any help is appreciated.
    Rgrds,
    Vaishnavi
    Edited by: Vaishnavi S on Apr 17, 2008 5:34 AM

    Hi,
    I think you can. I believe you are trying to fill setup tables using some selections (probably to minimize init down time).
    This should help.
    Fill the setup tables with already closed values and then fill up again with open values.This will reduce the down time.
    Initialize  closed periods first in which users wont enter data ( for example in 2007 or 2006), this initializations can be done while users are working. Then the initialize last period at night/weekends.holidays etc.
    If you know documents that are in closed periods, and you are sure that these documents can no longer be changed, you can only fill the SetUp tables for these documents or only for these periods, by continuing to post in open periods. You then initialize only for these intervals, delete the setup table, and only then do you fill the setup table with the rest of the documents  this procedure can drastically reduce the downtimes of your system.
    However, there is a risk that user exits (and in LIS, formulas and conditions) can be used to retrieve documents that are in periods that are already "closed periods".
    One more thing what you need to bear in mind is, to check if there are any Scheduled jobs which are updating the transaction tables, which would definitely cause Data Reconciliation Issues.
    Multiple init  
    Thanks,
    JituK

  • Multiple Single values in Setup table filling

    Hi all,
    I need to fill the setup table for Sales Orders. I have around 1000 Sales orders whose number are not in any sequence.  Its extremenly difficult to fill data for each sales order individually.
    Is there any way to do multiple single selection while filling the setuptable.?
    Thanks in advance.

    Copy the std program (example RMCVNEUA)
    Copy the include rmcvntop to zrmcvntop and change the selection to a select option like this
    select-options s_belnr for DD_BELNR-low.
    Copy RMCSNF00 to zRMCSNF00
    then overwrite the selecti_option fill in ZRMCSNF00 change to add this piece of code
    *       FORM SELECT_OPTION_FILL                                       *
    *       füllt select_options für Belegauswahl                         *
    *  -->  SF_BELNRACT                                                   *
    FORM select_option_fill USING sf_belnract  LIKE dd_belnr-low
                                   sf_belnr_h  LIKE dd_belnr-high.
    if not sf_belnract is initial.
      dd_belnr-sign = 'I'.
      dd_belnr-option = 'BT'.
      dd_belnr-low    = sf_belnract.
      dd_belnr-high   = sf_belnr_h.
      APPEND dd_belnr.
    else.
    loop at s_belnr.
      dd_belnr-sign = 'I'.
      dd_belnr-option = 'EQ'.
      dd_belnr-low    = s_belnr-low.
      APPEND dd_belnr.
    endloop.
    endif.
    ENDFORM.                               " select_option_fill
    Then change  RMCVNEUA to use zrmcvntop instead of rmcvntop and zRMCSNF00 instead of RMCSNF00

  • No Free document number range possibility in Setup table filling of Sales roder

    Hello
    If we have many documents to be reloaded in BW through setup table especially for Sales order / delivery /  Invoices datasources, then there is not facility to load selectively by document numbers.  One has to specify only ranges ? I dont have ranges , I have scattered document numbers.
    Is there any alternate solution for this ?
    Regards
    Saurabh

    Hi Saurabh,
    There is a workaround which I am not aware of completely.
    A custom Abap program can be written which can take the required sales documents through a flat file load interface which will not require the use of manual input;s for all the documents.
    I used this program long time back. It was created by one of our ABAP's teammate.
    It will take long time to run but reduces the manual effort.
    You can check with your ABAP team if they can create something like that.
    Best Regards,
    Arpit

  • Query on setup table filling

    Hi,
    can anyone tell me whats the transaction code for filling in set-up tables for sales, delivery and billing related datasources. is it oli7bw, 8 and 9 for them respectively.
    ~rahul

    Here you go. The entire list for ready reference.
    OLI1BW               INVCO Stat. Setup: Material Movemts 
    OLI2BW               INVCO Stat. Setup: Stor. Loc. Stocks
    OLI3BW               Reorg.PURCHIS BW Extract Structures 
    OLI4BW               Reorg. PPIS Extract Structures      
    OLI7BW               Reorg. of VIS Extr. Struct.: Order  
    OLI8BW               Reorg. VIS Extr. Str.: Delivery     
    OLI9BW               Reorg. VIS Extr. Str.: Invoices     
    OLIABW               Setup: BW agency business           
    OLIFBW               Reorg. Rep. Manuf. Extr. Structs    
    OLIIBW               Reorg. of PM Info System for BW     
    OLIQBW               QM Infosystem Reorganization for BW 
    OLISBW               Reorg. of CS Info System for BW     
    OLIZBW               INVCO Setup: Invoice Verification
    Kumar Gudiseva.

  • Error while filling setup table for Quality Mangement D/Sources

    HI Experts,
    Iam trying to fill the QM setup tables.
    Steps iam following are
    1.T-code OLIQBW
    2.Selecting Event QV, QE and gave selection parameters and name for Run.
    3. Execute
    4.Run Time Error CALL_FUNCTION_PARM_UNKNOWN
       Exception  CX_SY_DYN_CALL_PARAM_NOT_FOUND
       Date and Time          27.08.2009 11:21:01                                                                               
    Function parameter "I_ADDITIONAL_DATA" is unknown.

    Hi Mansi,
    Runtime Errors         CALL_FUNCTION_PARM_UNKNOWN                                                 
    Exceptn                CX_SY_DYN_CALL_PARAM_NOT_FOUND                                             
    Date and Time          27.08.2009 11:56:20                                                                               
    ShrtText                                                                               
    Function parameter "I_ADDITIONAL_DATA" is unknown.                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLQMER" had to be terminated because one of the                  
         statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                                                               
    Function module "QEEA_COMBINE_TO_ONE_FEATURE" was called                                     
         with the parameter "I_ADDITIONAL_DATA".                                                      
         This parameter is not defined.                                                                               
    Error analysis                                                                               
    An exception occurred. This exception is dealt with in more detail below                     
         . The exception, which is assigned to the class                                              
          'CX_SY_DYN_CALL_PARAM_NOT_FOUND', was neither                                               
         caught nor passed along using a RAISING clause, in the procedure                             
          "QMER_EXTRACTION_RD_RESULTS" "(FUNCTION)"                                                   
    Since the caller of the procedure could not have expected this exception                     
          to occur, the running program was terminated.                                               
         The reason for the exception is:                                                             
         The reason for the exception is:                                                       
         Function module "QEEA_COMBINE_TO_ONE_FEATURE" was called                               
         with the parameter "I_ADDITIONAL_DATA".                                                
         This parameter is not defined.                                                                               
    Missing RAISING Clause in Interface                                                        
         Program                                 SAPLQMER                                       
         Include                                 LQMER$01                                       
         Row                                     5                                              
         Module type                             (FUNCTION)                                     
         Module Name                             QMER_EXTRACTION_RD_RESULTS                                                                               
    Trigger Location of Exception                                                              
         Program                                 SAPLQMER                                       
         Include                                 LQMERU01                                       
         Row                                     488                                            
         Module type                             (FUNCTION)                                     
         Module Name                             QMER_EXTRACTION_RD_RESULTS

  • CONVT_NO_NUMBER ERROR IN BW FILLING UP SETUP TABLE

    Hi all:
       An error occure when i doing the BW LO filling setup.
       I excute the BW setup table filling up action by TCODE
    "SBIW", then in the "SM37" the background job was canncel by system,and raise an dump error : unable to interpret " " as a number
       It's a "CONVT_NO_NUMBER" error and occurred in the program "SAPLMCEX"
       SOME KEY criteria: CONVERT_PROJ_NUM
                          SAPLMCEX
                          CONVT_NO_NUMBER

    Very agency, pls give me some solutions if somebody knows.

  • Fill setup table

    can someone tell me how I can monitor the setup table fill for SD.  When I click it for orders it just pops up and says "staert of order processing" and then the screen locks up.  I have no indication of progress or when it finishes.  When I check the job monitor it seems nothing is running....
    i need to know how long users should remain locked out and when I can start the BW reinit full load...

    et up table definition
    Setup table is store the historical data, where as the delta records are updated in delta queue not to set up table.
    So once historical data is loaded you can delete the contents of the set up table.
    name is extract sturcture of your data source + setup
    also data is taken from setup table when an init / full/ full repair load is done.
    so in order to take ur records from the table delete the setup table(LBWG) and initialize it with ur records.
    You can find the contents SE16
    Filling set up tables
    transac LBWG
    + SBIW -> Logistics -> Managing Transfer Information Structures-> Setup of Statistical Data-> Application-Specific Setup of Statistical Data
    set up tables
    Set up tables
    Set up tables
    view of set up tables data in se11??????????
    Set Up tables..
    lo: delete set up tables: DOUBT
    Hope it helps
    regards
    bala

  • How to fill setup table for Application 18 Customer services

    Hi,
    How can I fill setup table for application 18.
    Regards,
    ST

    Hi,
    To fill LIS, first set your LIS to update. use the central Tcode OMO1(for SD), OMO2(for MM) or OMO3(for other logistics) or you can set it in MC24 also(activate button).
    SBIW -> settings for application specific datasources -> Logistics -> managing transfer information structures ->.... -> statistical setup Sales. (Application component 17 >transaction OLIIBW,Application component 18> OLISBW )-->select the relevent one whether sales/billings/deliveries etc in the pop-up. enter your LIS, give a name to job and execute.
    Also pls chk this;
    Re: query on setup table filling
    Regards
    CSM Reddy

  • Why we give run name while filling setup tables

    Dear Experts!!!
    In LO Extraction , while performing setup tables filling, why we have to give some run name like zrun/ ztest ?
    cant we do it without giving any run name for filling the setup tables.
    Your help will be appreciated.
    thanks in advance!!!

    Hi Anil,
    The run name is the name under which the determined data is saved.
    If you restart a run that has been terminated, rather than executing a new run, it will use the data that has already been determined, i.e. the next run will be carried out with the data that was selected up to the specified termination date and time.
    Regards,
    Mansi

  • How to reduce downtime for setup table

    Scenario u2013According to system data, Setup table will normally take 5 days to fill but client agreed only for max 2 days downtime. User can do change only last 3 month documents not before that. For filling 3 month data in set up table 1 day required so I have to mange options accordingly.
    Datasource u2013 2LIS_13_VDITM -> DSO u2013 ZBIllIG ->Info cube
    I have to Reduce Downtime for Setup table so planning following optionsu2013
    1.     First run the info package for Initialization without data transfer. Then start filling setup table without blocking the User. In case Users changes any document at the time of filling setup table then these changes will move to delta queue. Once setup table filled then execute full repair request and then Delta info package.
    2.     Early delta initialization u2013 no idea how to perform steps.
    Please share your views with detail steps.
    OLI*BW doesnu2019t have any date range in selection criteria so manually I will find out document for particular dates and use these document range.
    Checked lot of post in SDN but still expecting final answer to go ahead in Production.

    Hi ,
    Your requirement is Billing ODS and Cube - Reset up in R/3 SYSTEM & Initialization in BW SYSTEM .
    Before starting find the previous data load volume and size.
    1.Go to LBWG application value=13 (Always Schedule the job in the back-ground mode)
    2.Verify using tcode u2018SE16u2019 that there are NO records in u2018MC13VD0ITMSETUPu2019 table after above delete job is complete.
    3.Suspend the process chain job in BW.This is to avoid it getting kicked off while the reload process is still in progress.
    4.Need to check LBWQ in R/3 system for MCEX13, unprocessed Outbound queue (records). This should be empty as the last delta would have processed all.
    5.Delete the initflag in BW.
    6.Need to check RSA7 in R/3 SYSTEM to verify that there is NO record for 2LIS_13_VDITM    (to be done right before the Setup job).
    7.Create New Info Package for Info Source '2LIS_13_VDITM' for u2018Initialize without Data Transfer Optionu2019 .Execute the package.Re-establish the Delta processing flags in R/3 and BW for the Billing TD load .
    8.Save the record count for table u2018VBRPu2019 using SE16 right before the setup job.
    9.Schedule Billing Data Setup Job 'OLI9BW'  in R/3 SYSTEM .
    10.After the Billing Setup job is complete in R/3 system, get the record count of table u2018VBRPu2019 again using u2018SE16u2019
    Expeted time in R/3:5 to 7 hrs(setupjobs)
    Expeted time for init and fullload : 6 hrs
    ODS activation : 3hrs
    Cube and with agrregates fill all : 8hrs.
    Thanks,
    naidu.

Maybe you are looking for