How SID table will get the data?

Hi,
Any one can please let me know, how the SID table will get the data. I am not able to trace.
Thanks in Advance.
Regards,
Suree.B

Hi
SID will not have data it will only contains data
when the masterdata loads it will also create corresponding SID's  which can be later used to link master data table to fact table
cheers,
Swapna.G

Similar Messages

  • ON WHICH TABLE WE WILL GET THE DATA

    HI
    I WANT TO KNOW ON WHICH TABLE WE GET THE  INFORMATON OF LOANS AND ADVANCES
    AND WHAT INFORMATION I HAVE TO GIVE A ABAPER SO THAT HE WILL PREPARE A REPORT ON SUNDRY ADVANCES  AND DEPOSITS
    ITS URGENT
    THANHS IN ADVANCE

    Hi Santosh,
    I am not sure whether you want the tables for HR loans and Advances to Staff or Loans in the Treasury Module. However, i have included all the tables for both modules.
    DIV01 - Loans: External usage types of a rental unit
    PA0045 - HR Master Record: Infotype 0045 (Company Loans)
    T506D - Conditions for Employee Loans
    T506R - National Reports and Screens for HR Loans
    T506S - HR Loans: Value Date for Each Payroll Area
    T5G70 - Official Rates for Beneficial Loans
    T5M_LO_INTERFACE - Loans: Relationship: WT & Pseudo-Split and Generated WT
    T7INJ1 - HR-IN: Section 24 details for Housing Loans
    T7INJ3 - HR-IN: Loans Dusbursement Schedule
    T7INJ5 - HR-IN: Loans Dusbursement Schedule
    TDA12 - Loans master data field control
    TDLOANFUNC - Flow Types per Application Subfunction for Loans
    TDMAHNS_MAN - Loans: Manual Dunning Level
    TDMAHNS_MANT - Loans: Text for Manual Dunning Level
    TDPZB - IS-IS Loans installation parameters for company codes
    TDPZZ - IS-IS Loans: Installation parameters on client level
    TDUSEREXIT14T - Pushbutton Text for Loans Master Data Tabstrip(User Exit 14)
    TVZ05 - Inc. Pmnts: Editing per Activity Type (Loans, Real Estate)
    VDARL - Loans
    VDARL_EU - Loans: Currency Data Before EURO Conversion
    VDDAB - Data Transfer - Loans - Flows - Actual Records
    VDDAST - TR-EDT: Transfer Loans
    VDDUNNPARAMETER - Parameters of Dunning Run for Treasury Loans
    VDHINT - Loans interested parties
    VDKOKO_EU - Condition Header Data Before EURO Conversion (Loans)
    VDKOPO_EU - Condition Item Data Before EURO Conversion (Loans)
    VDORDER_EU - Order Data for Borrower's Note Loans Before EURO Conversion
    I hope the above helps.
    Do not forget to award the points please.
    Regards,
    Jacob

  • How to approach in getting the dates for the user given periods

    Hi All,
    I have areuirement where the calendar would be like as 466 for a period
    for eg. period 1(Jan) has 4 weeks
    period 2(Feb) has 6 weeks
    period 3(Mar) has 6 weeks
    again period 4(Apr) has 4 weeks
    period 5(May) has 6 weeks
    period 6(June) has 6 weeks
    How to get the dates (from date and end date) for the periods.
    Anybody's help will be appreciated
    Regards
    Saugata

    I have areuirement where the calendar would be like as 466 for a periodWhat does that mean? Is 466 the format of the data?
    The end date depends on the start date. This query might be helpful for you
    SQL> WITH data AS(
      2    SELECT 1 period, 4 duration FROM dual UNION ALL
      3    SELECT 2, 6 FROM dual UNION ALL
      4    SELECT 3, 6 FROM dual UNION ALL
      5    SELECT 4, 4 FROM dual UNION ALL
      6    SELECT 5, 6 FROM dual UNION ALL
      7    SELECT 6, 6 FROM dual)
      8  SELECT
      9    period,
    10    duration,
    11    SYSDATE + SUM(duration) OVER (ORDER BY period RANGE UNBOUNDED PRECEDING) * 7 AS end_date
    12  FROM data
    13  ;
        PERIOD   DURATION END_DATE
             1          4 16-NOV-07
             2          6 28-DEC-07
             3          6 08-FEB-08
             4          4 07-MAR-08
             5          6 18-APR-08
             6          6 30-MAY-08
    6 rows selected.
    SQL>

  • How do I to get the date/time stamp back on my texts in ioS7?

    I've looked and looked to find an option and I can't seem to locate one.  Does anyone know how to put the date/time stamp back...?  It does appear in, but not consistently.

    Swipe right to left and they will appear as you need them.

  • How can I will declare the symbol u2018 (Single Quote) in the report

    Hi ,
    Could you please tell me how can I will declare the symbol u2018 (Single Quote) in the report.
    My requirement is that I have concate the data with single quote and after that I have to store the data in to an internal table and I have to download the data in the form text file in the presentation server.
    For example :
    Let the below data I want to download into the presentation serve in the format of text file by storing in internal table.
    Assume all are constants:
    1st line : abcu2019add
    2nd line :  defu2019gef
    Thanks in advance.

    Hi Jyothi,
    Thanks for the quick reply .
    I can agree with you are point but My requirement is like this I am explaining clearly.
    I have declared the internal table like this.
    DATA: BEGIN OF OTAB OCCURS 0,
             LINE (9024),
           END OF OTAB.
    So I have to append the each line item into the internal table.
    So I am explaining what the data I have to append
    Ist line contains
    'UNBUNOC:2020308u2019 where 020308 I will get the  date from reguh table
    2nd line contains:
    'DTM+20020510' where the 20020510 will be reference document number from the table reguh.
    So I want to declare a constant 'UNBUNOC:2
    2nd the date from reguh table
    And another constant u2018
    So that I can concate all the three and I can put into string and I will append into internal table and I can download the data into the presentation server.
    Please let me know if you need any more clarification regarding my requirement.
    Thanks in advance.

  • To Split a variable to get the date.

    Hi all,
        I have a variable 'file1'.This variable stores the names of the pdf files located in SAP directory.
    The name of the file is like:'PDFST0000098357US81042008',
    which containg order no ,sales org, month and date of that file creation.
    Now i have a requirement to extract that  month and year from this variable.
    Also some filenames have different format like'PDFIPF......' instead of 'PDFST.....'.
    so kindly suggest how to extract month and year from this variable.
    Thank You.

    Hi,
    You can use fm STRING_REVERSE to reverse the name of the filename. Then go ahead and extact eight letters of the reversed string and once again reverse that, so at this you will get the date part in DDMMYYYY.
    Again you can manipulate this date string to get back the original date.
    1.  use string_reverse input filename, output reversed string.
    2.  reversedstring+0(8) will extract date part ( reverse ).
    3.  Again reverse this string.
    But seeing at the example, this would be tougher if the date in the filename is not in DDMMYYYY, meaning that if the date is 1st april 2008 then if the date format is DMYYYY(142008), then the logic would go for a toss.
    Thanks and regards,
    S. Chandramouli.

  • OTL I am trying to wright a SQL query that will return the date the timesheet was submitted and date/time it was approved, can anyone guide me on this?

    Hi
    I am trying to wright a SQL query that will return the date the timesheet was submitted and date/time it was approved, can anyone guide me on this?
    I basically need person name who submitted, date - time it was submitted for approval, then the person who approved it and the date - time that it was approved
    Thanks
    Ruby

    Ruby,
    you can start with HXC_TIMECARD_SUMMARY table for submitter detail. But for approver details, i think you need WF tables to get the data for item type HXCEMP.

  • How to get the data from pcl2 cluster for TCRT table.

    Hi frndz,
    How to get the data from pcl2 cluster for tcrt table for us payroll.
    Thanks in advance.
    Harisumanth.Ch

    PL take a look at the sample Program EXAMPLE_PNP_GET_PAYROLL in your system. There are numerous other ways to read payroll results.. Pl use the search forum option & you sure will get a lot of hits..
    ~Suresh

  • How to get the Data type of the Internal Table.

    How can i get the data types used to create an internal table
    TYPES : BEGIN OF t_makt,
              matnr    TYPE    matnr,
              maktx    TYPE    maktx,
            END OF t_makt.
    Like this some function will give me which data types i have used for the internal table at run time.

    Use the FM ..
    data : int_fcat type SLIS_T_FIELDCAT_ALV.
    REUSE_ALV_FIELDCATALOG_MERGE ..
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
           EXPORTING
                I_PROGRAM_NAME         = sy-repid
                I_INTERNAL_TABNAME     = 'IMAT'   <-- this is your internal table
                 I_INCLNAME             = sy-repid
           CHANGING
                CT_FIELDCAT            = int_fcat <--- this contains all the fields along with their characteristics ...
           EXCEPTIONS
                INCONSISTENT_INTERFACE = 1
                PROGRAM_ERROR          = 2
                OTHERS                 = 3.

  • How to get the data from a cluster table to BW

    Dear All,
    I want to extract the data from R/3 to BW by using 2 tables and one Cluster B2.
    Actually my report contains some fields from PA2001, PA2002 and one cluster table B2 (Table ZES). Can I create View by using these 3 tables? If it is not possible how can I get the data from the cluster? Can I create generic datasource by using cluster tables directly?
    In SE11 Transaction the Cluster (table ZES) is showing invalid table.
    I referred some Forums, but no use.
    Can any body tell me procedure to get the data from a cluster (table ZES) ?
    Waiting for you results.
    Thanks and regards
    Rajesh

    HI Siggi,
    Thank you for your reply..
    I am also planning to do FM to get the data. But it is saying that the Cluster table ZES does not exist (ZES is the the standard table, in SE11 also).
    How can I use the Fields from the that table.?
    What can I do now, can you please explain me about this point.
    Waiting for your reply.
    Thanks and Regards
    Rajesh
    Message was edited by:
            rajesh

  • How to get the data from multiple nodes to one table

    Hi All,
    How to get the data from multiple nodes to one table.examples nodes are like  A B C D E relation also maintained
    Regards,
    Indra

    HI Indra,
    From Node A, get the values of the attributes as
    lo_NodeA->GET_STATIC_ATTRIBUTES(  IMPORTING STATIC_ATTRIBUTES = ls_attributesA  ).
    Similarily get all the node values from B, C, D and E.
    Finally append all your ls records to the table.
    Hope you are clear.
    BR,
    RAM.

  • How to get the data from Pooled Table T157E.

    Hi Experts,
    How to get the data from Pooled Table T157E.
    Any help.
    Thanks in Advance,
    Ur's Harsha.

    create some internal table similar to T157E and pass all data as per SPRAS.
    After that use internal table in your program as per the requirement.
    Regds,
    Anil

  • How to get the data from multiple tabes into single table

    hi all,
    here i am having 10 data base tables,how to get the data into a single table.
    regards,
    subba reddy

    hi,
    non XI/PI related
    Regards,
    Michal Krawczyk

  • How to get the data from a table cell

    Could somebody suggest me how I can get the data value from a table cell if I set that cell a Double object previously.
    Thanks very much

    Thanks for camickr's information.
    And thanks uhrand,
    I haven't got it sloved. I am sick on this problem.
    I have the methods to let the table editable. My tableModel code is from Sun Tutorial.
    It has the code like this:
    public int getColumnCount() {
                return columnNames.length;
             public int getRowCount() {
                return data.length;
              public String getColumnName(int col) {
                return columnNames[col];
             public Object getValueAt(int row, int col) {
                return data[row][col];
             * JTable uses this method to determine the default renderer/
             * editor for each cell.  If we didn't implement this method,
             * then the last column would contain text ("true"/"false"),
             * rather than a check box.
            public Class getColumnClass(int c) {
                return getValueAt(0, c).getClass();
             * Don't need to implement this method unless your table's
             * editable.
            public boolean isCellEditable(int row, int col) {
                //Note that the data/cell address is constant,
                //no matter where the cell appears onscreen.
                if (col < 1) {
                    return false;
                } else {
                    return true;
             * Don't need to implement this method unless your table's
             * data can change.
            public void setValueAt(Object value, int row, int col) {
                if (DEBUG) {
                    System.out.println("Setting value at " + row + "," + col
                                       + " to " + value
                                       + " (an instance of "
                                       + value.getClass() + ")");
                data[row][col] = value;
                fireTableCellUpdated(row, col);
                if (DEBUG) {
                    System.out.println("New value of data:");
                    printDebugData();
            public void printDebugData() {
                int numRows = getRowCount();
                int numCols = getColumnCount();
                for (int i=0; i < numRows; i++) {
                    System.out.print("    row " + i + ":");
                    for (int j=0; j < numCols; j++) {
                        System.out.print("  " + data[i][j]);
                    System.out.println();
                System.out.println("--------------------------");
            }

  • How to get the data from one table and insert into another table

    Hi,
    We have requirement to build OA page with the data needs to be populated from one table and on save data into another table.
    For the above requirement what the best way to implement in OAF.
    I understand that if we attach VO object instance to region/page, we only can pull and put data in to only one table.
    Thanks

    You can achieve this in many different ways, one is
    1. Create another VO based on the EO which is based on the dest table.
    2. At save, copy the contents of the source VO into the dest VO (see copy routine in dev guide).
    3. commiting the transaction will push the data into the dest table on which the dest VO is based.
    I understand that if we attach VO object instance to region/page, we only can pull and put data in to only one table.
    if by table you mean a DB table, then no, you can have a VO based on multiple EOs which will do DMLs accordingly.Thanks
    Tapash

Maybe you are looking for

  • OIM 11G R2   Provisioning User to Oracle DB

    Hello Experts, I'm working on OIM 11gr2 and I installed DBAT 9.1.0.5.0 User-->Accounts-->RequestAccounts--> catalog-->add to cart --> checkout ... When i was executed Checkout in catalog why no content for details ? User can't Provisioning to DB. Hav

  • External hard-drive does not reconnect after sleep

    Hi everyone I am trying to use my Energy Saver to SLEEP my iMac after 1 hour. It goes to sleep no problem, but on wake-up, my external USB hard drive does not reconnect. There is also an error message that I didn't disconnect the drive properly. I fe

  • How to create Jframe?

    How to create a basic programme that shows JFrame? Please guide me.

  • Is ios 5.1.1 designed for the 3gs 16gb

    hi there, im new on here please can you help, is ios 5.1.1 ok and designed to run fine on the 16gb 3gs?

  • Sales Scenario

    Hi Experts,                   After raising the sales order, i'm raising A/R down payment invoice and making incoming for that. Now after the production completes, I'm raising the A/R invoice for remaining amount and i'm closing that Invoice by getti