Bussines object reference into Solution into Solution Data Base

Hi Experts
I´m creating Solution Data Base based on the following  landscapes: R3 retail, BW and CRM. Under IMG I found that is possible to Define Business Object types for Simptom and Solution. My doubt is focus on learning how to use  Business Object Repository that exist on satelites sytems (BW, CRM, R3) for link them to the solution.
I mean, when you create a new solution into SDB is possible to link or reference the Business Object which you opened a support message, i.e: when is not possible to release a Purchase Order (R3 system), then I´d like to "attach" or link the Purchase Order reference by number to the Solution.
Could you please give hand or explain me how it works?
Thank a lot

if you are sure, that your object is a string, u can do this, too:
String stringObject = (String) getItemAt(combo.getSelectedIndex())

Similar Messages

  • Solution data base in CRM

    Hi
    Can any one please let me know about this CRM solution date base management.
    where I will get the required links.
    how good one should be to handle this Solution data base job.
    THough I've worked in CRM, I'm not into this SDB.Please help me out in this regard.
    Regards,
    Polite

    Hi Blake,
    Below are the list of Function Modules that will get all the relavant information about IBASE:
    CRM_IBASE_GET_DETAIL     Get Details for the Ibase
    CRM_IBASE_COMP_GET_DETAIL     Get Details for the Individual Componets
    CRM_IBASE_COMP_GET_PARTNER     It gives the partner details of the individual components
    CRM_IBASE_GET_PARTNER     It gives the partner details of the Ibase
    For a complete set of all the IBASE Related functionality you can have a look at the following Function Group:
    IB_CRM_API - IB: CRM APIs for IBase
    Thanks,
    Samantak.
    Rewards points for useful answers.

  • Solution data base -reg

    hi ,
    in the solution data base usage
    a symptom is created for which solution is created and object is assigned
    now which table and fields are to be used to know for a given equippment which is the symptom assigned and solution attached for it
    i have tried with
    ISMOB  -
    ISMP                   ISOL
    object & Symptom number        not able to link symptom number and solution link ?
    if i give object i am getting symptom number created , then i am not able to  input this symptom number to get the solution attached
    please help
    regards
    madhu kiran
    Edited by: madhu kiran on Apr 13, 2009 3:53 PM-any help in this regard?

    hi,
    my requirement is to make a Z REPORT whose input is the equippment and out put should give all symptoms , solutions etc.. what ever i have maintained through  IS01 / IS02 .
    I am getting different things in different tables i am not able to link them to get all desired data in single output screen
    please go through my earliesr mails in the link and provide helpful inputs
    regards,
    madhu kiran.

  • Solution Data base

    Dear all,
    Anybody having idea on.......Solution data base(Customer Service)
    What do you mean ,,,Symptom/Solution...
    I gone through Help.sap...apartfrom that is thr any doc or Just explain me In General terms ,,if possible with Example......
    Thanks in Advance
    Regards
    Luckky.

    Hi,
    The Solution Database is a repository of information which is stored as problems and solutions, and is indexed for immediate retrieval. For the applications that use the Solution Database as a knowledge base, see Integration below.
    Knowledge administrators use the Solution Database to define problems and solutions using, for example, free-text descriptions in several languages and customized attributes. They can structure multiple relationships between problems and solutions, and navigate easily between them.
    The Solution Database offers a basic interface for knowledge administrators (but also agents, field engineers, and other users) to search for problems and solutions.
    [symtom-solution|http://help.sap.com/saphelp_sm32/helpdata/en/33/c7f5414e2fc517e10000000a155106/content.htm]
    regards
    sadhu kishore

  • Is Solution data base is transcation type specific ?

    Hi Every body ,
    I am new to solution manager . I crated a new ticket type from standard SLFN . That is working fine .
    Now i need to configure solution data base . I assigned the 'SDB  create' action in action profiles also .
    I could not see the solution database tab in transaction details of ticket . And even if i use action " create solution in solution data base '  from actions that is not working .
    1 . Please provide good documents for SDB
    2 . How do i get tab solution database in transaction details of ticket
    3 . How can i configure the action ' Create solution in solution data base ' Action .
    4 . Is solution data base is ticket type specific ? . IF yes how can i configure that for one ticket type .
    Thanks in advance ,
    Vijay

    hi,
    my requirement is to make a Z REPORT whose input is the equippment and out put should give all symptoms , solutions etc.. what ever i have maintained through  IS01 / IS02 .
    I am getting different things in different tables i am not able to link them to get all desired data in single output screen
    please go through my earliesr mails in the link and provide helpful inputs
    regards,
    madhu kiran.

  • Maintain dimension members directly into the data base

    Hi,
    We need to update the dimension members directly into the data base.
    Instead of going into the administration and entering manually.
    I tried just updating the table mbr and dim. but that didn't work.
    Any insight on that?

    To update the dimension members from the backend tables, update the mbr<dimension>> table and process the dimension either from BPC Admin Console or a SSIS BPC Admin Task. The dimension processing will automatically update the dim<<dimension>> table in the backend.
    However, the updated dimension members can not be seen from the frontend in the BPC Admin. To see the updated dimension member sheet in the current client machine, use Export Dimension option in BPC Admin Console.
    To see the updated dimension an all client machines and get reflected in the current view, please follow this URL:
    Re: BPC 7 MS Update dimension (Make_dim task)
    Hope this helps.

  • Object Reference Column in a SqlCe Data Table

    This may be a strange question...
    I've defined a table in a SqlCe database (using VS C#2010 Express) that will never have any data persisted in it.  I did this so I can instantiate versions of it using the designer generated strongly typed table definition without ever directly using
    the one that's in the database.  (That may be obtuse, but it seems to work quite well, I don't need to worry about the database overhead, and I get all the documentation and code creation the designer provides).
    I've now run into a situation where I'd like one of the columns in the instantiated tables to contain references to C# objects (always requiring casting of course to use them).  Can I do that and, if so, what SqlCe datatype would I use to get a column
    that can contain an object reference?
    Thx.  Steve

    Erik -
    I'll admit to trying to cut some corners, which I'd like to do if there's a way that doesn't cross some .Net, Visual Studio  or C# line.
    As you noted, I do want to store a reference to the object ONLY during runtime.  I can certainly use a List or a DataTable created for that purpose, which is really what I want to do.  I'd like to use a DataTable that I already have setup
    to store other variables, so that as I traverse it (e.g. using foreach DataRow), I can reference the object as well as the other variables using the foreach DataRow reference. 
    The trick I want to use is to define the DataTable using the VS database designer rather than manually creating the code that defines it.  The designer is visual, easy to use, self-documenting, and of special note makes the code that uses
    the DataTable easy to read because the resulting DataTable is strongly-typed.  I should have more clearly exhibited in the sample code how I use the strong-typing in the line that sets myDataRow.  It should read: "MyDatabaseDataSet.MyTableDataRow
    myDataRow = myDataTable.Rows[I];", where "MyDatabaseDataSet.MyTableDataRow" uses to the VS generated strongly-typed DataRow definition.  Note that the code does not store data in the database's
    DataTable itself.  It merely uses the database's DataTable DEFINITIONS to instantiate other tables.
    I have used this approach when the all data in the DataTable is of one or more native C# types (int, decimal, etc) for which there are corresponding SqlCe types.  However, I'd like to use it with a custom type (MyObject), if that's possible, and am
    looking for what SqlCe type might work for that purpose, if any.
    I admit that this may be an unusual way to create a DataTable definition.  I'm not sure where I can up with the idea.  I may have read it somewhere or just cooked it up myself.  But I really like what the strong-typing provides (without having
    to manually create it myself).
    Is there any way to include custom types using this idea?

  • How to insert  data from different internal  table  into a data base table

    hi all,
             I want to insert a particular field in an internal table to a field in a data base table.Note that the fields in the internal table and database table are not of the same name since i need to insert data from different internal tables.can some one tell me how to do this?
    in short i want to do something like the foll:
    INSERT  INTO ZMIS_CODES-CODE VALUE '1'.
    *INSERT INTO ZMIS_CODES-COL1 VALUE DATA_MTD-AUFNR .(zmis_codes is the db table and data_mtd is the int.table)

    REPORT  ZINSERT.
    tables kna1.
    data: itab LIKE KNA1.
    data lv_kUNAG LIKE KNA1-KUNNR.
    lv_kuNAG =  '0000010223'.
    ITAB-kuNNR = lv_kuNAG.
    ITAB-name1 = 'XYZ'.
    INSERT INTO KNA1 VALUES ITAB.
    IF SY-SUBRC = 0.
    WRITE:/ 'SUCCESS'.
    ELSE.
    WRITE:/ 'FAILED'.
    ENDIF.
    Here lv_kunag is ref to kna1 kunnr passed in different name
    In internal table .
    Try and let me know if this logic dint work.

  • How to Upload .TXT, BITMAP, .PDF files into a Data base Table.

    Hi,
    I have one requirement like Below.
    I have to create a table which should hold a Text file or a Bitmap file or a PDF file and i should be able to down load it to the desktop with same format.
    How i can upload or download such type of files.
    Please let me know..
    Srikanth.

    Hi Srikanth,
    *&      Form  f1104_download_to_lofile
    Download to data from internal table to Logical File
    FORM f1104_download_to_lofile.
    Open the file in application server
      OPEN DATASET v_filepht FOR OUTPUT IN TEXT MODE.
      IF sy-subrc <> 0.
        MESSAGE s185 WITH v_filepht.           " File opening error
        LEAVE LIST-PROCESSING.
      ENDIF.
      LOOP AT i_logfile INTO w_logfile.
        TRANSFER w_logfile TO v_filepht.
        CLEAR w_logfile.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE:/ text-055, v_filepht, text-056. " File successfully created
      ELSE.
        WRITE:/ text-057, v_filepht.           " Error creating file
      ENDIF.
    Closing the file
      CLOSE DATASET v_filepht.
    To Retrieve Data file from Application server
    (Upload from Unix)
    DATA: i_file like rlgrap-filename value '/usr/sap/tmp/filename.txt'.
    OPEN DATASET i_file FOR INPUT IN TEXT MODE.
    IF sy-subrc NE 0.
    MESSAGE e999(za) WITH 'Error opening file' i_file.
    ENDIF.
    DO.
    Reads each line of file individually
    READ DATASET i_file INTO wa_datatab.
    ENDDO.
    Also check:
    http://www.sapdevelopment.co.uk/file/file_updown.htm
    http://www.sapdevelopment.co.uk/file/file_uptabsap.htm
    OR
    Regards,
    Anjali

  • How can i insert a root certificate into firefox data base

    We are a software development company, we launched an app that is called SAINT, its an internet filters that monitors web traffic, www.saintapp.com, we use a certificate that when going to secure sites, like, hotmail, gmail, aolmail, yahoo mail, banks, etc, it will display an Untrusted connection message and we have to add an exception to continue, that is because firefox uses it own certificate database and does not use microsofts, our app incerts the certificate into microsoftsdata base, how can insert our certificate into Firefox database? or can we sent to you the certificate and you can insert it into your database and release an update? what can we do?
    please advice

    Ok,
    Replace array subset is what I was looking for I think. I'll try it out.
    What I meant earlier is; if you have the array (with row indexing on the left)
    0: 1 1 1 1
    1: 2 2 2 2
    2: 3 3 3 3 
    3: 4 4 4 4
    And you want to put 8888 into array with the insert into array vi, at row 2, it becomes 
    0: 1 1 1 1
    1: 2 2 2 2
    2: 8 8 8 8
    3: 3 3 3 3
    4: 4 4 4 4
    But I want it to look like 
    0: 1 1 1 1
    1: 2 2 2 2
    2: 8 8 8 8
    3: 4 4 4 4 
    So I have overwritten row 2, taking into account array indexing starts at 0 :-)

  • Inserting rows into a data block

    Hi, how do i insert 'n' rows into a data block and after that commit the changes into the data base.
    Thanks for any help.

    You can use something like this:
    Go_Block('my_block');
    first_record;
    LOOP
    .... insert values to the items
    next_record;
    END LOOP;
    - for commiting changes
    Do_Key('Commit_Form');
    I hope this will help you.
    Helena

  • New data base with adobe flex

    Hi  All,
    My Requiremenyty as below.
    I need to get the data from sap and from some third party softwares.  and need to build a web applicaation in adobe flex.
    i want put the data from sap and other systems into separate data base ( Like Oracle ).
    the data  from sap and other softwares can be schduled daily.  so we need build flex web appllication newly built oracle data base.
    Pleaae let me know how we can do?  is it possible?  we can i get the exact help?
    Regards,
    Kishan

    Hi mate!
    You can communicate your Flex app with SAP or another third-parties throw WebServices, RPC's or Remote Objects (java).
    For the communication with Oracle, there is a versión of Oracle which has WebServices to expose the operations; if not avaliable, you might need an application server (php, jsp, ...)
    This links may help you:
    http://www.nabble.com/-flex_india:15197--flex-sql-or-oracle-td20034201.html
    http://www.richappsconsulting.com/blog/blog-detail/integrating-flex-with-oracle-epg-using-xml/
    http://asql.mooska.pl/
    Hope it helps you
    Regards!
    Fran

  • Transfer of xml file elements to data base columns

    hi all,
    i have to store xml file's data(element values) into the data base(table columns).
    i heard that we can acheive this by XSU.
    IS it is mediator between xml and db? if yes how to install it.
    i tried something as below
    with t as (
    select xmltype('<Message-Header>
    <Message-Id>1234</Message-Id>
    <Sender-Company-ID>4569</Sender-Company-ID>
    <Sender-Company-Name>abc company</Sender-Company-Nam
    <Sender-User-ID>AA</Sender-User-ID>
    <Recv-Company-ID>050</Recv-Company-ID>
    <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
    <Creation-Time>20101019 15:59:39</Creation-Time>
    </Message-Header>') as xml from dual
    )but i am getting following error. can anybody explain about this
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (
      2  select xmltype('<Message-Header>
      3  <Message-Id>1234</Message-Id>
      4  <Sender-Company-ID>4569</Sender-Company-ID>
      5  <Sender-Company-Name>abc company</Sender-Company-Name>
      6  <Sender-User-ID>AA</Sender-User-ID>
      7  <Recv-Company-ID>050</Recv-Company-ID>
      8  <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
      9  <Creation-Time>20101019 15:59:39</Creation-Time>
    10  </Message-Header>') as xml from dual
    11* )
    SQL> /
    with t as (
    ERROR at line 1:
    ORA-01041: internal error. hostdef extension doesn't existPlease help me..
    my db version is Oracle Database 10g Release 10.2.0.1.0 - Production

    Hi,
    What are you trying to achieve with a single WITH clause and no SELECT?
    Please see this from the documentation if you want to use it properly :
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_10002.htm#i2077142
    Apart from its true purpose of subquery factoring, the WITH clause is often use here and there to simulate a table content, but you'll always need a SELECT.
    Maybe that's what you were trying to do?
    As for your question, starting with release 10.2, Oracle provides XMLTable to shred XML documents into relational structures.
    For example,
    with t as (
    select xmltype('<Message-Header>
    <Message-Id>1234</Message-Id>
    <Sender-Company-ID>4569</Sender-Company-ID>
    <Sender-Company-Name>abc company</Sender-Company-Name>
    <Sender-User-ID>AA</Sender-User-ID>
    <Recv-Company-ID>050</Recv-Company-ID>
    <Recv-Company-Name>XYZ pvt.ltd</Recv-Company-Name>
    <Creation-Time>20101019 15:59:39</Creation-Time>
    </Message-Header>') as xml from dual
    select x.*
    from t,
         XMLTable(
          '/Message-Header'
          passing t.xml
          columns
            message_id          number       path 'Message-Id',
            sender_company_id   number       path 'Sender-Company-ID',
            sender_company_name varchar2(30) path 'Sender-Company-Name',
            sender_user_id      varchar2(30) path 'Sender-User-ID',
            recv_company_id     varchar2(30) path 'Recv-Company-ID',
            recv_company_name   varchar2(30) path 'Recv-Company-Name',
            creation_time       varchar2(30) path 'Creation-Time'
         ) x
    ;If you're working in PL/SQL, and the XML resides in a variable, you can directly do (with necessary datatype conversion in the SELECT) :
    insert into your_table ( <your_columns_list> )
    select <your_columns_list>
    from XMLTable(
          '/Message-Header'
          passing your_xml_var
          columns
            message_id          number       path 'Message-Id',
            sender_company_id   number       path 'Sender-Company-ID',
            sender_company_name varchar2(30) path 'Sender-Company-Name',
            sender_user_id      varchar2(30) path 'Sender-User-ID',
            recv_company_id     varchar2(30) path 'Recv-Company-ID',
            recv_company_name   varchar2(30) path 'Recv-Company-Name',
            creation_time       varchar2(30) path 'Creation-Time'
         ) x
    ;

  • Need to copy CMS data base from MySQL to oracle

    Hi,
    Right now our CMS data base is My SQL and we are planning to use oracle db as CMS data base. For that we will copy all CMS tables from My SQL to oracle. But I am not sure whether we can copy My SQL db to oracle db using copy option of script cmsdbsetup.sh.
    Below are my environment details:
    ============================================
    Product: BO XI R3.1
    OS: Linux
    CMS DB: My SQL
    Aplication server: Aapche-Tomcat
    ============================================
    Let me know whether I can copy CMS My SQL data base into Oracle data base using copy option of cmsdbsetup.sh script.
    Thanks,
    Swapnil Rodge.

    hillelhalevi wrote:
    I don't have TOAD nor any other tool for querying the database.  I'm wondering how I can load a large data set from an Oracle table onto my desktop using Excel or Access or some other tool using ODBC or not using ODBC if that's possible.  I need results to be in a .csv file or something similar. Speed is what is important here.  I'm looking to load more than 1 million but less than 10 million records at once.   Thanks.
    Use Oracle's free Sql Developer
    http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html
    You can just issue a query like this
    SELECT /*csv*/ * FROM SCOTT.EMP
    Then just save the results to a file
    See this article by Jeff Smith for other options
    http://www.thatjeffsmith.com/archive/2012/05/formatting-query-results-to-csv-in-oracle-sql-developer/

  • How to read multiple lines from an external file to the Oracle data base

    Hi Guys,
    I have an external file which contains multiple lines and I want to read it to the data base .I have done it for the file if it contains one line.
    Please guide me how to retrieve all the lines into the data base.And also tell me how Oracle will come to know the end of the line in the file
    Thanks,
    Prafulla

    Hi,
    try this
    CREATE TABLE ab
    a VARCHAR2(1 BYTE),
    b VARCHAR2(2 BYTE),
    c VARCHAR2(10 BYTE),
    d VARCHAR2(11 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY dir_name
    ACCESS PARAMETERS
    ( records delimited by newline
    fields (
    a POSITION(*) CHAR(1),
    b POSITION(*) CHAR(2 ),
    c POSITION(*) CHAR(10 ),
    d POSITION(*) CHAR(11 )
    LOCATION (dir_name:'filename.txt')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;
    Regards,
    Simma....

Maybe you are looking for