Import against different scenarios

My user imports the material xyz some times by paying customs duty, cvd, adc etc. and some times against advance licence.  In that case how to proceed.  My idea is -
Scenario1
Import by paying customs duty - with all the import duty (seven)  conditions i will make the PO
Import ag. adv. licence             - I will select only CVD conditions and ADC conditins
Scenario2
I will create two seperate tax codes.  In one tax code i will assign all teh duty conditions.  I will use this tax code for importing by paying the all the duties.   Second tax code i will assign only the CVD conditions and ADC condition and i will use this tax code for importing against adv. licence.
Plz suggest which is the best option out of the above.

Hi,
Scenario 1 seems to be fine, all condition types to be mapped in a single pricing schema, end user to be trained accordingly in raising PO based on the payment method.
Regards
Merwyn

Similar Messages

  • Different scenario to run Former XML Publisher report

    Hi All.
    I have some different kind of scenario to run the XML Publisher report. Please look into the following scenario and requirements:
    In my current project we are implementing 22 languages like Chinese, Japanese, Spanish etc. Out of these 22 languages, 8 languages will be installed and 14 will be uninstalled. We are defining the language on 2 places: OU level and Address level. For those reports that need to be translated, we are using XML Publisher to achieve this, but we have different scenario to pass the language, in order to select the corresponding template.
    Scenario: As i mentioned we are defining the languages on address level, it is considered that the language defined at the address level will be customer's preferred language and he would like to see the output in that language only. there are 2 possible conditions while running the report: 1. User may select the language in which he want the report to be displayed in. 2. User may not select any language. The 1st scenario can be fulfilled by standard functionality. but in case of second scenario when user does not select any language then we need to display the report in language defined on address level for that customer. For Ex: if the Invoice report is running for 4 invoices and have 2 different customers and their preferred language is different, suppose for 1 customer it is Chinese and for another one it is Japanese. Then we need to display the output in customer's preferred language only i.e for Japanese customer it should be in Japanese and for Chinese customer it should be in Chinese i.e 2 different templates will be applicable.
    So as per this while submitting the concurrent request we need to check whether user has selected the language or not? And after making all the conditions check we will have to submit the xml publisher report using API. Do you have any suggestion how can we achieve this task?
    Please suggest.
    Thanks,
    AS

    Hi AS,
    How about using a conc prog parameter for User selected language, and XML element data at customer level, then call a subtemplate (or multiple embedded regions in the same template) in the required language based on if or case logic in the template.
    Regards,
    Gareth

  • I would like to import two different cf cards from two different cameras into the same project/folder and have them be in order of the times they were taken, is there a trick?

    I would like to import two different cf cards from two different cameras into the same project/folder and have them be in the order of the times they were taken, any ideas on how to do this?

    Just import them normally and sort the project by date. They will fall into place. If you tried this and it isn;t happening then make sure the data and times on the two cameras are identical and make sure you are sorting by date and time and nothing else.

  • Getting Error  in I.D  while Importing a Configuration Scenario

    Hi ,
         I'm traying to import a  Configuration scenario . after choosen the scenario from teh Imported Objects it was giving the Error message  java.lang.NullPointerException  .
    Any specific reason is there for this or can any body suggest me the solution.
    Regards
    Jain

    Hi Swarup & Sandeep,
       Previously i had imported a Configuration Scenario  that was imported successfully .recently we deployed  some  .sda file for JDBC drivers for connecting  legacy systems. and after that now I'm unable to Import any scenarios
    Please suggest me  .
    Regards
    Jain

  • Why are my HD videos all importing with different resolutions?

    Hi, I tried looking through like 10 pages of discussions on here and didn't see anybody else having this problem.
    I have a Canon Vixia HF200, I keep the settings on MXP (highest quality 1920 x 1080). Every time I log and transfer my videos they import at different resolutions (everything from the same day will be the same), some of them come in as 1440 x 1080, 720 x 480, etc, when they should all be 1920 x 1080.
    So, since some of them ended up being a completely different aspect ratio, I went into Motion>Distort and changed them all to 1920 x 1080, and I thought it was fine, but now I'm noticing that some of the videos look really out of focus (it seems like they get more out of focus every time I open it), so I'm thinking I probably shouldn't have stretched them....
    I checked the original videos in the browser and they all say 1920 x 1080 now, when I watch them in the viewer, they actually look like good HD videos, but in the canvas they're out of focus...
    I'm also working with multiple sequences, and when I copy videos from one sequence to another, it changes the resolution/aspect ratio/scale again, and becomes more blurry when I try to fix it.
    So basically, I have a huge mess. I'm working on editing a documentary that I'm making and now most of the video looks bad and I'm not sure how to change it back. I even tried starting a new project and importing the original videos, but they don't seem to have the original quality.
    Anybody know how I can either fix this or somehow replace the clips in the sequence with the originals in the browser to at least get some quality back?
    Also, a lot of the time when I render, I come back to the computer and it says something like "Error: Illegal (something) render failed" and completely loses the rendering that it spent a long time doing.
    I appreciate any help.
    Lisa

    Hi Lisa,
    Your 1920x1080 clips most likely import at their normal frame size, and then you placed them in the wrong sequence. Make sure your +File > Easy Setup+ is set to *Apple Intermediate Codec 1920x1080i60* before you create a new sequence.

  • Problem in importing two different classes with same name...

    I have to import two different classes in my program with the same name....
    import org.apache.lucene.document.Document;
    import org.w3c.dom.Document;
    //    I AM USING THE DOCUMENT FROM W3C PACKAGE HERE....
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder builder = factory.newDocumentBuilder();
                     InputSource is = new InputSource( new StringReader( tempString ) );
                     d = builder.parse( is );
                     NodeList images = d.getElementsByTagName("img");
                     int length = images.getLength();
                     for(int i = 0;i<length;i++)
                         Node image = images.item(i);
                         String tempAltText = image.getAttributes().getNamedItem("alt").getNodeValue();
                         altText = altText.concat(" ").concat(tempAltText);
                     }and the error i am getting is
    [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:20: org.apache.lucene.document.Document is already defined in a single-type import
        [javac] import org.w3c.dom.Document;
        [javac] ^
        [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:132: incompatible types
        [javac] found   : org.w3c.dom.Document
        [javac] required: org.apache.lucene.document.Document
        [javac] d = builder.parse( is );
        [javac] ^
        [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:133: cannot find symbol
        [javac] symbol  : method getElementsByTagName(java.lang.String)
        [javac] location: class org.apache.lucene.document.Document
        [javac] NodeList images = d.getElementsByTagName("img");
        [javac] ^
        [javac] Note: Some input files use unchecked or unsafe operations.
        [javac] Note: Recompile with -Xlint:unchecked for details.
        [javac] 3 errorsany idea ..how to resolve it
    Edited by: ping.sumit on Jul 16, 2008 3:39 PM
    Edited by: ping.sumit on Jul 16, 2008 3:40 PM

    now i changed the code to
    import org.apache.lucene.document.Document;
    import org.w3c.dom.Document;
    org.w3c.dom.Document d = null;
    try{
         System.out.println("in author");
                   URL url = new java.net.URL(urlString);
                   java.net.URLConnection conn = url.openConnection();
                   BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   while ((in.readLine()) != null)
                        //tempString = tempString.concat(in.readLine());
                        String temp = in.readLine();
                        tempString = tempString + " " + temp;
                   System.out.println("the string in author" + tempString);
                    in.close();
                    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder builder = factory.newDocumentBuilder();
                     InputSource is = new InputSource( new StringReader( tempString ) );
                     d = builder.parse( is );
                     NodeList images = d.getElementsByTagName("img");and their is only one error i am getting ...and that is
    [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:20: org.apache.lucene.document.Document is already defined in a single-type import
        [javac] import org.w3c.dom.Document;
        [javac] ^
        [javac] Note: Some input files use unchecked or unsafe operations.
        [javac] Note: Recompile with -Xlint:unchecked for details.
        [javac] 1 error

  • How can i set different number of iterations for different scenario profiles that we add to "AutoPilot" in load testing of OATS

    Hi,
    I have few set of load test scenarios, I would like to add each of these test scenarios to "AutoPilot" and run each different scenario profile at different number of iterations.
    As in Oracle Load Testing the "Set Up AutoPilot" tab I see  a section like this "Iterations played by each user: ", which says run these many iterations for every virtual user of all profile added under "Submitted Profile Scenario". So is there any thing like that to set different iterations for every scenario profile added in Autopilot.
    Thanks in advance

    It's not a built-in feature to override a page's styles on a tab-by-tab or site-by-site basis, but perhaps someone has created an add-on for this?
    It also is possible to create style rules for particular sites and to apply them using either a userContent.css file or the Stylish extension. The Greasemonkey extension allows you to use JavaScript on a site-by-site basis, which provides further opportunity for customization. But these would take time and lots of testing to develop and perfect (and perfection might not be possible)...
    Regarding size, does the zoom feature help solve that part? In case you aren't familiar with the keyboard and mouse shortcuts for quickly changing the zoom level on a page, this article might be useful: [[Font size and zoom - increase the size of web pages]].

  • When importing a CD, the CD Lookup Results dialogue box came up and I choose the wrong CD title.  Now iTunes is importing a different song list than the one on my CD.  How can I retrieve the CD Lookup Results to choose the correct title?

    When importing a CD, the "CD Lookup Results" dialogue box came up and I choose the wrong CD title.  Now iTunes is wanting to import a different song list than the one on my CD.  I've shut down my computer and opened iTunes from the hard drive Program Files and tried to import the CD again with the same problem.  How can I retrieve the "CD Looup Results" diaglogue box to choose the correct CD title to fit the song list on my original CD?

    You might also be able to do it without importing the songs again I think. Just highlight the tracks, right click them and choose "Get Track Names". This feature only works on CDs that were imported via iTunes.

  • Need pdf file links for different scenarios

    Hi folks,
    I am new to PI.Please can any body provide me pdf file links for different scenarios like   File to File, File to JDBC,JDBC to File,File to RFC, RFC to File, File to IDOC, IDOC to File, Http to RFC, Web services to RFC, File to Mail,ABAP to ABAP proxy and  Java Proxies to JDBC.
    Thanks in advance.
    SAP XI/PI Moderator ****************
    Very Simple. Search SDN.
    Thread Locked.
    SAP XI/PI Moderator ****************
    Edited by: Aashish Sinha on Feb 21, 2012 1:36 PM

    hi chandra, do you have the pdf file for fi-ca configuration

  • Oracle 10g Data Dump---Import to different users

    Hi everybody,
    I exported data in oracle 10g using expdp in user schema(abc1).
    Now i want to import that data in different user schema (abc2) and another user schema (abc3). Both schemas (abc2 and abc3) are in same tablespace.
    How to do this. Shall i need to export that data in SYSTEM mode to import for different users..?
    Thanks in advance
    Pal

    Shall i need to export that data in SYSTEM mode to import for different users..?No need. You can use REMAP_SCHEMA option on import, e.g.
    impdp system/<password> directory=<directory> dumpfile=<dumpfile> remap_schema=abc1:abc2
    See http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm#sthref339

  • Reg:Import Purchase Order Scenario

    Hi All,
        In the Import Purchase Order Scenario SVB load will come, which will display in MIRO after the PO creation
        i have an requirement that in the MIGO transaction i just want to make the SVB load to 0,because if the SVB load comes it just adds to the inventory(i.e material cost which is wrong), could you please say how can i prevent the SVB load addition to the inventory or how can i make the SVB load to 0.

    HI There,
    Define a seperate condition type for SVB in M/06 make the condition category as delivery cost. Mantain this seperate condition type for SVB load value in PO, in pricing procedure for the SVB condition type mantain an account key. Then in OBYC for this account key mantain the GL account in which you want to record the debit SVB amount.
    Now when you will do GR the SVB value will not get loaded in material.
    Regards,
    Sujoy

  • Documentation on Designing tips - for different scenarios

    Hi Gurus:
    Is there any good doc's for 'Designing tips - for different scenarios' like using Line Item Dimensions, aggregates, copying ODS to ODS, cube modelling, cache....
    The common scenarios we come across in real life..Of course I understand it varies from client to client
    Would really appreciate any help..
    Many thanks

    hi,
    there are docs in sdn forum may help, explore in business intelligence section, also service.sap.com/bi
    efficient infoprovider modeling
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/79f6d190-0201-0010-ec8b-810a969028ec
    aggregate
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3f66ba90-0201-0010-ac8d-b61d8fd9abe9
    cache
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/31b6b490-0201-0010-e4b6-a1523327025e
    hope this helps.

  • Pls tell me usefull URLs for MPLS VPN different scenario .....

    pls tell me usefull URLs for MPLS VPN different scenarios. presently i am doing research on this topic so pls tell me useful URLs so that i can get help.

    Here's a good start: http://www.cisco.com/go/mpls
    Hope that helps - pls rate the post if it does.
    Paresh

  • I imported a different catalog. It brought all images in but not in their folders and multiple times on many images. How do I undo?

    I imported a different catalog. It brought in all images but not in their folders and multiple times on many images. How do I undo?

    Restore your catalog from a backup of your catalog which was made before you did this.

  • Different scenarios for implementing screen exits

    Hi all,
    Is there different scenarios for implementing screen exits for different applications such as MM,SD....etc.

    Hi all,
    Is there different scenarios for implementing screen exits for different applications such as MM,SD....etc.

Maybe you are looking for

  • After cancellation thru J1IH of excise Invoice,

    after cancellation thru J1IH of excise Invoice, i got a message showing as "excise JV 7000153976 accounting number 8210002575 with part 2SI 7110001859 has been successfully created"** what next to be updated in further levels to complete all the proc

  • Custom File Info-panel stays empty

    Hi all! I want to create my first custom File Info panel and I have trouble with it. I use either a sample from the XMP-FileInfo-SDK-5.1 (e.g. "BasicControlSamplePanel") or even the "Generic" tool for simple XMP based panels. I use Photoshop CS4 (on

  • Need advice about making a application log over every task succsessfully done to a target

    Hi!!! I need an advice about how to make an application log over every task succsessfully done to a target with an unique ID. I have developed an application with several tasks on the menu which have to be done in a certain order to program and test

  • Oracle Developer Installtion problem

    I am trying to install Developer 2000 (Ver 6.0) on Windows NT Client. I am getting this error ... "Your system does not have an Oracle home set up on it. As a non-administrator user, you cannot set up an Oracle home. Please have your adminstrator set

  • Contribute 6.5 "Access denied. The file may not exist, or there could be a permission problem."

    Help. After being forced to upgrade to 6.5 since my version would not work after upgrading to Mavericks OS I get the "Access denied. The file may not exist, or there could be a permission problem." error on one of the sites I manage when trying to pu