FM to get short description of the fields in standard table.

Hello all,
How to get the short description of the corresponding field name in the standard table using the field name and table name??
Thanks for your understanding..
Kindly help me..anyone..please...

Use view DD03VT.
Use a select query to fetch the required description of the field from view DD03VT passing fields TABNAME, FIELDNAME, DDLANGUAGE in WHERE condition
Using this you can get any text ShortFieldLabel, Medium Fld Labl, Long Fld Label of a field

Similar Messages

  • How to update/copy into the fields of standard table

    Hi all,
    I have a piece of code in user exit, in which i have to populate the field atwrt (cntry of origin) in EIPO-HERKL in a delivery document..
    but if i assign it directly to the field as i've shown in code, it wont take it.
    moreover, it looks be a standard table(EIPO), but it is not.. its  a work area..
    READ TABLE i_val_tab WITH KEY atnam = c_cntr.
    IF sy-subrc = 0.
    EIPO-HERKL = i_val_tab-atwrt.
    MODIFY EIPO.
    ENDIF.
    so kindly guide me how to do dat..do i have to populate it in some other standard table(for country of origin field) which will automatically put the field in EIPO-HERKL?

    Hello Pradeep,
                          Generally, in most of the User Exits, we'll find something called X and Y Structures. For example, XVBAK and YVBAK where the X Structure contains the Old Value and the Y Structure contains the New Value (meaning, the Value that is currently on the Screen before Saving). So, try to find out similar structures through which you can update the Value in the Standard Table.
    Thanks and Regards,
    Venkat Phani Prasad Konduri

  • Retrieve short description from the table field

    Hi all.
    I got this system table called TBTCO. Inside the table, there is this field JOBCOUNT. How can i retrieve the short description from the table for this particular field? Any fm can be use?
    thks

    Hi
    u can retrive the short text u want by writing simple query from the table DD03T:DD: Texts for fields (language dependent)  there u can give table name fieldname and language then u can get the short text u want
    plzz reward if i am usefull to u in any way..
    for any further quiries u can contact me on [email protected]

  • How can i print the description about the field?

    dear folks
    i want to develop a report in that i want to display all fields in MM03 for all views.
    there i want to display first Field description (not field name), then field value.
    ie, for MATNR:
    Material Number = xxxx (value)
    for SPART:
    Division = d1.
    how can i print the description about the field?

    CALL FUNCTION 'DDIF_FIELDINFO_GET'
        EXPORTING
          tabname        = 'MARA'
          FIELDNAME  = 'MATNR'
        TABLES
          dfies_tab      = t_dfies
        EXCEPTIONS
          not_found      = 1
          internal_error = 2
          OTHERS         = 3.
    you will get all the info for the field in t_dfies in that u have the field description also
    run the above FM from se37 and pass tabname = MARA and fieldname = MATNR
    see the results in DFIES_TAB in internal table

  • How to deactivate the fields in a table control of a standard screen

    Hi,
       I have an requirement to deactivate the fields in a table control of a standard screen in ME22n transaction.I am using a BADI "ME_PROCESS_PO" and in item mathod i am looping at screen for the screen field name in the table control.But it is not working. Can anyone give me the possible solution . Thanx in advance.
    With Regards,
    Ajit.

    >
    Vivek Joshi wrote:
    > Hello Router ,
    >                      I do not want to set the focus , I want to get focus . User can click on any cell in the table and then press a button in the toolbar . Now in the event handler of the button i want to under which column User has set the focus .
    > I hope , I am clear now .
    > Thanks for your help
    > Regards
    > Vivek
    An yet you keep getting suggestions of how to set the focus.   I looked through the API documentation and I don't see anything that would suggest you can request to see where the current focus is.  Perhaps someone might still come along with a solution, but my hopes wouldn't be too high at this point.  I can pass the requirement onto Product Definition, as the use case does seem interesting.  Perhaps it is something we have even considered in the past. 
    But for now, there might be a better way to solve your problem.  It will probably mean redesign the interaction.  What exactly are your requirements?  Do you need to be able to get the data in a particular cell of table when a button is clicked?  Just throwing out some ideas here, but maybe just use the lead selection to select the row, but then have a button choice to choose the action associated with the column you want. A hack for sure - but it might work.  Also it doesn't help you right now, but in the near future update to NetWeaver 7.0, WDA does have a onColSelect event for the table.

  • How to read the field value from Table Control

    Hello Experts,
    I am creating my first Table Control Screen. Basically I have to create a screen (102) with a table control which has 2 fields: A_QTY, B_QTY and 2 Buttons: SAVE, EXIT.
    When Clicked on 'SAVE' the data (MATNR) from a previous screen (101)  and the data (A_QTY, B_QTY) from the new screen (102) should be saved into a Z-table.
    Internal table t_data has 3 fields.
    MATNR
    A_QTY
    B_QTY.
    Table Control TC_RACK was declared like this:
    controls tc_rack type tableview using screen 0102.
    I/0 Fields:
    A_QTY type ZQTY.
    B_QTY type ZQTY.
    The screen Flow Logic:
    process before output.
    module status_0102.
      loop at t_data into w_data with control tc_rack.
      endloop.
    process after input.
      module exit_0102 at exit-command.
      loop at tc_rack.
      endloop.
    module user_command_0102.
    module status_0102output.
      set pf-status 'STATUS_102'.
      set titlebar 'TITLE_102'.
      describe table t_rack lines tc_rack-lines.
    endmodule.                 "status_0102 output
    process after input.
    module user_command_0615 input.
    case ok_code.
       when 'SAVE_RK'.
       when others.
    endcase.
    endmodule.                 "user_command_0102 input
    Now for eg, when the users enter values for A_QTY and B_QTY like this:
    A_QTY     B_QTY
    1000         2000
    3000         4000
    How can I read these values and pass them to T_DATA so that I can save it into Z-table?
    I greatly appreciate your help.
    I've gone through some previously posted threads and could not understand because my knowledge in this area is preliminary.
    Thanks a lot.
    Could you please let me know
    Edited by: dev a on Jan 13, 2010 2:46 PM

    Hi dev a
    You should use
      DATA: lv_name(30) TYPE c.
      FIELD-SYMBOLS: <QTY> type ZQTY.
    GET CURSOR FIELD lv_name.   "Get the field name in table control
    check sy-subrc = 0.
    assign  (lv_name) to <QTY>.  "Here you get the value in <QTY>
    check sy-subrc = 0.
    Also use <your table control>-current_line to get the table index uo're currently on.
    Hint: Do not use GET CURSOR LINE if you want to get table index since this gives you the line relative to dialog screen
    Good luck
    Dean Q.
    Edited by: Dean Q on Jan 13, 2010 11:11 PM

  • What are the fields in BDC table

    hi
    what are the fields in BDC table. what is the last entry

    hi,
    BDC table structure
    FIELD                     TYPE                            DESCRIPTION
    Program                CHAR (8)                      Program name of transaction.
    DynPro                   CHAR (4)                      Screen number of transaction.
    DynBegin               CHAR (1)                      Indicator for new screen.
    Fnam                     CHAR (35)                     Name of database field from screen.
    Fval                       CHAR (80)                     Value to submit to field.
    Hope this is helpful, Do reward.

  • Select only first 10 chars from the field in a table while writlng a selec

    hi experts,
    In a table  one field contains a value of above 10 characters (ex 10 or 15 or 20 characters).But i want to select
    only first 10 characters from this field while writing a select statement.
    This logic should be included in select statement.
    please gime immediate solution.
    My question is understood.

    Hi,
    Try this one
    data : begin of itab occurs 0,
            maktx(10) type c,
    end of itab.
    " though the length of MAKTX is 40 you only get 10 chars
    select maktx from makt into table itab up to 10 rows.
    if sy-subrc is initial.
    endif.
    " Suppose the field name of table you want to select is MAKTX then declare
    " Your internal table in the above manner, it will automatically fit into it and will get 10 Chars only
    " Instead of burding the select query / DB interface use the above.
    Cheerz
    Ram

  • How to remove numeric value in the fields of a table

    Environment: SQL Server 2008R2
    Tools: MSMS
    Code:
    a. Table Definition 
    USE [DLPT_CMS1_RESTORE]
    CREATE TABLE [dbo].[Mocha]
    [id] [int] IDENTITY(80,1) NOT NULL,
    [Login_ID] [char](10) NULL,
    [PE4] [varchar](8000) NULL,
    [PE9] [varchar](8000) NULL,
    [PE11] [varchar](8000) NULL,
    [PE15] [varchar](8000) NULL,
    [PE17] [varchar](8000) NULL,
    [PE20] [varchar](8000) NULL,
    [PE22] [varchar](8000) NULL,
    [PE25] [varchar](8000) NULL,
    [PE28] [varchar](8000) NULL,
    [PE29] [varchar](8000) NULL,
    [PE27] [varchar](8000) NULL
    b. data
    Insert into Mocha (Login_ID,[PE4],[PE9] ,[PE11],[PE15],[PE17],[PE20],[PE22],[PE25],[PE28], [PE29],[PE27])
    Values (293595,293595,293737,293737,293737,293737,293737,293737,'I dont think 12 week program is hard',293737,293737,'antiinflamatory- this helps to fight free radicals and ward off disease.')
    Insert into Mocha (Login_ID,[PE4],[PE9] ,[PE11],[PE15],[PE17],[PE20],[PE22],[PE25],[PE28], [PE29],[PE27])
    Values (293841,293841,293841,293841,'293841 I feel that the product should be more holistic'
    ,'293841 I would like for the customer support to give more immediate feedback'
    ,'293841 Fends off alzeimer disease and dementia. It has been proven to destroy the amaloid plaques that are believed to be a cause of dementia and memory loss',
    293841,293841,293841,293841,293841,293841)
    Challenge: 
    1. Delete / Remove login_ids from a string found in one or more of the fields in Mocha table 
    Example: the following string contains login_id '293841 I would like for the customer support to give more immediate feedback' , remove the login_id in the narrative field which could be PE4, PE22. or PE28
    2. Count the response or narrative field for each column after the deletion is completed 
    My script and still working progress
    SELECT * FROM MOCHA
    WHERE ISNUMERIC(PE4) = 1 and [PE4] like '%[0-9]%'
    Thanks for the support

    I added a new data which shows inaccurate results using your last updated code. The mistake appears in the 3rd row culomn name PE25 is null but counts it as 1 
    CREATE TABLE [dbo].[Mocha]
    [id] [int] IDENTITY(80,1) NOT NULL,
    [Login_ID] [char](10) NULL,
    [PE4] [varchar](8000) NULL,
    [PE9] [varchar](8000) NULL,
    [PE11] [varchar](8000) NULL,
    [PE15] [varchar](8000) NULL,
    [PE17] [varchar](8000) NULL,
    [PE20] [varchar](8000) NULL,
    [PE22] [varchar](8000) NULL,
    [PE25] [varchar](8000) NULL,
    [PE28] [varchar](8000) NULL,
    [PE29] [varchar](8000) NULL,
    [PE27] [varchar](8000) NULL
    Insert into Mocha (Login_ID,[PE4],[PE9] ,[PE11],[PE15],[PE17],[PE20],[PE22],[PE25],[PE28], [PE29],[PE27])
    Values (293737,293737,293737,293737,NULL,293737,NULL,293737,'I dont think 12 week program is hard',293737,293737,'antiinflamatory- this helps to fight free radicals and ward off disease.')
    Insert into Mocha (Login_ID,[PE4],[PE9] ,[PE11],
    [PE15],[PE17]
    ,[PE20],[PE22],[PE25],[PE28], [PE29],[PE27])
    Values (293841,293841,293841,293841
    ,'293841 I feel that the product should be more holistic'
    ,'%%293841%% I would like for the customer support to give more immediate feedback'
    ,'%%293841%% Fends off alzeimer disease and dementia. It has been proven to destroy the amaloid plaques that are believed to be a cause of dementia and memory loss'
    ,293841,NULL,NULL,293841,293841)
    Insert into Mocha (Login_ID,[PE4],[PE9] ,[PE11],[PE15],[PE17],[PE20],[PE22],[PE25],[PE28], [PE29],[PE27])
    Values (293735,'293735 my name',NULL,NULL,NULL,NULL,NULL,NULL,'%%293735%%I dont think',293735,293735,'this helps to fight free radicals and ward off disease')
    select
    Replace(Replace(PE4,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE4
    ,Replace(Replace(PE9,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE9
    ,Replace(Replace(PE11,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE11
    ,Replace(Replace([PE15],RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE15
    ,Replace(Replace(PE17,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','')PE17
    ,Replace(Replace(PE20,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE20
    ,Replace(Replace(PE22,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE22
    ,Replace(Replace(PE22,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE25
    ,Replace(Replace(PE28,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE28
    ,Replace(Replace(PE22,RTRIM(Cast(Login_ID as varchar(10))), ''),'%','') PE29
    ,(case when len(PE4)-Len(Replace(PE4,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe4] is null or Replace(PE4,RTRIM(Cast(Login_ID as varchar(10))), '') ='' Then 0 Else 1 End) cntP4
    ,(case when len(PE9)-Len(Replace(PE9,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe9] is null or Replace(PE9,RTRIM(Cast(Login_ID as varchar(10))), '') ='' Then 0 Else 1 End) cntP9
    ,(case when len(PE9)-Len(Replace(PE11,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe11] is null or Replace(PE11,RTRIM(Cast(Login_ID as varchar(10))), '') ='' Then 0 Else 1 End) cntP11
    ,(case when len(PE15)-Len(Replace(PE15,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe15] is null or Replace(PE15,RTRIM(Cast(Login_ID as varchar(10))), '') ='' Then 0 Else 1 End) cntP15
    ,(case when len(PE17)-Len(Replace(PE17,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe17] is null or Replace(PE17,RTRIM(Cast(Login_ID as varchar(10))), '') ='' Then 0 Else 1 End) cntP17
    ,(case when len(PE20)-Len(Replace(PE20,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe20] is null or Replace(PE20,RTRIM(Cast(Login_ID as varchar(10))), '') ='' Then 0 Else 1 End) cntP20
    ,(case when len(PE22)-Len(Replace(PE22,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe22] is null or Replace(PE22,RTRIM(Cast(Login_ID as varchar(10))), '') ='' Then 0 Else 1 End) cntP22
    ,(case when len(PE25)-Len(Replace(PE25,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe25] is null or Replace(PE25,RTRIM(Cast(Login_ID as varchar(10))), '') ='' Then 0 Else 1 End) cntP25
    ,(case when len(PE28)-Len(Replace(PE28,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe28] is null or Replace(PE28,RTRIM(Cast(Login_ID as varchar(10))), '') =''Then 0 Else 1 End) cntP28
    ,(case when len(PE29)-Len(Replace(PE29,RTRIM(Cast(Login_ID as varchar(10))), ''))=0 or [pe29] is null or Replace(PE29,RTRIM(Cast(Login_ID as varchar(10))), '') =''Then 0 Else 1 End) cntP29
    from mocha

  • How to find table name for the fields from Standard Extractor in CRM system

    How to find table name of fields from the standard extractor in CRM system ?
    e.g. We use LBWE TCode in R/3 system to find table name for the field from Extractor VCSCL(e.g.).
    Likewise is there any way to find table name for the fields from Standard extractor like 0CRM_LEAD_I.

    Hi ,
    Please find the link below for understanding BW CRM analysis.
    http://help.sap.com/bp_biv135/html/bw.htm
    activate the CRM DSs by scenario:
    1) Activate the application component hierarchy (tcode RSA9). Changes made to the application component hierarchy in the CRM system can be transferred to the BW using the "Edit Application Component Hierarchy" (SBIW - Postprocessing of DataSources).
    SAP Note 434886 must be implemented in CRM 3.0 before the application component hierarchy is activated.
    2) Activate the Business Content DataSources (tcode RSA5).
    Select/enter the application component and choose Execute (F8).
    To compare the shipped and active versions, choose the 'Select Delta' pushbutton. If there is no active version of the DataSource, it is selected automatically.
    To activate the shipped version, choose the 'Transfer DataSources' pushbutton.
    3) Management of the versions of the BW-Adapter metadata (tcode BWA5). All DataSources are displayed that are managed by the BW Adapter.
    As in transaction RSA5 (Service API Metadata Activation), the 'Select Delta' function can be used to select the inactive DataSources or compare shipped and active versions.
    You can also go directly to the screen for maintaining DataSources that are managed by the BW Adapter.
    The 'Compare Version' function makes a detailed comparison of the shipped and active versions.
    All BW-Adapter metadata is considered when versions are compared:
    Header information (Table SMOXHEAD)
    Mapping information (Table SMOXRELP)
    Global selection conditions (Table SMOXGSEL)
    Attribute key fields (Table SMOXAFLD)
    Hope this helps.
    Regards,
    csm reddy

  • How to enter values in the fields of standard SAP Infotype e.g. IT0024

    Hi,
    How to enter values in the fields of standard SAP Infotype?
    e.g. I want to enter values in infotype IT0024(Qualifications) in the field AUSPR(Profincy):-
    1-Level 1
    2-Level 2
    3-Level 3
    4-Level 4
    5-Level 5
    Thanks,
    Ameet

    Hi Divya,
    I checked with the screen and report which is mentioned by you. But I want to modify/make changes that should appear in the screen when you view details for a particualar employee in Qualifications(IT0024).
    Please refer the screen 2000 of module pool MP002400 in SE80. In that screen I want to make change as listbox with key.
    Can it be achieved in the same way as mentioned by you before by making standard SAP report as Z and then modify using layout editor?
    Please help me out. I think I am almost there.
    Thanks,
    Ameet

  • How to pick the fields of ABC table in Payslip

    How to pick the fields of ABC table in Payslip, So i want to add the calender days(absent days) in my payslip

    You can do it through PE51_CHECKTAB
    Yogesh

  • I need to  know the name of the database table and the fields in that table

    hi,
    i need to I need to  know the name of the database table and the fields in that table for the following fields of the front end .
    1) incident details.
    2) ownership details
    3) injury type
    4) % of investigation completed withen 7 days.
    5) count of incident type
    6) cost of workers compensation claim.
    7) injury resulting from for workers compensation claim
    8) investigation free text.
    9) investigation contribution factors.
    10) investigation root cause.
    11) investigation root cause free text
    12) employee risk assesment
    13) protential infrigment notice issued
    14) actual infrigment notice issued.
    15) actual infrigment notice reference number.
    16)vehicle damaged text.
    18) when the incident occured.
    thanks and regards,
    pronoy .

    Hello,
    Check CCIHT* under se16 and search for relevant information
    Thanks
    Jayakumar

  • How to update the field ZLSPR of table BSEG

    HI Friends,
    Can anyone tell me how to update the field ZLSPR of table BSEG? I've a 700 line abap program and I should include some logic in this program to make an entry into BSEG-ZLSPR. Is there any FM/BAPI available? Is BDC a healthy approach?. My team lead do not want me to use UPDATE statement....please help.
    Thanks in advans,
    Varsha.

    Hi,
    Hi ,
    You will need to group that radiobuttons so that SAP knows they are linked together. To do this using the grahical layout editor simply select all the radiobuttons and then right click on them, Now choose define group. Once you have done this you should not need any of the "clear" or "='X'" statements SAP should control it all for you.
    hope this helps
    Reward if found helpfull...
    Venkoji Babu.

  • Abbreviation of ST in the field origin of table JDT1

    Dear Experts/Gurus,
    I have a problem relate to define the abbreviation of ST in the field origin of table JDT1. it is not only ST and also other terms in the field. I have tried to find it out using ppt and help file but fail. where do I have to see it ? do you have ppt or pdf file explained about it ? I appreciate your answer so much. TIA
    Rgds,

    Hi steve andre
    The origin field is on OJDT and not JDT1. The field TransId on the table ojdt tells you which document it came from. But this field is numeric. So for example if the journal came from a Sales Invoice it will have 13. These numbers repreasent the actual DI API object also.
    Here is a table of the values.
    oChartOfAccounts  ChartOfAccounts object.  1 
    oBusinessPartners  BusinessPartners object.  2 
    oBanks  Banks Object.  3 
    oItems  Items object.  4 
    oVatGroups  VatGroups Object.  5 
    oPriceLists  PriceLists object.  6 
    oSpecialPrices  SpecialPrices object.  7 
    oItemProperties  ItemProperties  8 
    oUsers  Users object.  12 
    oInvoices  Documents object that represents a draft of sales invoice document.  13 
    oCreditNotes  Documents object that represents a draft of sales credit note document.  14 
    oDeliveryNotes  Documents object that represents a draft of sales delivery note document.  15 
    oReturns  Documents object that represents a draft of sales return document.  16 
    oOrders  Documents object that represents a draft of sales order document.  17 
    oPurchaseInvoices  Documents object that represents a draft of purchase invoice document.  18 
    oPurchaseCreditNotes  Documents object that represents a draft of purchase credit note document.  19 
    oPurchaseDeliveryNotes  Documents object that represents a draft of purchase delivery note document.  20 
    oPurchaseReturns  Documents object that represents a draft of a purchase return document.  21 
    oPurchaseOrders  Documents object that represents a draft of purchase order document.  22 
    oQuotations  Documents object that represents a draft of sales quotation document.  23 
    oIncomingPayments  Payments object.  24 
    oJournalVouchers  JournalVouchers object.  28 
    oJournalEntries  JournalEntries object that represents a normal journal entry.  30 
    oStockTakings  StockTaking object.  31 
    oContacts  Contacts object.  33 
    oCreditCards  CreditCards Object  36 
    oCurrencyCodes  Currencies object.  37 
    oPaymentTermsTypes  PaymentTermsTypes object.  40 
    oBankPages  BankPages object.  42 
    oManufacturers  Manufacturers  43 
    oVendorPayments  Payments object that represents payments to vendors.  46 
    oLandedCostsCodes  LandedCostsCodes  48 
    oShippingTypes  ShippingTypes  49 
    oLengthMeasures  LengthMeasures  50 
    oWeightMeasures  WeightMeasures  51 
    oItemGroups  ItemGroups object.  52 
    oSalesPersons  SalesPersons  53 
    oCustomsGroups  CustomsGroups  56 
    oChecksforPayment  ChecksforPayment object.  57 
    oInventoryGenEntry  Documents object that is used to enter general items to the inventory.  59 
    oInventoryGenExit  Documents object that is used to exit general items from inventory.  60 
    oWarehouses  Warehouses object.  64 
    oCommissionGroups  CommissionGroups  65 
    oProductTrees  ProductTrees object.  66 
    oStockTransfer  StockTransfer object.  67 
    oWorkOrders  WorkOrders object.  68 
    oCreditPaymentMethods  CreditPaymentMethods  70 
    oCreditCardPayments  CreditCardPayments  71 
    oAlternateCatNum  AlternateCatNum object.  73 
    oBudget  Budget object.  77 
    oBudgetDistribution  BudgetDistribution object.  78 
    oMessages  Messages object.  81 
    oBudgetScenarios  BudgetScenarios object.  91 
    oSalesOpportunities  SalesOpportunities object.  97 
    oUserDefaultGroups  UserDefaultGroups  93 
    oSalesStages  SalesStages  101 
    oActivityTypes  ActivityTypes object.  103 
    oActivityLocations  ActivityLocations object.  104 
    oDrafts  Documents object that represents a draft document (see Creating a draft document sample).  112 
    oDeductionTaxHierarchies  DeductionTaxHierarchies object.  116 
    oDeductionTaxGroups  DeductionTaxGroups object.  117 
    oAdditionalExpenses  AdditionalExpenses object.  125 
    oSalesTaxAuthorities  SalesTaxAuthorities object.  126 
    oSalesTaxAuthoritiesTypes  SalesTaxAuthoritiesTypes object.  127 
    oSalesTaxCodes  SalesTaxCodes object.  128 
    oQueryCategories  QueryCategories object.  134 
    oFactoringIndicators  object. FactoringIndicators  138 
    oPaymentsDrafts  Payments object.  140 
    oAccountSegmentations  AccountSegmentations object.  142 
    oAccountSegmentationCategories  AccountSegmentationCategories object.  143 
    oWarehouseLocations  WarehouseLocations object.  144 
    oForms1099  Forms1099 object.  145 
    oInventoryCycles  InventoryCycles object.  146 
    oWizardPaymentMethods  WizardPaymentMethods object.  147 
    oBPPriorities  BPPriorities object.  150 
    oDunningLetters  DunningLetters object.  151 
    oUserFields  UserFieldsMD object.  152 
    oUserTables  UserTablesMD object.  153 
    oPickLists  PickLists object.  156 
    oPaymentRunExport  PaymentRunExport object.  158 
    oUserQueries  UserQueries object.  160 
    oMaterialRevaluation  MaterialRevaluation object.  162 
    oCorrectionPurchaseInvoice  Documents object that represents a draft of purchase invoice correction document.  163 
    oCorrectionPurchaseInvoiceReversal  Documents object that represents a draft of reverse purchase invoice correction document.  164 
    oCorrectionInvoice  Documents object that represents a draft of correction invoice document.  165 
    oCorrectionInvoiceReversal  Documents object that represents a draft of reverse invoice correction document.  166 
    oContractTemplates  ContractTemplates object.  170 
    oEmployeesInfo  EmployeesInfo object.  171 
    oCustomerEquipmentCards  CustomerEquipmentCards object.  176 
    oWithholdingTaxCodes  WithholdingTaxCodes object.  178 
    oBillOfExchangeTransactions  BillOfExchangeTransaction object.  182 
    oKnowledgeBaseSolutions  KnowledgeBaseSolutions object.  189 
    oServiceContracts  ServiceContracts object.  190 
    oServiceCalls  ServiceCalls object.  191 
    oUserKeys  UserKeysMD object.  193 
    oQueue  Queue object.  194 
    oSalesForecast  SalesForecast object.  198 
    oTerritories  Territories object.  200 
    oIndustries  Industries object.  201 
    oProductionOrders  ProductionOrders object.  202 
    oPackagesTypes  PackagesTypes object.  205 
    oUserObjectsMD  UserObjectsMD object.  206 
    oTeams  Teams object.  211 
    oRelationships  Relationships object.  212 
    oUserPermissionTree  UserPermissionTree object.  214 
    oActivityStatus  ActivityStatus object.  217 
    oChooseFromList  ChooseFromList object.  218 
    oFormattedSearches  FormattedSearches object.  219 
    oAttachments2  Attachments2 object.  221 
    oUserLanguages  UserLanguages object.  223 
    oMultiLanguageTranslations  MultiLanguageTranslations object.  224 
    oDynamicSystemStrings  DynamicSystemStrings object.  229 
    oHouseBankAccounts  HouseBankAccounts object.  231 
    oBusinessPlaces  BusinessPlaces object.  247 
    oLocalEra  LocalEra object.  250 
    oSalesTaxInvoice  Sales tax invoice. See TaxInvoices object and DocType property with the valid value botit_Invoice.  280 
    oPurchaseTaxInvoice  Purchase tax invoice. See TaxInvoices object and DocType property with the valid value botit_Payment.  281 
    BoRecordset  Recordset object.  300 
    BoBridge  SBObob object.  305 
    oNotaFiscalUsage  NotaFiscalUsage object.  260 
    oNotaFiscalCFOP  NotaFiscalCFOP object.  258 
    oNotaFiscalCST  NotaFiscalCST object.  259 
    oClosingDateProcedure  ClosingDateProcedure object.  261 
    oBusinessPartnerGroups  object.  10 
    oBPFiscalRegistryID  BPFiscalRegistryID object.  278 
    Hope this helps

Maybe you are looking for

  • I can't deploy my webdynpro to SAP EP

    Hi, I created my Webdynpro Application, but when I try to deploy to SAP EP, and NWDS display this log on Deploy console [001]Deployment finished with warning Settings SDM host : bvpmepd SDM port : 50018 URL to deploy : file:/C:/Users/sistemas/AppData

  • Had a problem copying files, now MBP won't mount the external HD`

    Hi I thought to put this in the MBP forum but since I thik it may be the OS I decided to post here. I have a newer MBP with OS 10.5, I have an external LaCie c0nnected via eSata to keep my firewire 400 port free. I mounted another external HD to the

  • Losing Bold Format in Framemaker 10

    Hello, I have been having a problem with the format of my headings, footers and logos losing the bold appearance in Framemaker 10. When the document was created according to our EDD, template and paragraph designer, certain Headings were defined as B

  • How do I remove password when deleting files...lion

    Hi. I upgraded to Lion. I need to know how to remove the password everytime deleting files. Im going crazy...how do I remove that appliction ? MBK

  • Can Terminal fix this?

    I hope everyone viewing this is somewhat familiar with the App Terminal, found in Apps>Utilities. I have a webserver enabled with php, and somehow, after setting up the port forwarding and domain hosting, other people still cannot view my documents s