cancel
Showing results for 
Search instead for 
Did you mean: 

AES Customs Packaging Data

Former Member
0 Kudos

Hello,

I have a problem to find the way to configure in GTS as follows:

We have a Feeder System SAP Retail and wanted that on the item level the amount of cartons is added into the fields of Packaging Data in the customs document

Actually we got there the number of paletts but we want to have the number of cartons.

Can you help me to find a soultion for this. Do I havbe to change something in GTS or do we need to configure this in SAP Retail?

Thanks for help.

Regards,

Jörg

Accepted Solutions (1)

Accepted Solutions (1)

former_member215181
Active Contributor
0 Kudos

Hi Jörg,

The code in the feeder system is designed to transfer only the highest-level Handling Units to GTS.  If your Delivery is packed in Cartons that are then packed into Pallets, then only the Pallets will be transferred.

Since the system was specifically built to support ATLAS, then I guess that meets the requirements of German Customs.  And it would also meet the requirements of most other European Customs authorities, as far as I know.  Officers would always want to know about the packages they can actually see, without having to unpack anything.

Why do you want to report the Cartons instead?

Regards,

Dave

Former Member
0 Kudos

Hi Dave,

thanks for the answer. I also think is just a cosmetic issue, that is caused, because they pack from different foreign trade organisations the products together for one destination client. They optimise the packaging and generate new handling unit but in a warehouse system and not in the feeder SAP ECC. They want to be sure to get no problems at the border if they have a visit, because the amount of Number palettes in the AWB ist not the same as loaded in the truck.

But as you already mentioned I think it needs the requirement of ATLAS.

Thanks,

Jörg

Answers (1)

Answers (1)

thomasrausch
Active Participant
0 Kudos

Hi Jörg,

we done this in the GTS system, Use TC SE19 and create an implementation with the SAP

classic Badi /SAPSLL/CUHD_PROP. Choose an Implementione Name (ZGTS_CUHD_PROP maybe). If you have done this you can use the method ITEM_LEGPGE_PROPOSE and create

your coding.

For example:

 

data: ls_cuit     type /sapsll/cuit,
        ls_item_pge type /sapsll/cuhd_badi_item_pge_s,
        hiv_itvsy   type /sapsll/itvsy,
        l_dimum     type /sapsll/dimum,
        l_pgesu     like ls_item_pge-pgesu.

        call function '/SAPSLL/PRODUCT_UNIT_CONVERT'
          exporting
*            iv_input                   = ls_cuit-quant_flt
            iv_input                   = l_pgesu
            iv_dimum_fr                = 'ST'
            iv_guid_pr                 = ls_cuit-guid_pr
            iv_dimum_to                = 'KAR'
         importing
            ev_output                  = ls_item_pge-pgesu
*       EV_PRBUM                   =
         exceptions
           conversion_not_found       = 1
           input_invalid              = 2
           product_not_found          = 3
           dim_uom_not_found          = 4
           prbum_missing              = 5
           no_dim_uom                 = 6
           output_invalid             = 7
           overflow                   = 8
           processing_error           = 9
           others                     = 10.

          append ls_item_pge to ct_item_pge.

Regards

Thomas

Former Member
0 Kudos

Hi Thomas,

thanks for your answer.

Unfortunaletly I have no experience in writting coding and implement a Badi.

Is there no other possibility with customizing?

With the F8 from the SAP Retail we got a palette with the NVE Number and this is filled in GTS the packaging data. We got the number of cartons in the General Tab of the customs document on item level. This I would like to put into packaging data on item level. The cartons have also a NVE number within the delivery in SAP Retail.

Thanks for help.

Regards

Jörg

thomasrausch
Active Participant
0 Kudos

Hi Jörg,

 

I know no way to do it in customizing. We also tried to compute the cartons
amount in the ERP system, but failed. The easiest way is realy to coumpute it
in GTS.

Let us try somthing:

Choose TC SE19

Choose create implementation mark classic BadI in use the standard /SAPSLL/CUHD_PROP

Press create impl.

Insert ZGTS_CUHD_PROP in the field Implementation Name enter

actived the implementation

Now you have the methods

HEADER_DATA_PROPOSE

ITEM_DATA_PROPOSE

ITEM_LEGDOC_CUIP_PROPOSE

CONTAINER_STATUS_PROPOSE

ITEM_LEGPGE_PROPOSE

click on  ITEM_LEGPGE_PROPOSE..

 

In your case you have iv_dimum_fr='PAL'and iv_dimum_to = 'KAR'.

Add as first step

clear ls_item_pge.
    read table is_cdoc-cuit into ls_cuit
     with key itvsy = iv_itvsy.

and insert the coding form above.

Maybe this works for you.

Regards

Thomas

Former Member
0 Kudos

Hi Thomas,

thanks for the help, but I will first discuss it internally and if we have to implementa the Badi I will come back to you.

We first try to leave it like it is.

Regards,

Jörg

thomasrausch
Active Participant
0 Kudos

Hi Jörg,

that's fine for me.

Regards,

Thomas