Maximo List Archive

This is an archive of the Maximo Yahoo Community. The content of this pages may be a sometimes obsolete so please check post dates.
Thanks to the community owner Christopher Wanko for providing the content.



MIF Question

From: John Ballnik (2012-09-10 15:06)

Hi Gang,
I have a custom detail section of the PO object that acts very similar to POLINE.  This detail set (POCC) has a line number and the PO number.  There may be times where the data is sent over from the External system more than once and I want these details to just copy over the already existing records in Maximo.  Right now it's creating a new record.  So for instance
Currently in Maximo
Line 1 - Details 1
Line 2 - Details 2
The incoming record from the External system (Note that line 3 is the new record)
Line 1 - Details 1
Line 2 - Details 2
Line 3 - Details 3
Now this object POCC has the following records
Line 1 - Details 1
Line 1 - Details 1
Line 2 - Details 2
Line 2 - Details 2
Line 3 - Details 3
Does anyone know how to eliminate this from occurring and just insert the new record?
thanks,
John B


From: wwilliams (2012-09-10 15:31)

What version of Maximo?
 
Wes Williams
http://www.weswilliams.net
http://www.williamsconnell.com
________________________________
From: John Ballnik <jballnik@yahoo.com>
To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
Sent: Monday, September 10, 2012 5:06 PM
Subject: [MAXIMO List] MIF Question

 
Hi Gang,
I have a custom detail section of the PO object that acts very similar to POLINE.  This detail set (POCC) has a line number and the PO number.  There may be times where the data is sent over from the External system more than once and I want these details to just copy over the already existing records in Maximo.  Right now it's creating a new record.  So for instance
Currently in Maximo
Line 1 - Details 1
Line 2 - Details 2
The incoming record from the External system (Note that line 3 is the new record)
Line 1 - Details 1
Line 2 - Details 2
Line 3 - Details 3
Now this object POCC has the following records
Line 1 - Details 1
Line 1 - Details 1
Line 2 - Details 2
Line 2 - Details 2
Line 3 - Details 3
Does anyone know how to eliminate this from occurring and just insert the new record?
thanks,
John B


From: John Ballnik (2012-09-10 15:51)

version 7.1.1.6
________________________________
From: "wwilliams@rocketmail.com" <wwilliams@rocketmail.com>
To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
Sent: Monday, September 10, 2012 3:31 PM
Subject: Re: [MAXIMO List] MIF Question

 
What version of Maximo?
 
Wes Williams
http://www.weswilliams.net
http://www.williamsconnell.com
________________________________
From: John Ballnik <jballnik@yahoo.com>
To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
Sent: Monday, September 10, 2012 5:06 PM
Subject: [MAXIMO List] MIF Question
 
Hi Gang,
I have a custom detail section of the PO object that acts very similar to POLINE.  This detail set (POCC) has a line number and the PO number.  There may be times where the data is sent over from the External system more than once and I want these details to just copy over the already existing records in Maximo.  Right now it's creating a new record.  So for instance
Currently in Maximo
Line 1 - Details 1
Line 2 - Details 2
The incoming record from the External system (Note that line 3 is the new record)
Line 1 - Details 1
Line 2 - Details 2
Line 3 - Details 3
Now this object POCC has the following records
Line 1 - Details 1
Line 1 - Details 1
Line 2 - Details 2
Line 2 - Details 2
Line 3 - Details 3
Does anyone know how to eliminate this from occurring and just insert the new record?
thanks,
John B


From: June (2012-09-11 16:51)

New in MAXIMO 7, the PO application, including POLINE, POCOST, etc, has a new field called "REVISIONNUM". By default, MAXIMO increments the REVISIONNUM by 1 and adds a new record in the database every time you send PO data into MAXIMO from an external system. We implemented our system around this new concept during our 6 to 7 upgrade.
If you want the new PO data to just update the existing PO record in MAXIMO instead of creating a new record, have you tried to set the revisionnum in your incoming data to what you have in MAXIMO? Or try add POID, POLINEID, etc. Basically you want to add some fields that can tell MAXIMO to update instead of insert. I have never tried it in 7, did something similar in 6. If that works, you would need to differentiate the case between a new PO (where you don't need to set revisionnum) and update to an existing PO (where you set the revisionnum). I typically add this kind of pre-processing logic in the UserExit class.
Jun
--- In MAXIMO@yahoogroups.com, John Ballnik <jballnik@...> wrote:
>
> version 7.1.1.6
>
>
>
> ________________________________
> From: "wwilliams@..." <wwilliams@...>
> To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
> Sent: Monday, September 10, 2012 3:31 PM
> Subject: Re: [MAXIMO List] MIF Question
>
>
>  
> What version of Maximo?
>  
> Wes Williams
>
> http://www.weswilliams.net
> http://www.williamsconnell.com
>
> ________________________________
> From: John Ballnik <jballnik@...>
> To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
> Sent: Monday, September 10, 2012 5:06 PM
> Subject: [MAXIMO List] MIF Question
>
>
>  
> Hi Gang,
>
> I have a custom detail section of the PO object that acts very similar to POLINE.  This detail set (POCC) has a line number and the PO number.  There may be times where the data is sent over from the External system more than once and I want these details to just copy over the already existing records in Maximo.  Right now it's creating a new record.  So for instance
>
> Currently in Maximo
> Line 1 - Details 1
> Line 2 - Details 2
>
> The incoming record from the External system (Note that line 3 is the new record)
> Line 1 - Details 1
> Line 2 - Details 2
> Line 3 - Details 3
>
> Now this object POCC has the following records
> Line 1 - Details 1
> Line 1 - Details 1
> Line 2 - Details 2
> Line 2 - Details 2
> Line 3 - Details 3
>
> Does anyone know how to eliminate this from occurring and just insert the new record?
>
> thanks,
> John B
>
>
>
>
>
>
>
>
>
>


From: John Ballnik (2012-09-11 10:02)

Hi June...thanks for the email.  Unfortunately, that feature is available in 7.5 and not in 7.1.1.6.  I'm thinking about creating a user exit class and removing the duplicate rows in there but was wondering if there was an easier way.  This is
________________________________
From: June <june_jun_chen@yahoo.com>
To: MAXIMO@yahoogroups.com
Sent: Tuesday, September 11, 2012 9:51 AM
Subject: Re: [MAXIMO List] MIF Question

 
New in MAXIMO 7, the PO application, including POLINE, POCOST, etc, has a new field called "REVISIONNUM". By default, MAXIMO increments the REVISIONNUM by 1 and adds a new record in the database every time you send PO data into MAXIMO from an external system. We implemented our system around this new concept during our 6 to 7 upgrade.
If you want the new PO data to just update the existing PO record in MAXIMO instead of creating a new record, have you tried to set the revisionnum in your incoming data to what you have in MAXIMO? Or try add POID, POLINEID, etc. Basically you want to add some fields that can tell MAXIMO to update instead of insert. I have never tried it in 7, did something similar in 6. If that works, you would need to differentiate the case between a new PO (where you don't need to set revisionnum) and update to an existing PO (where you set the revisionnum). I typically add this kind of pre-processing logic in the UserExit class.
Jun
--- In MAXIMO@yahoogroups.com, John Ballnik <jballnik@...> wrote:
>
> version 7.1.1.6
>
>
>
> ________________________________
> From: "wwilliams@..." <wwilliams@...>
> To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
> Sent: Monday, September 10, 2012 3:31 PM
> Subject: Re: [MAXIMO List] MIF Question
>
>
>  
> What version of Maximo?
>  
> Wes Williams
>
> http://www.weswilliams.net
> http://www.williamsconnell.com
>
> ________________________________
> From: John Ballnik <jballnik@...>
> To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
> Sent: Monday, September 10, 2012 5:06 PM
> Subject: [MAXIMO List] MIF Question
>
>
>  
> Hi Gang,
>
> I have a custom detail section of the PO object that acts very similar to POLINE.  This detail set (POCC) has a line number and the PO number.  There may be times where the data is sent over from the External system more than once and I want these details to just copy over the already existing records in Maximo.  Right now it's creating a new record.  So for instance
>
> Currently in Maximo
> Line 1 - Details 1
> Line 2 - Details 2
>
> The incoming record from the External system (Note that line 3 is the new record)
> Line 1 - Details 1
> Line 2 - Details 2
> Line 3 - Details 3
>
> Now this object POCC has the following records
> Line 1 - Details 1
> Line 1 - Details 1
> Line 2 - Details 2
> Line 2 - Details 2
> Line 3 - Details 3
>
> Does anyone know how to eliminate this from occurring and just insert the new record?
>
> thanks,
> John B
>
>
>
>
>
>
>
>
>
>


From: Mohamed Skandaji (2012-09-11 18:26)

This should be stright foreward.... if record already exist, it will update
it,,,, assuming you kept the default addchange action....
display more information about your configuration, you have something wrong
somewhere
On Mon, Sep 10, 2012 at 11:06 PM, John Ballnik <jballnik@yahoo.com> wrote:
> **
>
>
> Hi Gang,
>
> I have a custom detail section of the PO object that acts very similar to
> POLINE. This detail set (POCC) has a line number and the PO number. There
> may be times where the data is sent over from the External system more than
> once and I want these details to just copy over the already existing
> records in Maximo. Right now it's creating a new record. So for instance
>
> Currently in Maximo
> Line 1 - Details 1
> Line 2 - Details 2
>
> The incoming record from the External system (Note that line 3 is the new
> record)
> Line 1 - Details 1
> Line 2 - Details 2
> Line 3 - Details 3
>
> Now this object POCC has the following records
> Line 1 - Details 1
> Line 1 - Details 1
> Line 2 - Details 2
> Line 2 - Details 2
> Line 3 - Details 3
>
> Does anyone know how to eliminate this from occurring and just insert the
> new record?
>
> thanks,
> John B
>
>
>
>
>
--
Mohamed Skandaji, MBA, PMP


From: John Ballnik (2012-09-11 10:29)

Gang...it is an AddChange and is a custom table, it is not out of the box object.  Is there somewhere in Maximo where I can set the POCC.LINENUM field to be unique per PO?
________________________________
From: Mohamed Skandaji <mohska@gmail.com>
To: MAXIMO@yahoogroups.com
Sent: Tuesday, September 11, 2012 10:26 AM
Subject: Re: [MAXIMO List] MIF Question

This should be stright foreward.... if record already exist, it will update
it,,,, assuming you kept the default addchange action....
display more information about your configuration, you have something wrong
somewhere
On Mon, Sep 10, 2012 at 11:06 PM, John Ballnik <jballnik@yahoo.com> wrote:
> **
>
>
> Hi Gang,
>
> I have a custom detail section of the PO object that acts very similar to
> POLINE.  This detail set (POCC) has a line number and the PO number.  There
> may be times where the data is sent over from the External system more than
> once and I want these details to just copy over the already existing
> records in Maximo.  Right now it's creating a new record.  So for instance
>
> Currently in Maximo
> Line 1 - Details 1
> Line 2 - Details 2
>
> The incoming record from the External system (Note that line 3 is the new
> record)
> Line 1 - Details 1
> Line 2 - Details 2
> Line 3 - Details 3
>
> Now this object POCC has the following records
> Line 1 - Details 1
> Line 1 - Details 1
> Line 2 - Details 2
> Line 2 - Details 2
> Line 3 - Details 3
>
> Does anyone know how to eliminate this from occurring and just insert the
> new record?
>
> thanks,
> John B
>
>
>

>
--
Mohamed Skandaji, MBA, PMP
------------------------------------
Email addresses you might need:
Posting: MAXIMO@yahoogroups.com
Join  : MAXIMO-subscribe@yahoogroups.com
Leave  : MAXIMO-unsubscribe@yahoogroups.com
Cry    : MAXIMO-owner@yahoogroups.com
Group  : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links


From: Mohamed Skandaji (2012-09-11 18:32)

unique index ?
On Tue, Sep 11, 2012 at 6:29 PM, John Ballnik <jballnik@yahoo.com> wrote:
> **
>
>
> Gang...it is an AddChange and is a custom table, it is not out of the box
> object. Is there somewhere in Maximo where I can set the POCC.LINENUM
> field to be unique per PO?
>
> ________________________________
> From: Mohamed Skandaji <mohska@gmail.com>
> To: MAXIMO@yahoogroups.com
> Sent: Tuesday, September 11, 2012 10:26 AM
>
> Subject: Re: [MAXIMO List] MIF Question
>
> This should be stright foreward.... if record already exist, it will update
> it,,,, assuming you kept the default addchange action....
>
> display more information about your configuration, you have something wrong
> somewhere
>
> On Mon, Sep 10, 2012 at 11:06 PM, John Ballnik <jballnik@yahoo.com> wrote:
>
> > **
>
> >
> >
> > Hi Gang,
> >
> > I have a custom detail section of the PO object that acts very similar to
> > POLINE. This detail set (POCC) has a line number and the PO number.
> There
> > may be times where the data is sent over from the External system more
> than
> > once and I want these details to just copy over the already existing
> > records in Maximo. Right now it's creating a new record. So for
> instance
> >
> > Currently in Maximo
> > Line 1 - Details 1
> > Line 2 - Details 2
> >
> > The incoming record from the External system (Note that line 3 is the new
> > record)
> > Line 1 - Details 1
> > Line 2 - Details 2
> > Line 3 - Details 3
> >
> > Now this object POCC has the following records
> > Line 1 - Details 1
> > Line 1 - Details 1
> > Line 2 - Details 2
> > Line 2 - Details 2
> > Line 3 - Details 3
> >
> > Does anyone know how to eliminate this from occurring and just insert the
> > new record?
> >
> > thanks,
> > John B
> >
> >
> >
> >
> >
>
> --
> Mohamed Skandaji, MBA, PMP
>
>
>
> ------------------------------------
>
>
> Email addresses you might need:
> Posting: MAXIMO@yahoogroups.com
> Join : MAXIMO-subscribe@yahoogroups.com
> Leave : MAXIMO-unsubscribe@yahoogroups.com
> Cry : MAXIMO-owner@yahoogroups.com
> Group : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links
>
>
>
>
>
>
--
Mohamed Skandaji, MBA, PMP


From: wwilliams (2012-09-11 11:16)

Yea, that is what I am thinking too, when you created the table did you specify the column and check the enforce uniqueness?
 
Wes
________________________________
From: Mohamed Skandaji <mohska@gmail.com>
To: MAXIMO@yahoogroups.com
Sent: Tuesday, September 11, 2012 12:32 PM
Subject: Re: [MAXIMO List] MIF Question

unique index ?
On Tue, Sep 11, 2012 at 6:29 PM, John Ballnik <jballnik@yahoo.com> wrote:
> **
>
>
> Gang...it is an AddChange and is a custom table, it is not out of the box
> object.  Is there somewhere in Maximo where I can set the POCC.LINENUM
> field to be unique per PO?
>
> ________________________________
> From: Mohamed Skandaji <mohska@gmail.com>
> To: MAXIMO@yahoogroups.com
> Sent: Tuesday, September 11, 2012 10:26 AM
>
> Subject: Re: [MAXIMO List] MIF Question
>
> This should be stright foreward.... if record already exist, it will update
> it,,,, assuming you kept the default addchange action....
>
> display more information about your configuration, you have something wrong
> somewhere
>
> On Mon, Sep 10, 2012 at 11:06 PM, John Ballnik <jballnik@yahoo.com> wrote:
>
> > **
>
> >
> >
> > Hi Gang,
> >
> > I have a custom detail section of the PO object that acts very similar to
> > POLINE.  This detail set (POCC) has a line number and the PO number.
> There
> > may be times where the data is sent over from the External system more
> than
> > once and I want these details to just copy over the already existing
> > records in Maximo.  Right now it's creating a new record.  So for
> instance
> >
> > Currently in Maximo
> > Line 1 - Details 1
> > Line 2 - Details 2
> >
> > The incoming record from the External system (Note that line 3 is the new
> > record)
> > Line 1 - Details 1
> > Line 2 - Details 2
> > Line 3 - Details 3
> >
> > Now this object POCC has the following records
> > Line 1 - Details 1
> > Line 1 - Details 1
> > Line 2 - Details 2
> > Line 2 - Details 2
> > Line 3 - Details 3
> >
> > Does anyone know how to eliminate this from occurring and just insert the
> > new record?
> >
> > thanks,
> > John B
> >
> >
> >
> >
> >
>
> --
> Mohamed Skandaji, MBA, PMP
>
>
>
> ------------------------------------
>
>
> Email addresses you might need:
> Posting: MAXIMO@yahoogroups.com
> Join  : MAXIMO-subscribe@yahoogroups.com
> Leave  : MAXIMO-unsubscribe@yahoogroups.com
> Cry    : MAXIMO-owner@yahoogroups.com
> Group  : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links
>
>
>
>

>
--
Mohamed Skandaji, MBA, PMP
------------------------------------
Email addresses you might need:
Posting: MAXIMO@yahoogroups.com
Join  : MAXIMO-subscribe@yahoogroups.com
Leave  : MAXIMO-unsubscribe@yahoogroups.com
Cry    : MAXIMO-owner@yahoogroups.com
Group  : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links


From: John Ballnik (2012-09-11 11:35)

Gang...a big thank you to Dinesh!  I got it working.
There is a field in DB Config called Alternate Index, you need to set that to the index of the columns.  Be sure NOT to enforce uniqueness or you will get a index error when you try to import.
Thanks,
John
________________________________
From: "wwilliams@rocketmail.com" <wwilliams@rocketmail.com>
To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
Sent: Tuesday, September 11, 2012 11:16 AM
Subject: Re: [MAXIMO List] MIF Question

 
Yea, that is what I am thinking too, when you created the table did you specify the column and check the enforce uniqueness?
 
Wes
________________________________
From: Mohamed Skandaji <mohska@gmail.com>
To: MAXIMO@yahoogroups.com
Sent: Tuesday, September 11, 2012 12:32 PM
Subject: Re: [MAXIMO List] MIF Question
unique index ?
On Tue, Sep 11, 2012 at 6:29 PM, John Ballnik <jballnik@yahoo.com> wrote:
> **
>
>
> Gang...it is an AddChange and is a custom table, it is not out of the box
> object.  Is there somewhere in Maximo where I can set the POCC.LINENUM
> field to be unique per PO?
>
> ________________________________
> From: Mohamed Skandaji <mohska@gmail.com>
> To: MAXIMO@yahoogroups.com
> Sent: Tuesday, September 11, 2012 10:26 AM
>
> Subject: Re: [MAXIMO List] MIF Question
>
> This should be stright foreward.... if record already exist, it will update
> it,,,, assuming you kept the default addchange action....
>
> display more information about your configuration, you have something wrong
> somewhere
>
> On Mon, Sep 10, 2012 at 11:06 PM, John Ballnik <jballnik@yahoo.com> wrote:
>
> > **
>
> >
> >
> > Hi Gang,
> >
> > I have a custom detail section of the PO object that acts very similar to
> > POLINE.  This detail set (POCC) has a line number and the PO number.
> There
> > may be times where the data is sent over from the External system more
> than
> > once and I want these details to just copy over the already existing
> > records in Maximo.  Right now it's creating a new record.  So for
> instance
> >
> > Currently in Maximo
> > Line 1 - Details 1
> > Line 2 - Details 2
> >
> > The incoming record from the External system (Note that line 3 is the new
> > record)
> > Line 1 - Details 1
> > Line 2 - Details 2
> > Line 3 - Details 3
> >
> > Now this object POCC has the following records
> > Line 1 - Details 1
> > Line 1 - Details 1
> > Line 2 - Details 2
> > Line 2 - Details 2
> > Line 3 - Details 3
> >
> > Does anyone know how to eliminate this from occurring and just insert the
> > new record?
> >
> > thanks,
> > John B
> >
> >
> >
> >
> >
>
> --
> Mohamed Skandaji, MBA, PMP
>
>
>
> ------------------------------------
>
>
> Email addresses you might need:
> Posting: MAXIMO@yahoogroups.com
> Join  : MAXIMO-subscribe@yahoogroups.com
> Leave  : MAXIMO-unsubscribe@yahoogroups.com
> Cry    : MAXIMO-owner@yahoogroups.com
> Group  : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links
>
>
>
>

>
--
Mohamed Skandaji, MBA, PMP
------------------------------------
Email addresses you might need:
Posting: MAXIMO@yahoogroups.com
Join  : MAXIMO-subscribe@yahoogroups.com
Leave  : MAXIMO-unsubscribe@yahoogroups.com
Cry    : MAXIMO-owner@yahoogroups.com
Group  : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links


From: wwilliams (2012-09-11 15:11)

good to know!
 
Wes Williams
http://www.weswilliams.net
http://www.williamsconnell.com
________________________________
From: John Ballnik <jballnik@yahoo.com>
To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
Sent: Tuesday, September 11, 2012 1:35 PM
Subject: Re: [MAXIMO List] MIF Question

 
Gang...a big thank you to Dinesh!  I got it working.
There is a field in DB Config called Alternate Index, you need to set that to the index of the columns.  Be sure NOT to enforce uniqueness or you will get a index error when you try to import.
Thanks,
John
________________________________
From: "wwilliams@rocketmail.com" <wwilliams@rocketmail.com>
To: "MAXIMO@yahoogroups.com" <MAXIMO@yahoogroups.com>
Sent: Tuesday, September 11, 2012 11:16 AM
Subject: Re: [MAXIMO List] MIF Question
 
Yea, that is what I am thinking too, when you created the table did you specify the column and check the enforce uniqueness?
 
Wes
________________________________
From: Mohamed Skandaji <mohska@gmail.com>
To: MAXIMO@yahoogroups.com
Sent: Tuesday, September 11, 2012 12:32 PM
Subject: Re: [MAXIMO List] MIF Question
unique index ?
On Tue, Sep 11, 2012 at 6:29 PM, John Ballnik <jballnik@yahoo.com> wrote:
> **
>
>
> Gang...it is an AddChange and is a custom table, it is not out of the box
> object.  Is there somewhere in Maximo where I can set the POCC.LINENUM
> field to be unique per PO?
>
> ________________________________
> From: Mohamed Skandaji <mohska@gmail.com>
> To: MAXIMO@yahoogroups.com
> Sent: Tuesday, September 11, 2012 10:26 AM
>
> Subject: Re: [MAXIMO List] MIF Question
>
> This should be stright foreward.... if record already exist, it will update
> it,,,, assuming you kept the default addchange action....
>
> display more information about your configuration, you have something wrong
> somewhere
>
> On Mon, Sep 10, 2012 at 11:06 PM, John Ballnik <jballnik@yahoo.com> wrote:
>
> > **
>
> >
> >
> > Hi Gang,
> >
> > I have a custom detail section of the PO object that acts very similar to
> > POLINE.  This detail set (POCC) has a line number and the PO number.
> There
> > may be times where the data is sent over from the External system more
> than
> > once and I want these details to just copy over the already existing
> > records in Maximo.  Right now it's creating a new record.  So for
> instance
> >
> > Currently in Maximo
> > Line 1 - Details 1
> > Line 2 - Details 2
> >
> > The incoming record from the External system (Note that line 3 is the new
> > record)
> > Line 1 - Details 1
> > Line 2 - Details 2
> > Line 3 - Details 3
> >
> > Now this object POCC has the following records
> > Line 1 - Details 1
> > Line 1 - Details 1
> > Line 2 - Details 2
> > Line 2 - Details 2
> > Line 3 - Details 3
> >
> > Does anyone know how to eliminate this from occurring and just insert the
> > new record?
> >
> > thanks,
> > John B
> >
> >
> >
> >
> >
>
> --
> Mohamed Skandaji, MBA, PMP
>
>
>
> ------------------------------------
>
>
> Email addresses you might need:
> Posting: MAXIMO@yahoogroups.com
> Join  : MAXIMO-subscribe@yahoogroups.com
> Leave  : MAXIMO-unsubscribe@yahoogroups.com
> Cry    : MAXIMO-owner@yahoogroups.com
> Group  : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links
>
>
>
>

>
--
Mohamed Skandaji, MBA, PMP
------------------------------------
Email addresses you might need:
Posting: MAXIMO@yahoogroups.com
Join  : MAXIMO-subscribe@yahoogroups.com
Leave  : MAXIMO-unsubscribe@yahoogroups.com
Cry    : MAXIMO-owner@yahoogroups.com
Group  : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links


From: Tony W (2012-09-12 23:03)


Make sure your action is AddChange and not just Add.
--- In MAXIMO@yahoogroups.com, John Ballnik <jballnik@...> wrote:
>
> Hi Gang,
>
> I have a custom detail section of the PO object that acts very similar to POLINE.  This detail set (POCC) has a line number and the PO number.  There may be times where the data is sent over from the External system more than once and I want these details to just copy over the already existing records in Maximo.  Right now it's creating a new record.  So for instance
>
> Currently in Maximo
> Line 1 - Details 1
> Line 2 - Details 2
>
> The incoming record from the External system (Note that line 3 is the new record)
> Line 1 - Details 1
> Line 2 - Details 2
> Line 3 - Details 3
>
> Now this object POCC has the following records
> Line 1 - Details 1
> Line 1 - Details 1
> Line 2 - Details 2
> Line 2 - Details 2
> Line 3 - Details 3
>
>
> Does anyone know how to eliminate this from occurring and just insert the new record?
>
> thanks,
> John B
>
>
>
>