Reg:table names

Hi gurus ,please provide me table name and field names for the following.
1.sales employee 1
2.sales employee.2
3.named account
4.primary technology
5.secondary technology
points will be rewarded.
thanks &regards
sash.

<b><u>Human resources</u></b>
<b>Settings</b>
T582A               Infotypes: Customer-Specific Settings
<b>Master data</b>
T527X               Organizational Units
T528T               Position Texts
T554T               Attendance and Absence Texts
T501               Employee group
T503               Employee group, subgroup
T503K               Employee subgroup
T510N               Pay Scales for Annual Salaries (NA)
T549A               Payroll Accounting Areas
T750X               Vacancy
<b>Infotypes</b>
PA0001               Org. Assignment
PA0002               Personal Data
PA0006               Addresses
PA0007               Planned Working Time
PA0016               Contract elements
PA0008               Basic pay
PA0105               Communications
PA1007               Vacancies
PA1035               Training
PA2001               Absences
Regards,
Rajesh Banka
Reward suitable points.

Similar Messages

  • Reg:Table name require

    Hi ,
    Can you pls tell me what is the table name for open and closed items.

    Please check BSID for Open items  and BSAD for Cleared items.
    Regards,
    Sash

  • Reg: table name find

    Hi All,
    i need some information, how can i find the table name for the below feild.
    i am using the T:Code : MC44, in this i gave the materian, plant and selected the check box all plant cumulated and  then press enter.
    in the inside screen i hava selected the Double line tab feild.
    in that i need usage period and average stock feid and table name.
    please give me the valid input on this.
    thanks
    siva

    Hi All,
    please give me the details about the below field and table name.
    in the T:Code: MC44, usage period and average stock field.
    K_k_MENGE Usage Period field -  BCO_WERTE is the table.
    MIT_MENGE Average Stock feild - BCO_WERTE this is the strcture feild.
    please give me the table name for the above structure Table.
    Thansks
    siva

  • Reg : Table name of Functional Module

    Can some one sent me the table name where functional module details get stored

    HI,
    Check for Function Module.
    Tables
    TFDIR----
    > Table contains Function Modules.
    TFTIT----
    >Table contains Function Module Short Text.
    ENLFDIR-----> Additional Attributes for Function Modules.
    rewards if useful,
    regards,
    nazeer

  • Reg Table name for Menu / Form Details

    What is the Table name having the Menu name and Menu ID details for all modules?

    Hi,
    AFAIK this information is not stored in the database, appart from a fiew that are in the OADM table (PorName, RpdName, PdnName...). I think that this info is stored in a C++ library (don´t remember the name now).
    Perhaps if you ask what the objetive is we could help you with a workaround.
    Regards,
    Ibai Peñ

  • Reg: Table name where logical system name will store in R/3 and CRM..

    Hi
    We are trying to replicate the sales order from CRM 5.0 to ECC 6.0. we mainatined publication, site, subscription and rfc connections. When the sales order is created in the CRM the BDOC is getting posted but it is picking up the wrong logical system which we were using earlier. Due to this wrong logical system, out-bound queue is getting generated in CRM but In-bound queue is not getting generated in the ECC.
    Can anybody tell me where (in which table) we need to modify the things for getting the correct logical system.
    Regards

    Hi,
    In CRM:  look for the table CRMMLSGUID. This should have the logical system name of the R/3 that it is connected to CRM and also the GUID. To check if the GUID is correct cross check with GUID from R/3 table CRMPRLS.
    In R/3: look for the table CRMRFCPAR. This will give you all the RFC connections that R3 is connected to. If you want to check whether the CRM RFC value is defined correctly compare it with RFC destination in the Administration Console (smoeac) from CRM.
    If the entries are matching then the systems are connected correctly if not you need to look at the RFC destinations from SM59 transaction.
    Hope this helps.
    Thanks,
    Karuna.

  • Reg. table name, that contains data of deletion of PP & PM operations(point

    Hi all,
    Could any body tell me the table, that contains task list operation deletion data in PM terms of tcode IA01.
    or in case of PP u can see routing data operation.
    It's urgent.....
    Help me & have ur poinrts.
    Regards,
    pradeep phogat

    HI smith,
    Actually in tcode IA02, when we select an operation & make it delete...then in table PLPO i am getting no deletion field. Actually i am making a change BDC for changing the frequency of the operation. So in that i need to consider the deleted operation........
    Reply plesssssss

  • Reg:field and table name

    Hi Guys,
    I am developing one report for knowing the recognised amount ,but i am not able to get the field and table name .In system it is showing that VBRAV51HD:RVAMT_REAL_G.But this is a structure,how to get a field name for recognised amount.Please help.
    Thanks & Regards,
    Sash.

    Hi sash,
    I think u need to some R n D upon it. First take the structure and open it in SE11. Then try to find out what all tables does the structure comprises of. Then try finding the relevant fieldname of the table( which is also existent in the structure) getting accessed when the field is triggered. That may solve your problem. try finding the objective of your structure being shown.
    Abhijit

  • Reg. Getting Tables name from interbase

    Hi,
    I like to get interbase database table name using a query from JDBC program .I am connecting interbase through interclient driver.
    Regrads,
    Vikki

    Once you have a Connection to the database, use its getMetaData() method to get a DatabaseMetaData object, which can give you that information.

  • Reg: "Production order confirmation details" table name..

    Hi,
    what is the table name for the production order confirmation details..
    Regards,
    Pavan.

    Hi
    It is the
    <b>AFRU</b> table
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Help needed in making table name and column name dynamic

    please check the below query? in the below message
    Message was edited by:
    460425
    Message was edited by:
    460425

    thanks Dmytro,
    below is the script i was looking for it got it..any way thanks.
    just need to replace dbms_output.put_line with utl_file.put_line
    to put the code on server directory.
    and execute as and when required.
    Reg.
    AAK
    CREATE OR REPLACE PROCEDURE p_ad_log
    IS
         CURSOR tbl_cursor IS
              SELECT table_name FROM user_tables WHERE table_name IN('EMP','EMP1') ;
         CURSOR col_cursor( cp_table_name varchar2) IS
              SELECT column_name FROM user_tab_columns WHERE table_name=cp_table_name;
         --v_file_handle      utl_file.file_type;
         --v_file_dir          varchar2(30)      :=     'DIRECTORY PATH'     ';
         --v_file_name     varchar2(30)       :=       'AD_TRIGGER_TEXT.TXT';
         tbl_cursor_value     tbl_cursor%ROWTYPE;
         col_cursor_value     col_cursor%ROWTYPE;
         v_string          varchar2(4000);
         v_string_val     varchar2(4000);
    BEGIN
         DELETE audit_triggers_status;
         COMMIT;
         --v_file_handle := utl_file.fopen(v_file_dir,v_file_name,'W',32000);
         OPEN tbl_cursor;
         LOOP
              FETCH tbl_cursor into tbl_cursor_value;
              EXIT WHEN tbl_cursor%NOTFOUND;
              OPEN col_cursor(tbl_cursor_value.table_name);
              DBMS_OUTPUT.PUT_LINE( 'CREATE OR REPLACE TRIGGER' ||' ad_'||tbl_cursor_value.table_name); -- short name for audit trigger coz table name will be appended to it and result should not exceed 30 char
              DBMS_OUTPUT.PUT_LINE( 'BEFORE INSERT OR UPDATE OR DELETE ON '||tbl_cursor_value.table_name);
              DBMS_OUTPUT.PUT_LINE( 'FOR EACH ROW');
              DBMS_OUTPUT.PUT_LINE( 'BEGIN');
              v_string:='INSERT INTO'||' ad_'||tbl_cursor_value.table_name||'(';
              v_string_val:='values(';
              INSERT INTO audit_triggers_status( table_name,trigger_name,audit_flag) VALUES (tbl_cursor_value.table_name,' ad_'||tbl_cursor_value.table_name,'Y');
                   LOOP
                        FETCH col_cursor into col_cursor_value;
                        EXIT WHEN col_cursor%NOTFOUND;
                        v_string:=v_string||col_cursor_value.column_name||',';
                        v_string_val:=v_string_val||':new.'||col_cursor_value.column_name||',';
                   END LOOP;
                   CLOSE COL_CURSOR;
              v_string:=substr(v_string,1,length(v_string)-1);
              v_string_val:=substr(v_string_val,1,length(v_string_val)-1);
              v_string:=v_string||') ';
              v_string_val:=v_string_val||');';
              --DBMS_OUTPUT.PUT_LINE(v_string||v_string_val);
              DBMS_OUTPUT.PUT_LINE('IF INSERTING THEN');
              DBMS_OUTPUT.PUT_LINE('     '||v_string||v_string_val);
              DBMS_OUTPUT.PUT_LINE('END IF;');
              DBMS_OUTPUT.PUT_LINE('IF UPDATING THEN');
              DBMS_OUTPUT.PUT_LINE('     '||v_string||v_string_val);
              DBMS_OUTPUT.PUT_LINE('END IF;');
              DBMS_OUTPUT.PUT_LINE('IF DELETING THEN');
              --DBMS_OUTPUT.PUT_LINE('     '||v_string||REPLACE(v_string_val,':new.',':old.');
              V_STRING_VAL:=REPLACE(v_string_val,':new.',':old.');
              DBMS_OUTPUT.PUT_LINE('     '||v_string||v_string_val);
              DBMS_OUTPUT.PUT_LINE('END IF;');
              DBMS_OUTPUT.PUT_LINE('END '||' ad_'||tbl_cursor_value.table_name||';');
              DBMS_OUTPUT.PUT_LINE(' ');
         END LOOP;
         CLOSE TBL_CURSOR;
         COMMIT;
    END;

  • Table name for condition type

    Hi,
    Could any one please tell me in which table name the Condition type values are saved and how to retrieve it.
    Reg,
    Ashok

    Hi Blue,
    I checked with SE16 by giving KONP table name. But its showing wrong value.
    The condition type value is 14.000but its showing the value for 7.60.
    Reg,
    Ashok

  • Table Name for System Messages

    Dear all,
    i want to know the Table name for system messages
    Reg
    Kris

    hello Hari,
    I am getting error's in Posting like:
    Error in posting
    Message no. ICC_TR119
    Diagnosis
    The system could not post any checks or bills of exchange.
    Procedure
    See the table with the system messages.

  • Table Name for Sales Order Header Text.

    Hi.
    Whats the Table name for Sales Order Header Text???
    Reg,
    Amol

    Hi Amol,
    please Try to check the below link
    http://scn.sap.com/thread/1361272
    http://scn.sap.com/thread/416757
    https://scn.sap.com/thread/1909247
    https://scn.sap.com/thread/811915
    Regards,
    Gurunath

  • Table name for VAT ...

    Hi Friends
    What is table name for Reg No and VAT NO for Company Code
    What is table name for Customer Vat No
    ITs urgent
    Regards
    Bobbili

    Here we go:
    1.) T001
    2.) KNA1
    Cheers
    Hein

Maybe you are looking for

  • Oracle apps Adapter for EBS group event

    Hi I am working on EBS - OTM integration through SOA. I have configured EBS group event in SOA through Oracle apps adapter but it is not creating instance on EM for same composite eventhough records are getting enqueued in EBS queue. EBS version - 12

  • Do Office 365 integration now (2003) or after upgrade (2012 R2)?

    A client has Server 2003 Standard and are going to migrate to Office 365 very soon (from a hosted mail provider, POP). They are also due for a server upgrade, likely Server 2012 R2 Standard. To eliminate the hassle of managing two different systems f

  • Mail Move/recovery

    Hi, Our Xserve has a disk issue and currently can't boot. We have however got a copy of the volume using disk warrior so have data. While the Xserve was down we installed Postfix on an Ubuntu server machine and let that handle the main user accounts.

  • Average for last 12 months

    hi, i have a column amount. i need to find the avg of it for last 12 months excluding current month. I have got a query to find it .but it is adding current month also with it. AVG(SUM(amount)) OVER (ORDER BY ACCOUNT_MONTH_NO ROWS BETWEEN 12 PRECEDIN

  • Posting period 004 2009 is not open

    Hi          While doing t-code F-28 i am getting the following error "Posting period 004 2009 is not open" How to solve this. Thanks Anto