Is there a list of table name and object name? (oCompany.GetBusinessObject)

Hi,
How do I find the objects regarding the tables in SBO?
Example Item Master, I use following statement:
SAPbobsCOM.Items oItem;
oItem = ( SAPbobsCOM.Items ) oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems);
I like to find the object for SPP1.
Is there a list of table name and object name?
Thank you,
Rune

Thank you, Owen,
Yes, I found the table name and method name in SDK Help Center:
On your P/C, click START. Select All programs , SAP  Business One > SDK > SDK Help Center. Then select  DI API, then DI API Reference. If you scroll down this window you will find all existing classes. You will then find the SpecialPrices and the SpecialPricesDataAreas. All the information required to code is in there.

Similar Messages

  • Need a query to list all table names

    I have more than 500 tables in my database.
    'insert_date' & 'update_date' columns are found in more than 100 tables with data type as date.
    I need a query to list all table names and 'insert_date' , 'update_date' column's content.
    Please Help
    Lee1212
    Message was edited by:
    LEE1212

    I have more than 500 tables in my database.
    'insert_date' & update_date column is found in more
    than 100 tables with data type as date.
    I need a query to list all table names and
    'insert_date' column's content.What do you mean by "column's content". A table can have many rows. Do you want to display all the distinct value for these columns?
    Below is the query to get the tables which has columns insert_Date and update_date
    select table_name
    from user_tab_columns
    where column_name ='INSERT_DATE'
    or column_name ='UPDATE_DATE'
    /You can write a PL/SQL block to retrive the distinct values of INSERT_DATE for these tables
    declare
    TYPE ref_cur IS REF CURSOR;
    insert_date_cur ref_cur;
    lv_insert_date DATE;
    cursor tables_list IS
    select table_name
    from user_tab_columns
    where column_name ='INSERT_DATE';
    begin
    for cur_tables in tables_list
    loop
      OPEN insert_date_cur for 'SELECT DISTINCT insert_date from '||cur_tables.table_name;
      DBMS_OUTPUT.PUT_LINE(cur_tables.table_name);
      DBMS_OUTPUT.PUT_LINE('--------------------------------');
      LOOP
      FETCH insert_date_cur into lv_insert_date;
      EXIT WHEN insert_date_cur%NOTFOUND;
      DBMS_OUTPUT.PUT_LINE(lv_insert_date);
      END LOOP;
    CLOSE insert_date_cur;
    end loop;
    end;I haven't tested this code. There might be some errors. Just posted something to start with for you.

  • List of table descriptions and database structure

    Is there a list with descriptions of the tables SBO uses? Or   a specification of the structure of the database?
    I can see 600+ seperate tables with useless names (mostly 4 characters, like aact, ach1, acpr, etc). It's very hard to make some sense out of this. I need to know which tables to use and how they relate to each other when retreiving centain information. (At his moment I'm trying to gather all expenses of a service contract.)

    Hi Roland,
    There is also a method in B1 DI that will let you retrieve a list of all B1 table names with a description for each.  I wrote a small windows program in b to dump them to a text box that you might find helpful.
    After connecting to a DI company, here's the code to run:
    Dim rs As Recordset
                Dim bobobj As SBObob = oCompany.GetBusinessObject(BoObjectTypes.BoBridge)
                rs = oCompany.GetBusinessObject(BoObjectTypes.BoRecordset)
                rs = bobobj.GetTableList()
                Do While Not rs.EoF
                    TextBox2.Text &= rs.Fields.Item(0).Value & vbTab & rs.Fields.Item(1).Value & vbCrLf
                    rs.MoveNext()
                Loop
            End If
    I copied & pasted that data to a spreadsheet for easy reference & searching.

  • SQL query to return list of table names.

    Hi all,
    I'm looking for a query that will return a list of the table names that exist in my Microsoft Access database.
    Any ideas?

    http://forum.java.sun.com/thread.jsp?forum=31&thread=348287
    http://java.sun.com/j2se/1.4.2/docs/api/java/sql/DatabaseMetaData.html
    I would suggest you strat to use the search at the upper right.
    You can leave it blank and the advanced search will appear.
    You can then select the specific areas you want to search.

  • List of Table names

    Hello everybody,
    I want to build a select list with all my LOV tables, that I've created for my project.
    In the SQL Developer, I can use the following SQL statement:
    SELECT table_name FROM tables WHERE table_name LIKE '%LOV%';
    Now I get all tables, that contain "LOV" in their name. But that won't work within Apex. I want to get these table names in a select list. How to do this? Do I have to change sth in the query and where do I have to put it?
    Greetings
    Holger

    Hi,
    Have you tried something like:
    SELECT TABLE_NAME
    FROM ALL_TABLES
    WHERE OWNER = '#OWNER#'
    AND UPPER(TABLE_NAME) LIKE '%LOV%'
    ORDER BY 1Andy

  • List of tables count and Views count in schema wise

    Hi All,
    I want to get all tables count and views count in Schema wise, What is the query for that?
    Thanks in Advance.

    SELECT COUNT(*) FROM sys.tables t join sys.schemas s
    on s.schema_id=t.schema_id
    SELECT COUNT(*) FROM sys.views t join sys.schemas s
    on s.schema_id=t.schema_id
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • List of SAP workflows and  objects

    Hi,
       Is there a easier or more general way to browse for SAP provided workflows and objects? I used SWUD as well as the Object Repository SW03. These seem quite bulky and you basically have to know what you are looking for before you look. I want to be able to see a listing of what is provided so I can browse workflows and objects that we may want to use.
    Thanks

    Try the Business Workflow Explorer, transaction SWDM.
    Experiment with the different Criteria Tabs in the Selection pop-up window.
    I mostly use the "Application components" tab or the "Object" tab.
    Good luck!
    Thomas Carruth

  • List of table Name and Descrition

    Hi Experts
    Can u send me list of standard tables with description

    Check below
    SAP PP Master Data Tables
    MASTER DATA
    Engineering Change Management
    AENR        Customer and priority
    AEOI          Revision Numbers
    Work Center
    CRHD         Workcenter Header Data
    CRCA         Workcenter Capacity Allocation
    CRCO         Workcenter Cost Center Assignment
    CRHH          Hierarchy Header
    CRHS           Hierarchy Structure
    CRTX          Workcenter Text
    KAKO         Capacity Header
    KAZY          Intervals of Capacity
    Routing
    PLPO          Routing Operation Details
    PLKO         Routing Header Details
    MAPL         Routing Link to Material
    PLAB          Relationships - Standard Network
    PLAS          Task List - Selection of Operations
    PLMZ         Component Allocation
    PLPH          CAPP Sub-operations
    PLFH          PRT Allocation
    PLWP         Maintenance Package Allocation
    PLMK         Inspection Characteristics
    Bill of Material
    STPO          BOM Item Details
    STPU          BOM Sub Items (designators)
    STKO         BOM Header Details
    MAST         BOM Group to Material
    STZU          BOM History Records
    STAS          BOM Item Selection
    STPF           BOM Explosion Structure
    Line Design
    LDLH          Line Hierarchy Header
    LDLP          Line Hierarchy Items
    LDLT          Line Hierarchy Takt Times
    LDLBC       Takts/No. Individual Capacities per Line
    LDLBH       Line Balance Header 
    LDLBP        Line Balance Items
    LDLBT        Line Hierarchy Entry and Exit Takts
    PRT's
    CRFH          PRT Master Data
    CRVD_A     Link of PRT to Document
    CRVD_B     Link of Document to PRT
    CRVE_A     Assignment of PRT data to Equipment
    CRVE_B     Assignment of equipment to PRT data
    CRVM_A    Link of PRT data to Material
    CRVM_B    Link of Material to PRT data
    CRVS_A     Link of PRT Internal number to PRT External number
    CRVS_B     Link of PRT External number to PRT Internal number
    Demand Management
    PBED          Independent Requirements Data
    PBIM          Independent Requirements by Material
    Repetitive Manufacturing
    SAFK         RS Header Master Data
    S025           LIS -- Run Schedule Quantities
    S026           LIS -- Material Usage
    S028           LIS -- Reporting Point Statistics
    CEZP          Reporting Point Document Logs
    CPZP          Reporting Points - Periodic Totals
    MRP Records
    MDKP        MRP Document Header Data
    MDTB         MRP Table Structure (no data)
    PLSC          Planning Scenario (Long-term Planning)
    MDFD        MRP Firming Dates
    MDVM       Planning File Entries
    S094           LIS -- Stock/Requirements Analysis
    Reservations
    RESB          Reservations/Dependent Requirements
    Planned Orders
    PLAF          Planned Orders
    Discrete Production
    AFKO         Order Header
    AFPO          Order Item Detail
    AFVC          Order Operations Detail
    AFFL           Order Sequence Details
    AFFH          Order PRT Assignment
    AFBP          Order Batch Print Requests
    AFRU          Order Completion Confirmations
    AFFW         Confirmations -- Goods Movements with Errors
    AFRC          Confirmations -- Incorrect Cost Calculations
    AFRD          Confirmations -- Defaults for Collective Confirmation
    AFRH          Confirmations -- Header Info for Confirmation Pool
    AFRV          Confirmation Pool
    AFWI          Confirmations -- Subsequently Posted Goods Movements
    Classification
    KLAH          Class Detail
    CABN          Characteristic Detail
    AUSP          Characteristic Values
    CAWN          Characteristic Values
    CAWNT         Characteristic Value Texts
    KSML          Characteristic Allocation to Class
    KSSK          Material Allocation to Class
    Edited by: Rajesha Vittal on Mar 18, 2008 8:35 AM

  • Is there a list of interface cards and their solaris representations?

    Hi folks,
    I will get some new hardware for a project (two T5220) and need to write down some configuration document in advance.
    I need to know the interface names (like ce0, qfe9, ...) of the onboard interfaces, the ILOM port and the following cards:
    X4447A-Z: Sun x8 PCI express Quad Gigabit Ethernet UTP
    X7280A-2: Sun PCI-E Low profile Dual GigE UTP
    X7281A-2: Sun PCI-E Low-Profile Dual GigE MMF
    We have all this stuff in one T5220 and I have to prepare some kind of network configuration.
    Ist there a table that consists of the card name and the device/driver/module name that will be visible by ifconfig?
    Kind regards
    Oliver

    fucholiv wrote:
    Hi Darren,
    I think, the numbering must be fixed somehow. In the early days we had E4500 and some IO boards. On them the three sbus slots were grouped around two controllers 0 and 1. Controller 0 controlled sbus slot 1 and 2. So the numbering was, that the middle sbus slot qfe controller (e.g.) got the lowest numbers, then the rightmost came and then the leftmost.The numbering isn't fixed. But if you have the same hardware at installation time, it should be detected and numbered in the same order.
    We will have 30 T5220 and all network adapters will be installed at once. There must be some kind of numbering, that prevents from the total chaos in interface naming/numbering. We want to use only one script for all systems. ;-)I doubt it.
    An unsupported (but useful) path is to change the numbers after installation by tweaking /etc/path_to_inst. Without the explicit ability to rename interfaces, that's probably the best you could do.
    Darren

  • Is there a list of available Codepages and ISO-Standards?

    Hi,
    Im looking for a table where there are all codepages and ISO-Standards listed. Is there any where I can check?
    I want to know the specific naming of the ISO standards 3166 and 639.
    Thanks for help!!

    Hi,
    Check this links:
    http://www.wwtld.org/meetings/cctld/ISO3166-IDN-G.Lang-E.Porteneuve.pdf
    http://www.wipo.int/export/sites/www/standards/en/pdf/03-31-01.pdf
    http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm
    http://search.cpan.org/~neilb/Locale-Codes-2.07/lib/Locale/Country.pod
    Rewards if useful...
    Thanks,
    Mandeep Saini

  • Is there a list of warning names for @SuppressWarnings?

    According to the API docs this is down to the implementation. But I can't find a list for Sun's javac, which is irritating. In particular I'd like to selectively suppress "unchecked conversion" but neither "unchecked" nor "unchecked conversion" seems to hit the spot.

    This is the closest I could find for you:
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Supp
    ressWarnings.html
    That's where I found there was such a thing as a SuppressWarnings annotation. Trouble is it doesn't define any actual string values. That's left to "the implementor" but Sun is "the implementor" I'm interested in and I can't find anywhere they've documented it.

  • Is there a listing of error codes and what they mean?

    Continually get -3150 and -3252 codes. Can't find info when I search the site. Looks like lots of other error codes. Didn't know if anyone knows where to find a list of what the codes mean...and ways to make them stop.
    Thanks.

    It happens when the server can't connect to LDAP server. Check to make sure your server is connecting to directory server by going to "Users & Groups" tab in the administration server UI.

  • How get list of tables/functions/other objects used in a mapping?

    Hi,
    I would like to know list of objects such as tables, views, functions, procedures and table functions of all mappings in a module.
    Could any one please explain me, how can I do this using OMB+ scripting.
    Thank you,
    Regards,
    Gowtham Sen.

    OMBRETRIEVE MAPPING 'MAP_NAME' GET TABLE OPERATORS
    OMBRETRIEVE MAPPING 'MAP_NAME' GET VIEW OPERATORS
    OMBRETRIEVE MAPPING 'MAP_NAME' GET TRANSFORMATION OPERATORS
    OMBRETRIEVE MAPPING 'MAP_NAME' GET TABLE_FUNCTION OPERATORS
    Alternative variant (and maybe more simple) - use dictionary view DBA_DEPENDENCIES (or all_dependencies):
    select * from dba_dependencies where owner='MAP_OWNER' and type in ('PACKAGE','PACKAGE_BODY') and name='MAP_NAME'
    Oleg

  • Obtaining qualifier and table name in describe

    Determining qualifier and table name in describe
    Is there a way in OCIParamGet() on a statement handle/OCIAttrGet() sequence to determine the qualifier and table name?
    Otherwise, how can I get this information?
    When doing a join and listing the columns, we would like to be able to list qual.table name, followed by the columns associated with that table.

    If not with the parameter attributes (whic I haven't checked) you can always use the DescribeAny() to get the information.
    If you need I can get you a fairly complete sample for DescribeAny() which demonstrates describing just about every type of schema item.
    Drop me a line if you want it [email protected]

  • List Region with Dynamic Table name

    Trying to build a page that is similar to Query Builder. On the left side of my page, I need to populate a list of table names from a SQL statement. Once the list is created, will need to perform some addtional actions when user clicks onthe specific row in the list.
    What is the best way to create the list (based on SQL) that will allow me to be call some addtional processing when user clicks on the specific row?
    Thanks!

    " this is the  problem
    *    FROM (g_dso_bic_dofr )AS t1   "<<--- check spaces in here
        FROM (g_dso_bic_dofr) AS t1    "<<--- and here
        INNER JOIN /bic/pzifremom AS t2
          ON t1~/bic/ziparomr = t2~/bic/ziparomr
    " --- to here
    I think there's the problem, the space behind the parenthesis.
    Regards

Maybe you are looking for

  • Converting Powerpoint to Keynote-no sound

    Anyone have any tips on converting Powerpoint presentations to Keynote ones? When I open an existing PP pres in Keynote, the sound does not appear to come with it. Any thoughts as to how to solve? Thanks all!

  • Flash Builder 4.7 conditional compiling failed

    I installed Flash Builder 4.7 on my windows xp machine, and tried to migrate projects from FB 4.6. However in one of my projects I use conditional compiling, but I'm getting errors.For example in FB 4.6 I have this sample code: public class MyClass{

  • Intermittent sound on boot with Pavilion dv5

    Windows Vista Product number: NM597PA#ABG Ever since I started connecting my notebook to a second monitor with HDMI I've encountered a problem where it will only boot with audio roughly one in three times. The problem persists even when I revert to t

  • TS1702 How i can get the refund for the apps that not working.

    I bought apps name "Mobile Admin".  It's not working and I try to check on their web site it not avalible anymore.  www.appmobile.biz

  • How can I read pages offline that I've previously viewed?

    I'm unable to read websites that I've previously looked at online once I've logged off. I can't go into my history and re-read pages ofline. I can see what I've visited, I just can't open it. What do I need to do to read previously viewed pages offli