Is it possible to add records to tables using Enterprise Manager?

Can we add records to tables using Oracle Enterprise Manager web interface instead of the sqlplus commands ? if not, is there any easy way to insert data into table using a graphical interface?

You may consider using iSQL*Plus.
Check http://www.oracle.com/technology/obe/obe10gdb/install/isqlplus/isqlplus.htm
Thanks,

Similar Messages

  • Add records in table ACCESS from labview by ActiveX

    I try to add records in table of database ACCESS by an ActiveX from labview but my programme doesn't work ...
    What is the problem ?
    I have attached my VI
    Thanks in advance
    hasna
    Attachments:
    base1.vi ‏35 KB

    On Thu, 11 Jul 2002 08:13:48 -0700 (PDT), Lab Viewer
    wrote:
    >I saw your previous posts related to ActiveX/Access. I once had the
    >same kind of problems. It's not an easy task (without a toolkit)
    >because you have to learn the "interface" provided by Access/DAO in
    >order to manage what you are trying to do.
    >In my case, the best solution it was to follow the Visual Basic for
    >Applications examples included in MS Access. Even though you don't
    >know VB, don't be afraid. Important is to figure out from that example
    >what methods/properties you need to use, the proper order to call them
    >and eventually some parameters. You are dealing with the same
    >methods/properties in LabVIEW, the difference is that you have them in
    >a graphical format instead of text
    .You can find these examples by
    >going to MS Access help > Index and type DAO objects and then choose
    >one to start with (Database, recordset, field =85).
    >
    >Hope this helps
    The examples on NI's website were originally written using the DAO
    model, but the latest one was written using the ADO model.
    However, I am unable to find either example LLBs on their website
    anymore. Maybe they're trying to push their SQL Toolkit.
    Along with the VBA help in MS Access, I *highly* recommend the book
    ADO Programming for Dummies. Wonderful book. Helped me understand the
    VBA help. :-)
    Again, if anyone is intersted in VIs using ActiveX that works. He/she
    is welcome to email me.
    Linda

  • Add records to table T180a

    Godd morning
    I'm not able di add records at table T180a.
    I'm not do "append t180a".
    tables: T180A.
    DATA:lw_file  type string.                        " File Path
    DATA:  BEGIN OF t_itab OCCURS 0.
    INCLUDE STRUCTURE T180A.
    data: end of t_itab .
    lw_file = 'X:\Dokumente und Einstellungen\users\Desktop\t180a.TXT'.
    CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                                      = lw_file
          FILETYPE                                   = 'ASC'
          HAS_FIELD_SEPARATOR           = 'X'
        tables
          data_tab                                      = t_itab
    loop at t_itab.
    move-corresponding t_itab to T180a.
    endloop.
    leave program.

    Do you have any idea what you are trying to do here? Looking at your code, I don't think you do since it's really bad!!! Sorry, but there is no other way to put this.
    What gave you the idea that table T180a would be updated using MOVE-CORRESPONDING??

  • How to delete/drop all the tables from SQL Server Database without using Enterprise Manager?

    How to delete/drop all the tables from SQL Server Database without using Enterprise Manager?
    I tried using DROP Tables, Truncate Database, Delete and many more but it is not working.  I want to delete all tables using Query Analyzer, i.e. through SQL Query.
    Please help me out in this concern.
    Nishith Shah

    Informative thread indeed. Wish I saw it early enough. Managed to come up with the code below before I saw this thread.
    declare @TTName Table
    (TableSchemaTableName
    varchar
    (500),
    [status] int
    default 0);
    with AvailableTables
    (TableSchemaTableName)
    as
    (select
    QUOTENAME(TABLE_SCHEMA)
    +
    +
    QUOTENAME(TABLE_NAME)
    from
    INFORMATION_SCHEMA.TABLES)
    insert into @TTName
    (TableSchemaTableName)
    select *
    from AvailableTables
    declare @TableSchemaTableName varchar
    (500)
    declare @sqlstatement nvarchar
    (1000)
    while 1=1
    begin
    set @sqlstatement
    =
    'DROP TABLE '
    + @TableSchemaTableName
    exec
    sp_executeSQL
    @sqlstatement
    print
    'Dropped Table : '
    + @TableSchemaTableName
    update @TTName
    set [status]
    = 1
    where TableSchemaTableName
    = @TableSchemaTableName
    if
    (select
    count([Status])
    from @TTName
    where [Status]
    = 0)
    = 0
    break
    end

  • Is it possible to add counter in table maintenance (automatically)?

    sap ver. 4.7
    is it possible to generate counter in table maintenance (automatically)?
    i mean without building dialog screen  / table control  .
    exmple  :
    the user insert .....
    name
    name
    name
    name
    i add as key (automatically)
    1
    2
    3
    4

    Hi,
    It is possible to do the same by not adding new dialog screen / table control .All table maintainance are infact module pool programs ...While creating a tabe maintainance we have an option of 2 step or 1 step ->these screen numbers are the ones which are displayed  in table maintainace SM30
    So we can infact do coding in PAI and PBO of these screens.
    But the main disadvantage is that if you re-generate the table maintainace the code in PAI and PBO gets deleted for that screen
    eg:if you table maintainance is assigned to function group ZFXNGROUP -> go to se38 -> see program SAPLZFXNGROUP
    just add SAPL to function group suffix to get the module pool and the view screen number(same as that given in table maintainace for step1 and step2) ..in the PBO /PAI write the necessary code to increment the counter..
    we can just do a loop at screen and hide the counter field while incrementing in the PAi/PBO logic as required
    But once again,regeneration of table maintainace in the screen overwrites the PBO/PAI..the best we can do is create subroutines and write the code in a new include..so that everytime the code is overwritten...we need to just write the subroutine name in flow logic since includes are not overwritten in regenerations
    Also if we use the same function group for multiple table maintainance we have different screens,Pls make sure you are not editting the wrong screens......
    Hope it helps
    Pls check and revert
    Regards
    Byju

  • Unable to insert the record to table using pre-insert & pre-update trigger

    Hi All,
    I have tried to insert and update the backend table using the pre-update and pre-insert triggers. But its not working for me. Please find below the code which i have used in the triggers.
    Pre-insert trigger:
    DECLARE
    v_cust_num_cnt NUMBER;
    BEGIN
              SELECT      COUNT(customer_number)
              INTO      v_cust_num_cnt
              FROM cmw_bc_mobile_number
              WHERE substr(customer_number,1,15)=substr(:BLOCKNAME.CUSTOMER_NUMBER,1,15);
              IF      v_cust_num_cnt = 0 THEN
                        INSERT INTO cmw_bc_mobile_number (CUSTOMER_NUMBER
                                                                                                   ,MOBILE_NUMBER
    ,CREATION_DATE
    VALUES
    (substr(:BLOCKNAME.CUSTOMER_NUMBER,1,15)
    ,:BLOCKNAME.MOBILE_NUMBER
    ,SYSDATE
    COMMIT;                                                                                                    
    END IF;          
    END;
    PRE_UPDATE TRIGGER:
    BEGIN
              IF :SYSTEM.RECORD_STATUS = 'CHANGED' THEN
              UPDATE apps.cmw_bc_mobile_number
         SET mobile_number = :BLOCKNAME.MOBILE_NUMBER,
         creation_date = SYSDATE
              WHERE customer_number=substr(:BLOCKNAME.CUSTOMER_NUMBER,1,15);
              COMMIT;
         END IF;
    EXCEPTION
              WHEN OTHERS THEN
                   NULL;     
    END;
    Please let someone assist in gettting it resolved.
    Regards,
    Raj.

    Just use MESSAGE (we don't know what fnd_message is, that is some custom code):
    message('v_cust_num_cnt='||v_cust_num_cnt);
    IF v_cust_num_cnt = 0 THEN
      message('Now inserting...');
      INSERT INTO cmw_bc_mobile_number (CUSTOMER_NUMBER... 
    else
      message('Nothing to insert');
    end if;

  • Is it possible to add a single table to existing CDC setup ?

    We have Asynchronous Change Data Capture setup.
    Database A : Source Database
    Database B : Staging Database
    Redo Log shipping is b/w A --> B and Capture/Apply is running on B.
    Total 32 tables outof 300 are part of these CDC setup. I'm wondering if we can add a table to existing setup, As per the documentation, We can't user streams API to add a table in capture/apply, and CDC doesn't have its owe API. So is there really no way except to rebuild entire setup?
    Thank you,
    Mahesh

    You need to follow steps below:
    1. @destination database : stop capture process
    2. @source database add supplemental logging for new tables
    3. @source database :prepares table instantiation (exec DBMS_CAPTURE_ADM.PREPARE_TABLE_INSTANTIATION(table_name => 'owner.table_name');)
    4. @destination database :create change table for additional tables
    5. @destination database: drop subscriber
    6. @destination database: start capture process ,create subscriber,recreate subscriber views and then activate subscriber then extend window
    All steps are action plan that I have done in my CDC system.
    Good luck!
    Chaiya Rakdee

  • Problem inserting records in table using cursors

    hi all
    i have a block in which i m trying to take records from a table pass it to a procedure which in turn calls some procedures
    and than the procesed records are dumped into another table
    this is my code
    set serveroutput on
    declare
    lastcall date;
    srcip varchar2(50);
    username varchar2(50):='9204';
    duration number;
    callto varchar2(50);
    accountid varchar2(50);
    calltime date;
    subscriberid varchar2(50);
    country varchar2(50);
    cost varchar2(50);
    CURSOR process_cdr
              IS
    SELECT
              srcip,
              username,
              callto,
              calltime,
              duration
    FROM rawcdr
    WHERE     calltime>lastcall;
    begin
    select max(calltime_gmt) into lastcall from
    processed_cdr;
    open process_cdr;
    fetch process_cdr into srcip,username,callto,calltime,duration;
    dbms_output.put_line(callto);
    if (instr(callto,'00')=5) then
    callto:=SUBSTR(REPLACE(callto,SUBSTR(callto, INSTR(callto, '@'), 50), ''), INSTR(callto, ':') + 3, 50);
    dbms_output.put_line(callto);
    elsif (instr(callto,'011')=5) then
    callto:=SUBSTR(REPLACE(callto, SUBSTR(callto, INSTR(callto, '@'), 50), ''), INSTR(callto, ':') + 4, 50);
    dbms_output.put_line(callto);
    else
    callto:=SUBSTR(REPLACE(callto, SUBSTR(callto, INSTR(callto, '@'), 50), ''), INSTR(callto, ':') +1 , 50);
    end if;
    process_call(srcip,username,duration,callto,accountid,subscriberid,country,cost);
    dbms_output.put_line(cost);
    dbms_output.put_line('trying to insert');
    insert into processed_cdr values(accountid,subscriberid,srcip,username,callto,country,calltime,duration,cost) ;
    dbms_output.put_line('inserted successfully');
    FETCH process_cdr INTO srcip, username, callto, calltime, duration;
    close process_cdr;
    end;
    now the problem is that
    records are not getting inserted nor an error is shown
    i guess i m not that much familiar with cursors
    and thats creating prob
    please help

    Hallo,
    but you haven't a loop ! :-)
    Try this,
    (not tested)
    set serveroutput on
    declare
    lastcall date;
    srcip varchar2(50);
    username varchar2(50):='9204';
    duration number;
    callto varchar2(50);
    accountid varchar2(50);
    calltime date;
    subscriberid varchar2(50);
    country varchar2(50);
    cost varchar2(50);
    CURSOR process_cdr
    IS
    SELECT
    srcip,
    username,
    callto,
    calltime,
    duration
    FROM rawcdr
    WHERE calltime>lastcall;
    begin
    select max(calltime_gmt) into lastcall from
    processed_cdr;
    open process_cdr;
    LOOP
    fetch process_cdr into srcip,username,callto,calltime,duration;
    EXIT WHEN process_cdr%NOTFOUND;
    dbms_output.put_line(callto);
    if (instr(callto,'00')=5) then
    callto:=SUBSTR(REPLACE(callto,SUBSTR(callto, INSTR(callto, '@'), 50), ''), INSTR(callto, ':') + 3, 50);
    dbms_output.put_line(callto);
    elsif (instr(callto,'011')=5) then
    callto:=SUBSTR(REPLACE(callto, SUBSTR(callto, INSTR(callto, '@'), 50), ''), INSTR(callto, ':') + 4, 50);
    dbms_output.put_line(callto);
    else
    callto:=SUBSTR(REPLACE(callto, SUBSTR(callto, INSTR(callto, '@'), 50), ''), INSTR(callto, ':') +1 , 50);
    end if;
    process_call(srcip,username,duration,callto,accountid,subscriberid,country,cost);
    dbms_output.put_line(cost);
    dbms_output.put_line('trying to insert');
    insert into processed_cdr values(accountid,subscriberid,srcip,username,callto,country,calltime,duration,cost) ;
    dbms_output.put_line('inserted successfully');
    /* Second fetch is not needed
    --FETCH process_cdr INTO srcip, username, callto, calltime, duration; */
    END LOOP;
    close process_cdr;
    COMMIT; -- eventually
    end;You didn't answered - do you do COMMIT elsewhere ?
    I placed COMMIT also, if you don't need it, you can comment it
    Regards
    Dmytro

  • Is it possible to modify SQL DB tables using TUXEDO services???

     

    Hi,
    I dont know how to use to resource manager to connect to the SQL Server Database
    nor have I ever worked with SQL Servers.
    But you could possibly try doing the following.
    In the Tuxedo Server / Service, using Pro*C, you can use the
    EXEC SQL CONNECT :userid IDENTIFIED BY :password statment.
    This should open the connection to the SQL Server DB. and then using the regular
    Pro*C SQL Statement you should be able to do modify the tables.
    But please be sure that the user id you use has the Insert/Update/Delete rights
    on the tables that you access.
    I hope this helps.
    Regards
    Amit

  • Insert and update same record of table using store procedure in oracle 10g

    Hi,
    I am using oracle sql developer for this.
    I have created Store procedure which run after every 30mins of interval.
    the problem is Ii need to insert data for first time of day then later that same record should update for particular field(here its plan code).
    if new field is coming (if new plan code is generated) then it should insert data and again update same for interval.
    means for each plan individual record(i.e. plan wise summary) should be there for only a day. next day new record for same plan.

    Hi,
    You should use Merge like shown below:-
    Merge into original_table a
    using second_table b
    on (a.primary_key=b.primary_key and a.primary_key........)
    when match then
    update set column_list=b.column_list
    when not match then
    isert into (column list)
    values(a.column_list)If you dont know much about merge then follow below link..
    http://www.oracle-developer.net/display.php?id=203
    http://www.oracle-base.com/articles/10g/merge-enhancements-10g.php

  • How to insert record in table using ADF Table

    Hi,
    I am developing and application in ADF .it consist 5 tables.i need to insert into 1 table that contains IDs that are reffered from other tables and on ADF Table fi i dont want to show those IDs. Can somebody provide me solution how to do that?
    like i have a SkillTable - that contains attributes Resource No(number) ,module Id(number), Track id(number), skill_type(number), skill_rating(number), experience(number).
    Track id is reffered from track table
    Module id is reffered from module table
    Resource table is reffered from resource table
    skill_type and skill_rating from lookup table
    and i need to insert into SkillTable using ADF Table. we dont want to show Track id,module id,codes for skill_type nad skill_rating on ADF Table instead we want to show trackname and module name ,code values for skill_type and Skill_rating .
    when we create ADF table for this skill table it shows me ids but what i want is that in each row it should show resource name,modulename,track name,and for skill_type and skill_rating it should show name of skill_types and Skill_rating rather than codes for each skill_type and Skill_rating.
    we tried to insert by creating view ,but didnot work.
    plz provide any solution.
    Thnakls

    Hi,
    Thanks for quick reply.but let me tell u my problem in more detail.
    To insert into skill_table I have created a VO that contains ResourceNo, track_id, module_id,skill_type,skill_rating,experience. And I drag it on ADF creation form and also have created read only LOV for resource_name from resorce_table, LOV for skill_type,skill_rating from Lookup table,
    And mapped those LOV to resource_no,skill_type,skill_rating on insert page.
    For track_id I have converted inputtextBox to SelectinputText to create databound LOV which will popup a window that contain master detail for track_table and module_table which shows all track_names in master and corresponding module_names in detail table, and on that window I have select button when we click that button selected track_id and selected module_id will get populated to insert skill page in track_id selectinputtextbox and module_Id inpiuttextbox.
    Now what I want is that instead of track_id and module_id populated on insert page coz these are of id's actually and we want to show values of these id's from other tables, I need to show selected track_name and module_name over on insert page.
    Not getting any idea how to do that???
    Plz help.

  • Add attachment to Opportunity using Enterprise Services

    Hi All,
    Is there a way I can add attachments (doc,txt) to a opportunity through the services exposed by Enterprise Services in CRM 7.0. Because the stubs generated for "Create Opportunity" does not have option to add attachments.
    If I browse to the ES Workplace and check the "Create Opportunity", I do not see any method that would allow me to add attachment to the Opportunity (OpportunityCRMCreateRequest_sync).
    Please let me know what am I missing.
    Regards,
    Naveen

    Hi Naveen,
    I have done one requirement attach a document from for already created business partners from external file. In that file I have Business partner number, file path and description.   so, My code is like this. I think it will help ful for you. I dont no wether your requirement will full fill but the coding may help ful for your requirement. try it.. gud luck.. any doubts please ask me i will help u...
    types: begin of ty_upload,
             bp_no type but000-partner,
              path  type sdok_chtrd,
       ls_description type sdok_titel,
            end of  ty_upload.
    data: it_upload type standard table of ty_upload. "Internal table for upload
    data: wa_upload type ty_upload.
      data:
      lv_file_save_as      type c length 255,
      lv_nombre_fichero    type sdok_filnm,
      lv_directory         type sdok_chtrd,
      ls_loio              type skwf_io,
      ls_phio              type skwf_io,
      ls_error             type skwf_error,
      ls_business_object   type sibflporb.
      data: ls_guid type ty_upload.
      data: lt_guid type standard table of ty_upload.
      data: ls_path type ty_upload.
      data: lt_path type standard table of ty_upload.
      data: wa_properties type sdokpropty.
      data: lt_properties like wa_properties occurs 0.
      data ls_but000 type but000.
      select single *
        from but000
       into ls_but000
        where partner = wa_upload-bp_no.
    ls_business_object-instid = wa_but000-partner_guid.
      ls_business_object-typeid =  'BUS1006'. "for bp
      ls_business_object-catid = 'BO'.
      wa_properties-name = 'DESCRIPTION'.
      wa_properties-value = wa_upload-ls_description.
      append wa_properties to lt_properties.
      wa_properties-name = 'LANGUAGE'.
      wa_properties-value = 'EN'.
      append wa_properties to lt_properties.
      clear ls_guid.
      types: begin of ty_path,
              ls_path type sdok_chtrd,
              ls_name type skwf_descr,
               end of  ty_path.
      data: wa_path type ty_path.
      data: it_path type standard table of ty_path.   "Internal table for path split
      call function '/SAPDMC/LSM_PATH_FILE_SPLIT'    "FM for splitting the file path (split file name and directory)
        exporting
          pathfile = wa_upload-path
        importing
          pathname = wa_path-ls_path
          filename = wa_path-ls_name.
      append wa_path to it_path.
      lv_nombre_fichero = wa_path-ls_name.
      lv_directory = wa_path-ls_path.
      call method cl_crm_documents=>create_with_file
        exporting
          file_name       =  lv_nombre_fichero
          directory       =  lv_directory
          properties      =  lt_properties
         properties_attr =  lv_description
          business_object =  ls_business_object
         parent_folder   =
         package_id      =
        importing
          loio            =  ls_loio
          phio            =  ls_phio
          error           =  ls_error.
      call method cl_crm_documents=>rename_object
        exporting
          is_io   = ls_loio
          iv_name = wa_path-ls_name.
    if sy-subrc = 0.
      message 'Attachment has been finished successfully' type 'S'.
    endif.
    Regards,
    Ramz...

  • Desktop recording not working using Quality Management 10.0

    Hello All,
    I have currently installed QM version 10, integrated with UCCX 10.0 and CUCM 10.0 but no recordings are being saved. I'm using Desktop recording to store agents voice and screen. Below is the debug log from the QM Folder on the Agent desktop.
    2014-06-03 20:10:52:039 DEBUG [0x1ee0] PhoneFinder.cpp[120] PhoneFinder::FindNextAdapter: Returning next adapter(\Device\Qmpdpc_{990244BE-C37D-43DE-81A3-26F8F80F3EB8}).
    2014-06-03 20:10:52:044 DEBUG [0x1ee0] PhoneFinder.cpp[169] PhoneFinder::IsValidAdapter: Adapter(\Device\Qmpdpc_{990244BE-C37D-43DE-81A3-26F8F80F3EB8}) is valid.
    2014-06-03 20:10:52:045 DEBUG [0x1ee0] PhoneFinder.cpp[202] PhoneFinder::FindConnectedPhone: Packet filter string: ((tcp or udp or ether[12:2] = 0x8100)).
    2014-06-03 20:10:52:053 DEBUG [0x1ee0] PhoneFinder.cpp[310] PhoneFinder::FindConnectedPhone: Start checking packets from adapter(\Device\Qmpdpc_{990244BE-C37D-43DE-81A3-26F8F80F3EB8}) for next 420 seconds.
    2014-06-03 20:17:52:256 DEBUG [0x1ee0] PhoneFinder.cpp[340] PhoneFinder::FindConnectedPhone: Finished checking packets from adapter(\Device\Qmpdpc_{990244BE-C37D-43DE-81A3-26F8F80F3EB8}).
    2014-06-03 20:17:52:256 DEBUG [0x1ee0] PhoneFinder.cpp[350] PhoneFinder::FindConnectedPhone: Unable to detect phone on adapter(\Device\Qmpdpc_{990244BE-C37D-43DE-81A3-26F8F80F3EB8}).
    2014-06-03 20:17:52:257 INFO [0x1ee0] QM0004 FindConnectedPhone: Unable to retrieve phone information for desktop recording, retry in 60 seconds.
    2014-06-03 20:18:52:258 DEBUG [0x1ee0] PhoneFinder.cpp[120] PhoneFinder::FindNextAdapter: Returning next adapter().
    2014-06-03 20:18:52:259 DEBUG [0x1ee0] QMRegistry.cpp[443] QMRegistry::ReadSiteSetup: Key <MONITOR DEVICE> does not exist in node </SOFTWARE/Calabrio/QM/Site Setup>
    2014-06-03 20:18:52:262 DEBUG [0x1ee0] PhoneFinder.cpp[93] PhoneFinder::FindFirstAdapater: List of adapters found(\Device\Qmpdpc_{E1BD9C22-FB9E-4F4B-96A6-0E62FC5BF8D4},\Device\Qmpdpc_{8D8AA378-035A-4AC0-B26B-771E3C981A67},\Device\Qmpdpc_{990244BE-C37D-43DE-81A3-26F8F80F3EB8}).
    2014-06-03 20:18:52:267 DEBUG [0x1ee0] PhoneFinder.cpp[169] PhoneFinder::IsValidAdapter: Adapter(\Device\Qmpdpc_{E1BD9C22-FB9E-4F4B-96A6-0E62FC5BF8D4}) is valid.
    2014-06-03 20:18:52:268 DEBUG [0x1ee0] PhoneFinder.cpp[202] PhoneFinder::FindConnectedPhone: Packet filter string: ((tcp or udp or ether[12:2] = 0x8100)).
    2014-06-03 20:18:52:277 DEBUG [0x1ee0] PhoneFinder.cpp[310] PhoneFinder::FindConnectedPhone: Start checking packets from adapter(\Device\Qmpdpc_{E1BD9C22-FB9E-4F4B-96A6-0E62FC5BF8D4}) for next 420 seconds.
    2014-06-03 20:25:52:110 DEBUG [0x1ee0] PhoneFinder.cpp[340] PhoneFinder::FindConnectedPhone: Finished checking packets from adapter(\Device\Qmpdpc_{E1BD9C22-FB9E-4F4B-96A6-0E62FC5BF8D4}).
    2014-06-03 20:25:52:110 DEBUG [0x1ee0] PhoneFinder.cpp[350] PhoneFinder::FindConnectedPhone: Unable to detect phone on adapter(\Device\Qmpdpc_{E1BD9C22-FB9E-4F4B-96A6-0E62FC5BF8D4}).
    2014-06-03 20:25:52:110 INFO [0x1ee0] QM0004 FindConnectedPhone: Unable to retrieve phone information for desktop recording, retry in 60 seconds.
    2014-06-03 20:26:52:114 DEBUG [0x1ee0] PhoneFinder.cpp[169] PhoneFinder::IsValidAdapter: Adapter(\Device\Qmpdpc_{8D8AA378-035A-4AC0-B26B-771E3C981A67}) is valid.
    2014-06-03 20:26:52:114 DEBUG [0x1ee0] PhoneFinder.cpp[202] PhoneFinder::FindConnectedPhone: Packet filter string: ((tcp or udp or ether[12:2] = 0x8100)).
    2014-06-03 20:26:52:126 DEBUG [0x1ee0] PhoneFinder.cpp[310] PhoneFinder::FindConnectedPhone: Start checking packets from adapter(\Device\Qmpdpc_{8D8AA378-035A-4AC0-B26B-771E3C981A67}) for next 420 seconds.
    Can anyone assist and advise the solution. 

    Hi Ross;
    Thanks for your response. I have verified that  the agents are licensed. Sync the database.Restarted the Recording service as well
    Staging/upload folder you mean this location C:\Program Files (x86)\Common Files\QM\recording .
    I am getting the following error at present
    2014-06-03 22:28:53:158 DEBUG [0x1f84] PhoneFinder.cpp[350] PhoneFinder::FindConnectedPhone: Unable to detect phone on adapter(\Device\Qmpdpc_{E1BD9C22-FB9E-4F4B-96A6-0E62FC5BF8D4}).
    2014-06-03 22:28:53:159 INFO [0x1f84] QM0004 FindConnectedPhone: Unable to retrieve phone information for desktop recording, retry in 60 seconds.
    2014-06-03 22:28:53:159 DEBUG [0x1f84] RealTimeRecordingStatus.cpp[49] RealTimeRecordingStatus::send: AgentId=3;Cause=recording_no_phone_info;RecordingIP=10.1.3.200;State=RECORDING_FAILURE;Status=48;Type=END_POINT;

  • Data records rejected while using Data Manager Packages

    Hello all ,
    We have configured the dimensions and applications in SAP- BPC 7.5 NW. However , while loading the data into the application using a data manager package , all the records are rejected. The following is the error :
    Line 3 :Dimension: P_CC member: SALESTEAM1 is invalid or is a calculated member
    Line 3 :Dimension: PRODUCT member: PRODUCTA is invalid or is a calculated member
    However , these member are present in the dimensions and are processed as well !! Any help is appreciated .
    THanks
    Vijay

    The message seems to be saying you have a dimension forumula  defined for those two cost centers.  Please check your dimension members master data and make sure there is nothing defined in a property column called "Formula" for those two members.  If there is something populated, then delete the cell contents and save and process your dimension.  Then try your data manager load again.
    Best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Applications Regional Implementation Group (RIG)

  • Oracle's Temporary Table Use/Session Management

    I'm wondering about the session management that the JSQL services use. We have an app that uses a standard Oracle user but we manage the users via the application. We are using the temporary table feature in Oracle as it allows for session specific data to be created, read, etc for that single session.
    Is there a way for me to force each new web user into it's own session (that will span across multiple XSQL pages) so that we can continue to use this functionality.
    Thanks.

    Not using the built-in connection manager, but the latest versions of the XSQL Pages framework allow you to provide your own implementation of a connection manager that could be a custom implementation like this.

Maybe you are looking for

  • How to know in (Pivot)Table Enter/Mouse for submition

    Hello, i recently use an editable PivotTable, which writes back the manipulated values in a BaseRowsetModel. I use the valueChangeListener in the RichTextFields in my PivotTable to recognize whether somebody changes a cellvalue, to write it back to m

  • Connecting servlets to database

    Hello, Currently i,m facing this problem when trying to establish a connection to Microsoft Access Database. "Servlet invoker is currently unavailable" I already restart my Tomcat and run the servlet again but the problem is still occurring. I apprec

  • [hardware] Equivalent of Windows platform

    Actually, I am really new to unix. And I don't know where else to post my question. We are currently developing an application whose minimum hardware requirements are: Pentium III 800MHz Quad Processor 40 or more GB hard disk space 2 GB Memory That i

  • Stored procedure in java

    How to call stored procedure in oracle database?

  • My imac 17' core duo 1.8ghz a1173 freezes after about 1 minute of running

    My imac 17" core duo 1.8ghz A1173 freezes after about 1 minute of running. I re-start the imac about a half a dozen times and it stays running and will re-start from the sleep mode and will continue to operate properly until I put it in sleep mode or