Packaging data in GTS

Hello,
We make proforma invoice in R/3 and it is transferred to GTS. In proforma invoice , in header-- foreign trade data, we put container number and seal no in the comments tab (EIKP-TEXT3 and EIKP-TEXT1). Now these fields are not automatically t/f to GTS document in the packaging data tab in GTS ( container nofield etc). We have to manually put the value of container no and seal no in respective fields in GTS document in packaging data tab.
We want the system to automatically t/f the above fields from R/3 proforma invoice to GTS document and to appear in the packaging data tab in respective fields in GTS?
Is there a possibility and if yes how and what is the config path etc?
Regards

Hello Pamela,
another approach would be to map your EIKP-text-fields to the text fields in the customs document on header level (create new text-ids if necessary). Next step would be to define the text-ids , conatiner no and seal no in the field list for data proposal.
Now you can set your rules for data proposals to transfer the values of your text-ids in the appropriated fields.
Regards,
Daniel Sappok

Similar Messages

  • Packaging data not populated in customs declaration

    Hi all,
    I'm creating Pro-forma invoice in ECC and as a result Custom Declaration is getting created in GTS. In GTS the Packaging data in item level is coming as empty. So I implemented the BADI /SAPSLL/IF_EX_IFEX_SD0C_R3 and tried to pass the packaging data. But as a result the custom document stopped getting created in GTS.
    I'm using the below code to populate the fields of the table cs_itm_cdoc-pge-
    LOOP AT lit_vepo ASSIGNING <lfs_vepo>.
            lwa_itmpge-item_number = <lfs_vepo>-posnr.
            lwa_itmpge-int_id = <lfs_vepo>-vepos.
            lwa_itmpge-quantity = <lfs_vepo>-vemng.
            lwa_itmpge-dim_uom = <lfs_vepo>-vemeh.
            APPEND lwa_itmpge TO cs_itm_cdoc-pge.
            CLEAR lwa_itmpge.
          ENDLOOP.
    I'm taking the value of <lfs_vepo> from the standard table vepo. Can anybody please tell me what I'm doing wrong?
    Thanks,
    Sarif

    Hi Dave,
    I’m new to GTS. I’ll list the steps here which I’m following-
    1.       1. In ECC, In tcode VF01, put Billing Type = ‘F8’ and Document = Outbound Delivery ID
    2.       2. Click Save, the billing document in ECC will be saved
    3.       3. In GTS, go to tcode /sapsll/menu_legal
    4.       4. Go to Customs Management->Export->Display Customs Declarations.
    5.       5. You’ll see a new document has been created with reference to the billing document in ECC.
    6.       6. Open the document. Go to Item Details->Packaging Data.
    7.       7.  The packaging details is empty.
    This is the current default behavior. Now my job as an ABAPer is to fetch the packaging data from VEPO table and fill it in the BADI /SAPSLL/IF_EX_IFEX_SD0C_R3 so that it gets reflected in GTS.
    But when I’m trying to do it the custom document in GTS isn’t getting created at all. Note that it’s getting created properly when I’m removing the coding related to the packaging data. So obviously I’m doing something wrong here. Do I need to fill the packaging data for  header as well? Also the field for container is currently empty, do I need to fill it? If yes, where shall I get the data?
    Thanks,
    Sariful

  • Propose item packaging data for customs declaration

    Hi All,
    My requirement is to update packaging data information as mentioned below in the item level of Customs declaration
    1. CNTNO  (Container Number)
    2. PGETY   (Package Type)      
    3. PGESU   (Number of Packages)
    4. PGEX1    (External Package Number)
    I am using BAdI for Default Data in Customs Shipment and Customs Declaration. I have checked all the methods in this BAdI, and the method which fits more close to my requirement is ITEM_LEGPGE_PROPOSE. But this method allows me to update 
    a. Package Tye
    b. Number of Packages
    How should I take care of updating other two fields : Container Number and External Package Number?
    Is there any other BAdI in GTS which takes care of it?
    I would really appreciate your inputs on this.
    Note:
    I am transfering this Packaging Data information from Packaging data tab present at item level in Transit document (Type: TRLOIM) to Packaging data tab present at item level Customs declaration (Type: CULOIM).
    The transit document is extended with items and packaging information through the receipt of an EDI message from Customs.
    Thanks & regards,
    Yogesh A Sharma

    When transfering the DATA to GTS the Program fills the API for the transfer, you can go and change the information there. For this you can use the BADI's that are found in the feeder System under
    SPRO / Sales & Distribution / Foreign Trade/Customs / SAP GTS Plugin / BADI for SAP Global Trade Services / Edit control for document transfer.
    As mentionned above you may replace the GU number by your container Number (Field EXT_ID) or you can try by filling EXT_ID2 / or use any of the additionnal Fields of the Declaration, or in GTS you have the possibility to add supplementary fields in to the declaration (but I never tried it up to now) in the API which is called at  "Perform api6800_csd_Synchronize" during the document transfer.
    Regards,
    Marc

  • Packaging data is not saved in document draft (missing functionality)

    Dear all,
    Packaging data, usually typed with delivery note, is not saved together with Delivery Note draft (No matter the draft is saved manually or automatically by approval procedure).
    I have tested on SBO 2005B latest patch, 2007B latest patch, and 8.8 version, they all do not save packaging data in draft.
    The draft related tables for packaging (DRF7, DRF8) are already existed in SBO, I encourage to get this missing functionality back.
    My customers are highly needed for this function for better operation flow.
    It would be appreciated if this request could be implemented in the near future patch.
    Thanks in advance

    Have also just discovered that this functionality is missing, although we were going to be using it when saving an AR Invoice as Draft. This is a major hole and is going to cause a big issue for a current implementation where this method was going to be used to create 'Split Deliveries' without making the account postings and allow Despatch paperwork for the Shipping company to be printed. The solution was going to be extremely simple, but now potentially is going to result in a substantial SDK development.
    It would be useful to know whether there is any likelihood that it will be resolved in the near future, i.e. in a patch for 2007A SP1 or 8.8.

  • To Fetch Data from GTS and print in R/3

    Hi,
      iam in need of help.
    the core is i have a print program in R/3.from R/3 i have to validate some field with SAPGTS.
    so that i have to apply a RFC call from R/3 ( print program ) to GTS and i have to fetch the data from GTS and print in R/3.
    help me out in finding the RFC.
    the print program is for VL02N

    Mohan:
    SAP and GTS are linked through a RFC destination and the RFC user ID is used to make the call. Once this is set up, you can call GTS through a Function Module call. The set up is normally done by BASIS team
    From the program /SAPSLL/SAPLCD_PI_R3 you can drill down to get details of the specific user-exit which you can use to call GTS tables for specific data.
    Let me know if this helps
    Siva

  • Source system settings to transfer data from GTS system to BI

    Hi Friends,
    I am trying to trnasfer data from GTS system to BI through the BCT datasources 0SLL_CD_1; 0SLL_CD_2 & 0SLL_CD_3. I am getting an error ""No document type for transmitting data into BW - Message no. /SAPSLL/CORE503".
    Could you please tell me what are SPRO settings to be done to activate the document types inorder to transfer data to BI system.
    Thanks,
    Neel

    Hi,
    Even I am facing the same problem...did you get a solution for this. ?
    Gopi

  • Do package data sources update all connected connection managers automatically?

    I converted a big project from SSIS2008 -> SSIS2014
    During conversion i also erased all connection managers and recreated them based on the packages data sources.
    Now i want to test my packages on another server , so i changed my 2 data sources only.
    When i open the packages can see on the connectionstring the old server. 
    If i dont do anything else and press start, what will happen?
    Will the package update itself automatically and get the connection string of the data source or not?
    Elias

    Hi Elias,
    If file or database in the connection string for old server can be accessed from remote server and we have access to that file or database in the connection string, then we can execute the package very well. For example, there is an OLE DB Connection
    Manager that connect to a database from old server. If we have access to that database in new server, then we can still connect to that database. Please notice that the connection string is still the original one, it couldn’t update itself automatically.
    If we want it connect to another one, we should manually change the connection string. Unless we are using a localhost file or database and they also existing in the new server, they can update to new server automatically.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Package Data??

    Sorry if this has been asked before. I just got my new 6280 today on 3. It keeps saying Package Data Connection Not Available. What does this mean? is it because i need to wait for my phone to be activated? How will i know once its activated? Its annoying! all ive been able to do today is put in my phone numbers and listen to the radio!!!
    Any help is much appreciated. Thank you, Alison

    Hi , i've got a 6111 and at first it kept saying subscribe to package data to get on the wap , this was because i needed settings sent to the phone so it might be that your phone is not activated or you could try and get the settings sent to your phone off the 3 site.

  • "Package data not active"?!

    Sometimes, when on a call, I cannot access the Internet as the "package data [is] not active"....
    What does this mean and why does it sometimes work and other times not?

    packet data not active. i solved this by entering my internet access point manually i got the details from my telephone companies website. for some reason the auotomatic settings or the ones they send in an sms dont work 100 percent of the time. also check you have packet data enabled in the connection setting menu.

  • Error in process chain when running package (data manager)

    Hello experts,
    I try to run the following how to : "move date between applications using Data Manager ..."
    Yon can find the pdf here : http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0480970-894f-2d10-f9a5-d4b1160be203
    I'm looking after someone who used it successfully, on my side after implementing all steps and running the package I get the message "IMMEDIATE RUN: Request to run the package on the server was successful The package is now running"
    When I look the log for the process chain, overall status of the process chain is yellow, and steps "modify dynamically" and "clear BPC Tables" are in error.
    I can't get any usefull error messages.
    If someone has an idea to have details about those errors, it will be appreciated.
    Points will be awarded, thanks in advance.
    Guillaume P.

    Hello Experts,
    I am also facing the same issue with PC failing at Modify_Dynamically step....
    This process type is working fine when used  in standard delivered process chain to load transaction data.
    I tried using this variant in my cutsom chain, but it fails.
    Please suggest.....
    Thx....D

  • How to change product master data in GTS?

    Hi Experts,
       I want to change additional data of a product master in GTS.
       I want to update the values in the screen below (Additional data)
       How can I do this? are there any function modules?
       Please help.
    Thanks
    Gopal

    Hi Gopal, guys
    Sorry if i`m repeating what someone else said before as its a long thread.
    The preferable option that we implemented is a small custom Z transactio where users maintain these attributes. Selection screen same as the ususal /sapsll/product_02, and then get the PRGEN entry and maintain on second screen.
    Using the API FM used for ECC system sync... well maybe its a bit unnecessary & overcomplicated. Once you get the Product Object, you can use the maintain object/ maintain subobject methods that is standard and works without simulating inbound api call..
    heres the screenshot
    Hope this helps,
    UPDATE : Mind you, that if you do changes to the attributes in GTS, they will stay for as long as there is no new update for the material in ECC...
    Once a change pointer or manual transfer triggers a re-transfer, manuall changes will most likely be flushed and set back to what comes from ECC api.. just bear this in mind pls & test this case...
    Branio

  • Using XML Publisher with plsql package data source?

    Hi,
    I have a html gantt chart which i create using a plsql package and the use of the htp.p procedure for output to a webpage.
    I want to be able to print this to PDF and was hoping the XML Publisher may be an option for doing this. The datasource for this however seems to be a sql query or XML feed.
    Can anyone provide any suggestions on this??

    With a Pipelined Table Function you can use a function in your FROM-clause (so you'll have a normal SELECT, but in the background the data comes from a PL/SQL-function):
    SELECT * FROM TABLE( <function_name> )
    Look here:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:30404463030437
    http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14261/tuning.htm#sthref2335

  • Security settings for Packages Data Source

    Hello,
    Can someone please help me or address me to some technical advise  about the way to configure the security options of a folder designed as a Data Source for Packages (or OS Images)  to work with SCCM 2012? I'm having a lot of troubles in distributing
    content from network shares (access denied and the like). 
    I've set up the Security Options for Data Source folder so that they inlcude full control for:
    any SCCM admin user
    site server computer account
    distribution point computer account
    what else should I put in?
    Thank you very much!
    Davide

    Hi,
    Please check despool.log on the primary site. There might be some errors about the WIM OS image.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Why to replicate the data for GTS? (we are on the same client)

    Hi Folks,
    We have a GTS installed on the same machine as ERP, so GTS and SAP ERP are on the same client.
    As I understand the implementation guide we have to transfer all the master data like vendor/clients to GTS.
    That would mean we replicate all the vendors and clients.
    What is the sense of that? Why do we have to replicate all the data, We are on the same client?
    Does GTS cannot use the normal vendor master?
    Thx for help
    Dieter

    Hi,
    GTS has its own Database for Business Partners and Material Master, that is why you have to transfer it, even if its on the same client.
    For Developpement you can have both on one machine, but for Testing and aspecially for Production SAP recommends to have 2 seperate machines. This for 2 Reasons:
    1. GTS Runs some jobs (depending on what you implemented) that are very CPU consuming and you take the risk of putting your CPU to 100%
    2. But more important, you will have to patch up GTS many times to cope with new legal regulations, if you have it on the Same machine you have to touch the ERP, wich most companies do not want...
    Regards,
    Marc

  • Info-Package Data Selection

    Hi,
    I have a Info Package which is running from several months in production with different data selections for a InfoObject: ZDEPT as ZAT, AZZ, ZNN etc.
    Now, my new requirement is to include new value ABC for the same InfoObject.
    Do i need to include selection conditions on INIT & DELTA info package as well or directly update the delta and run the process?
    Please let me know.

    Ajeet,
    I donu2019t want to re-load the historical data. As per your suggestion, I just want to do an init without data transfer with new criteria.
    So, I was trying to update the existing Info Package from "Delta mode" Option to Init with out data transfer. I got a pop up message saying that
    u201CDeltas already loaded for request: REQU_2SNQV3GDKC2GTEL9EAVKU6KKF init. select. no 2. initu201D
    Do I need to ignore this message or do I need to delete any thing or Do I need create new info package and select Init with out data transfer. Pls suggest me!.
    I need to do the same thing in production once it is tested in Q. So, currently in production, data is loading ever day using delta mode. I need to be careful to touch the historical data. Pls advice me what is the best thing to do in production.
    Thanks,
    ganga

Maybe you are looking for

  • Not able to schedule Webi and Crystal reports in Infoview

    Hi All, We are using Business Objects XI 3.1. I am not able to schedule reports in Infoview irrespective of the report type. The Webi report throws the error "Bad Request(Invalid URL)" when I hit on the Format Destination section. The Crystal report

  • Adobe Reader will not open Flash Player on my iMac

    Hi Folks, For some reason I cannot install Flash Player.  I used to have it on my iMac but now don't, maybe I inadvertantly deleted it somehow? I've tried re-downloading the app but keep getting the message as below. I've even tried copying the downl

  • Airplay works for phots and video, but not music on 2nd gen touch

    Upgraded to 4.2 on 2nd gen touch. I can send photos and videos/movies to AppleTV via Airplay, but not music. I can select AppleTV when playing a song on Touch and the music stops playing from Touch, but never plays from AppleTV. Audio works just fine

  • Scale transform in AffineTransformOp produces row/column of dead pixels

    Hello, On JDK 1.4.1, both Windoze and Linux, the following code: double aScaleFactor = ((double) finalSize) / aSourceSize; AffineTransform aScaleTransform = AffineTransform.getScaleInstance(aScaleFactor, aScaleFactor); AffineTransformOp aScaleOp = ne

  • No Calrity on Multiple Inheritance Concept Of Java..!

    In SCJP Book by "karty serie " . In Java a subclass of class Object, (except of course class Object itself). In other words, every class you'll ever use or ever write will inherit from class Object. You'll always have an equals method, a clone method