cancel
Showing results for 
Search instead for 
Did you mean: 

How to make the field visible in Inbound delivery

former_member1245242
Contributor
0 Kudos


Hello Experts

Currently the field "Customs office: Office of destination for foreign trade (EIKP-ZOLLB)" is hidden in Inbound delivery screen under Foriegn Trade/Customs-Geography tab.

How to make this field visible?

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

MANIS
Active Contributor
0 Kudos

Hi Ramesh

There is a provision given on screen 0480 and ideally it should display that however once you will check the module the module object is not created for eikp-zollb so in my opinion please raise a OSS note with SAP they can explain why the object is not created in Standard program.


Answers (2)

Answers (2)

former_member1245242
Contributor
0 Kudos

Perfect, thank you Manish & Noel.

former_member223981
Active Contributor
0 Kudos

This field is not designed to be displayed for inbound deliveries. It is designed to be only displayed in outbound deliveries.

As stated by

Program         SAPLV50E

Screen number   0480

> Display

> Layout

You will see the "Office of Destination" (EIKP-ZOLLB) field.

This is the screen that you see displayed in VL33n (and also VL03n for outbound deliveries). However, for inbound deliveries, the system is designed to not display this field at runtime. This happens at the following code:

SAPLV50E                       / LV50EO01
MODULE (PBO)                   / FIELD_SELECTION

*******************************************************************
282 *------- Importfall - Exportfelder ausblenden
283     IF screen-group1 EQ 'EXP'                AND
284        glob_ahbas    CS con_direction-import .
285       screen-invisible = 1.
286       screen-active    = 0.
287     ENDIF.

*******************************************************************

Here, the system states if SCREEN-GROUP 1 = "EXP" and glob_ahbas contains a "1", then the screen field is set to invisible. I am guessing this is what is happening on your system. For inbound deliveries, GLOB_AHBAS will usually contain a value of 1LA (Receipt/Import: Inbound Delivery). This is the value in EIKP-AHBAS. When this is the case, the system will not display the field. For outbound deliveries, the above IF would not be true so the field would be displayed.