cancel
Showing results for 
Search instead for 
Did you mean: 

Goods Receipt

Former Member
0 Kudos

hi experts,

When I new a Goods Receipt document, the system will bring up the items' unit prices automatically. but someone who is not manager news the same Goods Receipt (with the same items), no unit price were shown, all are empty. This will leads to the inventory value incorrect.

How can I let the user to new a Goods Receipt and the system will show the default item unit price? it's regards authorization?

Thanks...

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

Make the field either manadatory or thru authorization you can able to solve this problem. There are lots of Threads discussing how to make field mandatory.

Hope this Clear

Ashish Gupte

Answers (2)

Answers (2)

former_member187989
Active Contributor
0 Kudos

Suggest users to use Price list price,it will bring default price of item in goods receipt.

Former Member
0 Kudos

Hi experts,

that user has full authorization in price list. I think field mandatory is a good solution. but I don't really understand field mandatory.

I found out SP_transitionNotification in my sql server as below,

========================================================================================

set ANSI_NULLS ON

set QUOTED_IDENTIFIER ON

go

ALTER proc [dbo].[SBO_SP_TransactionNotification]

@object_type nvarchar(25), -- SBO Object Type

@transaction_type nchar(1), -- [A]dd, <u>pdate, [D]elete, [C]ancel, C[L]ose

@num_of_cols_in_key int,

@list_of_key_cols_tab_del nvarchar(255),

@list_of_cols_val_tab_del nvarchar(255)

AS

begin

-- Return values

declare @error int -- Result (0 for no error)

declare @error_message nvarchar (200) -- Error string to be displayed

select @error = 0

select @error_message = N'Ok'

-


-- ADD YOUR CODE HERE

-


-- Select the return values

select @error, @error_message

end

===================================================================================

where can I find the article to get more detail about how to add code into this procedure? I only want to let users to new a Goods Receipt without forgetting to fill item price.

thanks....

Former Member
0 Kudos

You can check the form settings, you may need to make the unit price visible or active. Please check also the authorization whether this particular user can see or has authorization on the price list.