How to Inventorize CVD in import process.

Dear all,
In my business requirement i have make CVD to be inventorized in import process ,but the thing is that i have to use the same import pricing procedure and i dont want to change the JCV1 (cvd condition type) where accural key is ticked.please revert .
Thanks&Regards,
Satya

Hi,
For the purpose of inventorise the imports CVD duty values in a
Depot/warehouse, then you have two options...
1. You can simple create a copy of the "J" CVD conditions and create
"Z" conditions, these will then inventorise during MIGO.
The drawback of using Z conditions is if you are creating Rg23D entry
in MIGO then the duty values will not default.
2. In order for you to use the J conditions & at the same time have the
system inventorise the duty values in MIGO, you will have to use te
exit -J_1I7_USEREXIT_IMPORT_INV_DUTY (Please see attached note 1021736).
This will help in using the J CVD conditions which in turn will default
the values in the respective fields during Rg23D entry creation in
MIGO and add it up to inventory.
Hope this would help. If you are not creating Rg23D entry in MIGO then
you can do it through J1IG, in which case you do not have use the
exit but simply the Z conditions.
Please note that-
If you are using those CVD condition types which are present in the
excise defaults table (J_1iexcdef) then the system will not inventorise
them.
You will either have to use Z conditions which are not present in that
table else use the exit - J_1I7_USEREXIT_IMPORT_INV_DUTY (refer note
1021736).
Hope this helps..
Regards,
Rajasree

Similar Messages

  • Upgrading Stellent 7.5 to OCS 10gR3 Import Process failing HELP NEEDED

    Hi,
    I am upgrading Stellent 7.5 to Oracle COntent Server 10gR3. Here is what I have done.
    1. Migrated all the configuration from Stellent to 10gR3
    2. Migrated the Folders from Stellent to 10gR3
    3. Migrated the content by creating an Archive and then importing the Archive in 10gR3.
    I am seeing lot of errors in the log file. Following are the errors I see in the log file.
    1.
    Could not send mail message from (null) with subject line: Content Release Notification. Could not get I/O for connection to: hpmail.rtp.ppdi.com java.net.ConnectException: Connection timed out
    2.
    Import error for archive 'ProductionContent' in collection 'prod_idc': Invalid Metadata for 'ID_000025'. Virtual folder does not exist.
    3.
    Import error for archive 'ProductionContent' in collection 'prod_idc': Content item 'ID_004118' was not successfully checked in. The primary file does not exist.
    4.
    Import error for archive 'ProductionContent' in collection 'prod_idc': Content item 'ID_004213' was not successfully checked in. IOException (System Error: /u01/app/oracle/prod/ucm/server/archives/productioncontent/09-dec-21_23.29.44_396/4/vault/dmc_unblinded_documents/4227 (No such file or directory)) java.io.FileNotFoundException: /u01/app/oracle/prod/ucm/server/archives/productioncontent/09-dec-21_23.29.44_396/4/vault/dmc_unblinded_documents/4227
    5.
    Import error for archive 'ProductionContent' in collection 'prod_idc': Content item 'ID_031414' with revision label '2' was not successfully checked in. The release date (11/4/08 9:12 AM) of the new revision is not later than the release date (11/4/08 9:12 AM) of the latest revision in the system.
    6.
    Import error for archive 'ProductionContent' in collection 'prod_idc': Invalid Metadata for 'ID_033551'. Item with name '07-0040_IC_Olive-View_UCLA_ERI_Cellulitis_2008-08-26.pdf' already exists in folder '/Contribution Folders/2007/07-0040/07-0040Site_Specific_Documents/07-0040Olive_View_UCLA_Medical_Center/07-0040Archive/07-0040Essential_Documents_ARC/07-0040Informed_Consent_ARC/'.
    7.
    Import error for archive 'ProductionContent' in collection 'prod_idc': Aborting. Too many errors.
    QUESTIONS:
    Is there a way to keep the import processing running even if the errors are coming. As it looks like when there are too many errors the import process stops in the middle.
    How do I find out the total number of folders and the documents. As I want to run the same query on Stellent 7.5 and find out total number of folders and the documents and then run the same query on 10gR3 and compare the results. Just want to fnd out how much content is imported.
    How do I run the import process over again as half of the content is imported and my import process failed in the middle when running the process over again what settings do I need to provide to make sure no duplicates get created etc.
    Any help is really appreciated.
    Thanks

    Hi
    There are a couple of ways to get around the issues that you are facing such that import process is not interrupted because of these. They are as follows :
    1. Use ArchiveReplicationException component . This will keep the import process running and make a log of the failed process which can be used for assessing / gauging the success of the import and what all needs to be redone.
    I would suggest this as the option for your case.
    2. Put the config variable for arciver exception to 9999 so that the archive process stops only after hitting the limit of 9999 errors.
    I would suggest to go for step 1 as that would be a much more foolproof and methodical way of knowing what all items have failed during import.
    Thanks
    Srinath

  • Import attachment thru Order Import Process

    Hi all,
    we are importing sales order thru concurrent process : ORDER IMPORT successfully.
    Now I want to import attachment attached along with order header & line level.
    How it possibe thru ORDER IMPORT process ?
    regards
    sanjay

    Insert records into following tables you should be able to import attahments
    p_status := 'S';
    p_message := 'Attachment created successfully';
    IF p_operation_code = 'INSERT' THEN
    BEGIN
         SELECT fnd_documents_short_text_s.NEXTVAL
         INTO v_media_id
         FROM dual;
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'Unable to get short text next value';
         RAISE e_stop_process;
    END;
    BEGIN
         SELECT fnd_documents_s.NEXTVAL
         INTO v_doc_id
         FROM dual;
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'Unable to get fnd documents next value';
         RAISE e_stop_process;
    END;
    BEGIN
         SELECT datatype_id
         INTO v_data_type_id
         FROM fnd_document_datatypes
         WHERE name = 'SHORT_TEXT';
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While finding datatype id '||SQLERRM;
         RAISE e_stop_process;
    END;
    BEGIN
         SELECT category_id
         INTO v_cat_id
         FROM fnd_document_categories_tl
         WHERE user_name = p_cat_name;
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While finding category id '||SQLERRM;
         RAISE e_stop_process;
    END;
    BEGIN
         INSERT INTO fnd_documents
         (document_id,
         creation_date,
         created_by,
         last_update_date,
         last_updated_by,
         datatype_id,
         category_id,
         security_type,
         publish_flag ,
         usage_type,
         start_date_active)
         VALUES
         (v_doc_id,
         p_creation_date,
         v_user_id,
         p_last_update_date,
         v_user_id,
         v_data_type_id,
         v_cat_id,
         4,
         'Y',
         'O',
         SYSDATE);
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While inserting data into fnd documents '||SQLERRM;
         RAISE e_stop_process;
    END;
    BEGIN
         INSERT INTO fnd_documents_tl
         (document_id,
         creation_date,
         created_by,
         last_update_date,
         last_updated_by,
         LANGUAGE,
         description,
         media_id,
         source_lang)
         VALUES
         (v_doc_id,
         p_creation_date,
         v_user_id,
         p_last_update_date,
         v_user_id,
         'US',
         p_description,
         v_media_id,
         'US');
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While inserting data into fnd documents_tl '||SQLERRM;
         RAISE e_stop_process;
    END;
    BEGIN
         SELECT fnd_attached_documents_s.NEXTVAL
         INTO v_att_doc_id
         FROM dual;
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'Unable to get fnd attached documents next value';
         RAISE e_stop_process;
    END;
    BEGIN
         INSERT INTO fnd_attached_documents
         (attached_document_id,
         document_id,
              creation_date,
              created_by,
              last_update_date,
              last_updated_by,
              seq_num,
              entity_name,
              pk1_value,
              automatically_added_flag)
         VALUES
         (v_att_doc_id,
         v_doc_id,
         p_creation_date,
         v_user_id,
         p_last_update_date,
         v_user_id,
         p_seq_num,
         p_entity_name,
         p_pk_value,
         'N');
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While inserting data into fnd attached documents '||SQLERRM;
         RAISE e_stop_process;
    END;
    -- Fnd_File.put_line(Fnd_File.LOG,'The Values '||v_media_id||','||p_note);
    BEGIN
         INSERT INTO fnd_documents_short_text
              VALUES (v_media_id,
                   p_note,
                   NULL);
    EXCEPTION
    WHEN OTHERS THEN
         p_message := 'While inserting data into fnd_documents_short_text '||SQLERRM;
         RAISE e_stop_process;
    END;
    ELSIF p_operation_code = 'UPDATE' THEN
    BEGIN
    UPDATE fnd_documents_short_text
    SET short_text = p_note
    WHERE media_id IN (SELECT media_id
                   FROM fnd_attached_documents fad,
                        fnd_documents fd,
                        fnd_documents_tl fdt,
                        fnd_document_categories_tl fdct
                   WHERE fad.document_id = fd.document_id
              AND fd.document_id = fdt.document_id
              AND fd.category_id = fdct.category_id
                   AND fad.entity_name = p_entity_name
                   AND fad.pk1_value = p_pk_value
                   AND fdct.user_name = p_cat_name);
    EXCEPTION
    WHEN OTHERS THEN
         p_status := 'E';
         p_message := 'SQL Error while updating note :'||SQLERRM;
    END;
    END IF;

  • Tune Up IMPORT Process

    Are there ways to tune up the IMPORT process? We have 10.2.0.1 database in AIX 6.1 (64bit). I have an export dump file that is 2.5TB size and it has LOBs. How can we make the import process faster. We cannot use datapump in our case.. :(

    Following options might be helpful.
    COMMIT = N
    INDEXES = N
    BUFFER (set to a large value)
    Check below link for more details.
    http://www.remote-dba.net/teas_rem_util13.htm

  • In import process,how excise base value is calculated in MIGO

    Hi expert's,
    In import process,how excise base value is calculated in MIGO,with what referance values get add to base value.
    waiting for your valuable response,
    Regards
    V.raj

    hi,
    we Tried with your following reply ! but still not finding exact value in base value .
    (MATERIAL PRICE* QTY IN MIGO * EXCHANGE RATE)
    thanks & regards
    V.Raj

  • How to map import process for items

    Dear All,
    can anyone guide me how to map import process for items for our customer
    what i understand is this process in B one
    Raise PO
    GRPO
    Landed Cost
    AP Invoice
    I want to know whether this is correct. Also in this process their are clearing agents who perform the formalities at customs office and then raise bill to client for the same

    Hi,
    The process looks correct.  For cost related to clearing agents who perform the formalities at customs office, use landed cost.
    Thanks,
    Gordon

  • How To treat CVD,BCD for import capital goods

    sir
    i am geting result properly in import cosumables processing ,it is crediting cenvat clraring acc,but in import processing in miro it is showing all charges geting credit to material,carefully understsnd my senario, because mater is relaed to cvd condition in taxinn

    Hi Ravi,
    I have discussed with my user. The business requirement is they want the plant wise Balancesheet and Financial statement. If i do the stock transfer from one plant to another it is very difficult for me to get the balance sheet. What we are planning is while transfering one plant to another the FG invertory credit agaist Intra transfer account (One P&L account) then in the receiving end the intra transfer a/c debit to FG inventory so that i can get the trial balance.
    I will get back to you once i get the solution for this. Let me know if you have some idea on this.
    Thank you.
    Deva.

  • How does LR Import process sort images on memory card

    It seems as if there is no rhyme of reason as to how the import process presents the previews to select for import. I did s shoot last night and the images are spread out over different areas between other photos that I took in the past. Shouldn't they just be sorted by image name so they are presented together?

    Check which sort type you have at the bottom of the Import Window

  • How to improve the performance of policy import process

    Hello OES 10g Experts,
    I have an application specific policy XML of OES 10g. While importing it to OES using policyIX.sh command, the process is taking around 3.5 hrs in DEV servers. The policy XML size is around 2 MB. However there are other applications which are being imported in less than 30 mins.
    Perhaps it is due to the size of the XML, the policy import process is taking huge time which may not be viable in production systems. But I would like to know if there is a way to improve the performance of import process. The command syntax I am using is
    ./policyIX.sh -import -disableTransaction config.xml policy.xml
    I have tried removing the parameter -disableTransaction but there is no performance improvement.
    Appreciate any inputs.
    Thanks
    Mahendra.

    Go through following link:-
    http://docs.oracle.com/cd/E21764_01/doc.1111/e14316/org_mangmnt.htm#OMUSG2741

  • Duties in Import Process

    Dear Guru's,
    I had following doubts abt import duties so please help me.
    1) How we take care of CVD and other duties in case of import process, how we can define the GL account for the duties in case of import
    2) How we can take care of additional CVD
    2) at our place for same material sometimes CVD get inventorised sometimes modvatable though it is always modvatable....how can we control this.
    we had defined in Excise defaults all the CVD conditions for TAXINN procedure still above problem is there due to which moving average price is shooting up very rapidly.
    regards,
    Umesh

    Hi Umesh
    <b>Is inventorising the value depend on maintaining the condition in Excise defauls or some other place also we have to define?</b>
    To inventorise a condition if its domestic purchase then depends upon the condition type for this you check the accrual key against that condition type then in t code OBCN.There basically accrual key are defined if you double click on that if non dedcutible check box is selected only then value against that condition type is inventorised.
    In Import procedure whatever you assign condition type against excise defaults only against that you can get credit availed if its not then that will go to inventory.
    <b>Accrual Key /Account Key</b>
    Account key is used only in case of purchase account management is active that is valid only in countries like Spain Balgium etc in india also used at some places. Main thing accrual key against this key whatever you assign GL code in OBYC amount will go in this GL.
    <b>Additional Duty</b>
    Yup its modvatable  To make this modvatable you need to maintain condition type in Excise Default.
    I hope this would be a great help for you
    Regards
    Vivek
    -- Reward for the Effort  !!

  • Import process customization

    Hi
    Sap Experts,
    Right now i am working in a project where mostly material is import.Can any body tell me,How import process is differnt from local purchase.what access sequence,condition types,control data.and taxes are define in customization menu.How full customization is done to procure imported material.
    please explain my detail.
    Thanks In Advance
    sumit birla

    hi
    in ur pricing u have to create following
    JCDB IN: Basic Custom Duty
    JCV1 IN : CVD
    JECV IN : Ed Cess on CVD
    J1CV IN : H&SECess on CVD
    JEDB IN : Ed Cess on BCD
    JSDB IN : H&SECess on BCD
    JADC Additional Duty of Custom
    JCV1, JECV, J1CV and JADC will go to Excise MODVAT Accounts and JCDB, JEDB and JSDB will get loaded on inventory.
    In M/06, for all above conditions, keep following controls;
    Cond. class A (Discount or surcharge) Plus/minus A (Positive)
    Calculat.type A (Percentage)
    Cond.category B (Delivery costs)
    Activate "Currency Conversion" and "Accrual"
    Now for setoff
    maintain the following conditions in excise default settings.
    JCV1, JECV, JADC
    path: spro>logistic general >tax on goods movements>India >basic settings>determination of excise duty >maintain excise defaults >
    along with ur tax procedure maintain these conditions in the specified fields
    JCV1 in CVD condition field.
    JECV in ECS condition field.
    JADC in ACD condition field.
    in case of SECess on CVD, no need to maintain.
    it is hardcode in the standard
    Vendor in GR 2 (Entry always possible)
    Import scenario
    1.Create material master of import goods.
    2. Create vendor master record of import vendor and Customs clearing vendor.
    3. Maintain CIN settings.
    4. Maintain J1id.
    5. Maintain Pricing procedure SAP standard JIMPOR.., maintain required conditions..JCDB, JCV1...
    6.Assign the schema to respective import vendor in purchasing view of VMR.
    7. Create import PO, check in conditions of JCDB, JCV1 the customs clearing vendor(Indian vendor) and percentage is assigned. This can be done by In condition tab select condtion then click on display, then enter.
    Save the PO.
    8. MIRO --Capture Bill Of Entry.(Commercial Invoice No.,).Customs clearing first .Here CVD will b converted to BED.
    9. Capture Excises invoice--D.
    10.MIGO.
    12.Post Excise Invoice.
    13.MIRO...Payment to vendor(import vendor)
    regards
    kunal

  • Imports Process

    Hi All,
    I have got scenario for Imports process.
    A company inChennai (say for example) imports Finished Goods from Germany (Parent Company).
    When the material arrives in Chennai sea port, CVD and Customs Duty has to be paid to Govt. and goods will be released and shipped to Main Warehouse Chennai.
    The requirement of the client is, he may pay the customs at once and clear the goods from customs or if he does not require all the goods at the point of receipt at Chennai sea port, they may pay customs for part quantity and release the goods (proportionally) and leave the goods in Bonded Warehouse by paying some amount
    of rent to the bonded warehouse until the next requirement for the goods at their location arises.
    Now the question is how to map the same in SAP B-1. How to take care duty & Additional cost in material valuation in case of Partial Clearance of goods from Bonded WH.
    The solution should answer the following points
    1. Tracking of goods lying in the Bonded Warehouse.
    2. Payment of customs & CVD for the quantity to be released and material valuation should happen only for the quantity released.
        i.e CVD & Customs duty payable should take care for the quantity being released from Bonded warehouse.
    3. Booking of A/P Invoice in system on the basis of GRPO & payments to Supplier .
    4. The customs duty has to be paid on the CIF value in Indian currency but the exchange rate will be applicable as on the date of release of goods from the bonded warehouse.
    4       5.  Material in Bonded warehouse can be exported to other countries without clearance of duties - In Landed Cost Document only clearing & Handling charges is to be taken.
    6. Effects on RG 23 D Registers.
    Regards
    Parul

    Dear as per scenario,
    Please Go through following flow.
    Create Custom as a vendor.
    Create two warehouse.
    1) Bonded warehouse. (net)
    2) drop ship warehouse
    Step 1 
    when you received you commercial invoice Book  GRPo and select the Bonded warehouse & Post A/p
    you stock and accounting is effected.
    Step 2
    when you received the bill of entry for partial quantity from custom.
    Post GRPO select the Drop ship warehouse and select tax only.
    Now Post incoming invoice.(Here your duty is debit to you accounts )
    post the AP invoice against custom.  (here payment book to custom )
    step 3
    inventory transfer.
    actual receipts quantity you transfer from bonded to you actual warehouse.     
    so you can also find the stock from your bonded warehouse.
    Now when you withdraw the material from Bonded warehouse follow step 2 and step 3.
    waiting for you reply.

  • Error while importing process flow mdls in OWB 11.2.0.3

    Hi All,
    I am facing below error while importing process flow mdls in OWB 11.2.0.3:
      ERROR
      Informational: MDL1328: PROJECT MTH not imported since the object in MDL file
      is the same as the object in the workspace.
      Error at line 11: MDL1261: Error importing PROCESS_FLOW_MODULE MTH.MTH_PF.
      Detailed Error Message:
      MDL1409: Cannot import PROCESS_FLOW_MODULE with physical name <MTH_PF>
      because a PROCESS_FLOW_MODULE <MTH_PF> with the same physical name already
      exists.
    Can someone please let me know on how this can be resolved.
    Thanks in Advance.

    the first information warning message is ok, the 2nd ones should be gone if you use the replace mode
    OMBIMPORT FROM MDL_FILE 'pfm_mod.mdl' USE REPLACE_MODE  MATCH_BY NAMES
    let me know if that fix it

  • CS4 Premiere: Can't open due to inaccessible to Importer Process Server

    CS4 Premiere: Can't open due to inaccessible to Importer Process Server:
    Dear Guru:
    After subject:
    I uninstalled it;
    Re-installed it;
    Reopen it,
    No luck, same error message ...
    A friend's wedding reflash is set on 12/22, I have yet to open my Premiere?!!! Heeelp... Please...
    Appreciate !
    Forest

    Hi, Jeff:
    My system is XP; before the premiere worked well.
    More detail story: Premiere could not open 3 days ago, no fix, some one sent me a crack software, I used it, no luck. Another nice guy told that is for non-legal Premiere, surely it won't work.
    I tried to remove Premirere; difficult; some one suggested me to use Adobe CS4 cleaner from Adobe. Then it was removed. I re-install Premiere; During the process, abnomal thing I remember was: I can't input product S/N, so I had to use 30-day trial.
    During the installation, it was stopped by Windows Installer issue, I restarted Windows Installer, then the process continued...
    I have two log files, don't know how to attach into this message. But, can't find any problem therein.
    Heverever, when I tried to open newly installed Premiere, error message says: ---can't open, reason is exactly same with very beginning: Can't communicate with Inporter Process Server....
    Appreciate!
    Forest
    <Removed by Moderator>

  • CIN Import process problem

    Hello,
    We have CIN import process in which client does not wants to use CVD conditions ( JCV1, JECV, J1CV).
    We wants to use only JADC and JCDB conditions.
    Process :
    1. Create PO with conditions JADC and JCDB and some more Z conditions.
    2. Bill of entry for customs.
    3. Capture excise invoice wrf PO.
    4.GR
    5.POst excise invoice.
    Problem :
    When I capture excise invoice with ref to PO , system gives POP UP for bill of entry ref no like in standard import process, if I give BOE and year ,OK FLAG in J1IEX does not set automatically (I can't set manually because this is non editable), if I don't give BOE no system sets OK FLAG.
    Please note if I create PO with all above mentioned condition and include  CVD conditions process works fine.
    Please guide.

    Hi Manjit Chandel,
    Check configuration in the following path:
    SPRO ---> IMG ---> Logistic General --> Tax on goods Movement ---> India --> Basic Settings --> Determination of Excise duty -->Maintain excise default
    Check under CVD condition type whether you have maintained JCV1 or not, If you maintain JCV1 System consider this condition type  for CVD on imports. Please sea the following screen shot.
    Check it and get back.
    Regards,
    B V

Maybe you are looking for