Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

help in ME58

Former Member
0 Kudos

nobody knows this trans?????

i need to update the field in the screen external sheet number exit_10 and 20 dont do it why?

i code in xit 10 = '1212121' and it dont get why??

PLS

1 ACCEPTED SOLUTION

Former Member
0 Kudos

> PLS

HI

GOOD

THESE ARE THE USER EXIT OF ME58 YOU CAN TRY WITH THEM.

AMPL0001 User subscreen for additional data on AMPL

LMEDR001 Enhancements to print program

LMELA002 Adopt batch no. from shipping notification when posting a GR

LMELA010 Inbound shipping notification: Transfer item data from IDOC

LMEQR001 User exit for source determination

LMEXF001 Conditions in Purchasing Documents Without Invoice Receipt

LWSUS001 Customer-Specific Source Determination in Retail

M06B0001 Role determination for purchase requisition release

M06B0002 Changes to comm. structure for purchase requisition release

M06B0003 Number range and document number

M06B0004 Number range and document number

M06B0005 Changes to comm. structure for overall release of requisn.

M06E0004 Changes to communication structure for release purch. doc.

M06E0005 Role determination for release of purchasing documents

ME590001 Grouping of requsitions for PO split in ME59

MEETA001 Define schedule line type (backlog, immed. req., preview)

MEFLD004 Determine earliest delivery date f. check w. GR (only PO)

MELAB001 Gen. forecast delivery schedules: Transfer schedule implem.

MEQUERY1 Enhancement to Document Overview ME21N/ME51N

MEVME001 WE default quantity calc. and over/ underdelivery tolerance

MM06E001 User exits for EDI inbound and outbound purchasing documents

MM06E003 Number range and document number

MM06E004 Control import data screens in purchase order

MM06E005 Customer fields in purchasing document

THANKS

MRUTYUN

10 REPLIES 10

former_member188685
Active Contributor
0 Kudos

make it clear.

can you explain what you did and what you are not getting.

Regards

vijay

0 Kudos

i want to get LBLNE in table ESSR

so i tried to make user exit EXIT_SAPLMLSR_020 and it dont get the param becuase it dont have change.

so i tried EXIT_SAPLMLSR_010 i see that he get the data

( i wrote c_essr-lblne = '123456'.)

and it dont get the data.

0 Kudos

hi

use this enhancement:MMDA0001...

goto smod and enter MMDA0001 read the documentation...

i guess ur req will b over here...

reward points if it helps

gunjan

0 Kudos

Gunjan are you sure it's belong to me58????

0 Kudos

Hi,

is '123456' valid one. i doubt it is not.plesae give valid one.

Regards

vijay

0 Kudos

The enhancement MMDA0001 facilitates the determination of customers' own

default delivery addresses in purchasing documents. In the standard

system, the delivery address is determined via the combination

plant/storage location. If no storage location address is maintained,

the plant address is suggested.

Function exit EXIT_SAPLMMDA_001 allows you to

o choose one storage location address from several existing ones

o suggest an address that differs from the storage location address

(e.g. an address from the delivery address pool, which you will find

in the Purchasing menu under Master data -> Delivery addresses)

The fields of the communication structure CMMDA are available to you as

data. You will normally have to extend the structure by adding a

customer-specific append structure containing the fields required for

address determination purposes.

Example

As a rule, you wish to use the storage location address. However,

materials belonging to material group '4711' are to be delivered to a

special address which is stored in the address pool under the number

123.

1. First you define an append structure ZZCMMDA for the structure CMMDA

via the ABAP dictionary and include in it the field MATKL (material

group, data element MATKL).

The field is supplied by the program via the statement

MOVE-CORRESPONDING from the corresponding field in the purchasing

document item.

2. After this you can create the INCLUDE program ZXM06U32 and fill it

with the following lines of coding:

IF I_CMMDA-MATKL EQ '4711'.

E_ADRNR = '0000000123'.

ENDIF.

0 Kudos

o.k

i tried a valid number and it not work

0 Kudos

PLS

give a specific answer i know to run zfind_user exit

but the problem that the user exit dont do his work

Former Member
0 Kudos

> PLS

HI

GOOD

THESE ARE THE USER EXIT OF ME58 YOU CAN TRY WITH THEM.

AMPL0001 User subscreen for additional data on AMPL

LMEDR001 Enhancements to print program

LMELA002 Adopt batch no. from shipping notification when posting a GR

LMELA010 Inbound shipping notification: Transfer item data from IDOC

LMEQR001 User exit for source determination

LMEXF001 Conditions in Purchasing Documents Without Invoice Receipt

LWSUS001 Customer-Specific Source Determination in Retail

M06B0001 Role determination for purchase requisition release

M06B0002 Changes to comm. structure for purchase requisition release

M06B0003 Number range and document number

M06B0004 Number range and document number

M06B0005 Changes to comm. structure for overall release of requisn.

M06E0004 Changes to communication structure for release purch. doc.

M06E0005 Role determination for release of purchasing documents

ME590001 Grouping of requsitions for PO split in ME59

MEETA001 Define schedule line type (backlog, immed. req., preview)

MEFLD004 Determine earliest delivery date f. check w. GR (only PO)

MELAB001 Gen. forecast delivery schedules: Transfer schedule implem.

MEQUERY1 Enhancement to Document Overview ME21N/ME51N

MEVME001 WE default quantity calc. and over/ underdelivery tolerance

MM06E001 User exits for EDI inbound and outbound purchasing documents

MM06E003 Number range and document number

MM06E004 Control import data screens in purchase order

MM06E005 Customer fields in purchasing document

THANKS

MRUTYUN

Former Member
0 Kudos

Hi Rani,

User exit EXIT_SAPLMLSR_010 should do the job. Have you tried to set a break-point in the exit to find out if the exit is activated and passed correctly.

Regards,

John.