INFO SET Creation in BI7.0

Hi All
Can anyone tell the steps for creation of INFOSETS in BI7.0
Appreciate if sent documents/ppts
Rgds
GK

Hi TTL,
Check the links below.
http://help.sap.com/saphelp_nw04s/helpdata/en/ed/084e3ce0f9fe3fe10000000a114084/content.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/40/04813ee3d32b44e10000000a114084/frameset.htm
Regards,
®

Similar Messages

  • Info Source creation in BI7

    Hi,
    How do i create a master data info source in BI7?
    Please give steps if possible.
    Regards,
    Nomsa

    Hi,
    if you want to do Flexible update you can go for Infosource and in BI7 No need to create infosource, you can directly create Transofmations and DTP from the Datasource to the Infoobject( Datasource->Infoobject).
    To do, Righclick on the Datasource of the infoobject,and choose create DTP. Select Target(infoboject).
    This will propose automatic transformations. Save and activate transformations and DTP. Now you can schedule DTP to load the data to infoobject.
    otherwise if you want to create Infosource.
    1.Choose Infoprovider tab in RSA1, and choose your application component.
    2.Rightclick on the App.Comp. and choose create Infosource.
    3. Use your Datasource as template for the Infosource.
    4. Now infosource creation screen will occur, there activate.
    5. Now, rightclick on your created Infosource and choose create Transformations.
    6.Select Source(by default the target will be the Infosource). Activate the transformations.
    7.Now , you are having the data upto Infosource. Again choose Create Transformations on the Infosource and choose target as your Infoobject and source as your Infosource. activate it.
    8. you can create DTP , by rightclick on the Ifoobject.
    rgrds,
    v.sen.

  • Info set query

    Hello everybody,
    I have a problem with the creation of info set (tcode : sq00 and sq02)
    I need your help, i have to develop a query with a number Purchase Order and number of invoice.
    For example : for a number of invoice : 5105617263
    i have with TOAD (soft) this :
    select distinct ekko.ebeln, rseg.belnr
    from sapsr3.ekko, sapsr3.rseg
    where ekko.ebeln = rseg.ebeln
    and rseg.belnr = '5105617263'
    and ekko.mandt = '350'
    EBELN        BELNR
    4500013374   5105617263
    4500014267   5105617263
    I've tried to have the same result with an info set (sq02) and i have this :
    Purchase Order           Invoice
    4500013374               5105617263
    4500013374               5105617263
    4500013374               5105617263
    4500014267               5105617263
    4500014267               5105617263
    4500014267               5105617263
    4500014267               5105617263
    I dont know to develop in ABAP and i want to know if it's possible to have DISTINCT in an info set ?
    Or which table can i use to have this ?
    Thank you very much

    thanks for your answers.
    <br>
    I tried to create a z programm with tcode SE38 but i dont have the key.
    <br>
    I would like to know if i can write this code on the tcode sq02 ?
    <br>
    this is my code :
    <br><br><br>
    FUNCTION /1BCDWB/IQG000000000487EXTR.<br>
    <br>
    ""Interface locale :<br>
    *"  TABLES<br>
    *"      %SELOPT STRUCTURE  RSPARAMS<br>
    *"      %DTAB STRUCTURE  /1BCDWB/IQG000000000487<br>
    *"  CHANGING<br>
    *"     VALUE(%RTMODE) TYPE  AQLIMODE<br>
    *"  EXCEPTIONS<br>
    *"      NO_DATA<br>
    *"      NO_AUTHORIZATION<br>
    *"      ILLEGAL_PACKAGE<br>
    *"      CURSOR_NOT_OPEN<br>
    <br>
    <br><br><br>
    call function 'RSAQRT_SET_IDENTIFICATION'<br>
    exporting iqid        = %iqid<br>
              sscr_report = sy-repid<br>
    changing  rtmode      = %rtmode.<br>
    <br><br><br>
    if %rtmode-pack_on = space or %rtmode-first_call = 'X'.<br>
       call function 'RSAQRT_FILL_SELECTIONS'<br>
         tables   selopt = %selopt<br>
         changing rtmode = %rtmode.<br>
    endif.<br>
    <br><br><br>
    call function 'RSAQRT_INIT_TEXTHANDLING'    <br>
         exporting class   = 'CL_TEXT_IDENTIFIER'<br>
         wsid    = 'G'<br>
         infoset = 'REQUETE_EBELN'.<br>
    <br><br>
    if %rtmode-no_authchk = space<br>
    and ( %rtmode-pack_on = space or %rtmode-first_call = 'X' ).<br>
    refresh %auth_tabs.<br>
    append 'RBKP' to %auth_tabs.<br>
    append 'EKBE' to %auth_tabs.<br>
    append 'EKKO' to %auth_tabs.<br>
    call function 'RSAQRT_AUTHORITY_CHECK'<br>
          exporting<br>
              auth_tabs         = %auth_tabs<br>
              auth_clas         = 'CL_QUERY_TAB_ACCESS_AUTHORITY'<br>
          changing<br>
              rtmode            = %rtmode<br>
          exceptions<br>
              NO_AUTHORIZATION  = 1.<br>
    if sy-subrc = 1.<br>
       raise no_authorization.<br>
    endif.<br>
    endif.<br>
    break-point.<br>
    <br><br><br>
    data: %l_no_further_fetch type flag, " stop fetching<br>
           %l_hits_cnt         type i.    " cnt for %dbtab entries<br>
    <br><br><br>
       if %rtmode-pack_abort = 'X'.<br>
         if not %dbcursor is initial.<br>
         close cursor %dbcursor.<br>
         endif.<br>
         exit.<br>
    endif.<br>
    <br><br><br>
    if %rtmode-pack_on = space or %rtmode-first_call = 'X'.<br>
          if not %dbcursor is initial.<br>
              close cursor %dbcursor.<br>
          endif.<br>
          open cursor with hold %dbcursor for<br>
          select RBKPBELNR RBKPRMWWR RBKPWAERS RBKPWMWST1 EKBEBELNR EKKOEBELN<br>
          from ( RBKP<br>
               inner join EKBE<br>
                  on  EKBEBELNR = RBKPBELNR<br>
               inner join EKKO<br>
                on  EKKOEBELN = EKBEEBELN )<br>
               where RBKP~BELNR in SP$00001<br>
               and EKKO~EBELN in SP$00002 .<br>
    endif.<br>
    <br><br><br>
    if %dbcursor is initial.<br>
      raise cursor_not_open.<br>
    endif.<br>
    <br><br><br>
    while %l_no_further_fetch = space.<br>
          fetch next cursor %dbcursor<br>
          into (RBKP-BELNR , RBKP-RMWWR , RBKP-WAERS , RBKP-WMWST1 , EKBE-BELNR , EKKO-EBELN ).<br>
          if ( ( %rtmode-acc_check = 'X' and<br>
               sy-dbcnt > %rtmode-acc_number )<br>
              or sy-subrc <> 0 ).<br>
              %l_no_further_fetch = 'X'.<br>
          else.<br>
               check SP$00001.<br>
               check SP$00002.<br>
              call function 'RSAQRT_TEXTFIELD_REFRESH'.<br>
               %dtab-BELNR = RBKP-BELNR .<br>
               %dtab-RMWWR = RBKP-RMWWR .<br>
               %dtab-WAERS = RBKP-WAERS .<br>
               %dtab-WMWST1 = RBKP-WMWST1 .<br>
               %dtab-WAERS001 = RBKP-WAERS .<br>
               %dtab-EBELN = EKKO-EBELN .<br>
               append %dtab.<br>
               %l_hits_cnt = %l_hits_cnt + 1.<br>
               if %rtmode-pack_on = 'X'<br>
                   and %l_hits_cnt >= %rtmode-pack_size.<br>
                    %l_no_further_fetch = 'X'.<br>
                   endif.<br>
              endif.<br>
         endwhile.<br>
    <br><br><br>
    if %l_hits_cnt = 0.<br>
         if not %dbcursor is initial.<br>
          close cursor %dbcursor.<br>
         endif.<br>
         raise no_data.<br>
       endif.<br>
    <br><br><br>
    if %rtmode-pack_on <> 'X'.<br>
          close cursor %dbcursor.<br>
    endif.<br>
    read table %dtab index 1 transporting no fields.<br>
    if sy-subrc ne 0.<br>
         raise no_data.<br>
    endif.<br>
    <br><br>
    endfunction.
    <br><br>
    if i can write this code on the sq02, where i must write this ?  DATA ? INITIALISATION ? START-OF-SELECTION ?
    Thank u very much for your help !
    Edited by: missmiss25 on Oct 23, 2009 10:09 AM

  • Sets creation via GS01

    Hi All,
    Please let me know the sets (GS01) creation and difference between,
    Basic, single and multi set creation option.
    Where we configure set parameters like number ranges, fields etc.
    Thank you,
    Edited by: srav m on May 9, 2008 10:17 PM

    Report Painter Transactions:
    For Creation
    T-code: GRR1
    For Change
    T-code: GRR2
    For Display
    GRR3
    Also used GS01,GS02 and GS03 for maintaining Set Ids.
    To view Set ID view standard SAP report from GRR3
    Double Click on the Area -> Click on continue on the Pop up window
    To view Table execute report for company code
    Click on the area -> Go to Extras -> Go To technical Info
    Rgds,
    Harmees

  • Info Space creation error on top of .unx

    Hi All,
    Version of SAP BO Explorer installed in our machine is 4.0 SP2.
    BI Platform version is 4.0 SP5.
    Issue 1:
    While trying to create Information Space out of .unx, getting the below error:
    Failed to retrieve the data source details.
    The creation of the data source object tree failed.
    No issue in Info Space creation when using Excel as the source.
    Issue 2:
    When trying to use the Personalize option, getting only Partial results.
    Can anyone suggest me on the above 2 issues?
    Thanks & Regards,
    Muthulakshmi R

    Hi H,
    Thanks for your prompt reply!
    Updated Explorer to SP5.
    Now, the screen goes black after providing the login credentials.
    In some machines, able to view the screen.
    But, the option to create Info Space is greyed out.
    Also, once i click on Manage Spaces, the page is getting loaded for sometime finally ends up with the below error:
    Failed to retrieve the data source list.
    Request timed out
    Any suggestions please.
    Regards,
    Muthulakshmi Ramanathan

  • SAP Query Alias Table in Info-set not working

    Hi Guys,
    I'm having a bit of trouble with a query I'm writing in SQ01.
    I am trying to create a standard margin report between two different costing variants that we use.
    n order to do so I have had to employ the use of alias tables.
    I have named the alias tables KEKO_2 and KEPH_2 accordingly and joined them in the info set with the same joins as the original tables (Left Outer to MARC on MATNR and WERKS)
    However, when I have come to test the query in SQ01 I get a runtime error which states the following:
    The following syntax error was found in the program
      AQA0MASTER_DATA=STANDARDMARGIN :
    "Field "KEPH_2-KST001" is unknown. It is neither in one of the specified
    tables nor defined by a "DATA" statement . . . . . . . . . ."
    But it is in a specified table! My alias table.
    How can I make this query work?
    Any help would be appreciated.
    Thanks in advance.

    Hi,
    This is SAP business one reporting and printing forum. Please find correct forum and repost your question to get quick assistance.
    Please close this thread by marking helpful answer.
    Thanks & Regards,
    Nagarajan

  • How to create code for an additional field in an info set

    Hello,
    I have an info set in tra SQ02 and the area is HCM with version ERP2004.
    I need to create an additional field to show "Work permit" in ad hoc queries. I know that the infotype 0016 has a standard field P0016-ARBER which contains a date if that person has a work permit. System should select the latest record or the one which is valid during reporting period.
    The requirement for this new field is that it should just has X if the field P0016-ARBER contains a date (i.e. that person has a work permit). If the field  P0016-ARBER is empty, then the new field "Work permit" is also empty. So, the date itself is not enough.
    I am not an abaper. I have tried to create a code for my field but there is always problems with the code. I have tried without the line<i>into</i> but checker says I need to. I have tried different places for statement ENDSELECT but without success. How should I do this?
    What I have so far is (TYOLUPA = Work permit) is shown below:
    select SINGLE ARBER
    into TYOLUPA
    from PA0016
    where pernr = P0016-pernr
    and ENDDA = '31129999'.
    clear TYOLUPA.
    if ARBER ne ''.
    then TYOLUPA = 'X'.
    endif.
    Thanks for your advice!
    Regards,
    Pipsa

    pia,
    In extras tab  create column "workpermit" in infoset and add that column to Field groups.
    Then under record processing event...
    DATA : TYOLUPA like PA0016-ARBER.
    Under Record processing event.
    select SINGLE ARBER
    into TYOLUPA
    from PA0016
    where pernr = P0016-pernr
    and ENDDA = '31129999'.
    if  TYOLUPA  ne ' '.
      WORKPERMIT = 'X'.
    endif.
    Don't forget to reward if useful...

  • Re:User group,info set and Query combination table

    Hi,
      I would like to know the combination table of User group,info set and Query.
    Can any body please respond to my question?
    Regards,
    Suresh Kumar.

    Hi,
    Check the tables starting with AQG*.
    Reward points if useful.
    Regards,
    Atish

  • Info Set on Transactional ODS

    Hi Friends,
    My Requiement is to create a Info Set on Tannsactional ODS and On this info set i have to create a Bex Query.
    If i creata a Query on this info set whether we can get  all the query properties like currency conversion etc as for the query created on noramal info set which is created on standard ODS.
    Looking for more suggessions and answers.
    Thanks in advance.

    Hi Ashok,
    Thanks for the immediate replay.
    Hear i have to do a lenthi process before doing that ,i an looking for some b'dy who has worked on currency conversions at query level whcih are developed on infosets(i.e on Transactional ODS).
    Once again thanks for the usefull answer.
    Laxman

  • Problem in HR Custom Info Type Creation

    Hi,
    Created custom info type from PM01...
    Activated... This is working fine in the System and Client where I created.
    But its not working from other client..?
    I am getting error by saying that Info Type is not created... All the Structure and PAXXXX table got activated in both Clients.
    Earlier we faced same problem, at that time our team made some changes to info type and probelm resolved.
    I don't know where and what exactly we need to do...
    But,
    One of the problem I identified is,
    We are not getting T591A, T591S tables at Subtype Tab, Subtype text tab in INFOTYPE CHARACTERSTICS.
    I can enter these two from TECHNICAL ATTRIBUTES... but when I generate all aobjects from PM01, these two values getting deleted from INFOTYPE CHARACTERSTICS.
    (Above may be the reason)
    Please let me know if any solution for this.
    Thanks,
    Naveen Inuganti

    Hi Gautham,
    I deleted previous one, Created as your blog says. Still same problem.
    Venkat,
    Yes, you are correct. We need to release the Customizing request which contains Subtype , Subtype Text Tables with Info Type Entries.
    Problem with Info type Creation
    Thanks,
    Naveen.I

  • Info set query condition

    we have a infoset query to generate a list of parked logistic invoices, we use the same vendor and the same T-code : MIR7 to generate park document, but I can see only the park documents generated by my collegue throgh this info set query.
    I can't see the park documents generated by me throgh this info set query, we are using the same T-code MIR7 and same query.
    why this happen? Is someone set the condition of this query, so i can't see the parked document generate by my self. I can see these parked document(both my collegue and mine) through MIR6

    any idea from query design point of view? thanks

  • Re: Info set and query transport under same request number

    Hi,
      I would like to know the details about info set and query transport from development to quality using SAP Query:  Trnasport tool.my quesion is,
    Can i create all info sets and related queries under same request number or will it be created in diffrent request numbers?Please respond any body to my question.
    Regards,
    Suresh Kumar.

    No it is possible as per SAP.
    Please read follwoing help-
    http://help.sap.com/saphelp_nw70/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    It is talking abou the Special Features of InfoCubes in InfoSets.
    For queries based on an InfoSet with an InfoCube, the system decides at runtime whether aggregates can be used for the InfoCube. This is the case if all the required InfoObjects of the InfoCube exist in an aggregate. The following InfoObjects are required:
    The key figures of the InfoCube selected in the query
    The characteristics of the InfoCube selected in the query
    The characteristics required for a join with other InfoProviders in the InfoSet.
    Furthermore, as a prerequisite for using aggregates, all the data required by an InfoCube must be readable using logical access. For an InfoCube within an InfoSet with InfoCubes, it is no longer possible to read part of the data from one aggregate and part of the data from another aggregate or the InfoCube itself.

  • Custom fields of standard info types to be included in Info set query

    Hi All,
    I want to understand if the following scenario is entirely a fucntional config or ABAP efforts are also required.
    A standard info type is already included in the Info set. But the (Z fields) in the Additional fields column of the IT are not visible in Info set for the respective  info type.
    I understand, with T-code SQ02 infotypes can be included in the existing info set, but not aware about the Z fields of a Standard Infotype.
    Hence, please let me know, if there is any config which is required, so that they are reflected in Info set.
    Thank you in Advance.
    Regards
    Simran

    Make sure you have the infoset in edit mode.
    if it is correct you see the addtional fields in the left half of the screen at the infotype.
    Select the field group on the right half of the screen, go to the left half of the screen, select the field you want to add to the fieldgroup with right mouse click and select 'add field to fieldgroup'
    good luck
    Theo

  • Update Shared Column on Document Set creation

    hi,
    I have a cloud business app connected to sharepoint online,
    on certain actions i create a document set in a sharepoint library , the document set i use has a shared column set - i would like to set this value at creation time or just after creation so that any documents added inherit the value.
    from the cloud business app i am using the CSOM to create the document set (based on steven curran's post
    http://sharepointfieldnotes.blogspot.com/2010/06/making-your-sharepoint-2010.html)
    Any ideas?
    Thx

    Hi mrP,
    According to your description, my understanding is that you want to update the shared column on document set creation.
    I suggest you create a workflow to do it.
    You can create the workflow as the below:
    For the workflow Start Options, select “Start workflow automatically when an item is created”.
    After the above, publish the workflow.
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • BC SETS creation and usage for sap mm  point of view

    Hi All,
    Need Information About  BC SETS  creation and usage from sap mm point of view.
    Thanks in advance for sap mm forum guys.
    Regards.
    Parameshwar.

    Hi,
    Customizing settings can be collected by processes into Business Configuration Sets (BC Sets). BC Sets make Customizing more transparent by documenting and analyzing the Customizing settings. They can also be used for a group rollout, where the customizing settings are bundled by the group headquarters and passed on in a structured way to its subsidiaries.
    BC Sets are provided by SAP for selected industry sectors, and customers can also create their own.
    When a BC Set is created, values and combinations of values are copied from the original Customizing tables into the BC Set and can be copied into in the tables, views and view clusters in the customer system. The BC Sets are always transported into the customer system in which Customizing is performed.
    Advantages of using BC Sets:
    1.     Efficient group rollout.
    2.     Industry sector systems are easier to create and maintain.
    3.     Customizing can be performed at a business level.
    4.     Change Management is quicker and safer.
    5.     Upgrade is simpler.
    To create BC sets follow the below step:
    Choose Tools ® Customizing ® Business Configuration Sets® Maintenance in the SAP
    menu, or enter the transaction code SCPR3 in the command field.
    Choose Bus.Conf.Set ® Create.

Maybe you are looking for

  • Only One Photo in a Shared Photo Stream is Displayed

    I have a persistent yet simple problem with iCloud Shared Photo Streams.  Either when I am sent an invitation for a Shared Photo Stream or create one myself the Shared PS properly appears in the iPhoto Photo Stream window and when I hover over the ic

  • Warning Unable to open /opt/coldfusion8/runtime/lib/license.properties

    This error cames up every day in the log files. Do I need a new license or to update? I believe this is version 8. I am aware there are newer versions available. The process appears to stop after a certain number of days with the error being in the l

  • Uninstalling Mac OS X Leopard Server or Reinstalling Mac OS X Leopard

    I've no longer got any need for a server and would like to uninstall it or install Mac OS X Leopard (not Server) over it. Is there any way to do this retaining as much as possible that's unrelated to the server, also without using an external HD. Tha

  • Oracle 10g / 11g is ROLAP/MOLAP/HOLAP?

    Hi Greets, Can any one please tell me whethe the available version of Oracle 10G /11g OLAP is ROLAP or MOLAP or HOLAP. Thanks Anandraj

  • Filterbar or second line on Toolbar for FIlters

    Many users are missing the ratings/pick and Color label filters, etc because they are on the HEader of the Filmstrip and to save Image space they hide it. Hopeing maybe Adobe could make another row on the Toolbar or a Filterbar so one can still hide