How to track request wise data in infoobj

I have a data target(GMATERIAL, info object which is acting as a DT)
I want to track the data in the data target as request wise.
But, it is showing all the data in the text table.
I need only 11 records which are updated in one request.
Is this possible?
Thanks,
shankar.

Hi murali
thanks for ur answer
it is a delta load.
at PSA level it has 24 records and in the transformations there is a end routine.
so in psa i'm able to see the 24 records.
But, in the target it is updating only 11 records. I want to see those 11 records and i need to verify the end routine.
Thanks
Shankar

Similar Messages

  • In RSRT - Is it possible to check request wise data in RSRT only.

    Hi,
    In RSRT - Is it possible to check request wise data in RSRT only.
    Kindly advise me on the same.
    Thanks
    Bujji

    Saveen,
    Here is my problem.
    I have a infocube in which Material No and Base Unit are there.
    I have a DSO in which Material, (Alternate unit, Numerator and Denominator) which are associated to that material are there .
    I need to match the same material number from both infocube and DSO and load the associated Alternate unit, Numerator and denominator in the infocube.
    Since the infocube is non cumulative, I am not able to build Infoset.
    So I added the Infoobjects of (Alternate unit, Numerator and Denominator) to the cube.
    Now the cube has Material no, base unit-------For Both data is filled.
             and extra Alt unit, Numerator and Denominator- For these data empty.
    I need to load the alt unit Numerator and denominator from the DSO for which the Material no matches with the Infocube.
    I am not very good in explanation.Hope u understand. Pls adjust with the long text...
    Pls help me.
    Thanks.
    Guru

  • How to track repeting record data using BAM in biztalk

    Hi All,
      am new bam, How can How to track repeting record data using BAM in biztalk,please find the below input record
    <ns0:Employee xmlns:ns0="http://BizTalk_.Employee.Schemas.emp_In">
      <Emp>
        <id>122</id>
        <sal>222222222</sal>
        <name>.srinu</name>
        <dept>java</dept>
      </Emp>
       <Emp>
        <id>666</id>
        <sal>44444444</sal>
        <name>.srinu</name>
        <dept>java</dept>
      </Emp>
       <Emp>
        <id>333</id>
        <sal>7777</sal>
        <name>.biztalk</name>
        <dept>C#</dept>
      </Emp>
    </ns0:Invoice>
    am tried using TPE but its showing all the 3 rows as NULL  in bam primary import database.
    So please let know how can i achieve above issue.
    Regards,
    srinivas

    Hi Srinivas,
    Using TPE you cannot process repeating records. It doesn’t allow you to loop through your InvoiceDetails (repeating record), hence it shows null in tracked record. This
    is one of the limitations when you use TPE.
    This can be done using BAM API. If you use Orchestration or by writing a custom pipeline component you can use BAM API where you have the flexibility to loop through the
    repeating record and insert each InvoiceDetails node as a record in your BAM activity. BAM API is the only option to track repeating items inside a message as separate activity instances.
    Refer this MSDN article for more info:http://msdn.microsoft.com/en-us/library/aa559527.aspx
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • How to get hour wise data in report?

    Hi gurus,
                  I have one requirement in front end like retrieving data in hour wise suppose like 12.30pm - 4.30pm transaction sales data into the report since i have option to get only up to day wise data. Please do give me the relevant answers where do i need to do change?.
    Thanks
    Bharath

    Hi Saravana
    I am sure you must be getting the values in tables of table parameters from every FM.
    consolidate the values from tables of all FMs in one table and built ALV for that table only.
    I hope this way you can show the actual data in ALV.
    thanks
    Lalit

  • How to track the Modified Data-Please help

    Hi Gurus,
    Background about the issue.... We have Customers and Customer Tier on Siebel On Demand. Every month after bookings are done customer tier is modified depending on the reveune genrated by the customer. Say for example ....Customer XXX was under 'A' but due to bad bookings for the month now they are degraded 'B'. Like this we get a list of customer tiers for the month of all customers and are uploaded in to Siebel.
    Now the challenge for me is while reporting in Analytics... how to retain the previous value. For example...For Customer xxx the customer tier was A in Aug and is modified as B in September. I want retain the previous value in my reports....
    In one of the Siebel Query documents i saw that PRE <'Field Refrence'> syntax holds the previous value of the field ..But it did not work in my case...
    Any suggestions to retain the old value after doing modifications..
    Thanks for the help.
    BK

    BK,
    My suggestion would be to write workflows that capture the data when it changes into the task description e.g.
    PRE(CustomerTier) <> (CustomerTier) creates a task that puts (Customer Tier into the description)
    then using the Task created date reflect that in the activity report.
    cheers
    Alex

  • How to retrieve Request Form Data in OIM 11g for SOA workflows

    Hi,
    I have a business requirement wherein, I need to retrieve a field's value inside my SOA composite for further processing and decide on the Approver of the Request. Say for e.g. I'm having a field *"Country"* inside my Request Form, and what i need to do is, as soon as the request form is submitted, I need to retrieve the value for *"Country"* attribute inside my SOA Composite using Payload, and further process it. This scenerio is with respect to provision an application instance to a user.
    Now, in a similar scenario, where I was trying to create a user of type *"Contractor"*, I had used Request Service Api to retrieve the Basic information of the userform submitted, and decide on approval. Fortunately, the basic data like, First Name, Last Name, Login etc was successfully being fetched from the Request and I was able to perform further operations.
    Unfortunately, the same code which was working for Creation of a User, is not working when I'm trying to provision an application instance to the user.
    Below is the code which worked fine for me to retrieve basic request data for user creation, and isn't working for provisioning application instance:
    RequestService reqSvc = (RequestService)oimClient.getService(RequestService.class);
    String reqId = ((oracle.xml.parser.v2.XMLElement)getVariableData("inputVariable", "payload", "/ns3:process/ns4:RequestID")).getText();
    System.out.println("request ID: " reqId);+
    Request req = reqSvc.getBasicRequestData(reqId);
    List <RequestEntity> targetEntities = req.getTargetEntities();
    System.out.println("targetEntities : " targetEntities);+
    System.out.println("------------");
    for (RequestEntity rea : targetEntities)
    +{+
    List <RequestEntityAttribute> attributes = rea.getEntityData();
    for( oracle.iam.request.vo.RequestEntityAttribute attribute : attributes)
    +{+  
    System.out.println("Attribute.getName() : " attribute.getName().toString());+
         if(attribute.getName().equals("User Manager"))
         +{+
    beneficiaryManagerKey = attribute.getValue().toString();
         System.out.println("User Manager : " beneficiaryManagerKey);+
    +}+
         e+lse if(attribute.getName().equals("User Login"))+
         +{+
    userid = attribute.getValue().toString();
         System.out.println("User Login  : " userid);+
    +}+
    +}+
    +}+
    Any pointers to this would be of a great help.
    Regards

    List <RequestEntity> targetEntities = req.getTargetEntities();
    System.out.println("targetEntities : " + targetEntities);
    System.out.println("------------");
    The above piece of code retrieves the attributes and their values from the request form while creating a user, but not from the request form, which provisioning a resource to a user.
    Regards,

  • How to display week wise data in ssrs report

    Hi,
    I want my report to fetch data from Financial year starting to till date.
    i.e Apr 2013 to till date.
    till date means Today() minus 8 days and @Fromdate includes last week of march also
    i.e Mar 29 2013 to Apr 4 2013 - this week data will also be included
    So data from Mar 29 2013 - Apr 4 2013  to today() minus 8 days need to be displayed
    How to fetch data for this.
    Pls advise.The column corresponding to this looks like "2013-11-01 ~~ 2013 - 11- 07"

    Hi, Well your requirement is very vague. I would probably have you create a calendar table according to your requirements and use it in your dataset. If you could better explain this with an example we could help you a lot better.
    Hope this helps.......
    Ione

  • How to Display Page wise Data

    Dear friends,
    I am displaying my reprot in ALV GRID display but as per new requirement my client want that it should be dealer wise means the dealer should come on top of page and its customer data below that heading after all customers the totle should come and when dealer change it should appear on the new page.
    Can any body tell me hw to do this.
    Thanking you all in advance,
    Navin

    HI
    navin this code might help u this code triggers a pge break at every new date
    *& Report Y_TOP_PAGE *
    REPORT y_top_page .
    TABLES : mara.
    TYPE-POOLS: slis.
    DATA : w_repid LIKE sy-repid.
    w_repid = sy-repid.
    DATA : BEGIN OF it_mara OCCURS 0,
    matnr LIKE mara-matnr,
    END OF it_mara.
    *layout
    DATA: wa_layout TYPE SLIS_LAYOUT_ALV.
    *field catalog
    DATA: it_fieldcat_wrt_off TYPE slis_t_fieldcat_alv,
    wa_fieldcat_wrt_off TYPE slis_fieldcat_alv.
    START-OF-SELECTION.
    SELECT matnr FROM mara INTO CORRESPONDING FIELDS OF TABLE it_mara.
    END-OF-SELECTION.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    i_program_name = w_repid
    I_INTERNAL_TABNAME = 'IT_MARA'
    i_structure_name = 'IT_MARA'
    I_CLIENT_NEVER_DISPLAY = 'X'
    I_INCLNAME = w_repid
    I_BYPASSING_BUFFER =
    I_BUFFER_ACTIVE =
    CHANGING
    ct_fieldcat = it_fieldcat_wrt_off[]
    EXCEPTIONS
    inconsistent_interface = 1
    program_error = 2
    OTHERS = 3
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = w_repid
    i_callback_top_of_page = 'TOP-OF-PAGE'
    is_layout = wa_layout
    it_fieldcat = it_fieldcat_wrt_off
    TABLES
    t_outtab = it_mara
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Form TOP-OF-PAGE *
    ALV Report Header *
    FORM top-of-page.
    *ALV Header declarations
    DATA: t_header TYPE slis_t_listheader,
    wa_header TYPE slis_listheader,
    t_line LIKE wa_header-info,
    ld_lines TYPE i,
    ld_linesc(10) TYPE c.
    Title
    wa_header-typ = 'H'.
    wa_header-info = 'CHANDU REPORT'.
    APPEND wa_header TO t_header.
    CLEAR wa_header.
    Date
    wa_header-typ = 'S'.
    wa_header-key = 'Date: '.
    CONCATENATE sy-datum+6(2) '.'
    sy-datum+4(2) '.'
    sy-datum(4) INTO wa_header-info. "todays date
    APPEND wa_header TO t_header.
    CLEAR: wa_header.
    Total No. of Records Selected
    describe table it_ekko lines ld_lines.
    ld_linesc = ld_lines.
    concatenate 'Total No. of Records Selected: ' ld_linesc
    into t_line separated by space.
    wa_header-typ = 'A'.
    wa_header-info = t_line.
    append wa_header to t_header.
    clear: wa_header, t_line.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = t_header.
    i_logo = 'Z_LOGO'.
    ENDFORM. "top-of-page
    if it is helpfull plzz reward
    dont forget to reward if ti is usefull
    for any further quiries contact me on [email protected]

  • Year Wise Data in SQL Express

    Hi...
    Can any one help for How to maintain year wise data in sql server. 
    In my project i manage year wise data i.e 1st April to 31 march.
    At the end of the year the current year closing balances need to update as opening balance for the next year and previous data wont be changed.
    And i dont know how to  create year wise folders in one database....
    Please show me some suggestion...

    Hi
    According to your description, we got that you want to manage year wise data in one database. You can try to create a partitioned table with a Year column to store all the data. The partitioning feature is supported in SQL Server 2005 and later versions of
    SQL Server. There are four major steps for implementing partitioning.
    1. Create a filegroup or filegroups and corresponding files that will hold the partitions specified by the partition scheme.
    2. Create a partition function that maps the rows of a table into partitions based on the values of a specified column.
    3. Create a partition scheme that maps the partitions of a partitioned table to the new filegroups.
    4. Create or modify a table and specify the partition scheme as the storage location.
    For how to create a partitioned table, please review the following links:
    Create Partitioned Tables and Indexes:http://msdn.microsoft.com/en-us/library/ms188730.aspx
    Creating a table with horizontal partitioning in SQL Server:
    http://www.mssqltips.com/sqlservertip/1796/creating-a-table-with-horizontal-partitioning-in-sql-server/
    Thanks
    Lydia Zhang

  • How to track Transport request released

    hi Experts,
    How to track Transport request released from one development system (D01)to another
    development (D02).
    is there any way we get know .
    Amit

    Hi,
           From SE09 & SE10 you track the transport requests, and even you can find the transport request details from the following database tables.
    E070                             Change & Transport System: Header of Requests/Tasks
    E070A                            Change & Transport System: Attributes of a Request
    E070CREATE                       Change & Transport System: Creation Date of Request
    E070DEP                          Change & Transport System: Dependencies of Requests
    E071                             Change & Transport System: Object Entries of Requests/Tasks
    E071C                            Change & Transport System: Client-Specific Lock Flag
    E071E                            Lang. Transport: Positive List for Generic Object Selection
    E071K                            Change & Transport System: Key Entries of Requests/Tasks
    E071KC                           Change & Transport System: Key Entries of Requests/Tasks
    E071KF                           Change & Transport System: Nametab Info. on (CHAR)Key Fields
    E071KFINI                        Change & Transport System: Nametab Info. on (CHAR)Key Fields
    E071K_30                         Change & Transport System: Key Entries of Requests/Tasks
    E07T                             Change & Transport System: Short Texts for Requests/Tasks

  • How can we view the data asociated with Request ID

    Hi All,
    I have data loaded in an ODS there are multiple files loaded in this ODS. Now i want to view data for a perticuler request OR i want to know how can we know the data associated with a perticular request.
    Please help me out.
    Thanks & Regards
    Amit Kumar

    Copy the request number (not request ID) from the ODS manage screen, Goto RSRQ give the request number and execute. it shows the monitor screen- now goto PSA from the top and check the data. But this possible only if you are loading data to PSA also along with ODS.
    Otherwise, Goto Display Data of ODS from the right click on it -- in the selection screen give the Request ID that you want to check the data. Then it displays only that request data.
    Hope this helps.
    Veerendra.
    Edited by: denduluri veerendra kumar on Dec 1, 2009 12:40 PM
    Edited by: denduluri veerendra kumar on Dec 1, 2009 12:43 PM

  • How to track the flow of Sharepoint SSRS report requests to troubleshoot slowness

    How to track the flow of requests of Integrated SSRS report links in Sharepoint.
    We are using SSRS with Sharepoint for reporting purpose. The issue is some of the reports get generated fast and some other reports generation is very slow. When the sql query of these reports RDL file is executed, the records are shown fast.
    Also even on clicking the "Add Subscription" link of "Manage Subscriptions" of a report is very slow for some reports, while it is fast for other reports.
    I tried enabling SQL profiler to track the requests.  I have checked profiler log for the SQL statements with exec sp_executesql. But they are not helpful.
    Pls advice on how to track the request of flow of SSRS report request in sharepoint and how to troubleshoot the slowness in  "Add Subscription" link, response of some reports.

    Hi Pradeesh,
    According to your description, my understanding is that you want to track SharePoint SSRS report requests to troubleshoot the performance.
    Developer dashboard is very help full while troubleshooting the issues related to performance in SharePoint 2013.  You can have a try.
    About Developer dashboard, you can refer to the links:
    http://www.sharepoint-journey.com/developer-dashboard-in-sharepoint-2013.html
    http://msdn.microsoft.com/en-us/library/office/ff512745(v=office.14).aspx
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How can i request an input of data from a deployed web service via a html

    Hi all, I am currently having trouble with a web service. I want a client to be able to input a numerical value for a control in a deployed VI.
    At present i have one main vi that generates a signal and i've collected waveform data and displayed this data on a a chart. The web service uses a static folder containing html and javascript files. The html file calls the js file which parses the waveform data and returns to html to be stored as a chart_div. I have all the controls and indicators in one VI, connected by terminals using GET method.
    I am looking for a way of scripting a request form so that when called by the html file, the client user can input a control and change the values on the waveform graph. I also have an update button that requests updated data. 
    If anyone could suggest a method of how to accomplish this it would be SO helpful
    Thanks, Chris

    Hi Chris,
    I take it you are using the RESTful API method to GET the data. In that case you shoul be able to perform a http POST from your js code in order to update the controls.
    This could be done as form components are updated, or after a submit button is pressed (I'm sure you are familiar with this part).
    Please see here for more information: http://zone.ni.com/reference/en-XX/help/371361J-01​/lvhowto/build_web_service/
    I hope this helps.

  • How to track the flow of data from R/2 to BI ?

    Hi Experts,
    Question: How to track the flow of data from R/3 to BI ?
    I want to load master data from R/3 to BI. In BI, i create an infopackage to load data from R/3. Under processing tab i set it as "PSA and then in the InfoObject (package by package)". Its a Full update.
    Now, i start the update to InfoObject. The load goes on well.
    Now, i want to track the flow of data from the master data table in R/3 to Datasource in R/3 then Extractors and then in the PSA in BI and then till the InfoObject. That is the complete flow of data from source table (in R/3) to Target table (in BI).
    Please help me know how this can be done. (For example lets take cost element master data)
    Regards,
    Suraj S Nair

    Hi,
    Data flow :
    BW :
    When u right click on the Master Data Info object -> Select Data flow.Then  it will  show u the details like DS name,IS (If 3.x)
    Once u know the DS then you need to find out the source tables for the R/3 DS.This information will get using ROOSOURCE or ROOSFIELD tables  or help.sap.com.
    My suggestion better to search in Help site for DS source tables.
    DS Tables :
    The following link will provide you the source tables for some of the LO DS.
    https://wiki.sdn.sap.com/wiki/display/BI/BWSDMMFIDATASOURCES
    Regards
    Ram.
    Edited by: Ramakanth Deepak Gandepalli on Dec 22, 2009 9:29 AM

  • How to track the transport request number for the Role/Composit Role

    Hi,
    How to track the transport request number for the Role/Composit Role.
    Thanks,
    Ravi

    Use transaction SE03 Transport Organizer Tools
    Execute "Search for Objects in Requests/Tasks" with objects of types:
    R3TR     ACGR     Role
    R3TR     ACGT     Role - User assignment
    Regards

Maybe you are looking for