How to see the data in data containers when working on Generic Sync ?

Hi All,
I am working on Mobile Sales For HandHeld Generic Sync based application. To check the data transafer from Mi Client > MI server> CRM backend, we are using Generic Sync Queue Monitor in NWA. But how to check the actual dara in data containers showed on the monitor? Any specific transaction ( e.g. merep_mon for smart sync) to chk the same?
Thanks & regards,
Rucha Atre

Hi,
This is a tedious process of viewing the data in the containers since there is no tool to monitor the same. The data sent from the client is stored MESYHEAD and MESYBODY. Once the entire processing is completed then the entries from this table is deleted. If the processing has failed or not taken place then the entries will in this table.
Data Containers will name value pairs with field name and data in the data field. This table will also contain data from smart sync applications.
Thanks..
Preetham S

Similar Messages

  • How to see the datas stored in DBMS_SQL.Varchar2S variable?

    how to see the datas stored in DBMS_SQL.Varchar2S variable?
    it says error if i use dbms_out.put_line.

    in PLSQL :
    procedure p_try (p_test IN OUT DBMS_SQL.VARCHAR2S) is
    begin
        p_test.delete ;
        p_test(    -3000) := '===============' ;
        p_test(       22) := 'Hello'  ;
        p_test(    55555) := 'World' ;
        p_test(987654321) := '===============' ;
    end p_try;
    set serveroutput on
    declare
         l_test dbms_sql.varchar2s ;
         i number ;
    begin
         p_try (l_test) ;
         i :=  l_test.first ;
         while i >= l_test.first and i <= l_test.last loop
                 dbms_output.put_line (l_test(i)) ;
                 i := l_test.next(i) ;
         end loop ;
    end ;
    ===============
    Hello
    World
    ===============when using Forms, you would use TEXT_IO instead of DBMS_OUTPUT

  • How to see the data records for a dso based upon the request id?

    Hi all,
    How to see the data records based upon the request id on the dso.
    I need to see the data for a dso based upon the request id 444493 loaded from another dso through repair full update.
    thanks

    Hi,
    Step 1: select your request from DSO request tb
    Step 2: Select your DSO just above your contents/requests/reconstruction tabs
    Step 3: Click contents(Spectacles symbol) in the top area of your screen
    Step 4: Slect the required fields
    Regards,
    Suman

  • How to see the data after deploying

    Hi, I installed owb 9.2.0.2 and created a test mapping and deployed it successfully. It inserted few rows in my table. How can i see the data which was inseted other than SQLplus.
    Can i view data trough any OWb reports or do I need to use discoverer or report tools to view the data.

    Hi Sam,
    SQL Plus is one route, the other is indeed Discoverer or any relational query tool. For 10gR2 we are adding data viewers so you can see this directly in OWB.
    Jean-Pierre

  • How to see the data stored in the t.code: cat2.

    Hi All
    I am doing Userexits
    here using CATS0006 exit.and T.code CAT2 i am entering values and i saved, it's showing data is saved.
    but i am not able to see that values, where it will store the data.
    Regards....

    Hi Chinna,
    The entries are stored in the CATSDB table.. you can do a look up by PERNR, DATE & Attendance/Absence type on this table to see what you have saved voa CAT2 transaction.
    Regards,
    Suresh Datti

  • How to see the data of the table once it has been published

    Hi
    How can we access the data of the table in the data model which has been successfully deployed on Apache Axis2 using OC4J.
    Thanks

    Hi Brad,
    Thanks a lot for your reply.
    I found StartPointbaseConsole.cmd file at following location .
    C:\BEA\weblogic81\common\bin
    C:\BEA\weblogic81\common\eval\pointbase\tools
    C:\BEA\weblogic81\samples\domains\end2end
    C:\BEA\weblogic81\samples\domains\portal
    C:\BEA\weblogic81\samples\domains\integration
    C:\BEA\weblogic81\samples\domains\workshop
    C:\BEA\user_projects\domains\<mydomain>
    I opened the the pointbase console and in each case i am getting the message while executing the query "select * from PF_PORTLET_DEFINITION"
    "Invalid table name".
    I am new to weblogic portal please provide me some more information regarding this.
    Regards,
    Sandeep K
    Edited by: user10952751 on Jul 15, 2009 8:34 AM

  • How to see the data from the execute immediate o/p

    Hello
    i tried the following code
    SQL> declare
      2  vSql varchar2(3000);
      3  begin
      4  vSql:='SELECT';
      5   for i in (select column_name from user_tab_columns where table_name='EMP' order by column_name
      6   loop
      7     vSql:=vSql||i.column_name||',';
      8   end loop;
      9   execute immediate rtrim(vSql)||' '||'from emp';
    10  end;
    11  /
    declare
    ERROR at line 1:
    ORA-00900: invalid SQL statement
    ORA-06512: at line 9Please guide me to solve this error
    Edited by: josh1612 on Jun 22, 2010 3:58 AM

    josh1612 wrote:
    I need to execute that printed statment select ... from emp
    You are already executing it by using:
    execute immediate rtrim(vSql,',')||' from emp';What you probably want is to display results, right? Then you can either use bulk collect into clause in execute immediate or use cursor variable. Bulk collect example:
    set serveroutput on
    declare
      vSql varchar2(3000);
      type emp_rec_tbl_type is table of emp%rowtype;
      emp_rec_tbl emp_rec_tbl_type;
    begin
      vSql:='SELECT ';
       for i in (select column_name from user_tab_columns where table_name='EMP' order by column_id)
       loop
         vSql:=vSql||i.column_name||',';
       end loop;
       dbms_output.put_line(rtrim(vSql,',')||' from emp');
       execute immediate rtrim(vSql,',')||' from emp' bulk collect into emp_rec_tbl;
       for i in 1..emp_rec_tbl.count loop
         dbms_output.put_line(rpad(emp_rec_tbl(i).ename,10) || emp_rec_tbl(i).sal);
       end loop;
    end;
    SELECT EMPNO,ENAME,JOB,MGR,HIREDATE,SAL,COMM,DEPTNO from emp
    SMITH     800
    ALLEN     1600
    WARD      1250
    JONES     2975
    MARTIN    1250
    BLAKE     2850
    CLARK     2450
    SCOTT     3000
    KING      5000
    TURNER    1500
    ADAMS     1100
    JAMES     950
    FORD      3000
    MILLER    1300
    PL/SQL procedure successfully completed.
    SQL> Cursor variable example:
    set serveroutput on
    declare
      vSql varchar2(3000);
      emp_rec emp%rowtype;
      cv sys_refcursor;
    begin
      vSql:='SELECT ';
       for i in (select column_name from user_tab_columns where table_name='EMP' order by column_id)
       loop
         vSql:=vSql||i.column_name||',';
       end loop;
       dbms_output.put_line(rtrim(vSql,',')||' from emp');
       open cv for rtrim(vSql,',')||' from emp';
       loop
         fetch cv into emp_rec;
         exit when cv%notfound;
         dbms_output.put_line(rpad(emp_rec.ename,10) || emp_rec.sal);
       end loop;
       close cv;
    end;
    SELECT EMPNO,ENAME,JOB,MGR,HIREDATE,SAL,COMM,DEPTNO from emp
    SMITH     800
    ALLEN     1600
    WARD      1250
    JONES     2975
    MARTIN    1250
    BLAKE     2850
    CLARK     2450
    SCOTT     3000
    KING      5000
    TURNER    1500
    ADAMS     1100
    JAMES     950
    FORD      3000
    MILLER    1300
    PL/SQL procedure successfully completed.
    SQL> SY.

  • How can I see the data in the aggregates

    how can see the data available in the aggregates.
    Jay

    Hi Jay,
    its so simple,
    please goto the manage aggregates screen and copy the technical name of the aggregate and add
    /bic/exxx  xxx is the aggregate technical name, and for f fat table use /bic/fxxx, and go to se16 and enter the table name and thats it ur data is with u.
    R

  • How to see the GL Accounts balance carry forwarded date

    hi gurus
    can you help me, how to see the date of last GL accounts Carry forwarded?
    thanks in advance
    amk

    That information will not be any use.
    You can carry forward any number of times - the last should be after closing of previous years accounts.
    Hope it is clear.

  • How to check the data in a temporary table

    Hi,
    A procedure inserting data into a temporary table , data exists in the table now. so, how to see the data from the temporary table. Is it possible to see from the sqlplus by selecting, right now i'm not getting any data. .thanks Bcj.

    If you are referring to Global Temporary Tables, then the only way to see the contents of the table are to select from the table while connected to the same session that inserted the data into the GTT.
    Please note however that there is not a 1 to 1 correspondence between sessions and users (shcemas). A user may be connected to 1 or more sessions, but it is only the session that inserted the records that will be able to view the records.

  • Server Admin - How current is the data?

    Good afternoon.
    When I view the DHCP data in Server Admin, how current is the data? When I close down workstations and logon others, the data displayed, even after multiple refreshes, does not change. A quit & relaunch doesn't update the data either.
    Can I rely on Server Admin to provide a current, accurate view?
    Brian Bowell
    Berkley Normal Middle School
    Hamilton New Zealand.

    I'm not sure of the frequency at which Server Admin re-polls the data, but nothing is cached so at the very least each time you connect to a server you're seeing data that's valid up until then.
    However, in the case of DHCP you need to consider lease duration.
    If your lease is set to something like 3 days then any given client will remain in the DHCP leases list for that long.
    In other words, assuming you have one DHCP client on your network and that machine boots on Monday Afternoon, then that machine will appear in the DHCP leases list until at least some time on Thursday afternoon. The number of leases will not decrease when the machine shuts down on Tuesday, nor increase if that machine comes back online before the original lease expiration (it will just be re-issued the same DHCP lease/IP address/etc.). Therefore your lease counter will remain at 1 even when the machine is offline.
    Is it possible that accounts for what you're experiencing? The number of leases does not reflect the number of active DHCP clients on your network, just the number that have been active within the last (lease duration) hours.

  • HT1382 how can I restore my back up files from my laptop? i want to see the dates and time that I backed up  my files. is it posssible?

    how can I restore my back up files from my laptop? i want to see the dates and time that I backed up  my files. is it posssible?

    What backed up files?
    Available backups for an iOS device can be found in Edit > Preferences > Devices.

  • How we can see the data related to finance ??

    Hi Gurus,
    I have attend for one interview and faced one question is that how can we see the finance related data in r/3?
    they asked the same question.
    can you please let me know how we can see the data for perticular module like HR,FInance...
    Points 'll be assigned..
    Regards,
    Syam

    For Finance the standard datasources are
    0FI_GL_4
    0FI_AR_4
    0FI_AP_4
    Go to R/3 lbwe
    select these datasources
    click on manage
    you will get a window with fields. here in the right hand corner there is a drop down which giives table names
    OR
    Goto RSA3 and give the datasource name

  • How can i see the date of the pictures i took? help!

    how can i see the date of the pictures i took? help!

    Import them to your computer (see http://support.apple.com/kb/HT4083) and the date and other exif data will be available.

  • How do I see the dates and info on gift card redeemal, purchases and other transctions?

    I need to see how much was the gift card amount I originally redeemed.
    How do I see the dates and info on gift card redeemal, purchases and other transactions?

    You can't see when gift cards were redeemed onto your account, nor what you bought with it - you can only see your entire purchase history via the Store > View Account menu option on your computer's iTunes, it won't show what payment method method was used for each item : http://support.apple.com/kb/HT2727

Maybe you are looking for

  • Creative Cloud Subscription Licensing

    I already have a Creative Cloud Subscription, I need to add another license for a new employee. What are my options. Do I create another Creative Cloud account with an associated subscription or should I purchase the Adobe Cloud Team Ready offer and

  • Demantra Workflow issue

    Hi Guru's, I have a issue with workflow. I created a new workflow and when I wanted to run, it is showning as Yellow (Not available process). This happens as soon as I bounce the instance. I could not run the workflow once. Why is this happening? Tha

  • Open pdf file on ribbon button click in mscrm 2011

    Hi, I want to open pdf file from button placed on Accont entity ribbon. Through HTML i tried below code and it worked fine <html> <body> <a href="file://C:\Users\asinha\Documents\UML.pdf">Link to a pdf</a> </body> </html> But i am not able to use the

  • Add project siena app to favorite key on keyboard

    Hello and merry Christmas to everybody Have anyone tried to add widows8 app as project sienna into a favourite key on your keyboard? Sorry for asking that here but I haven't found better discussion for windows comfort 5000 keyboards or a solution on

  • Variable accessibility: newbie question

    My next newbie question: The following two classes are in two separate files in the same a folder testClass2: package JavaDemos.testClass2; import java.awt.*; public class Sketcher {     static SketchFrame window;     static int widthXXX;     public