HR: Tables stored in the subarea of a cluster

Hi All,
I would like to know the name of the tables stored in the subarea of a cluster. E.g. The tables stored in RX subarea of cluster PCL2.
Will it be possible for me to get the details from the include RPCnxy00, where n - cluster number and xy- subarea in the cluster? Is there any other way of doing it?
Thank you,
Jayaprakash

Hallo Jayaprakash,
you could have a look at the function module PYXX_RESOLVE_RESULT_STRUCTURE. This will help with payroll cluster structures but don't forget that it's payroll specific.
The method you suggest is a good start but unfortunately the RPCnxy00 "convention" is not one that was always strictly adhered to. It will generally work but not always. It would probably be safer to look at the import / export macros since all the tables and strings will be contained there.
I hope this helps.
Regards, Gerard.

Similar Messages

  • Are TableSpace names stored in the tables?

    Are TableSpace names stored in the tables?
    If so, which one?

    Tablespaces are stored in the db.
    I believe they are in tCtrlOption

  • Where is the sql in a custom folder stored in the  db tables?

    Hi
    Does anyone know the name of the table & column that holds the sql that you write in a custom folder. I thought it might be EUL_OBJS as there are 4 columns called obj_object_sql1-4 but for a recently created custom folder these columns are blank.
    I hope someone knows the answer to this as I have to investigate whether a value has been hard-coded into all our customised sql & would rather not have to go through each folder in turn!
    Thanks in advance
    Claire

    Chris CA wrote:
    It is in the song file itself.
    Most of the information gets stored in the file tags. Exceptions include files that don't support tags, e.g. wav & mov. Other information that is only ever stored in the library, rather than the tag, includes date added/modified, rating, last played, podcast details, playlist membership etc.
    tt2

  • Hw to find the table name of the perticular field is stored in db,usingFM

    Dear all,
    I need to find out the table name of the perticular field is storing in database using FM (note: using Function Module or any standard program , not manually like press F1 -> technicall setting etc.. .) 
    [ Exmple: Field: "MATNR" is stored in table : MARA, so i need the program/FM  to findout MATNR is stoed in MARA table ]
    i need this  FM for update values of  material master ( mm01 ) stored in different warehouse using module pool program.
    it's very urgent , please send me reply asap.
    thanks,
    best regards
    srinivas

    hi Srinivas,
    Please use the following logic:
    types:
        begin of t_find,
           field(40),
        end of t_find.
    data:
        lt_find  type table of t_find,
        ls_find  type          t_find,
        lt_found type table of RSFINDLST.
    ls_find-field = 'MATNR'.
    append ls_find to lt_find.
    CALL FUNCTION 'RS_EU_CROSSREF'
    EXPORTING
       i_find_obj_cls                    = 'DTEL'
       I_SCOPE_OBJ_CLS                    = 'TABL'
       NO_DIALOG                          = 'X'
    TABLES
       I_FINDSTRINGS                      = lt_find
       O_FOUNDS                           = lt_found
    EXCEPTIONS
       NOT_EXECUTED                       = 1
       NOT_FOUND                          = 2
       ILLEGAL_OBJECT                     = 3
       NO_CROSS_FOR_THIS_OBJECT           = 4
       BATCH                              = 5
       BATCHJOB_ERROR                     = 6
       WRONG_TYPE                         = 7
       OBJECT_NOT_EXIST                   = 8
       OTHERS                             = 9
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    The table lt_found has the details for the tables having MATNR as a field; field lt_found-object will have the table names.
    Hope this helps,
    Sajan Joseph.

  • Which table stored the Inbound ASN IDOC # and corresponding In.B Delivery#

    Hi,
    May i know which table stored the inbound ASN IDOC# and corresponding created Inbound Delivery number??
    Thanks!!

    Dear Hoo Laa,
    You may find the Sales Organisation/Distribution Channel details in PO itself (Shipping Tab). Table where you can get Sales Organisation/Disribution Channel is EKPV.
    Regards
    Samier Danish

  • Capturing Data from forms before it is stored in the table

    Hi...I would like to capture data from a form before the data is stored in the database. that is, i would like to access whatever data is entered into a field right after the user pushes the Insert button. I would like to do some processing on the data and then store it in the table along with the data from the other fields. Is it possible to access it through a bind variable or something? Please tell me how to go about it. Thanks

    Hi,
    You can make of the session variables to access the values. Every field in the form has a corresponding session variable with the name "A_<VARIABLE_NAME>". For example for deptno the session variable will be "A_DEPTNO"
    Here is a sample.
    declare
    flightno number;
    ticketno varchar2(30);
    tdate date;
    persons number;
    blk varchar2(10) := 'DEFAULT';
    begin
    flightno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHT_NO');
    ticketno := p_session.get_value_as_varchar2(
    p_block_name => blk,
    p_attribute_name => 'A_TICKET_NO');
    tdate := p_session.get_value_as_date(
    p_block_name => blk,
    p_attribute_name => 'A_TRAVEL_DATE');
    persons := p_session.get_value_as_number(
    p_block_name => blk,
    p_attribute_name => 'A_NOF_PERSONS');
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_FLIGHTNO',
    p_value => to_char(NULL)
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_TICKETNO',
    p_value => to_char(NULL)
    p_session.set_value(
    p_block_name => blk,
    p_attribute_name => 'A_TRAVEL_DATE',
    p_value => to_char(NULL)
    end;
    In the above example the values of the variables are got into temporary variables and session variabels are set to null.
    Thanks,
    Sharmil

  • How the Payload Message and Logs are stored in the B1i Database Table: BZSTDOC

    I would appreciate it if someone could provide any documentation regarding B1i database further maintenance.
    for example:
    I want to know how the payload message and logs are stored in the table BZSTDOC, and how can we retrieve the payload message directly from the column DOCDATA.
    As described in the B1iSNGuide05 3.2 LogGarbageCollection:
    to avoid the overload of the B1i Database, I set the Backup Buffer to 90 days : so this means Message Logs from the last 90 days will always be available, but is there some way we can save those old messages to a disk so that I can retrieve the payload message anytime?
    in addition, let’s assume the worst, the B1iSN server or the B1i database damaged, Can we just simply restore the B1i database from a latest backup DB then it can work automatically after the B1iSN server is up and running again?
    BR/Jim

    Dear SAP,
    Two weeks passed, I still haven't received any feedback from you guys.
    Could you please have a look at my question?
    How is this Question going? Is it Untouched/Solving/Reassigned ?

  • Are the database tables stored in a sorted order?

    Hi-
    Are the records in a databse table stored in a sorted order based on key fields??
    Thanks.
    Ramesh.

    A,
    Unfortunately, this is not a clearly or fully explained concept in the BC400 class.
    As stated in the course text, the ITAB will have the "order" of the DB table. 
    This may or may not be in actual key order.  It depends on whether or not the primary key index is ALWAYS kept up to date / ordered by your DBAs.
    This is rarely done as it is very "expensive" to the system... vitually impossible to be truthful.
    Because of this, you can never GUARANTEE in a Production system that all records are stored in a primary key order.  To guarantee ordering, you must FORCE the system to order the result set through:
    ORDER BY
    or
    SORT after the database retrieval is completed and the result set is returned to the App server

  • Table name where the text attachments stored

    Hi folks,
             I have created an text attachment while creatng PR. where do these attachments store. In which table can  i see the attachments that i have made while creating PR.Please suggest.
    Shyam.

    Hi Abhishek,
                   thanks for your anshwer. But, If it is just text we can read using READ_TEXT, but i need to check whehter is attachment is created for a specific PR or not. Any input on the table name, where the attachments are stored..
                        Thanks,
                        Shyam.

  • Tables fields where the system status is getting stored

    I need to find out the Quotes which have open and completed system status.
    Once I find these orders I need the check the validity dates of the Quotes.
    Can experts please let me know the tables where the system status and the validity dates are stored?

    Try TJ02
    It contains the System status ISTAT.
    Kindly execute the report CRM_ORDER_READ.
    This is a report for executing the FM CRM_ORDER_READ.
    provide the transaction ID or guid as teh input.
    Check the ET_STATUS and ET_APPOINTMENT tables which contain the details required.
    In the table ET_STATUS search with the header GUID.
    The values with I are the system status and the value with E is the user status.
    Explore the result of this report to get more detail.
    Regards,
    Taher

  • Fun. mod which retrieves  values stored in the SETLEAF & SELINET  Table

    I am doing a report which needs to find the meaningless location.  For which i need to go the transaction GS03 and give the set id Z_AA_EXCEPTION_LIST_M03, and get the meaningless location. This value is stored in the table SETHEADER, SETLEAF, AND SETLINET table . I need to know which function module that retrieves the values from the above mentioned table

    hi,
    The Internal order group details are found in the table SETHEADER & SETLEAF, SETHEADER-SETNAME would be the internal order group for the setclass for the order group set class '0103',
    to get all internal orders for an ordergroup.
    You can use fm K_HIERARCHY_TABLES_READ.
    or
    HRGPBS_ORDERGROUP_GETDETAIL
    Vasanth

  • How to list all tables/stored procedures used by the report

    All the reports i create are getting data from stored procedure(s). Is there a way to obtaining a listing of all the stored procedures without having to open report by report and check under Database > Set Datasource Location > Properties > Table Name?
    Finding this info it would be extremely valuable, as it would help me to judge the impact of any changes that i might be considering to one or more of the stored proc.
    So far i maintained a manual listing but it is not up-to-date and reliable. I would rather prefer to get an updated listing every time i want to change/drop a stored procedure.
    Thanks so much for your help.
    Rick

    Dell can you be a little bit more specific about the SDK solution. I could ask one of the developers to help me but i need to gather more details.
    I took a look .rpt inspector Pro but it does not do what i need. All i need is the the listing of all the database tables (in my case stored procs) used in my reports. No need to replace or change anything. I need to scan the directory where i have all the reports for the different applications and get report names and table/stored procs used. i can export the txt file to excel and that's all.

  • Table Name where the ABAP program names get stored

    Can any 1 tell me the table name where the ABAP programs get stored

    try TRDIR,TRDIRT,TADIR
    regards
    shiba dutta

  • WAS640&SAPDB: Where are the tables stored?

    Hello,
    I've deployed an SDA file from a dictionary project. Now I try to find the tables of this dictionary using SQL Studio. Can somebody tell me where to find the tables?
    Thanks,
    Christian

    Hi Christian,
    well, the tables normally have the same name(s) you defined in the dictionary project (starting with TMP_ by default).
    The properties you use for connecting to the DB is critical, since you have to login with the user who "owns" the tables:
    Server: Your hostname
    Database: J2E
    User: SAPJ2EDB
    Password: ?? You defined it during installation.
    Database name and User are default, if you defined other names, you must of course use these.
    Hope that helps.
    Regards
    Stefan

  • Is there any standard SAP table which stores the license number assigned to a delivery item

    Hi Experts,
    This is in relation to license number assigned to a delivery item under ‘Export License Log’. Our scenario is for delivery of type NLCC created for an inter-company stock transport order. (i.e.not a sales order case where the license may get copied from sales order to delivery through copy control)
    As we understand, for legal control – relevant scenarios, export license for each item shall be determined afresh every time the delivery is accessed. (Depending on legal regulation, grouping, destination country, export control class, delivery partners vis-à-vis license master customer assignments etc.)
    To print the license text on one of the delivery output types, we want to access the license number for each item. (determined under export license log)
    Our question is:  is there any standard SAP table which stores the license number assigned to a delivery item?
    We have checked some of the license tables (T606*, VAEX, EMXX etc.) but couldn’t get any specific table storing delivery-item-specific license data.
    Helpful answers Text Removed
    Regards,
    Jagan
    Message was edited by: G Lakshmipathi
    Dont add such text in your post

    Hi Lakshmipathi,
    The export control log can be accessed by going to delivery Extras-> Export license log
    We need a table that stores the determined license for each item in a delivery document ( as shown in the below screenshot)
    Regards,
    Jagan

Maybe you are looking for