Data transfer process: use values of filter in routine

Hi,
I create a filter in the data transfer process (RSA1). There are two infoobjects (ZABC, ZXYZ) in the filter.
I fill the first select-option (parameter) with the value u2018AAAAu2019. At the second line I create the filter routine:
form compute_/BIC/ZXYZ
   tables l_t_range structure rssdlrange
   changing p_subrc like sy-subrc.
In this routine I want to use the value u2018AAAAu2019 of ZABC:
SELECT SINGLE *
INTO lw_test
FROM /BIC/MZXYZ
WHERE
   /BIC/ZBCA =  (Select-option value from ZABC = u2018AAAAu2019)
Then I want to make a new entry in l_t_range from lw_test.
I thought that the Select-option will be in the table l_t_range. But there is only a record when it was also set by an ABAP-Routine but not the manual entries in RSA1.
How can I use the select-option from the filter?
Thanks in advance
Tobias Mattes
Edited by: Tobias Mattes on Jan 30, 2009 1:33 PM
Edited by: Tobias Mattes on Jan 30, 2009 1:34 PM

Can you try to combine them into one routine?  In other words, fill the range for both in the same routine - that way, you'll have all the values available to you.
For example:
l_t_range-iobjnm = 'ZABC'.
l_t_range-fieldname = 'ZABC'.
l_t_range-sign = 'I'.
l_t_range-option = 'BT'.
l_t_range-low = '2006001'.
l_t_range-high = '2006012'.
l_t_range-iobjnm = 'ZXYZ'.
l_t_range-fieldname = 'ZXYZ'.
l_t_range-sign = 'I'.
l_t_range-option = 'BT'.
l_t_range-low = '0101010'.
l_t_range-high = '0101099'.

Similar Messages

  • Is there any documentation for filter routine in Data Transfer Process?

    I am trying to create a filter routine in the Data Transfer Process to select different billing types depending on what date the Data Transfer Process is running....
    I have searched through SDN and found some examples, but some formal documentation would help.
    Is there any documention on filtering in a Data Transfer Process using a routine?
    I am in 7.0

    data: l_dow TYPE I,
          L_S_RANGE TYPE rssdlrange.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'F2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'G2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'L2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCDD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCDI'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCR1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCR2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZDR1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZEDI'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZMD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRE'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRE1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRED'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZSMP'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZUSD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZUSI'.
    APPEND L_S_RANGE TO l_t_range.
    CALL FUNCTION 'DATE_COMPUTE_DAY'
      EXPORTING
        date = sy-datum
      IMPORTING
        day = L_DOW.
    IF l_Dow EQ 5.
      l_s_range-iobjnm = '0BILL_TYPE'.
      l_S_range-fieldname = 'BILL_TYPE'.
      l_S_range-sign = 'I'.
      l_S_range-option = 'EQ'.
      l_S_range-low = 'S1'.
      APPEND L_S_RANGE TO l_t_range.
      l_s_range-iobjnm = '0BILL_TYPE'.
      l_S_range-fieldname = 'BILL_TYPE'.
      l_S_range-sign = 'I'.
      l_S_range-option = 'EQ'.
      l_S_range-low = 'S2'.
      APPEND L_S_RANGE TO l_t_range.
    ENDIF.

  • Data Transfer Process filter: how to view the filter values?

    Hi,
    does anyone know how to view (and download) the values of a filter of data transfer processes?
    I want to compare the filtervalues of data transfer processes from productive system with development system. Normally the DTP's are created in a development system and transported with TMS to quality and productive systems. In the productive system there is often the need to slightly change the values in the filter, and to do this directly in the productive system without transport.
    If the same DTP is used and changed by another project after a while, it will overwrite the changes from productive maintenance.
    By comparing the filter values one could evaluate the changes.
    For info packages there is the same need. Here you can use table RSLDPSEL. Is there someting like that for DTP?
    thanks for any help
    Jean

    Hi,
    the difference you have in the infopack and DTP is
    you can have any number of infopackages between the source and PSA but you can have only one DTP between the PSA and datatarget.
    so there is no othere way than changing the filter values in the existing DTP.
    just chk the filter option and choose the required chars for ur load and activate the DTP.
    Ramesh

  • Data Transfer Process and Delete Overlapping Requests

    Hi All,
    We are on BW 7.0 (Netweaver 2004s).  We are using the new data transfer processing and transformation.  We want to use the ability to delete overlapping requests from a cube in a process chain.  So lets say we have a full load from an R/3 system with fiscal year 2007 in the selection using an infopackage.  It gets loaded to the PSA.  From there we execute the data transfer process and load it to the cube.  We then execute the delete overlapping requests functionality.  My question is, will the DTP know that the infopackage selection was 2007 so it will only delete requests with selections of 2007 and not 2006 from the cube?  Basically, is the DTP aware of the selections that were made in the infopackage?
    Thanks,
    Scott

    Hi Everyone,
    Figure it out...on a data transfer process you can filter the selection criteria - go to the extraction tab of a DTP and click on the filter icon.  Enter your seleciton conditions to pull from the PSA....these seleciton conditions will be used to delete the overlapping requests from the cube.
    Thanks

  • You are not authorized to display the data transfer process

    Dear Experts,
                          Good Morning!
                          I want to that I am getting one Message no. RSM906:"You are not authorized to display the data transfer process
    ".What does it mean .I want to load the data in the 0SD_C03 cube ,can able to load upto PSA but unable to create the DTP.IS this because of this messege of authorization or some other reason ,Request  you to please suggest me for this issue ,thanks in advance .

    Hi,
    You may not have authorisation for S&D cubes, so i feel it is an authorisation issue, kindly take one of your colleagues id to check this, if it is working for them, then i think you have to add those to roles to your ID..
    Still there is a option to override this, but you have debug it once, and change the authorisation code(sy-subrc) value, and please dont try this if you are not familiar at ABAP, and this is not adviceable if it is an authorisation issue as there will be logs recorded for all the things you are doing and oreover each time when u click on DTP you have debug it to change the authorisation
    code..
    Note: If it is QA or Dev system you can try debugging it, but if it is production system then i think u have to use an alternate ID...
    Regards,
    Nanda.S

  • Error in Data Transfer Process (DTP) Urgent!

    Hi,
    ive encountered an error in uploading data from R3 using DTP in a specific cube and it says "Exceptions in Subset: Load and Generation" and "Dump: ABAP/4 processor: MESSAGE_TYPE_X", how can i fix this problem? is there any problem with the upgrade process of our system or in KERNEL? and what is KERNEL? Please help me guys.....
    Thanks,
    nips

    Please do not post the same question twice.
    Error in Data Transfer Process (DTP) Urgent!

  • Crash in data transfer process, exception cx_rs_step_failed_callstack

    Hi,
    I am having problems with a data transfer process, i am getting the message:
    Extraction datasource Z_WMS_VRM
       Prepare for extraction
       Exceptions in Substep: Extraction Completed
       Processing terminated
    When I click the button behind "Exceptions in Substep" it jumps to a line  with
    CALL METHOD cl_rsbm_log_step=>raise_step_failed_callstack
    in method IF_RSBK_CMD_X~GET_DATAPACKAGE.
    When I look in the PSA(13 records) it all looks ok, no weird values. De infopackage runs ok and fills the PSA. Screenshot of PSA contents: http://i44.tinypic.com/sesqw2.jpg
    The datasource is an external DS filled by powerexchange 4.
    The system's current support pack is 18.
    Edited by: Thijs de Jong on Jun 23, 2009 12:00 PM
    Edited by: Thijs de Jong on Jun 23, 2009 12:11 PM

    Hello Thijs,
    The same issue happened to me this week. This can happen for several reasons:
    - Some parts of the loading line is not active, resp. structures were changed and need to be activated again.
    - There is no more tablespace in the DB.
    - There is a deadlock when reading a table (maybe the table is too big...)
    Hope this helps.
    Cheers,
    Stephan

  • Issues in Data Transfer Process

    Hello All,
    After creating transformation from Infosource to InfoCube, now i am trying to data transfer process.
    In DTP Type it displays "DTP for direct process", but i need DTP type as Standard(Can be scheduled).
    Its giving me an error as "Source does not support direct access"
    Could any one help me to solve this error.
    Thanks in advance
    Regards,
    Nithin

    Hi,
    You can only use the type DTP for Direct Access as the target of the data transfer process for a VirtualProvider.
    Check the below links
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/fa50e40f501a77e10000000a422035/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/fb8ed8481e1a61e10000000a422035/frameset.htm
    Regards
    KP
    Edited by: prashanthk on Jan 19, 2011 5:15 PM

  • What is the "Data Transfer Process" in the BI7.0, and how does it work?

    Hi, experts !
    I'm fresh on BI7.0.
    What is the "Data Transfer Process" in the BI7.0, and how does it work?
    And what is it used for ?
    Could anyone help me? Plz send me some doc.
    [email protected]
    Thank u !

    HI,
    Refer this blog
    /people/community.user/blog/2007/06/22/sap-netweaver-70-bi-data-transfer-process-dtp-blog-series
    Also refer
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/f98e07cc483255e10000000a1553f7/frameset.htm
    Thanks

  • DTP (Data Transfer Process)

    Hi, I would like to know more about DTP (Data Transfer Process), how can i use it to replace infosources, transfer rules and update rules in just one transformation.
    I will be very grateful for your comments and your help...
    Thanks and regards!

    hi,
    You use the data transfer process (DTP) to transfer data within BI from a persistent object to another object in accordance with certain transformations and filters
    It is like a replacement of the info packages in the olderr versions.
    Data transfer processes are used for standard data transfer, for real-time data acquisition, and for accessing data directly.
    youu can refer to this link for mor infos.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/f98e07cc483255e10000000a1553f7/frameset.htm
    hope it helps..

  • RE: Transformation and Data transfer process.

    Hi guys,
    Please some bosy help me out by providing the differences between Transformation and Data Transfer Process.
    thanks in adwance
    omkar

    Hi Omkar,
       Trnasformations providing the mapping between Sorce fields( datasource to  data target).  only map the structures..
    <b>Transformations:</b>----
    -->Trsnsformations are used to create mappings between two BI Objects and to
    transform data from BI Source(From where) to BI Target .
    -->You can create One-One Mappings between source and target in BI
    -->In transformations Source is : DataSource, InfoSource, DataStore object,
    InfoCube, InfoObject and InfoSet
    -->Target is: InfoSource, InfoObject, DataStore object and InfoCube.
    -->Transformations replaces the transfer and update rules.It's like creating transfer
    rules and update rules.Through these rules/mappings/transformations, the
    system is going to transform data from Source to Target.
      but DTP  means.. the data loading procedure will be  done with this step..
    <b>DTP :</b>
       DTP is used to transfer data from PSA to the infoprovider.
    The data transfer process can also be used to control data distribution from a BI system into any target outside of the BI system. For this purpose, a data transfer process with an open hub destination is used as the target.
           Since Deltas are now based on request from PSA ,you can have multiple datatargets pulling data with same selection criteria from same datasource(ECC) with INITS/DELTA,not possible earlier.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/f98e07cc483255e10000000a1553f7/frameset.htm
    Creating DTP
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/fa50e40f501a77e10000000a422035/content.htm
    regards
    @jay

  • Errors druing Data Transfer process

    Hello!
    I go through the SAP BW example and have the following error by generating Data Transfer process.
    I have corrected the errors (from "EURO" to "EUR") in CSV-files, but I get still the errors:
    No SID found for value 'EURO ' of characteristic 0CURRENCY
    No SID found for value 'U1 ' of characteristic 0UNIT
    I have recreated the flat files/.csv-files, deleted and created the info cube, but the error still occurs.
    What are the steps to fix the error?
    How can I know which data source contains the error?
    What are the possible values for 0CURRENCY and 0UNIT?
    Can some one give some recommendation?
    Thank you very much!
    rergards
    Thom

    Hello,
    You need to delete the data from PSA after an Unsuccessful load, if you want to load it again after correcting data in the source (Flat file in ur case). Right click ur datasource->Manage. Select the request which failed and hit the delete button (trash) at bottom. Now try loading it again.
    To get all possible values of currencies and units defined in your system. check contents of following tables:
    TCURC - Currency Codes (field -WAERS)
    T006 - Units of Measurement (field - MSEHI)
    Thanks

  • Data transfer process(urgent)

    Hi bw gurus,
       can any one help me on data transfer process .i need to prepare the ppt on this .plz help me out in this..
    thanks in advance
    uma reddy

    Hi Uma,
    Check out the below link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/f98e07cc483255e10000000a1553f7/content.htm
    In BI 7,using info packages you can only load data upto PSA. To load the data from PSA to data targets we use DTP's.
    Hope this helps.
    Cheers
    Praveen

  • Data Transfer Process and Infopackage

    Are both Data Transfer Process and Infopackage the same...Can someone please explain... thanks

    Hi,
    Pl search the forum for these questions as these are mostly discussed in the forums.
    or simply google it...
    Now IP is mandatory and used to bring the data from source to PSA..
    and DTP is loading and transfering the data within BI itself.
    rgds,

  • Errors in data transfer process

    Hi,
      i'm getting "Errors in data transfer process" message when i try to run conntrans. when i see the detials error log in trouble shooting ( in client console), i get this following message in detials ( see the bold letters). can some one help me. i have check all the connections between mobile and CRM server. will reward points!!!
    2324       96c                               ! Entering 'PullMessages' for queue 'CRM_SITE_000000000000274' / limit 20 messages
    2324       96c      Fri Aug 24 20:28:22 2007 E
      NewTransferService - _TransferPullMessages : <b>DotNet Stub.TransferPullMessages call failed with fffffffa:</b>(null)
    2324       96c                               E
      _TransferPullMessages failed with fffffffa
    2324       96c      Fri Aug 24 20:28:23 2007 E
    regards
    Kamalesh K.V

    Hi,
    We have installed MSA 4.0 (SP12 ). we have also checked QMT config in Mobile sales bin folder. The test connection is sucessfull.( see the below message). we stil have problems in Data transfer when we run connstrans. Please help .
    <b>" NewQmtCnfg Version 2.0 for Windows 2000 - revision  4003
    Assume running on Client
    1. Try to access Communication Station 'MTV01sdCR02', please wait...
    ... OK
       Try QmtServer component initialize check, please wait...
    ...OK: QmtServer initialize call returns successfully
    2. Try to access CRM Server (Destination '<DEFAULT>'), please wait...
    ...OK: CRM Server call returns successfully</b>
    regards
    Kamalesh KV

Maybe you are looking for

  • Widgets in iBooks Mavericks

    Hey, We're having a really annoying problem with widgets on iBooks mavericks. In iBooks on the iPad the close button in top left only captures touch events in the visible area of the close button. However on iBooks mavericks the done button sits with

  • MATMAS Inbound IDOC

    Hello all, Iam working on Material master Data Upload using the IDOCs. -There are about 3K records. -I have collected the IDOCs and executing the RBDAPP01 -in background with Parallel processing and with Packet size as 5. All the IDOCs processed thes

  • FIX FOR: Cant open CR2 Files in 32 bit - FIX FOR ACR IN 32 BIT PHOTOSHOP AND BRIDGE!!!!!!!!!!

    http://http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407110&sliceId=2 Simply download the latest plug in under DOWNLOADS. Manually go into your program files are and pull out OLD Camera Raw Plug in  bring to your desk top Place NEW Came

  • Change of time format for conctenation

    i have time from sy-uzeit. i want to split it into hhmmss. how to split it. kindly expain. what are to be the lengths of variable.

  • Why won't the link show up to change my Apple ID security questions?

    Don't understand this at all! Logged onto my Apple ID and it made me type in all of my security questions (which I forgot). So I followed the instructions and went to the security questions section of Manage my Account and there is supposed to be a l