Removing records where totals match

Hi,
i have the folloiwng table:
what I need to do is delete the "FM" record that has the same policy number and where the total Premium matches the non "FM" record premium.
So in the above example, for Policy 00HG125, i would want to remove the "FM" row and keep the "Misc Lines" row since the totals match.  For policy 00LQ176, i want to keep all rows.  For policy UK070523, i would want to remove the
"FM" row since they have another row that is "Cargo" but matches the total premium of the "FM" row.
thanks

Test this against your whole dataset, but this is a way to do it.
create table #records
policyNumTxt nvarchar(20),
productlinegroup nvarchar(20),
premium nvarchar(20)
insert into #records (policyNumTxt, productlinegroup, premium) values ('00HG215', 'FM', '835')
insert into #records (policyNumTxt, productlinegroup, premium) values ('00HG215', 'Misc Lines', '835')
insert into #records (policyNumTxt, productlinegroup, premium) values ('00LQ176', 'FM', '5464365')
insert into #records (policyNumTxt, productlinegroup, premium) values ('00LQ176', 'FM', '-791845')
insert into #records (policyNumTxt, productlinegroup, premium) values ('00LQ176', 'FM', '-326396')
insert into #records (policyNumTxt, productlinegroup, premium) values ('UK07523', 'Cargo', '-50019')
insert into #records (policyNumTxt, productlinegroup, premium) values ('UK07523', 'FM', '-50019')
select *
from #records r
inner join 
select 
row_number() over (partition by policynumtxt, premium order by productlinegroup) as row,
policynumtxt,
productlinegroup,
premium
from #records
)t
on t.policynumtxt = r.policyNumTxt
and t.premium = r.premium
and t.row > 1
where r.productlinegroup = 'FM'

Similar Messages

  • Join 3 tables, return records which no match found in table 1 as null

    Hi Gurus,
    I really need your expert advice. I am stuck in below query.
    I have joined 3 tables,
    table 2 is an information reference (to get the process code and process name)
    table 1 have and table 3 have daily data (which will have the process code and its values/qty)
    all values return from table 1 and 3(rtrwip00 and prdyld01) should refer to code in table 1.
    There can be a scenario where on a day, a process was stop, so it dont have values/qty in table 1/3,
    The problem is my query will return only rows which have records in table 1/3.
    While I want all the records in table 2 to be returned no matter have data or not in table 1/3, in case no data in table 1/3, return qty as '0'.
    Please advice me..thanks in advance :)
    Select lot.rw_oper,
    lot.rw_area_grp,
    lot.rw_oper_name,
    proc_out.proc_out,
    lot.rw_qty
    from
    ( SELECT UNIQUE a.rw_oper,a.rw_area_grp,a.rw_oper_name,SUM(CASE WHEN a.rw_qty_unit = 'CM' THEN a.rw_qty*10 ELSE rw_qty END )as rw_qty
    From rtrwip00 a, oprinf99 b
    WHERE a.rw_facility='MIPOPRD'
    AND b.oi_facility = a.rw_facility AND b.oi_oper = a.rw_oper
    GROUP BY a.rw_area_grp,a.rw_oper,a.rw_oper_name
    ORDER BY a.rw_oper,a.rw_area_grp) lot,
    ( SELECT py_oper, SUM(CASE WHEN py_out_unit1 = 'CM' THEN py_proc_out1*10 ELSE py_proc_out1 END) proc_out
    FROM prdyld01
    WHERE py_facility = 'MIPOPRD'
    AND py_trs_time between TO_CHAR(SYSDATE-1,'YYYYMMDD')||'070000' AND TO_CHAR(SYSDATE,'YYYYMMDD')||'070000'
    group by py_oper
    )proc_out
    where lot.rw_oper NOT IN ('2900','6700' ,'9100' ,'9920' ,'9921','9940','9941','9300','9500','6700','8910', 'REJT')
    and lot.rw_oper = proc_out.py_oper
    order by lot.rw_oper

    CREATE TABLE PRDYLD01
    PY_FACILITY VARCHAR2(12 BYTE) NOT NULL,
    PY_TRS_TIME VARCHAR2(14 BYTE) NOT NULL,
    PY_LOT VARCHAR2(11 BYTE) NOT NULL,
    PY_OPER VARCHAR2(4 BYTE) NOT NULL,
    PY_PO VARCHAR2(12 BYTE) NOT NULL,
    PY_PROC_IN1 NUMBER(10,2) DEFAULT 0 NOT NULL,
    PY_PROC_IN2 NUMBER(10,2) DEFAULT 0 NOT NULL,
    PY_PROC_OUT1 NUMBER(10,2) DEFAULT 0 NOT NULL,
    PY_PROC_OUT2 NUMBER(10,2) DEFAULT 0 NOT NULL,
    sample data 1
    PY_OPER     PROC_OUT
    3000     481
    3100     214
    3200     642
    3250     291
    5250     519
    5300     439
    5350     476
    CREATE TABLE RTRWIP00
    RW_FACILITY VARCHAR2(12 BYTE) NOT NULL,
    RW_LOT VARCHAR2(11 BYTE) NOT NULL,
    RW_OPER VARCHAR2(4 BYTE) NOT NULL,
    RW_OPER_NAME VARCHAR2(35 BYTE) NOT NULL,
    RW_PO VARCHAR2(12 BYTE) NOT NULL,
    RW_AREA_GRP VARCHAR2(12 BYTE) NOT NULL,
    RW_QTY NUMBER(10,2) DEFAULT 0 NOT NULL,
    RW_QTY_UNIT VARCHAR2(6 BYTE) NOT NULL,
    sample data 2     
    RW_OPER     RW_QTY
    3000     1248
    3100     324
    3200     133
    3250     357
    4400     424
    4500     821
    4600     909
    5050     689
    5250     2472
    5300     53
    5350     166
    CREATE TABLE OPRINF99
    OI_FACILITY VARCHAR2(12 BYTE) NOT NULL,
    OI_OPER VARCHAR2(4 BYTE) NOT NULL,
    OI_OPER_SEQ NUMBER(5) NOT NULL,
    OI_AREA_GRP VARCHAR2(12 BYTE),
    OI_SHORT_DESC VARCHAR2(10 BYTE) NOT NULL,
    OI_LONG_DESC VARCHAR2(35 BYTE),
    sample data 3          
    RW_OPER     RW_AREA_GRP     RW_OPER_NAME
    3000     MOD     ROD MOUNT
    3100     MOD     WIRE SAW
    3200     MOD     AS-CUT CLEANER
    3250     MOD     BEAM REMOVAL
    4400     POL     ESE-II
    4500     POL     EDGE OXIDE STRIP
    4600     POL     LTO INSPECTION
    5050     POL     DOUBLE SIDE BUFFER
    5250     POL     ACCUMULATION
    5300     POL     FINAL POLISHER
    5350     CLN     POST POLISH CLEANER
    ABove is the DLL for the table and its mock data.
    Sample output should be like below; where when no data found in sample data 1, it will return '0'
    RW_OPER     RW_AREA_GRP RW_OPER_NAME     PROC_OUT     RW_QTY
    3000     MOD     ROD MOUNT     481     1248
    3100     MOD     WIRE SAW     214     324
    3200     MOD     AS-CUT CLEANER     642     133
    3250     MOD     BEAM REMOVAL     291     357
    4400     POL     ESE-II          0 424
    4500     POL     EDGE OXIDE STRIP     0     821
    4600     POL     LTO INSPECTION     0     909
    5050     POL     DOUBLE SIDE BUFFER     0     689
    5250     POL     ACCUMULATION     519     2472
    5300     POL     FINAL POLISHER     439     53
    5350     CLN     POST POLISH CLEANER     476     166
    mY current output is below; only return record that have match to all table.
    RW_OPER     RW_AREA_GRP     RW_OPER_NAME     PROC_OUT     RW_QTY
    3000     MOD     ROD MOUNT     481     1248
    3100     MOD     WIRE SAW     214     324
    3200     MOD     AS-CUT CLEANER     642     133
    3250     MOD     BEAM REMOVAL     291     357
    5250     POL     ACCUMULATION     519     2472
    5300     POL     FINAL POLISHER     439     53
    5350     CLN     POST POLISH CLEANER     476     166
    Really appreciate your response, sorry for taking time to reply.
    Thanks in advance :)

  • When-Remove-Record, does not update header field

    i have master-detail form and in that there is a DB field eh_amount, which takes it value from
    the computed non-db summary field m_amount
    my E_head
    eh_code
    eh_no
    eh_amount
    my E_detail (tabular with 5 records displayed)
    ed_eh_code
    ed_eh_no
    ed_amount
    m_amount <---summary column (summing ed_amount)
    whenever i enter/update ed_amount , m_amount get computed properly.
    i have WVI trigger written where i store eh_amount := m_amount
    i have also written When-remove-record on e_datail block, where i again re-initialize
    eh_amount := m_amount
    the detail record gets deleted and m_amount gets updated,
    but the header eh_amount does not show the updated value of m_amount.
    Kindly suggest to me as to where the change has to happen.

    Hi Craig..
    I am using form6i, db 10g.
    I am not doing summation myself. My m_amount field is calculated field set at design time.
    Summary detail block is E_detail and summary field is ed_amount.
    Only after saving form, the new value for eh_amount is seen.
    what i want is eh_amount should be seen updated, if while entering i delete any detail record.
    in when-remove-record i am storing m_amount in eh_amount, but the new value of eh_amount
    is visible only after saving the form and not when any record is deleted.

  • Excel query/macro , delete records where the aggregate value is not over 100

    I have a spreadsheet with about 5000 records. I need to delete out the records where the Amount column is less than $10.00 unless the aggregate of the amount column is greater than or equal to $100. I have an ID column that matches to the name on the record.
    So is it possible to create something that for each ID number in the ID column if the Amount column is less than $10 delete it unless the same ID appears again and is greater than $100? TIA

    HI mkozz28,
    >> I need to delete out the records where the Amount column is less than $10.00 unless the aggregate of the amount column is greater than or equal to $100.
    In my option, you could sort the data by column ID, then loop through the column Amount, if the value of the Amount is less than 10, then find the cell according the same ID, if the Amout is less than 100, delete the enterRow.
    For more information about Find method, you could turn to the link below
    # Range.Find Method (Excel)
    https://msdn.microsoft.com/en-us/library/office/ff839746.aspx
    For the row delete, the link below might be useful to you
    # Delete Method [Excel 2003 VBA Language Reference]
    https://msdn.microsoft.com/en-us/library/office/aa223863(v=office.11).aspx
    A simple demo as below, you need to modify it to your own requirement.
    Sub test1()
    For i = 2 To 8 'row number
    Debug.Print ActiveSheet.Cells(i, 2).Value
    'ActiveSheet.Cells(i, 2).Select
    If (ActiveSheet.Cells(i, 2).Value <= 10) Then
    Set cell = ActiveSheet.Range("A1:A8").Find(ActiveSheet.Cells(i, 1).Value, After:=ActiveSheet.Cells(i, 1), LookIn:=xlValues)
    If cell Is Nothing Then
    ActiveSheet.Cells(i, 2).EntireRow.Delete
    Else
    Debug.Print ActiveSheet.Cells(cell.Row, 2).Value
    If ActiveSheet.Cells(cell.Row, 2).Value < 100 Then
    ActiveSheet.Cells(i, 2).EntireRow.Delete
    End If
    End If
    End If
    Next i
    End Sub
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Printing only one line record with total of all items through alv

    hi experts,
    i am facing a problem while printing a list through alv.
    requirement is, suppose i have 3 line items under one document no.
    i have to print only one record with total amount of all items.more clearly...
    1001  10  1000/-
    1001  20    234/-
    1001  30   540/- these records in internal table then i am passing it to reuse_alv_grid_display.
    i need to display only 1001  1774/-(means sum of all the items)
    please tell me how to do this.
    thanks in advance,
    manasi

    hi ansari,
    contains in itab
         3000000004     02.11.2000     5550     27.95     27.95     0
         3000000004     02.11.2000     5550     10.95     10.95     0
         3000000005     02.11.2000     5550     27.95     27.95     0
         3000000005     02.11.2000     5550     10.95     10.95     0
         3000000006     02.11.2000     3020     52.99     52.99     0
         3000000006     02.11.2000     3020     64.99     64.99     0
         3000000006     02.11.2000     3020     49.5     49.5     0
         3000000007     02.11.2000     3730     2,228.00     2,228.00     0
         3000000007     02.11.2000     3730     1,698.00     1,698.00     0
         3000000007     02.11.2000     3730     532     532     0
    now please tell me how to print the data
    output will be
    3000000004     02.11.2000     5550     38.90     38.90       0
    3000000005     02.11.2000     5550     38.90     38.90       0
    3000000006     02.11.2000     3020     117.19     117.19     0
    like that
    please help me out
    manasi

  • Cycle recording, where is take 1,2,3

    when I use "cycle" to do the recording,
    where is the function/button that i should click in order to see
    "take 1, take 2, take 3" so
    can choose the one to listen, or the ones i'll delete
    thanks

    Hi,
    at the beginning of a multitake region, there should be a small triangle you can click on. And at the end of the region, there is another triangle inside a small circle.
    The left one is to expand the region so that you can see all the takes (and can do quick swipe comping). The right triangle opens a menu where you can perform some tasks (i.E.: Select a specific take, reduce the takes to the current comp and so on)
    Cheers,
    Fox

  • Remove the word "Total" in Row Totals in Pivot Tables

    Hi,
    Is it possible to remove the word "Total" that appears in Row Totals in Pivot Tables?
    Eg. If there are 2 Dimension Columns -- Year and Month .... and if we do row totals on Year
    The total appears as *'2008 Total'* or *'2009 Total'* etc. i.e. Each of the Values is followed by the word 'Total'.
    However, i would like the totals to display only the values '2008' or '2009' without the word 'Total'.
    Is this possible in OBIEE 11.1.1.5.0 ?
    Thanks,
    Ab

    Hi ,
    Goto Total -> Format label and type in @.This will remove the word"Total". I have tested this in 10g, try this and let me know if it works in 11g.
    Rgds,
    Dpka

  • Slicers Removed from Template: "Removed Records: Slicer Cache from /xl/slicerCaches/slicerCache3.xml part (Slicer Cache)"

    Product: Microsoft Office Professional Plus 2010
    I have created a template file with a data table, 2 pivot tables, and each of those 2 pivot tables has a pivotchart and 2 slicers.  I have some code that updates the pivot table ranges.  When that occurs the pivot tables, pivotcharts and slicers
    all update successfully.  
    The problem comes after saving the .xlsm file.  Upon opening the file I receive a message saying "Excel found unreadable content in 'myTemplate.xlsm'. Do you want to recover the contents of this workbook? If you trus the source of this workbook,
    click Yes."
    I then get a list or removed records and the repair that was done.
    Removed Records: Slicer Cache from /xl/slicerCaches/slicerCache3.xml part (Slicer Cache)
    Removed Records: Slicer Cache from /xl/slicerCaches/slicerCache4.xml part (Slicer Cache)
    Removed Records: Slicers from /xl/slicers/slicer2.xml part (Slicer)
    Removed Records: Drawing from /xl/drawings/drawing4.xml part (Drawing shape)
    Repaired Records: Named range from /xl/workbook.xml part (Workbook)
    Most of the file is OK with the exception of my last worksheet.  The pivot table and chart get updated, but the slicers are gone.  Any idea why this is happening?  Can something be done to prevent this?
    Thanks,
    Rich

    Hi Rich,
    Based on your description, my understanding is that slicers are removed after you get the error messages and repair it. You wonder to know why slicers are lost after repairing, it seems that the corrupted file caused the issue.
    Please try to update the  pivot table ranges manually without macros. According to my test, the slicers won’t be lost without macros. Please test this method in your own environment. If it
    works fine after disable macros, please check your code.
    If my understanding is incorrect, could you upload a sample via OneDrive and be at bit more precise explain your problem, so that we can get more accurate solutions to this problem. I am glad to help and forward to your reply.
    Hope it’s helpful.
    Regards,

  • Crystal Reports Displaying records where field 1 is populated but field 2 is empty

    i have 3 fields in my report.
    Job id, date on hold, date off hold
    I need to display records where there is a value for on hold but where off hold is blank so I can see which jobs are still on hold. How do i do this?
    thanks in advance

    Have you tried adding criteria of:
    Not IsNull() and
    IsNull()?
    Alastair

  • Sql delete record where duplicate in part of raw

    in sql table  i need to delete all record where the time between it  1 or 2 minute or the same and must be the same id but keep the firest record
        ID             Time                            SN   SD   WE   
    FW
        10    2014-06-30 19:17:37.000    I    0    100    0
        10    2014-06-30 19:17:42.000    I    0    100    0
        10    2014-06-30 19:17:46.000    I    0    100    0
        10    2014-06-30 19:17:58.000    I    0    100    0
        10    2014-06-30 20:37:46.000    I    0    100    0
    or
         ID             Time                            SN   SD   WE   
    FW
        10    2014-07-01 21:10:33.000    I    0    100    0
        10    2014-07-01 21:11:06.000    O    0    100    0
        10    2014-07-02 20:53:36.000    I    0    100    0
        10    2014-07-02 20:53:38.000    I    0    100    0
        10    2014-07-02 20:54:33.000    O    0    100    0
        10    2014-07-02 20:54:41.000    O    0    100    0
        10    2014-07-02 20:55:22.000    o    0    100    0
    to be
        ID             Time                            SN   SD   WE   
    FW
        10    2014-06-30 19:17:37.000    I    0    100    0
        10    2014-06-30 20:37:46.000    I    0    100    0
    and
        ID             Time                            SN   SD   WE   
    FW
        10    2014-07-01 21:10:33.000    I    0    100    0
        10    2014-07-02 20:53:36.000    I    0    100    0

    i think this
    SELECT *
    --DELETE t
    FROM NEWFP.dbo.CHECKINOUT t
    WHERE EXISTS (
    SELECT 1
    FROM NEWFP.dbo.CHECKINOUT
    WHERE USERID = t.USERID
    AND CHECKTIME < t.CHECKTIME
    AND CHECKTIME >= DATEADD(minute,-5,t.CHECKTIME)
    Once you're happy that it gives you the required records just comment the SELECT *, uncomment the DELETE part and execute
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Need Photoshop action to record WHERE on canvas a layer is placed, NOT how many pixels it was moved.

    Hello everyone,
    I'm pulling my hair out trying to figure this out.
    I created an action:
    I have a bunch of PSD files of some pretty expensive rings that were shot at hi-res and cropped.
    Now, i have a canvas that is 996x1104 px.
    All of these rings must sized to 540px width AND positioned on the canvas at x:498px and y:706 (the bottom of the layer must touch 706px, which I did by clicking on the little tiny box at the bottom of the little square made of little squares (that's next to the x and y positions when you are on Transform mode).
    I made an action for all of these steps.
    However, when I batch a group of these hi-res ring PSDs and apply the action,
    they are always in different spots. They all need to be set on y:706px so it looks like they are all resting on the same plane.
    I found out why this is happening:
    because when I position the ring when creating the action, Photoshop records HOW MUCH in pixels I moved the layer... NOT WHERE ON THE CANVAS IT'S POSITIONED.
    This is what I need: to have Photoshop record WHERE on the canvas the layer is positioned.
    Can anyone help?
    We have so much work to do by Monday and setting up this action would definitely help us.
    Thanks so much!
    _Chris

    Did you try settings the rulers units to Percent before recording the action and see if that makes a difference?
    You might possibly need a script for your goal, in which case you could ask over on the photoshop scripting forum:
    http://forums.adobe.com/community/photoshop/photoshop_scripting

  • Fetch records where there is increase in Total_Sales.

    I have table like :-
    Year Month Total_sales
    2001     1     50000
    2001     2     50000
    2001     3     50000
    2001 4     50000
    2001     5     60000
    2001     6     70000
    2001     8     80000
    2001     7     70000
    I need the output like
    Year Month Total_sales
    2001     1     50000
    2001     5     60000
    2001     6     70000
    2001     8     80000
    It means, I want only those records where there is increase in Total_Sales.

    SQL> With Data As
      2  (Select 2001 Year, 1 Month,  50000 Total_Sales From Dual Union All
      3  Select 2001, 2, 50000 From Dual Union All
      4  Select 2001 ,3, 50000 From Dual Union All
      5  Select 2001, 4, 50000 From Dual Union All
      6  Select 2001, 5, 60000 From Dual Union All
      7  Select 2001, 6, 70000 From Dual Union All
      8  Select 2001, 8, 80000 From Dual Union All
      9  Select 2001, 7, 70000 From Dual
    10  )
    11  Select * From (
    12                 Select Year,
    13                        Month,
    14                        Case
    15                        When Row_Number() Over(Order By Month) = 1 Then
    16                        Total_Sales
    17                        When (Lag(Total_Sales,1,Total_Sales) Over (Order By Total_Sales) < Total_Sales) Then
    18                                                             Total_Sales
    19                                                             Else
    20                                                             Null
    21                                                             End
    22                        Total_Sales
    23                                                      From Data
    24                                                      )
    25  where total_sales is not null;
          YEAR      MONTH TOTAL_SALES
          2001          1       50000
          2001          5       60000
          2001          6       70000
          2001          8       80000
    SQL>

  • Getting records where date got hour or minute or seconds

    Hi,
    I have a date column in database in this format.
    yyyy-MM-dd hh24:mi:ss
    now I would like to find all the records where it got either hour or minute or second.
    Thanks,

    SQL> create table test
      2  as
      3  select 1 id, sysdate dt from dual union all
      4  select 2 , trunc (sysdate) from dual
      5  /
    Table created.
    SQL>
    SQL> alter session set nls_date_format = 'dd-mm-yyyy hh24:mi:ss'
      2  /
    Session altered.
    SQL>
    SQL>
    SQL> select *
      2    from test
      3  /
            ID DT
             1 26-10-2009 15:50:42
             2 26-10-2009 00:00:00
    SQL>
    SQL> select *
      2    from test
      3   where trunc (sysdate) &lt;&gt; dt
      4  /
            ID DT
             1 26-10-2009 15:50:42
    SQL>
    SQL> Edited by: Alex Nuijten on Oct 26, 2009 4:07 PM

  • Removed Records: PivotTable report from /xl/pivotTables/pivotTable1.xml part (PivotTable view)

    I keep getting an error in Excel 2013 when using PowerPivot. Can someone please explain to me what this error means? I can't see that there is anything wrong with the underlying data, and the list of "removed data" is empty too...
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <recoveryLog xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><logFileName>error085600_01.xml</logFileName><summary>Errors were detected in file 'E:\SkyDrive\Documents\Forex\Greenzone_Stats\Greenzone_2013_v2.xlsx'</summary><removedRecords summary="Following is a list of removed records:"><removedRecord>Removed Records: PivotTable report from /xl/pivotTables/pivotTable1.xml part (PivotTable view)</removedRecord></removedRecords></recoveryLog>
    TIA!
    Dennis

    Turns out it's a resource limitation in Excels chart rendering engine. If I filter the data model so that less rows are included in the PivotChart, the error goes away.
    Re
    Dennis

  • 0BBP_TD_SC_1 Header GUID in item record does not match Header GUID

    Hi all,
    We are testing shopping cart (Line Item) extractor (0BBP_TD_SC_1) and we are finding that for some shopping carts, the Header GUID in the item record does not match GUID in the header record.
    The item record, however, has a field called 'DOC GUID' which matches the header GUID.
    Also, Header and Item GUID in the item record are identical.
    Is this how the extractor is supposed to work?
    Any suggestions will be appreciated, and points will be assigned.
    Edited by: RDA on Mar 20, 2009 10:34 PM

    Isn't it in BUP_VENDOR_ID?

Maybe you are looking for

  • How to connect my imac to my tv ?

    How do I connect my Imac to my TV ? Is there an easy way, Any body can help? I'm new to the Mac world. Thank you in advance

  • Using time capsule with pppoe

    Hello, I can easly connect to internet with my modem 'airties 6372' But i want to use my TC to connect to internet. My internet provides me pppoe. What should i do to do it? Here are my settings i am sorry some are not in english. I can translate if

  • Oracle EBusiness DBA and Architect Available - Expert in 10g and 11g RAC

    I have implemented Ebusiness on all OS's - upgraded every OS - mixed environment, Linux migrations - CUrrently just wrapped up an 11.5.10CU2 - 10g - to R12CU4 11g RAC upgrade Call me for help - available - [email protected]

  • How to use PNP LDB

    Hi, can anybody provide me demo code for using PNP ldb? abc

  • Error at planning work bench

    hi all, i am new to ip i am encountering an error in the web page while i open the start modeler , the error says 'Error While Obtaining JCO Connection' and i am able to see the tabs below.please let  me know how can i proceed.thanks alot.