Certificate of origin(Urgent)

Hi All,
My client wants to have seperate Certificate of Origin's(Output) for each Material at Delivery Item -level.
Actually Certificate of Origin is a Output type which appears in Billing, but we cant have provision to display the "Certificate of origin" at Item level in Billing documents.
So My client wants to have Certificate of origin(Out Put type) at delivery Item-level in order to know each and every material's comtry of origin.
Generally this Certficate of Origin contains the details where Material is produced .
This Certificate of Origin helps the Customs Department as well as Ship-to-party(Customer) in telling from where the Material has came from.
I had taken the details Certificate of Origin Out put type from Billing and i had created the same Out put type at Delivery Item-level,but the problem is iam able to get a output but  in the output Iam unable to see any informatiom , only the Output format is displayed with out information.
What i understand is that the Program which is mainatined in Output Type(billing) is only useful in picking the FORIEGN TRADE  values from billing documents but not from the delievry documents.
So any one please guide me in using the certificate of Origin at Delievry Item level in order to pick the Foriegn Trdae values in delievry.
This should happen when the material is from Two different countries in delievry .
I tried my best to give the explaination.....do kindly provide me with the solution..
waiting for ur valuable answers
Thanks in advance
regards
SK

Hi Prasant,
You can refer to this link for information about COO,
[COO|http://en.wikipedia.org/wiki/Certificate_of_origin]
In SAP , here you can maintain
http://help.sap.com/saphelp_40b/helpdata/en/ed/3b6cc697e711d1b4e20000e82d81b0/frameset.htm
Thanks,
Raja

Similar Messages

  • Display item number in US certificate of origin

    Hi,
    Currently in US certificate of origin, it doesnt display item number in item details.
    Sapscript: SD_EXPORT_FUCO
    FunctionPool: SAPLV55E
    Include Name: LV55EF24
    I had copied SD_EXPORT_FUCO into ZSD_EXPORT_FUCO and added V55ENAFT-POSNR to display item number but there is no value in that field.
    In the standard sap Function Pool(SAPLV55E) and Include(LV55EF24),
    this
    *   PERFORM GET_ITEM_NUMBER_NAFT.      "Item number
    *   PERFORM FILL_ITEM_NUMBER_NAFT.     "Item number
    were commented. I guess this is the reason why V55ENAFT-POSNR is empty.
    Is there any other field that i can used to display item number in that sapscript?
    Appreciate advice.
    Cheers!

    Hi,
    Just a suggestion, you can write a perform in the SAP script since you made a Z copy of it. Write the code for fetching the POSNR in the subroutine program. You could take help of the select query from where to fetch the data from that perform that is commented in the SAP programs.
    In the script:
    /: PERFORM GET_POSNR IN PROGRAM Z_GET_POSNR
    /: USING                                                     // parameters to pass
    /: CHANGING                                              // parameters to return back
    In the program Z_GET_POSNR
    FORM GET_POSNR TABLES IT_INTAB STRUCTURE ITCSY IT_OUTTAB STRUCTURE ITCSY
    Write code to fetch POSNR
    Pass the value back to the script
    ENDFORM
    IT_INTAB and IT_OUTTAB have fields NAME and VALUE.
    Thanks and Regards,
    Vanessa

  • Certificate of Origin

    Hi Experts,
      Please suggest me the names of SAP Standard Certificate of Origin forms...
    Thanks in Advance...
    Shital..

    Hi Prasant,
    You can refer to this link for information about COO,
    [COO|http://en.wikipedia.org/wiki/Certificate_of_origin]
    In SAP , here you can maintain
    http://help.sap.com/saphelp_40b/helpdata/en/ed/3b6cc697e711d1b4e20000e82d81b0/frameset.htm
    Thanks,
    Raja

  • Certificate of Origin for Switzerland?

    I am searching for the Form BGUZ - the swiss certificate of origin (Ursprungszeugnis Schweizerische Eidgenossenschaft). Do you know if this available in SAP ERP or GTS ?
    Thanks and best regards,
    Franziska

    I believe, it is available. Pls check under Foreign trade --> tax reporting sections in SAP ERP.

  • Source of the address for output type ZCOO(Certificate of origin)?

    Hi,
    I have to locate the source of the address field in the output type ZCOO-Certificate of Origin ,in transaction VF03. I got the sap script name from TNAPR table as Z_SD_EXPORT_FUCO and address field had the the values from V55ENAFT-ZZ_PL_STRAS but i cant find from which table this values is being retrieved in the corresponding print program RVADAUS1.Could anyone help track this?

    Hi,
      why cant you look for whre-used list for that custom field? or there should be user exit / Badi.
    Regards,
    ~Satya

  • Certificate of Origin with multiple line items in sapscript - Urgent Please

    Hi Everyone,
    Can you please help me with this issue in SAPSCRIPT.
    This is for billing document with multiple items with each line item with different country of origin.Right now the form is printing only one country of origin even if it has 3 line items each with different country.It's getting first line item's country and printing......but it should diplay each country with comma separated... But in debug it is showing all 3 different countries but in print it is printing only first country of origin.
       I have given text element as &VBDKR-TEXT& in form.
    In ABAP program I am getting country of origin like this,
    CLEAR : V_T005,VBRP , MARC  .
      LOOP AT TVBDPR.
      SELECT SINGLE * FROM VBRP
        WHERE VBELN = VBDKR-VBELN AND POSNR = TVBDPR-POSNR .
    begin of addiiton for ppr 13661
      CLEAR MCH1.
    SELECT SINGLE HERKL FROM MCH1 INTO MCH1-HERKL WHERE MATNR = VBRP-MATNR
                                           AND CHARG = VBdpR-CHARG.
      IF MCH1-HERKL NE ' '.
        CLEAR MARC-HERKL.
        MARC-HERKL = MCH1-HERKL.
      ELSE.
        NAME = VBDKR-VBELN.
          PERFORM HEADER_TEXT1 USING 'VBBK' 'Z065' NAME SY-LANGU.
        IF SY-SUBRC EQ 0.
          READ TABLE TEXT_LINES INDEX 1 .
          IF SY-SUBRC EQ 0.
            VBDKR-TEXT = TEXT_LINES-TDLINE.
          ENDIF.
        ELSE.
          SELECT SINGLE * FROM MARC WHERE MATNR = VBRP-MATNR
                                    AND   WERKS = VBRP-WERKS.
        ENDIF.                                                  "ppr 13661
      ENDIF.                               "PPR 13661 ADD
      CLEAR *T005T.
    data:SEP(3) VALUE ' , '.
    DATA: BEGIN OF ITAB OCCURS 100,
           LANDX LIKE VBDKR-TEXT,
          END OF ITAB.
    clear ITAB.
      SELECT  LANDX FROM T005T INTO table itab WHERE SPRAS = SY-LANGU  AND
    LAND1 = MARC-HERKL.
    LOOP AT itab.
    VBDKR-TEXT = ITAB-LANDX.
    *MOVE VBDKR-TEXT TO ZLAND.
    AT NEW LANDX.
       concatenate ITAB-LANDX sep into VBDKR-TEXT.
    ENDAT.
    modify ITAB.
    VBDKR-TEXT = ITAB-LANDX.
    ENDLOOP.
    endloop.
    Thanks in advance.

    Hi
    It depends on the size of the main in the page, you can set the high of main in order to print max a certain number of rows (so items).
    In this way you don't need the abap control, but the system automatically will print the first page with 15 row and the next with 25

  • 3 levels certificate!! URGENT PLZ!!!!

    If I have 3 level certificates in my chain, how can i import it in keystore? Width .cer files?
    i get this certificate from 1 .pfx file.
    i want to make one standalone application plz help me!!!
    thnx

    Hi,
    I created multilevel cascaded look up in my environment using below blog, Using JQuery
    http://sharepoint-works.blogspot.com/2012/02/cascading-dropdown-or-filtered-values.html
    Thanks.... ________________ Baba (MCTS, MCPD)

  • APNS certificate Renewal issue - Urgent

    Hello,
    We had creared APNS certificate last year for our MDM. However we are on verge of renewing it. I know the renewal process. However last year when we were trying to set the MDM, we had created 2 certificates and right now I was not sure of which one was used. So when I go to http://identity.apple.com/pushcert, I see there are for the same date but I was not sure which one was used. So now is there a way to know which was used to ensure that I renew the correct certificate?
    Thanks a ton for helping.

    Try the LiveCycle forum. This is a very specific question. I am not sure that forum can answer the issue of a server, but it might be a good first step.

  • NAFTA Certificate of Origin (CBP Form 434)

    I've been looking around, and I would have thought there would be a seeded report that covered this as it seems like it would be a common report/request, but is there a NAFTA Cert report hiding somewhere within Order Management or Shipping?  I think the core could be built off a shipment report, but it would require building the template and such manually, so if there's something already in existence, it would save us a lot of time of course

    I believe, it is available. Pls check under Foreign trade --> tax reporting sections in SAP ERP.

  • Can't install a wildcard SSL certificate

    Running ML Server. I have a GoDaddy issued wildcard SSL certificate to *.mydomain.com. The certificate is currently installed on a different (non-Mac OS) server. I am able to cut and paste the main certificate, private key and other chain certificates from that server's interface and paste into a text file using TextWrangler. On the OS X server I deleted all of the old certificates in KeyChain (this server had an old wildcard version of the certificate before), deleted the old wildcard cert in Server.app and deleted the corresponding files in /etc/certificates
    I then created a new self-signed certificate for *.mydomain.com in Server.app, then selected it, went to Manage Certificates and tried up update the self-signed certifcate with the signed certificate using the Server.app interface. The interface enables you to drag and drop certifcate and chain files to add.
    However, this is where it gets strange...
    The first time I drag the certificate file to the interface, I get the green + symbol, let go and nothing happens. If I do it again, the interface lights up green again, but this time it adds it to the Non-identify certificate list. I am able to replicate this every time!
    Why does the interface show me the first time that I can drag the file, but does nothing, and then the second time adds it as a non-identity certificate? Same behavior happens if I start with the chain certificate as well.
    I can confirm that the four certificate files show up in /etc/certificates, but they appear to be generated by the self-signed certificate creation.
    Any insights appreciated! TAA

    In fact i had the same issue last week and i could only solve it by exporting the key with the certificate in a PCKS12 file. Fortunately this is supported by the windows certificate manager where the certificate was originally installed.
    You could take your key and certificate files and merge them into a PKCS12 file using openssl (go to terminal, it is installed on an OSX box) and fire the following command (and change the filenames ;-)):
    openssl pkcs12 -export -inkey openssl_key.pem -in openssl_crt.pem -out openssl_key_crt.p12 -name openssl_key_crt
    The openssl tool requests a passphrase for the created file that you will need to provide again when the key is imported into the keychain.
    Good luck with it

  • Certificate issued by AD Certificate Services Expired and won't renew, how to issue a new certificate?

    Hi,
    One of our internal web sites certificates expired so it can't be renewed
    From the "Failed Request" folder:
    "A required certificate is not within it's validity period when verified..."
    So I need to issue a new certificate but I can't seem to find out how to issue a new certificate via a certificate request file from within out Active Directory Certificate Services Management Console. 
    Anybody know how I would do this? Or am I looking in the wrong place?
    FYI, the certificate was originally issued from this internal CA so it was done before, by a previous administrator.
    Thanks!
    John H.

    Hi,
    Please refer to the below article to request or renew a certificate:
    http://windows.microsoft.com/en-hk/windows-vista/request-or-renew-a-certificate
    Event ID 4107 or Event ID 11 is logged in the Application log in Windows and in Windows Server
    http://support.microsoft.com/kb/2328240
    Hope this helps.
    Regards,
    Yan Li
    Regards, Yan Li

  • Nafta Country of origin

    A requirement of the North American Free Trade Agreement (Nafta) is to only include on the Nafta Certificate of Origin products that are manufactured/assembled in the United States, Canada, and/or Mexico (the rules are actually more complicated). Does Oracle have a solution to managing Nafta and country of origin requirements?

    Hi user567411,
    did you find an answer on this question? I am experiencing the same or similar situation, so any ideas are appreciated.
    Thanks,
    David.

  • Table for Quality certificates

    Hi QM Guys,
    Can anybody tell me what is the table name in which quality certificate is stored?
    I am searching particularly for certificate number.
    S Dey

    Quality Certificates QCPR QM quality certificates in procurement 
    Quality Certificates I000 Conditions for certificate profile 
    Quality Certificates KONDI Conditions: Data part for certificates 
    Quality Certificates QCVK Certificate profile header 
    Quality Certificates QCVM Certificate profile characteristic level 
    Quality Certificates QCVMT Certificate profile characteristic level: texts
    Quality Certificates QCVV Certificate Profile: List of Preliminary Products 
    Quality Certificates TQ61 Result value origin for certificates 
    Quality Certificates TQ61T Origin of result values for certificates: texts 
    Quality Certificates TQ62 Output strategy for skip characteristics 
    Quality Certificates TQ62T Output strategy for skip characteristics: texts 
    Quality Certificates TQ63 Origin of insp. specs for certificates (function modules) 
    Quality Certificates TQ63T Origin of inspection specifications for certificates: texts 
    Quality Certificates TQ64 Origin of characteristic short text for certificates 
    Quality Certificates TQ64T Origin of characteristic short text for certificates: texts 
    Quality Certificates TQ65 Certificates: Combinations allowed for origins, specs/values 
    Quality Certificates TQ67 Certificate-Relevant Output Types 

  • Country of origin - field in MCHA-HERKL is updated

    Hi Gurus,
    Pl let me know, how country of origin field MCHA-HERKL is updated. Is this related to classification / Batch management.
    Is there any user exits to update this field.
    Where this field is used in Business scenario?
    Best Regards

    Hello, Prakash
    The Country of origin field is updated with table MCHA. 
    (i.e, Country of origin of the material, it is a key of the country in which the material has been produced. You are legally required to specify the country of origin both for export and import) And
    It is related to Batch Management.
    And
    This information (i.e, country of origin) is used for foreign trade processing in different areas, such as in Foreign trade law and Customs law
    And you can observe this field in Material master (in two different views:  Sales: General /Plant Data (below Foreign trade: Export) & Purchasing data (in Foreign trade: Import) view 
    (the field is very much useful, in the case of Export sales)
    Export: You prove the origin of a material by presenting the certificate of origin. This is issued and controlled by the relevant authority of the issuing country. This authority confirms the origin of a material and the required information with the certificate of origin.                                                                               
    (the field very much useful, in the case of Import procurement)
    Import: The relevant authority of the importing country - usually the Ministry of Economic Affairs - stipulates which regulations regarding customs and foreign trade law have to be observed for the certificates of origin accompanying goods.
    Note: Purpose
    The above filed that is MCHA-HERKL is assigned to Field Groups and that tends to assignment of this field for the batch master data to a field group and thereby influence how the screen is set up.
    -> In the batch master data, every field is assigned to a field group.
    -> Field groups group together fields that have the same technical procedures. If you show or hide a field group using the field selection control, all fields belonging to this group are dealt with in the same way.
    Note: The above filed that is MCHA-HERKL is assigned to Field Groups and that tends to assignment of this field for the batch master data to a field group and thereby influence how the screen is set up.
    -> In the batch master data, every field is assigned to a field group.
    -> Field groups group together fields that have the same technical procedures. If you show or hide a field group using the field selection control, all fields belonging to this group are dealt with in the same way.
                                                                                    Hope this will clarifies you,
    Reward, if helps,
    Regards,
    Srin.K
    Edited by: sapsrin on Feb 11, 2008 7:06 AM

  • Heartbleed: Remove Certificate Authority from iOS device

    Hi,
    I am in the process of changing SSL certificates after the Heartbleed bug. As I wasn't able to find a reliable cross platform way to revoke my internal certificates (e.g. Chrome doesn't check CRLs), I'm planning to reissue new certificates based on a new internal certificate authority (CA) and to remove the old CA from all systems. This should render all previous certificates as untrusted.
    This is easy for Linux, Windows and OS X, but how can I do this for iOS 7 devices? I believe the CA certificate was originally deployed to the iOS devices through a configuration profile. However, when I go to Settings > General > Profiles, there is no such profile listed. The iOS Safari shows my internal HTTPs pages without certificate warnings, thus the device must somehow have remembered that CA as trustworthy.
    Here are my questions:
    How can I view and/or modify the trust settings of CAs on iOS 7 devices?
    Where did the configuration profile with the CA go (I know that's a little weird to ask here) and why is the CA still active?
    Why are internal Https pages still trusted even if there is no configuration profile for that?
    This absolutely puzzles me! I always thought that for a custom CA to be active on a iOS device a configuration profile was required to be present. But that does not seem to be the case.
    Thanks for your help!

    The workaround seems to be the following:
    Go to the iPhone Configuration Utility
    Install the profile (again)
    Go to your iPhone and deinstall the profile that was just installed in Settings > General > Profiles
    Certificates signed by that authority are not trusted anymore.
    I consider this to be a major security problem in iOS if there is a way that profiles enable CAs and then get lost sometime later (maybe through an iOS upgrade?).

Maybe you are looking for

  • From an older version

    Hi I opened a file (made with FCP1) in FCP2 and it asked if I wanted to update the file to e new version of the software, so I said yes. Its a file of a documentairy with subtitles (create outline text). Then I discovered that a number of subtitles h

  • OCI8 compile errors on SLES 10

    I'm stuck. New to Linux, so the error messages are greek. I've googled for days. Can anyone decipher the issue here? Thanks in advance for any help!! Used RPM to install instant client 10.2.0.4 (user didn't want v11). PHP 5.2.5 installed. Used yast t

  • Delete lines from iternal table

    Hi All! The problem what I'm having is I have to delete all the entries from the internal table which are lets say equal 'XXXXXX' regards sas data lt_itab type standard table of IS_PDATFU. data wa_itab type IS_PDATFU. data: lt_roles   type BAPIBUS100

  • Updating of firmware for drive Optiarc DVD Rw AD-5680H

    updating of firmware for drive Optiarc DVD Rw AD-5680H it seems compulsory since burning of DVD Verbatim disks are failed but successful with Verbatim DVD -RW Mac Mini ,Mountain Lion etc the drive of my PowerBook Pro works well Mashita DVD -R UJ -868

  • Movies fail to load and playback in web browsers

    I can't seem to load and playback what appear to be QT movies in Safari, Chrome , or Firefox. A black window sits there and all I get is a spinning blue circle in the middle of the screen for a long time. I have a 2.66 Ghz intel imac with 2 gigs of R