Insert Execute InfoPackage - no data selected

We had upgraded the BW3.5 to BI7.0 two
months ago.
Now in QA system, I couldn't insert any
InfoPackage from the Process Type
'Execute InfoPackage'. The warning
message 'No data selected' occured.

Hi Amol,
This is a known issue and it is solved by implementing the below note:
1062704 - P15:PC: InfoPackage input help does not display any values
Hope so the issue will be solved.
Please assign points.
Cheers
Rajesh

Similar Messages

  • Insert Execute infopackage on process chain maintenance

    Hy, i have a serious problem: i can't insert a infopackage on process chain that i created on AWB.
    When drag the insert "Execute infopackage process" on process chain and select the match code or F4 button to select an infopackage , receive this message:No data selected.So i can't insert infopackage in my process chain.
    Could you help me?
    Thank's a lot.
    Sincerely yours
    Andrea Maraviglia

    Hi,
    Go to rspc. At top of left pane you can see a data target icon. Click on that. Select your data target. Check the infopackage ckeck box. Here you can select your infopackage.
    Try this out.
    Regards,
    Amruth

  • Rotuine in Infopackage for Data Selection---- Urgent

    Hi All,
    I have a requirement such that i need to select only balnk Values from cube and send it to another cube .
    lets say that in CUBE A is the one cube from which i need to extract the data and send it to CUBE B.(data mart).
    In CUBE A , I have field Plant , for this field in CUBE A there are values for it and also with no value i.e  ' ' (space).
    Now my requirement is I need to extract the data from CUBE A for only those records for the field Plant value is ' ' (blank/space).
    For this if we give in the infopackage selection if you give space , it is getting all the records.. and If you go for f4 and select Filter symbol and give single value as ' ' (Space or blank) it is taking as value # , but with zero records.
    And one more way is writing a Routine for the data selection..
    Can anybody guide me how to write a routine for that or send me the code for the above purpose.
    As it is a matter of urgency please help me guys.
    mail me to [email protected]

    hi,
    I have an idea, I do not know will it works. I based on Pradeep code:
    data: l_idx like sy-tabix.
    read table l_t_range with key
    fieldname = 'Zfield'.
    l_idx = sy-tabix.
    l_t_range-SIGN = 'I'.
    l_t_range-OPTION = 'NE'.
    l_t_range-low = 'A'.
    l_t_range-high = 'ZZZZZZZZZZZZZZ'.
    modify l_t_range index l_idx.
    p_subrc = 0.
    Idea is to exclude all posible strings so maybe l_t_range-high should be '99999999999'. I do not know lenght of your plant characteristic as well so remember about this
    Regards,
    Andrzej

  • How debug a routine created in InfoPackage for Data selection ?

    Hi everybody,
    I decide to debug a routine create in InfoPackage.
    Here, the name of my ABAP routine:
    program conversion_routine
    form compute_TREATMENT_DATE
    When i execute the "/h" command to launch debugger, i don't see this routine in Call Stack...
    How i can debbug ?
    Any suggestions ?
    Thanks in advance,
    Best regards,
    Rodolphe.

    Debug ABAP Routine in InfoPackage:  
    Put a loop on the routine,
    data : debug(1).
    do.
    if debug = 'X'.
    exit.
    endif.
    enddo.
    And when run infopackage, go to sm50.
    On that process, menu program->debug program.
    In debug screen, type in debug, and fill with X and click 'edit'-pencil icon.
    F5 to next step.
    hope this helps...

  • How debug a routine create in InfoPackage for Data selection ?

    Hi everybody,
    I decide to debug a routine create in InfoPackage.
    Here, the name of my ABAP routine:
    program conversion_routine
    form compute_TREATMENT_DATE
    When i execute the "/h" command to launch debugger, i don't see this routine in Call Stack...
    How i can debbug ?
    Any suggestions ?
    Thanks in advance,
    Best regards,
    Rodolphe.

    Debug ABAP Routine in InfoPackage:  
    Put a loop on the routine,
    data : debug(1).
    do.
    if debug = 'X'.
    exit.
    endif.
    enddo.
    And when run infopackage, go to sm50.
    On that process, menu program->debug program.
    In debug screen, type in debug, and fill with X and click 'edit'-pencil icon.
    F5 to next step.
    hope this helps...

  • Routine in Infopackage data selection doesnt give appropriate results...

    Hi Gurus,
    I need to pull data into PSA (BW 3.5) based on a certain selections in the Infopackage. Selection is based on specific values of Infoobject 0PLANT , however, as these values are multiple and do not fall in a specific range I have written a routine to derive these values.
    The routine  does the following steps :
    - creates an internal table from /bio/mplant and deletes the plant values that I do not wish to consider in the extraction.
    - delete data from l_t_range for fieldname = 'PLANT'
    - Appends data from the internal table to l_t_range.
    However, when I execute the infopackage, the extraction is done for ALL the 0PLANT values i.e it includes the data for 0PLANT value which have been delete from the internal table.
    My routine is :
    $$ end of global - insert your declaration only before this line   -
        InfoObject      = 0PLANT
        Fieldname       = PLANT
        data type       = CHAR
        length          = 000004
        convexit        =
    form compute_PLANT
      tables   l_t_range      structure rssdlrange
      using    p_infopackage  type rslogdpid
               p_fieldname    type rsfnm
      changing p_subrc        like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
    TYPES ls_range like l_t_range.
    data: l_idx like sy-tabix.
    DATA: lt_plant like /bi0/mplant OCCURS 0 with header line.
              SELECT PLANT from /bi0/mplant into lt_Plant WHERE objvers = 'A
              ENDSELECT.
              delete lt_plant WHERE plant = 'W206'.
              delete lt_plant WHERE plant = 'WF11'.
              delete lt_plant WHERE plant = 'W945'.
              DELETE lt_plant WHERE plant = 'W530'.
              read table l_t_range with key
                   fieldname = 'PLANT'.
              l_idx = sy-tabix.
              DELETE l_t_range where fieldname = 'PLANT'.
              Loop at lt_plant.
                    l_t_range-sign = 'I' .
                    l_t_range-low = lt_plant-plant.
                    l_t_range-OPTION = 'EQ'.
                    append l_t_range.
              endloop.
              modify l_t_range index l_idx.
              p_subrc = 0.
    $$ end of routine - insert your code only before this line         -
    endform.
    Any bugs in the routines ?

    try this one:
    Loop at lt_plant.
    if lt_plant-plant ne 'WF11' or lt_plant-plant ne 'W945' or lt_plant-plant ne 'W530'.
    l_t_range-sign = 'I' .
    l_t_range-low = lt_plant-plant.
    l_t_range-OPTION = 'EQ'.
    append l_t_range.
    endif.
    endloop.
    or
    don't use a table with header ( use a standard table and use a work area to access the table ) and do an other select like this:
    SELECT PLANT from /bi0/mplant
    into corresponding fields of table lt_Plant
    WHERE objvers = 'A
    and plant ne 'WF11'
    and plant ne 'W945'
    and plant ne 'W530'.
    I hope it helps...
    Kind regard.
    Tobias
    Edited by: Tobias Kreuser on Aug 23, 2010 11:34 AM

  • Execution of  infopackage by change in data selection without client open

    Hi,
    In BI Prd if we suppose to execute a infopackage manually by changing its data selection then how to execute with out opening client.
    Regards,
    Kiran

    Kiran,
    I think in your Production system infopackages are set to not changeble,
    Make it Changeble then it works.
    RSA1 --> Transport Connection --> Object changebility --> Infopackage --> from context menu choose --> comple changeble.
    After this no need to open client. To do above changes may need to open client.
    Hope it helps
    Srini

  • NOT EQUAL in the InfoPackage Data Selection

    Hello,
    <u><b>I need to build a NE, NOT EQUAL <>  in an InfoPackage</u></b>
    I need to exclude some DataSets from beeing loaded.
    The DataSets to be excluded can be distinguished by a
    certain value of a an InfoObject.
    For example:
    All DataSets with  0COMPANY_CODE NOT EQUAL "0001" should not
    be loaded.
    How can I set in the InfoPackage DataSelection a filter
    to exclude some DataSets ?
    Thank You
    Martin Sautter

    Hello Chitrarth Kastwar ,
    basically it would be a trivial task in SQL ....to code :
    <i>
    SELECT *
    FROM
    WHERE  0COMP_CODE not in '0001'
    </i>
    or
    <i>
    SELECT *
    FROM
    WHERE  0COMP_CODE =  '0030'
    OR          0COMP_CODE =  '0040'
    OR          0COMP_CODE =  '0050'
    </i>
    .. but thats BW  - It generates much turnaround for consultants :).
    Thread
    /community [original link is broken] threadID=507511&tstart=0
    seems to be something like this.
    ...I get the following Conversion Routine for Type 6:
    <i>
    program conversion_routine.
    Type pools used by conversion program
    type-pools: rsarc, rsarr, rssm.
    tables: rssdlrange.
    Global code used by conversion rules
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
        InfoObject      = ZVPUNITH
        Fieldname       = /BIC/ZVPUNITH
        data type       = CHAR
        length          = 000045
        convexit        =
    form compute_/BIC/ZVPUNITH
      tables   l_t_range      structure rssdlrange
      using    p_infopackage  type rslogdpid
               p_fieldname    type rsfnm
      changing p_subrc        like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
    data: l_idx like sy-tabix.
              read table l_t_range with key
                   fieldname = '/BIC/ZVPUNITH'.
              l_idx = sy-tabix.
              modify l_t_range index l_idx.
              p_subrc = 0.
    $$ end of routine - insert your code only before this line         -
    endform.
    </i>
    Because I have to exclude 1 value out of 5 I can also include 5 values in the
    selection criteria connected with OR
    This means I have to use an OR only.
    Is it possible with l_t_range to state this and how ?
    Thank You
    Martin Sautter

  • Abap routing in infopackage data selection

    Hi guys
    I'm using an ABAP routin for the Data selection in my infopackage. I want to fetch all the records which is having value Less than 'IN14' for company code.I have modifuied the l_t_range as shown
              l_t_range-sign = 'I'.
              l_t_range-option = 'LT'.
              l_t_range-low = 'IN14'.
              modify l_t_range index l_idx.
    But while executing, its giving the followinf error message.
    "For sel. field 'COMP_CODE', no selection with SIGN = 'I'; OPTION 'LT' allowed"
    Does anybody knows what should be done for this?
    Regards
    Sriram

    Hi Sriram,
    Instead use an OLAP variable to achieve the results you want.
    But first check what are the selection oprions supported by your data source in the table <b>ROOSFIELD</b> in your source system.
    Bye
    Dinesh
    Message was edited by: Dinesh Lalchand
    Message was edited by: Dinesh Lalchand

  • ABAP Code Date Selection for InfoPackage Scheduler

    Hello Group
    I need to automate the selection of valid condition records for an extraction that have a From and To date range.
    I noticed there is an option (Routine for time interval) to write ABAP code along with a template that is available in the InfoPackage.
    I think the logic for the selection would be any record
    Valid from       <= today
    Valid to           >= today
    Can anyone help with the ABAP code?
    The template is as follows:
    program conversion_routine.
    Type pools used by conversion program
    type-pools: rsarc, rsarr, rssm.
    tables: rsldpsel.
    Global code used by conversion rules
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   ...
    $$ end of global - insert your declaration only before this line   -
    form compute_time_dependent_dates
      changing p_datefrom type d
               p_dateto   type d
               p_subrc like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
              p_datefrom =
              p_dateto   =
              p_subrc = 0.
    $$ end of routine - insert your code only before this line         -
    endform.
    Thank You for your help!!
    Frank

    I resolved the problem . I have changed the order of read table l_t_range because I need the header .
    In the loop at datos I add the line l_t_range-iobjnm = 'ZXGE_UNO'.
    The problem wasn't the call RFC it was that I built l_t_range bad. I need the infoObject name.
    This is correct!!
    READ TABLE L_T_RANGE WITH KEY
             FIELDNAME = '/BIC/ZXGE_UNO'.
    LOOP AT DATOS.
          L_T_RANGE-FIELDNAME = '/BIC/ZXGE_UNO'.
          L_T_RANGE-IOBJNM = 'ZXGE_UNO'.
          L_T_RANGE-SIGN = 'I'.
          L_T_RANGE-OPTION = 'EQ'.
          CONCATENATE '00' DATOS-WA+3(4) INTO L_T_RANGE-LOW.
          APPEND L_T_RANGE.
        ENDLOOP.
    *READ TABLE L_T_RANGE WITH KEY+
    +*FIELDNAME = '/BIC/ZXGE_UNO'.+
    +*    L_IDX = SY-TABIX.+
    +*    MODIFY L_T_RANGE INDEX L_IDX
    Thanks a lot
    Ana

  • Data Selection tab in infopackage

    Hi Gurus
    Its a very basic question but can anybody tell me what function the "data selection " Tab does in infopackage?
    I know the setting required on R3 side for that but not sure why we use the data selection.
    Can we use this data selection for master data as well?

    Hi Kris,
    Data Selection tab allows you to select: date ranges, document numbers and the like.
    In order to have filds in there, you should first select in the DataSource in the R/3 side wich field could be selected.
    If it is a Generic DataSource, you can do it running RSO2 transaction code.
    <text removed by moderator>
    Claudio
    Message was edited by: Matthew Billingham

  • Data selection in infopackage

    hi,
    I have to create a info package whicah can load data from last saturday of april 07 to last friday of the may07.
    if i m sheduling the info pack on 1 june it must load data from 28th april to 25th may.
    please help i m not good in coding.
    any help would be appreciated.

    I GOT THE CODE
    data: l_idx like sy-tabix.
    DATA: lv_calday1 LIKE /BI0/SDATE-DATE0,
          lv_calday2 LIKE /BI0/SDATE-DATE0.
    DATA: lv_day TYPE DATS,
          l_day(8) TYPE N.
    $$ end of global - insert your declaration only before this line   -
        InfoObject      = 0CALDAY
        Fieldname       = KDAY
        data type       = DATS
        length          = 000008
        convexit        =
    form compute_KDAY
      tables   l_t_range      structure rssdlrange
      using    p_infopackage  type rslogdpid
               p_fieldname    type rsfnm
      changing p_subrc        like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
    DATA: l_days(1) TYPE C.
    "previous month
    lv_day = SY-DATUM.
    lv_day+6(2) = '01'.
    lv_day = lv_day - 1.
    lv_calday1 = lv_day.
    DO.
      CALL FUNCTION 'DATE_COMPUTE_DAY'
        EXPORTING
          DATE          = lv_calday1
        IMPORTING
          DAY           = l_days.
      IF l_days = '5'.
        EXIT.
      ENDIF.
      lv_calday1 = lv_calday1 - 1.
    ENDDO.
    lv_day+6(2) = '01'.
    lv_day = lv_day - 1.
    lv_calday2 = lv_day.
    DO.
      CALL FUNCTION 'DATE_COMPUTE_DAY'
        EXPORTING
          DATE          = lv_calday2
        IMPORTING
          DAY           = l_days.
      IF l_days = '6'.
        EXIT.
      ENDIF.
      lv_calday2 = lv_calday2 - 1.
    ENDDO.
    READ TABLE l_t_range with key fieldname = p_fieldname.
    IF sy-subrc = 0.
        l_idx = sy-tabix.
        MOVE lv_calday2 TO l_t_range-low.
        MOVE lv_calday1 TO l_t_range-high.
        MOVE 'I' TO l_t_range-sign.
        MOVE 'BT' to l_t_range-option.
        MODIFY l_t_range from l_t_range TRANSPORTING low high option sign
                                        WHERE fieldname = p_fieldname.
    ENDIF.
    p_subrc = 0.

  • Data Selection in Infopackage not picked.

    Hi,
    I have a generic datasource. I have data selections in the Infopackage. Say, I have Data selection for Plant as "5000". But, data for all Plants are getting pulled for all Plants. Why is this Selection not picked ?
    Thanks.

    hi, what type of datasource is yours.. is the selection parameter handled in the definition of ur datasource?

  • Data Selection in Init Infopackage

    Hi All
    I want to schedule a Delta Upload on a ODS to load data to another ODS
    For this i created a init load infopackage. I want to give some Data Selections for load. But in the Data Selection Tab I am  unable to see any selection options
    The same infopackage if i select Full upload I can see the Selection options how do i get all these selection options in init infopackage aswell.
    Regards
    Akshay Chonkar

    Hi Akshay,
    You Cant have a Dataselection option in Initiazation option, however, you if you still want to have a Dataselection option as you wish (Say Document posting date from -to) in delta from ODS 1 to ODS2. You can change the update rule for the By writting a routine or can give the create your rule for selection of your own selection. but i am not sure youcan use ranges
    (From- to) in update rule.
    Reward points if helpfull
    Regards
    Hari

  • Data selection in infopackage to exclude 3 values

    Hi,
    I want to exclude 3 values for ZCOUNTRY field in the data selection of an infopackage. I don't want to do this using start routine(in transfer structure or update rules). I just need to do the coding in infopackage level. Can anybody plz tell me the ABAP coding for this in detail?
    Thanks,
    Chandan

    Hi,
    correct, but once you have defined an ABAP routine in your IPack for the country (select type 6 "ABAP" in the IPack selection of the country) why not to exclude the countries directly?
    I've never had this req but the hereunder should work (it should exclude countries US and CA from the selection)
    data: wa_range LIKE rssdlrange.
    READ TABLE l_t_range with key fieldname = 'COUNTRY'.
    MOVE l_t_range-iobjnm TO wa_range-iobjnm.
    MOVE l_t_range-fieldname TO wa_range-fieldname .
    MOVE 'E' TO wa_range-sign.
    MOVE 'EQ'    TO wa_range-option.
    MOVE 'US' TO wa_range-low.
    CLEAR l_t_range-high.
    APPEND wa_range TO l_t_range.
    MOVE 'CA' TO wa_range-low.
    APPEND wa_range TO l_t_range.
    p_subrc = 0.
    hope this helps...
    Olivier.

Maybe you are looking for

  • ITunes to iPad syncing problems

    I just received an iPad 1. iTunes won't sync my ENTIRE library onto the iPad ~ any suggestions?, I just received an iPad 1. iTunes won't sync my ENTIRE library onto the iPad ~ any suggestions?

  • Apple blinks/shuts off

    I have searched the forum and didn't find the same problem i had, only similar. my ipod doesnt power on. when i reset the ipod the apple logo comes on for 10 seconds blinks and two seconds later powers off. i can hear the ipod shut down. I am able to

  • Mark all line in alv tree

    HI I'm using alv list tree  and the problem is that the user can mark the all line (node or item ) just when he choose on the folder (icon ) and can choose for the text and not all the line is marked (this is confusing for the user since when he mark

  • PS CS4: Straight, hard lines instead of soft curves, history problems?

    Hi, sometimes Photoshop (Intuos 4, AMD Phenom2 X6 [email protected]) draws a hard line at full pressure instead of a soft, dynamic curve. It simply connects the starting and ending point. Painting ia 20000x14000@16GB Ram with PS using 12GB, painting

  • Can't Run iTunes After The 6.0.3 Update

    Hello, When I start iTunes, it crashes and it gives the following error: http://img526.imageshack.us/img526/9245/itunes7hx.png The error is in Turkish language, i couldn't translate it but it's the same Windows XP error message.. I tried reinstalling