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: 

Issue in inbound Idoc

Former Member
0 Kudos

Hi Experts,

I have one issue inbound idoc, actually we have 4 zfields, durring inbound process this 4 fields getting the records as well as its showing the correct values in we05. Even the idoc also getting success. But in the sales order its not showing the values. I debugged the program, its getting the value and showing the value in idoc.

Can anyone help that why its not showing the records in particualr screen in sales order?

The four fields are date related fields.

Anyone suggest me what we need todo?

Mohana

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Specify the field names. What is the message type/process code for inbound idoc processing?

Regards

Vinod

8 REPLIES 8

Former Member
0 Kudos

Specify the field names. What is the message type/process code for inbound idoc processing?

Regards

Vinod

0 Kudos

The fields are ZZREQSHIPDT, ZZSHIPNLTDT,ZZCINDBYDT,ZZDDELAFTDT .

Message type : ORDERS

Process code ORDE

funtion module IDOC_INPUT_ORDERS

Its an inbound idoc

pls help us.

Mohana

Edited by: Mohana Vijayan on Apr 13, 2010 11:28 AM

0 Kudos

Hi Mohana,

In which segment you are populating these values ? Are you updating these values using Enhancement :"EXIT_SAPLVEDA_011"?

Regards

Vinod

0 Kudos

The segment is E1EDK03 002

under this we have one z segment, This segment also showing the correct idoc value in we05. But its not populating in screen.

0 Kudos

Update the custom data into structure "DXVBAK" using enhancement "VEDB0001", component :"EXIT_SAPLVEDB_001".

Regards

Vinod

Former Member
0 Kudos

hi,

goto transaction code SM58 and check whether data is strucked in the trfc port if it is there then reprocess IDOC.

hope this will help.

Manohar2u
Active Contributor
0 Kudos

Are these values stored in Sales order tables? If yes, then there is a problem with screen exits.

If no, then you aren''t mapped them into sales order tables while processing inbound idoc.

Former Member
0 Kudos

*Populate work area with custom date fields
        lwa_vbak_date-zzdate3 = lwa_zgvsa_e1edk03-zzreqshipdt.
        lwa_vbak_date-zzdate4 = lwa_zgvsa_e1edk03-zzshipnltdt.
         lwa_vbak_date-ZZCAN_DATE = lwa_zgvsa_e1edk03-zzcindbydt.
        lwa_vbak_date-zzdate6 = lwa_zgvsa_e1edk03-zzddelaftdt.

*Move work area to DXVBAK
        MOVE-CORRESPONDING lwa_vbak_date TO dxvbak.

Its taking the value and showing the value in IDoc, but not showing in the screen.

Pls guide us.

Mohana