Table for rule details.

Hi All ,
I have written a rule in transformations. I want to see the details of rule like description , technical name etc. Is there any table where I can find out these details.
Thanks & Regards,
Rohit Garg

Hi,
RSTRAN - Transformation 
RSTRANFIELD - Mapping of Rule Parameters - Structure Fields 
RSTRANRULE - Transformation Rule 
RSTRANSTEPROUT-  Rule Type: Routine 
RSTRANRULESTEP - Rule Steps for a Transformation Rule 
RSTRANSTEPMAP-  Mapping for Rule Step Within a Rule

Similar Messages

  • Tables for delivery details

    Hi all,
    What are the tables for delivery details.
    What i want exactly is header and lines tables for one Delivery .
    Thanks

    Thanks Nagmohan...
    And i want to know what are the tables get affected and the flow of process from the status to shipp confirm ..
    Can you pls tell me patiently..
    thanks

  • Problem occured when create a tree table for master-detail view objects using SQL queries?

    I am programming a tree table for master-detail view objects using SQL queries and these 2 view objects are not simple singel tables queries, and 2 complex SQL are prepared for master and view objects. see below:
    1. Master View object (key attribute is SourceBlock and some varaible bindings are used for this view object.)
    SELECT  cntr_list.SOURCE_BLOCK,                   
            sum(                   
             case when cntr_list.cntr_size_q = '20'                   
                  then cntr_list.cntr_qty                   
                  else 0 end ) as cntr20 ,                   
            sum(                   
             case when cntr_list.cntr_size_q = '40'                   
                  then cntr_list.cntr_qty                   
                  else 0 end ) as cntr40 ,                   
             sum(                   
             case when cntr_list.cntr_size_q = '45'                   
                  then cntr_list.cntr_qty                   
                  else 0 end ) as cntr45                    
    FROM (       
        SELECT yb1.BLOCK_M as SOURCE_BLOCK,       
               scn.CNTR_SIZE_Q,        
               count(scn.CNTR_SIZE_Q) AS cntr_qty        
        FROM  SHIFT_CMR scm, SHIFT_CNTR scn, YARD_BLOCK yb1, YARD_BLOCK yb2       
        WHERE       
        scm.cmr_n = scn.cmr_n             
        AND (scm.plan_start_dt BETWEEN to_date(:DateFrom,'YYYY/MM/DD HH24:MI:SS') AND to_date(:DateTo,'YYYY/MM/DD HH24:MI:SS')                 
        OR scm.plan_end_dt BETWEEN to_date(:DateFrom,'YYYY/MM/DD HH24:MI:SS') AND to_date(:DateTo,'YYYY/MM/DD HH24:MI:SS'))                 
        AND scm.shift_mode_c = :ShiftModeCode                           
        AND scm.end_terminal_c = :TerminalCode      
        AND scm.start_terminal_c = yb1.terminal_c                  
        AND scm.start_block_n = yb1.block_n                  
        AND substr(scn.start_location_c,(instr(scn.start_location_c,',',1,5)+1),instr(scn.start_location_c,',',1,6)-(instr(scn.start_location_c,',',1,5)+1)) BETWEEN yb1.slot_from_n AND yb1.slot_to_n                  
        AND scm.end_terminal_c = yb2.terminal_c                  
        AND scm.end_block_n = yb2.block_n                  
        AND substr(scn.end_location_c,(instr(scn.end_location_c,',',1,5)+1),instr(scn.end_location_c,',',1,6)-(instr(scn.end_location_c,',',1,5)+1)) BETWEEN yb2.slot_from_n AND yb2.slot_to_n           
        AND scn.status_c not in (1, 11)             
        AND scn.shift_type_c = 'V'             
        AND scn.source_c = 'S'       
        GROUP BY yb1.BLOCK_M, scn.CNTR_SIZE_Q       
    ) cntr_list       
    GROUP BY cntr_list.SOURCE_BLOCK
    2. Detail View object (key attributes are SourceBlock and EndBlock and same varaible bindings are used for this view object.)
    SELECT  cntr_list.SOURCE_BLOCK, cntr_list.END_BLOCK,                
            sum(                     
             case when cntr_list.cntr_size_q = '20'                     
                  then cntr_list.cntr_qty                     
                  else 0 end ) as cntr20 ,                     
            sum(                     
             case when cntr_list.cntr_size_q = '40'                     
                  then cntr_list.cntr_qty                     
                  else 0 end ) as cntr40 ,                     
             sum(                     
             case when cntr_list.cntr_size_q = '45'                     
                  then cntr_list.cntr_qty                     
                  else 0 end ) as cntr45                      
    FROM (         
        SELECT yb1.BLOCK_M as SOURCE_BLOCK,     
               yb2.BLOCK_M as END_BLOCK,  
               scn.CNTR_SIZE_Q,          
               count(scn.CNTR_SIZE_Q) AS cntr_qty          
        FROM  SHIFT_CMR scm, SHIFT_CNTR scn, YARD_BLOCK yb1, YARD_BLOCK yb2         
        WHERE         
        scm.cmr_n = scn.cmr_n               
        AND (scm.plan_start_dt BETWEEN to_date(:DateFrom,'YYYY/MM/DD HH24:MI:SS') AND to_date(:DateTo,'YYYY/MM/DD HH24:MI:SS')                   
        OR scm.plan_end_dt BETWEEN to_date(:DateFrom,'YYYY/MM/DD HH24:MI:SS') AND to_date(:DateTo,'YYYY/MM/DD HH24:MI:SS'))                   
        AND scm.shift_mode_c = :ShiftModeCode                             
        AND scm.end_terminal_c = :TerminalCode        
        AND scm.start_terminal_c = yb1.terminal_c                    
        AND scm.start_block_n = yb1.block_n                    
        AND substr(scn.start_location_c,(instr(scn.start_location_c,',',1,5)+1),instr(scn.start_location_c,',',1,6)-(instr(scn.start_location_c,',',1,5)+1)) BETWEEN yb1.slot_from_n AND yb1.slot_to_n                    
        AND scm.end_terminal_c = yb2.terminal_c                    
        AND scm.end_block_n = yb2.block_n                    
        AND substr(scn.end_location_c,(instr(scn.end_location_c,',',1,5)+1),instr(scn.end_location_c,',',1,6)-(instr(scn.end_location_c,',',1,5)+1)) BETWEEN yb2.slot_from_n AND yb2.slot_to_n             
        AND scn.status_c not in (1, 11)               
        AND scn.shift_type_c = 'V'               
        AND scn.source_c = 'S'         
        GROUP BY yb1.BLOCK_M, yb2.BLOCK_M, scn.CNTR_SIZE_Q         
    ) cntr_list         
    GROUP BY cntr_list.SOURCE_BLOCK, cntr_list.END_BLOCK
    3. I create a view link to create master-detail relationship for these 2 view objects.
    masterview.SourceBlock (1)->detailview.SourceBlock (*).
    4. I create a tree table using these 2 view objects with master-detail relationship.
    When I set default value for variable bindings of these 2 view objects and the matching records exist, tree table can work well. I can expand the master row to display detail row in UI.
    But I need to pass in dymamic parameter value for variable bindings of these 2 view objects, tree table cannnot work again. when I expand the master row and no detail row are displayed in UI.
    I am sure that I pass in correct parameter value for master/detail view objects and matching records exist.
    Managed Bean:
            DCIteratorBinding dc = (DCIteratorBinding)evaluteEL("#{bindings.MasterView1Iterator}");
            ViewObject vo = dc.getViewObject();
            System.out.println("Before MasterView1Iterator vo.getEstimatedRowCount()="+ vo.getEstimatedRowCount());
            System.out.println("Before MasterView1Iterator ShiftModeCode="+ vo.ensureVariableManager().getVariableValue("ShiftModeCode"));
            vo.ensureVariableManager().setVariableValue("DateFrom", dateFrom);
            vo.ensureVariableManager().setVariableValue("DateTo", dateTo);
            vo.ensureVariableManager().setVariableValue("ShiftModeCode", shiftModeC);
            vo.ensureVariableManager().setVariableValue("TerminalCode", terminalCode);
            vo.executeQuery();
            System.out.println("MasterView1Iterator vo.getEstimatedRowCount()="+ vo.getEstimatedRowCount());
            DCIteratorBinding dc1 = (DCIteratorBinding)evaluteEL("#{bindings.DetailView1Iterator}");
            ViewObject vo1 = dc1.getViewObject();
            System.out.println("Before DetailView1Iterator vo1.getEstimatedRowCount()="+ vo1.getEstimatedRowCount());
            System.out.println("Before DetailView1Iterator ShiftModeCode="+ vo1.ensureVariableManager().getVariableValue("ShiftModeCode"));
            vo1.ensureVariableManager().setVariableValue("DateFrom", dateFrom);
            vo1.ensureVariableManager().setVariableValue("DateTo", dateTo);
            vo1.ensureVariableManager().setVariableValue("ShiftModeCode", shiftModeC);
            vo1.ensureVariableManager().setVariableValue("TerminalCode", terminalCode);
            vo1.executeQuery();
            System.out.println("after DetailView1Iterator vo1.getEstimatedRowCount()="+ vo1.getEstimatedRowCount());
    5.  What's wrong in my implementation?  I don't have no problem to implement such a tree table if using simple master-detail tables view object, but now I have to use such 2 view objects using complex SQL for my requirement and variable bindings are necessary for detail view object although I also think a bit strange by myself.

    Hi Frank,
    Thank you and it can work.
    public void setLowHighSalaryRangeForDetailEmployeesAccessorViewObject(Number lowSalary,
                                                                              Number highSalary) {
            Row r = getCurrentRow();
            if (r != null) {
                RowSet rs = (RowSet)r.getAttribute("EmpView");
                if (rs != null) {
                    ViewObject accessorVO = rs.getViewObject();
                    accessorVO.setNamedWhereClauseParam("LowSalary", lowSalary);
                    accessorVO.setNamedWhereClauseParam("HighSalary", highSalary);
                executeQuery();
    but I have a quesiton in this way. in code snippet, it is first getting current row of current master VO to determine if update variables value of detail VO. in my case, current row is possibly null after executeQuery() of master VO and  I have to change current row manually like below.
    any idea?
                DCIteratorBinding dc = (DCIteratorBinding)ADFUtil.evaluateEL("#{bindings.SSForecastSourceBlockView1Iterator}");
                ViewObject vo = dc.getViewObject();           
                vo.ensureVariableManager().setVariableValue("DateFrom", dateFrom);
                vo.ensureVariableManager().setVariableValue("DateTo", dateTo);
                vo.ensureVariableManager().setVariableValue("ShiftModeCode", shiftModeC);
                vo.ensureVariableManager().setVariableValue("TerminalCode", terminalCode);
                vo.executeQuery();
                vo.setCurrentRowAtRangeIndex(0);
                ((SSForecastSourceBlockViewImpl)vo).synchornizeAccessorVOVariableValues();

  • Table for Plant Detail

    Hi,
           What is the table for plant details on Material Basis?
    Thanks

    Hi,
    MARA                             General Material Data
    MARC                             Plant Data for Material
    MARD                             Storage Location Data for Material
    Reward of helpful

  • Table for batch detail

    Hello
    plz suggest Table for batch detail for sale & purchase in SAP 8.81 pl 07

    hi Jayakumar
    In Sap b1 8.8 the batch tables have been changed
    Category                                     Old Tables                    New Tables
    Batch Number                          OIBT, IBT1, OSRD             OBTN, OBTQ, OBTW, OITL, ITL1
    i think this will solve
    Regards
    Jenny

  • Tables for Vendor details

    I want to know the name of the following tables:
    Vendor Master (General level)
    Vendor Master table (purchase organization level)
    Vendor Master (Company Code Level)
    I used LFM1 table but could not find vendor name there.  I want details like vendor, purch organisation, company code, reconciliation account, vendor name.
    Moderator: Please, search SDN

    Dear:
                   I have these details regarding master data saved in word file . Please follow given below tables for vendor master data information
    Vendor Master (General Section) u2013 LFA1
    Vendor Master (Company Code) u2013 LFB1
    Vendor master (VAT registration numbers general section) u2013 LFAS
    Vendor master (dunning data) u2013 LFB5
    Vendor Master (Bank Details) u2013 LFBK
    Vendor master record (withholding tax types) X u2013 LFBW
    Vendor master record purchasing organization data u2013 LFM1
    Vendor Master Record: Purchasing Data u2013 LFM2
    Partner Functions - WYT3

  • Tables for Catalog details...

    Hi,
    I'm new to CCM. Can any one let me know the details of the tables or reports where I can find the following details:
    1. Catalogue Number
    2. Date on which catalogue was created
    3. Who had created the catalog.
    4 Whether any changes were done for the catalogue
    5. When the changes were done & who had done the changes.
    It will be really helpful if any one can send me the material on CCM.
    Wishes & Regards,
    Mahesh. J

    Hi,
    All the CCM tables are stored under Table names </CCM/>
    You can also check these reports in SE38... There are more of them, do a search on /CCM/*
    Report Name Description. Attention / additional hints
    /CCM/CLEANUP_CATALOG Deletion / Cleanup of catalogs. May be dangerous since all catalogs can be deleted via this report! The report is needed if an upload crashed in order to delete the temp. version of the uploaded catalog.
    /CCM/PATCH_CATALOG Needed if data migration was necessary between two support packages in order to migrate the data.
    /CCM/VERIFY_CATALOG Prints out a list of the database content of a catalog.
    Options on the selection screen for Item valuations, includes deleted objects, views etc.
    /CCM/CATALOG_CME_DATA Shows the predefined characteristics / data types
    Shows the characteristics / data types of a catalog.
    Can be used to check the data (e.g. alias, aspects) of predefined characteristics
    /CCM/VISUALIZE_MAPPING Displays the mapping tables for a given catalog ID
    /CCM/INITIALIZE_CME Initializes the predefined data types / characteristics. Used to initialize the catalog
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • Tables for rule sets

    Hi,
    Can you provide me the tables used for rule sets, activities, task etc in EM

    Hi Dipak,
    Below are the EM tables requested.
    Regards,
    Jonathan Hansen
    /SAPTRX/ACTIVITY – Activity Header Table
    /SAPTRX/ACTIVTXT – Activity Text Table
    /SAPTRX/ACT_TASK – Multi-Task Activity Task Table
    /SAPTRX/ACT_TSKT - Multi-Task Activity Task Text Table
    /SAPTRX/EM_RLSET – Rule Set header table
    /SAPTRX/EM_RLSTX – Rule Set text table
    /SAPTRX/EM_RULE - Rule table (Rule Set item)
    /SAPTRX/EM_RULET – Rule Set text table

  • Table for Billing Details(in Sales Area Data) in BP

    Hi,
    Can you let me know the table name for Billing Details(in Sales Area Data) in BP xn.
    Please Help.
    Neeraj

    Hi,
      CRMD_BILLING Contains billing related information.
    see these tables also..
    CRMD_BILLPLAN
    CRMD_BILLPLAN_D
    CRMD_BILLPLAN_DA
    Regards
    Srinu

  • How to create a database table for educational details

    how to create table for this image. i have to develop a job portal website. i created all the tables that required. but i dont know how to store these fields in table. any one help me plz

    It would need following tables
    1. Employee table where EMpNo field would be included as an attribute. Other fields would be EmployeeName,Designation, ...
    It will have Primary Key as EmpID
    2. QualificationType table with QualificationCategoryID and QualificationCategory with values Highest Qualification Post Graduate etc
    QualificationCategoryID  is the primary key
    3. QUalificationTypeAttributes tables with fields as QUalificationTypeAttributeID,QUalificationTypeAttributeName
    QUalificationTypeAttributeID is primary key
    and QUalificationTypeAttributeName will have values Institute Name, Qualification Category etc
    4. EmpQualificationTypeValues table with fields
    QUalificationTypeValueID, QUalificationTypeAttributeID , QualificationCategoryID , EmpID, Value
    QUalificationTypeValueID would be the primary key
    for above case values would be like below
    Employee
    Emp ID EmpNo Name ...
    ID1 12345 xxxxxxx
    QualificationType
    QualificationCategoryID QualificationCategory
    CatID1 HIghest Qualification
    CatID2 Post Graduate
    QUalificationTypeAttributes
    QUalificationTypeAttributeID QUalificationTypeAttributeName
    QTAID1 Institute Name
    QTAID2 Qualification Category
    QTAID3 Year Of Passing
    QualificationTypeValues
    QUalificationTypeValueID QUalificationTypeAttributeID QualificationCategoryID EmpID Value
    QTVID1 QTAID1 CatID1 ID1 Your institute Value set from screen for highest qualification
    QTVID2 QTAID2 CatID1 ID1 Your qualification category Value set from screen for highest qualification
    QTVID3 QTAID3 CatID1 ID1 Your year of passing value set for highest qualification
    QTVID4 QTAID1 CatID2 ID1 Your institute Value set from screen for post graduate
    QTVID5 QTAID2 CatID2 ID1 Your qualification category Value set from screen for post graduate
    QTVID6 QTAID3 CatID2 ID1 Your year of passing value set for post graduate.....
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • WHAT ARE THE TABLE for PO details ?

    Hi,
    Does any body know Table for Total PO Value .
    Kindly help
    Sure shot Rewards if helpfull
    Regards

    Hi,
    Table EKPO -NETPR at item level
    Diwakar
    Edited by: diwakarnd deshpande on Oct 17, 2008 11:04 PM

  • Table for Idoc details including messageID

    Hello All.
    Is there any table in ECC end , where we can get inbound iDoc details including message ID (which is same as that of Message ID of XI sender system )
    I need to find this MessageID information for thousands of IDoc.
    Normally we need to open each idoc control structure's Detail tab to find this.
    Thanks,
    Shiv

    Hello Avinash,
    I already seen in tables  EDIDC and EDIDS but not able to find the message ID details of sender system (XI system ) .
    Thanks,
    XI team

  • Table for getting details in segment of Allocation (Tcode GA13)

    Hi Guy,
    I need a table which shows that in a certain Allocation cycle (Tcode GA13), how many segments are there and in those segments the details of sender/receiver (all the detailed attributes)
    I could not find any database table just table T811C which shows the Cycle details but not for any segment details.
    -JR

    Hi Ravana,
    go for T811S Allocation Segments
    Regards JMy

  • APO table for inventory details

    Hi,
    It would be really helpful if I could get the table which has the inventory details in APO. I have tried a number of tables with the prefix "/SAPAPO/* but have not come across any inventory details.
    Thanks in Advance

    Hi Harish,
    I need the information on the inventory position of a location for each product.
    Could you please elaborate on what u have mentioned in your post? All the initial data comes from R/3 (database), if i am correct.
    Is the data from the livecache accessed via the creation/editing of the Planning books ( trans /SAPAPO/SNP94)?
    I checked the BAPI you have provided, and I have a lot of doubts, what is a dataview? If you could give come detailed information regarding this BAPI or any technical related documents, it would be really helpful..
    Thnaks in advance,
    Sruthy

  • Table for PLA Details

    I need details about PLA account related to excise invoice..
    Which table refers to PLA...
    Thanks & Regards
    ..Ashish

    Check the table J_1IEXCHDR
    Excise data is stored as header and detail.
    Check the table J_1IEXCDTL
    This contains the detail data at line item level for a given excise invoice
    DOCNO  Internal Excise Document Number
    EXNUM  Official Excise Document Number

Maybe you are looking for

  • Serious imac problem. Won't boot into safe mode, can't click anything when os loads up.

    I'm trying to recover my files through the boot camp option on the windows side.  Is there anyway to run something like disk warrior or windows alternative  to repair the partition from the windows side.  I don't think I'm going to be able to get all

  • Performance Issue with Selection Screen Values

    Hi, I am facing a performance issue(seems like a performance issue ) in my project. I have a query with some RKFs and sales area in filters (single value variable which is optional). Query is by default  restricted by current month. The Cube on which

  • How to track column level value change in oracle using procedures

    I would need to write the below code using oracle stored procedures & packages. DBA hates triggers so i cant enforce the same code. Please help me out to achieve the same. thanks in advance. if i do DML on master table (emp) , the audit should go to

  • Send report as attachment

    I have to set up SSRS report in such a way that each report has to go to different person based on ID. Basically like one report has 10 pages each page assigned to 10 different persons. How can we send each page as an attachment email dynamically whe

  • User exit/BADI for Me53n

    Hi everyone, We come across a requirement in ME52N/ME53N i.e.,if Requisitioner  field is blank in contat person tab( item level ) it has to take default vale as Created by . Please suggest me in which BADI/EXIT i need write the code. I have checked a