Subject: RE: Make Direct Parts

When a make direct part is entered in Sales Order it also shows up in
the planning work bench in Job entry. From there you can create the job,
get details etc.



-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On Behalf
Of Chris Stover
Sent: Wednesday, June 22, 2005 3:25 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Make Direct Parts


Even without the MRP module you should have that opportunity to select
any
specific part to make into a job. When you go into Job Entry up on the
top
there is the Planning Workbench option. You simply select that option
and
it will give you the list of parts that have sales orders and are marked
Make Direct. You simply highlight which part you want and select Create
a
Job.



Do all of your parts in your system have BOM's attached to them? If so
you
can simply check mark the Get Details option after you hit next job
number
and the BOM's will come with the creation of the Job for that Part. But
if
not, you will have to create the BOM with the part.



Chris Stover

Business Control Engineer

Deaver Industries

205-426-4309 Voice

205-426-4364 Fax

cstover@...

www.deaverind.com



-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of
Rough Brothers
Sent: Wednesday, June 22, 2005 2:13 PM
To: Vantage Users
Subject: [Vantage] Make Direct Parts



Someone has to have a better way of manufacturing (creating a job) Make
Direct Parts.

Creating a job to Manufacture a "Make Direct" Part is not easily done.

Suggestions for Make Direct Parts only show up in the Time Phased
Material
Report. Once you discover you need to create a job for this make direct
part ... everything is manual. Manually create the job, manually select
the
part, manually assign the job, manually select the operation, manually
select the part to be manufactured (you can actually select other items
that
are NOT make direct), manually select the date to complete (date to
complete
is not tied to the original job). It is extremely cumbersome.

All this could go away if Vantage had a "Make Direct Suggestions"
similar to
PO Suggestions.


We have also discovered that the "Demand" for Make Direct Parts is not
summarized (accumulated) in Part Tracker. It apparently nets the
"suggestion" that shows up on the Time phase report with the Demand from
the
job and creates a demand of "zero". Don't understand why demand does
not
show up?

Therefore, if we run a query ... Demand for Make Direct Items does not
show
up.

Does anyone have a better way?

I guess the above is why Epicor sells the MRP module ....



__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

[Non-text portions of this message have been removed]



Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have
already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
<http://groups.yahoo.com/group/vantage/files/>
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links




_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
<http://docs.yahoo.com/info/terms/> Service.



[Non-text portions of this message have been removed]



Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have
already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links
Yahoo! Groups Links









________________________________________________________________________
________________________________________________________________________

Message: 3
Date: Wed, 22 Jun 2005 20:45:52 -0000
From: "bbelzer42" <bbelzer@...>
Subject: Re: Dashboard Query

Here is what I have. What I would like to NOT see are any lines where
there are 0 parts in the RAW warehouse. If there are 0 parts in any
other warehouse, I would like to see those.

Any help would be MUCH appreciated.

Thanks!
Ben

--- In vantage@yahoogroups.com, "Aaron Hoyt" <aaron.hoyt@v...> wrote:
> Ben,
> You can add a filter in the query where the linking is done.
> For instance where you call the PartWhse table,
> Add a line that reads... PartWhse.OnHandQty > 0
> If you need more detail, post the contents of your query.
>
> Good luck,
> Aaron Hoyt
> Vantage Plastics
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf
> Of bbelzer42
> Sent: Wednesday, June 22, 2005 3:23 PM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Dashboard Query
>
>
> I have a dashboard query that shows me everything I have on hand for a
> part. It shows the part twice (two lines) if it is in 2 warehouses.
>
> Is there a way to keep a line from showing? Ie: If the Warehouse has
> 0 on hand, can I make the line not show?
>
> Thanks,
> Ben
>
>
>
>
> Useful links for the Yahoo!Groups Vantage Board are: ( Note: You
must have
> already linked your email address to a yahoo id to enable access. )
> (1) To access the Files Section of our Yahoo!Group for Report
Builder and
> Crystal Reports and other 'goodies', please goto:
> http://groups.yahoo.com/group/vantage/files/.
> (2) To search through old msg's goto:
> http://groups.yahoo.com/group/vantage/messages
> (3) To view links to Vendors that provide Vantage services goto:
> http://groups.yahoo.com/group/vantage/links
> Yahoo! Groups Links




________________________________________________________________________
________________________________________________________________________

Message: 4
Date: Wed, 22 Jun 2005 20:46:32 -0000
From: "bbelzer42" <bbelzer@...>
Subject: Re: Dashboard Query

Oops... left the code out:


for each PartPlant Where PartPlant.Company = cur-comp no-lock,
each PartWhse Where PartWhse.Company = PartPlant.Company
and PartWhse.PartNum = PartPlant.PartNum
no-lock,
each Part Where Part.Company = PartWhse.Company
and Part.PartNum = PartWhse.PartNum
and Part.NonStock = no and
Part.TypeCode = 'M' no-lock
BY Part.PartNum:


Thanks! Ben

--- In vantage@yahoogroups.com, "Aaron Hoyt" <aaron.hoyt@v...> wrote:
> Ben,
> You can add a filter in the query where the linking is done.
> For instance where you call the PartWhse table,
> Add a line that reads... PartWhse.OnHandQty > 0
> If you need more detail, post the contents of your query.
>
> Good luck,
> Aaron Hoyt
> Vantage Plastics
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf
> Of bbelzer42
> Sent: Wednesday, June 22, 2005 3:23 PM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Dashboard Query
>
>
> I have a dashboard query that shows me everything I have on hand for a
> part. It shows the part twice (two lines) if it is in 2 warehouses.
>
> Is there a way to keep a line from showing? Ie: If the Warehouse has
> 0 on hand, can I make the line not show?
>
> Thanks,
> Ben
>
>
>
>
> Useful links for the Yahoo!Groups Vantage Board are: ( Note: You
must have
> already linked your email address to a yahoo id to enable access. )
> (1) To access the Files Section of our Yahoo!Group for Report
Builder and
> Crystal Reports and other 'goodies', please goto:
> http://groups.yahoo.com/group/vantage/files/.
> (2) To search through old msg's goto:
> http://groups.yahoo.com/group/vantage/messages
> (3) To view links to Vendors that provide Vantage services goto:
> http://groups.yahoo.com/group/vantage/links
> Yahoo! Groups Links




________________________________________________________________________
________________________________________________________________________

Message: 5
Date: Wed, 22 Jun 2005 13:57:07 -0700
From: "Susan Iverson" <siverson@...>
Subject: RE: Multi-Site Management

You would still need to switch "plants" to see some information. I
haven't worked with multiple companies yet but multi-plant does require
a lot of changing back and forth between plants to access a lot of PO,
Inventory and Job information.



Sue

-----Original Message-----
From: PLAMAN DICK [mailto:dick.plaman@...]
Sent: Wednesday, June 22, 2005 8:15 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Multi-Site Management



We have a separate company (same ownership) that supplies raw material
to us. Our demand generates a sales order to them and a PO for the
parent company.
The order must be shipped on the supplying company, and received on the
parent company. The demands of the parent company are not visible
to the supplying company, even tho each company is using vantage (set up
as separate companies). Users must switch to the other company
to view and maintain the other company records.
Question: does multi-site management lessen the need for all of the
care and feeding of the above scenario?
regards




[Non-text portions of this message have been removed]



Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
<http://groups.yahoo.com/group/vantage/files/>
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links




_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service <http://docs.yahoo.com/info/terms/> .



[Non-text portions of this message have been removed]



________________________________________________________________________
________________________________________________________________________

Message: 6
Date: Wed, 22 Jun 2005 14:00:09 -0700
From: "Susan Iverson" <siverson@...>
Subject: RE: Sales Order Demand (Purchase Direct)

You are correct as far as I know. That's how we do it - create the S/O,
create a Job, create the PO for the part, receive it and ship from the
Job.



Sue

-----Original Message-----
From: Rough Brothers [mailto:roughbros@...]
Sent: Wednesday, June 22, 2005 5:54 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Sales Order Demand (Purchase Direct)



Thanks for the response.

I can see that a "Make Direct" item can be seen in Order Job Wizard (a
job would be created to make the item) ...

However, I am still unable to see "Purchase Direct" items in PO
suggestions from a Sales Order. (Scenario would be that we are going to
purchase this item specifically for this sales order.) .... not pull
material from inventory.

I am assuming that I am going to have to create a job from the sales
order and then have the Purchase Direct Material sitting in the job to
be able to view the demand in PO Suggestions.



ehahn@... wrote:
You will still get a demand for non-stocked items. It will be to
inventory,
not linked to the Sales Order. (I think the AMM lets you link direct to
the
Sales Order, but someone would have to confirm)

Liz

-----Original Message-----
From: Rough Brothers [mailto:roughbros@...]
Sent: Tuesday, June 21, 2005 09:04 AM
To: Vantage Users
Subject: [Vantage] Sales Order Demand (Parts Orders)


Vantage 6.1

I want to make sure I understand this correctly.

Stocked Items ... For Parts that are "Stocked", you can enter the demand
in
the Sales Order and it shows up in Time Phased as demand for the Sales
Order
... "Go ahead and pull if from Stock"

Purchase Direct Items - If you enter an Item on the sales order that is
a
PURCHASED "Non-Stocked" Part in the system, demand does not show up
anywhere
.... ie, you can not create a PO to purchase the "Non-stock" item that
sits
on a Sales Order. You would first have to create a JOB tied to the
Sales
order and enter the Purchased "Non-Stock" item in the Job to create the
demand.

Please confirm my understanding.


---------------------------------
Yahoo! Sports
Rekindle the Rivalries. Sign up for Fantasy Football

[Non-text portions of this message have been removed]



Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have
already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
<http://groups.yahoo.com/group/vantage/files/>
<http://groups.yahoo.com/group/vantage/files/.
<http://groups.yahoo.com/group/vantage/files/> >
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
<http://groups.yahoo.com/group/vantage/messages>
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links
<http://groups.yahoo.com/group/vantage/links>



_____

Yahoo! Groups Links


* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/
<http://groups.yahoo.com/group/vantage/>


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service
<http://docs.yahoo.com/info/terms/> .




[Non-text portions of this message have been removed]



Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
<http://groups.yahoo.com/group/vantage/files/>
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links



---------------------------------
Yahoo! Groups Links

To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/

To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

[Non-text portions of this message have been removed]



Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
<http://groups.yahoo.com/group/vantage/files/>
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links




_____

Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/vantage/


* To unsubscribe from this group, send an email to:
vantage-unsubscribe@yahoogroups.com
<mailto:vantage-unsubscribe@yahoogroups.com?subject=Unsubscribe>


* Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service <http://docs.yahoo.com/info/terms/> .



[Non-text portions of this message have been removed]



________________________________________________________________________
________________________________________________________________________

Message: 7
Date: Wed, 22 Jun 2005 17:01:24 -0400
From: "Aaron Hoyt" <aaron.hoyt@...>
Subject: RE: Re: Dashboard Query

Ben,
I am on my way out the door, so this is untested, but something like
below
should do the trick.
You may have to play with the syntax a bit.

for each PartPlant Where PartPlant.Company = cur-comp no-lock,
each PartWhse Where PartWhse.Company = PartPlant.Company
and PartWhse.PartNum = PartPlant.PartNum
and PartWhse.WarehouseCode = "Raw"
and PartWhse.OnHandQty > 0
or PartWhse.Company = PartPlant.Company
and PartWhse.PartNum = PartPlant.PartNum
and PartWhse.WarehouseCode <> "RAW"
no-lock,
each Part Where Part.Company = PartWhse.Company
and Part.PartNum = PartWhse.PartNum
and Part.NonStock = no and
Part.TypeCode = 'M' no-lock
BY Part.PartNum:
Good luck,
Aaron Hoyt
Vantage Plastics

-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On Behalf
Of bbelzer42
Sent: Wednesday, June 22, 2005 4:47 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Dashboard Query


Oops... left the code out:


for each PartPlant Where PartPlant.Company = cur-comp no-lock,
each PartWhse Where PartWhse.Company = PartPlant.Company
and PartWhse.PartNum = PartPlant.PartNum
no-lock,
each Part Where Part.Company = PartWhse.Company
and Part.PartNum = PartWhse.PartNum
and Part.NonStock = no and
Part.TypeCode = 'M' no-lock
BY Part.PartNum:


Thanks! Ben

--- In vantage@yahoogroups.com, "Aaron Hoyt" <aaron.hoyt@v...> wrote:
> Ben,
> You can add a filter in the query where the linking is done.
> For instance where you call the PartWhse table,
> Add a line that reads... PartWhse.OnHandQty > 0
> If you need more detail, post the contents of your query.
>
> Good luck,
> Aaron Hoyt
> Vantage Plastics
>
> -----Original Message-----
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]On
Behalf
> Of bbelzer42
> Sent: Wednesday, June 22, 2005 3:23 PM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Dashboard Query
>
>
> I have a dashboard query that shows me everything I have on hand for a
> part. It shows the part twice (two lines) if it is in 2 warehouses.
>
> Is there a way to keep a line from showing? Ie: If the Warehouse has
> 0 on hand, can I make the line not show?
>
> Thanks,
> Ben
>
>
>
>
> Useful links for the Yahoo!Groups Vantage Board are: ( Note: You
must have
> already linked your email address to a yahoo id to enable access. )
> (1) To access the Files Section of our Yahoo!Group for Report
Builder and
> Crystal Reports and other 'goodies', please goto:
> http://groups.yahoo.com/group/vantage/files/.
> (2) To search through old msg's goto:
> http://groups.yahoo.com/group/vantage/messages
> (3) To view links to Vendors that provide Vantage services goto:
> http://groups.yahoo.com/group/vantage/links
> Yahoo! Groups Links




Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have
already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links
Yahoo! Groups Links









________________________________________________________________________
________________________________________________________________________

Message: 8
Date: Wed, 22 Jun 2005 21:04:04 -0000
From: "John Mahala" <john@...>
Subject: OT - Job Opportunity in Central PA

KRB Machinery has an opening for an Operations Manager with strong
Vantage implementation experience. If interested, please send resume
to nathan@...




________________________________________________________________________
________________________________________________________________________


Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must
have already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder
and Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links
------------------------------------------------------------------------
Yahoo! Groups Links




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