× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



The "With Love" is a great touch.  I may start to add that to some of my 
error screens.

"Error at exception X100.  I am about to self destruct.  With Love, Your 
Computer"

Marc Rohde
IT Manager
Pentair Filtration, Inc. & Everpure, LLC

Confidentiality Note: This e-mail message and all attachments to it are 
intended only for the named recipients and may contain confidential 
information. If you are not one of the intended recipients, please do not 
duplicate or forward this e-mail message and immediately delete it from 
your computer. 



ARojas@xxxxxxxxxxxxxxxxxxx 
Sent by: mapics-l-bounces@xxxxxxxxxxxx
02/02/2007 12:23 PM
Please respond to
MAPICS ERP System Discussion <mapics-l@xxxxxxxxxxxx>


To
MAPICS ERP System Discussion <mapics-l@xxxxxxxxxxxx>
cc

Subject
Re: [MAPICS-L] Holding Acknowledgments






mmhhh... ok, just before the SETON     LR  call another litte program to 
print a report 

----------------------------------------------------------------------------------------

Dear User,

   I'm very sorry,  "CO-xxxx" is on hold and the acknowledgement can't be 
printed...

  Please take your time and review and release the order, then request the 

acknowledgement again...


With Love,

Your Mapics.. (oopss Infor/XA)  system

----------------------------------------------------------------------------------------



Is this good enough?






"Eric Wolf" <eric_a_wolf@xxxxxxxxxxx> 
Sent by: mapics-l-bounces@xxxxxxxxxxxx
02/02/2007 10:10 AM
Please respond to
MAPICS ERP System Discussion <mapics-l@xxxxxxxxxxxx>


To
mapics-l@xxxxxxxxxxxx
cc

Subject
Re: [MAPICS-L] Holding Acknowledgments






   The only issue that I have with this modification is that the user may
   think they printed the Acknowledgement.  And if it does not print, may
   keep on trying...you know your users better.

   Eric

 ----------------------------------------------------------------------

     From:  "Greg Wenzloff" <GWenzloff@xxxxxxxxxxx>
     Reply-To:  MAPICS ERP System Discussion <mapics-l@xxxxxxxxxxxx>
     To:  "MAPICS ERP System Discussion" <mapics-l@xxxxxxxxxxxx>
     Subject:  Re: [MAPICS-L] Holding Acknowledgments
     Date:  Fri, 2 Feb 2007 12:42:46 -0500
     >Antonio -- I like this -- nice!    Greg
     >
     >-----Original Message-----
     >From: mapics-l-bounces+gwenzloff=beckmfg.com@xxxxxxxxxxxx
     >[mailto:mapics-l-bounces+gwenzloff=beckmfg.com@xxxxxxxxxxxx] On 
Behalf
     >Of ARojas@xxxxxxxxxxxxxxxxxxx
     >Sent: Friday, February 02, 2007 12:18 PM
     >To: mapics-l@xxxxxxxxxxxx
     >Subject: [MAPICS-L] Holding Acknowledgments
     >
     >One option is to modify the AMBFMPFR   (Original Mapics 
Acknlowedgement
     >print program.....yes,  I know is not a good ide to modify the 
original
     >code, but this works...)
     >
     >
     >Download and modify the program: AMBFMPFR to include a routine to
     verify
     >
     >if the order is on hold:
     >
     >
     >At the beginning of the "C" section you will find the incoming
     >parameters:
     >    /EJECT
     > 
     *****************************************************************
     >       * Entry parameters
     >      C           *ENTRY    PLIST
     >      C                     PARM           P0RTN   7
     >      C           P1AENB    PARM           WP0001  20       Company
     >number
     >      C           P1DCCD    PARM           WP0002  1        Internal
     >header
     >      C           P1CVNB    PARM           WP0003  7 Quote/order
     >num
     >      C           P1CANB    PARM           WP0004  80       Customer
     >number
     >      C           P1B9CD    PARM           WP0005  8        Ship to
     >number
     >      C           P3HYNB    PARM           WP0006  70       Invoice
     >sequenc
     >
     > 
     *****************************************************************
     >
     >        *Enter instructions to find records in the MBCKRES0 file 
(hold
     >file)
     >        *with the key: Company, order type and order
     >        *
     >        *something like:
     >      C                      MOVEL  'N'    FLGHOLD          1
     >      C           KEYHLDF    KLIST
     >      C                      KFLD          P1AENB
     >      C                      KFLD          P1DCCD
     >      C                      KFLD          P1CVNB
     >        *read hold file
     >      C           KEYHLDF    CHAIN  MBCKRES0               22
     >      C           *IN22      DOWEQ *OFF
     >        *if the filed 'approval user' is blank, then the order
     >        *or a line item of the order is on hold.
     >      C           CKHACD     IFEQ  *BLANKS
     >      C                      MOVEL  'Y'    FLGHOLD
     >      C                      LEAVE
     >      C                      ENDIF
     >      C           KEYHLDF    READE  MBCKRES0                  22
     >      C                      ENDDO
     >        * If a record exist in the Hold file MBCKRES0
     >        * without approval, then finish program
     >      C           FLGHOLD    IFEQ   'Y'
     >      C                      SETON                        LR
     >      C                      RETRN
     >      C                      ENDIF
     >
     >        * if not continue with the program.....
     >        *
     >        *
     >        * Initialize
     >      C                     EXSR ZZINIT
     >       * PRT:Acknowledgement: Mainline
     >      C                     EXSR A0MAIN
     >       * Print headers then End of report format
     >      C                     EXSR Q0PRNT
     >      C                     WRITEYBENDRPT
     >       * Exit program
     >
     >
     >
     >
     >Antonio Rojas
     >I.T. Manager - Senior Aerospace SSP
     >(818) 458-7802
     >
     >
     >
     >
     >cmh501@xxxxxxxx wrote:
     >Date: Fri, 2 Feb 2007 9:53:34 -0500
     >From: <cmh501@xxxxxxxx>
     >To: mapics-l@xxxxxxxxxxxx
     >Subject: [MAPICS-L] Holding Acknowledgments
     >
     >Our customer service department wants to have the ability NOT to 
print
     >an
     >order acknowledgment at end order time if an order is on any type of
     >hold.
     >The order acknowledgment selection would be protected (such as the 
pick
     >list option) if the order is on hold. This allows the departments
     >involved
     >to review the order and release the hold before the order is
     >acknowledged.
     >Once all holds have been released then customer service want to be 
able
     >to
     >print the acknowledgment. Has anyone done something similar to this?
     >
     >Thank you,
     >Candy Hein
     >_______________________________________________
     >This is the MAPICS ERP System Discussion (MAPICS-L) mailing list
     >To post a message email: MAPICS-L@xxxxxxxxxxxx
     >To subscribe, unsubscribe, or change list options,
     >visit: http://lists.midrange.com/mailman/listinfo/mapics-l
     >or email: MAPICS-L-request@xxxxxxxxxxxx
     >Before posting, please take a moment to review the archives
     >at http://archive.midrange.com/mapics-l.
     >
     >_______________________________________________
     >This is the MAPICS ERP System Discussion (MAPICS-L) mailing list
     >To post a message email: MAPICS-L@xxxxxxxxxxxx
     >To subscribe, unsubscribe, or change list options,
     >visit: http://lists.midrange.com/mailman/listinfo/mapics-l
     >or email: MAPICS-L-request@xxxxxxxxxxxx
     >Before posting, please take a moment to review the archives
     >at http://archive.midrange.com/mapics-l.
     >
     >
     >_______________________________________________
     >This is the MAPICS ERP System Discussion (MAPICS-L) mailing list
     >To post a message email: MAPICS-L@xxxxxxxxxxxx
     >To subscribe, unsubscribe, or change list options,
     >visit: http://lists.midrange.com/mailman/listinfo/mapics-l
     >or email: MAPICS-L-request@xxxxxxxxxxxx
     >Before posting, please take a moment to review the archives
     >at http://archive.midrange.com/mapics-l.
     >

 ----------------------------------------------------------------------

   Turn searches into helpful donations. Make your search count.
_______________________________________________
This is the MAPICS ERP System Discussion (MAPICS-L) mailing list
To post a message email: MAPICS-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/mapics-l
or email: MAPICS-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/mapics-l.


_______________________________________________
This is the MAPICS ERP System Discussion (MAPICS-L) mailing list
To post a message email: MAPICS-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/mapics-l
or email: MAPICS-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/mapics-l.


______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
______________________________________________________________________



______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
______________________________________________________________________

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.