Error in J1IIN for create Excise for Factory sale

Hi,
I need your help regarding Sales excise.
The scenario is I have created PO and done with MIGO so Part I and Part II register are getting hit BED is showing.
My problem is now I have to use the amout for sales cycle i.e after genrating accounting document for sales order I am using T Code J1IIN
when I enter the Billing Document and hit enter the BED amount is showing '0' (zero).
When I try to save the document it gives me warning message  "No defaults could be proposed for Excise utilization." and after that it gives me error message saying "GL account has not been assigned for RG23AECS in customization.".
I have maintain the entries in for OTHR -  RG23 ECS Account and also specified G/L Accounts per Excise Transaction is maintianed for G/L RG23AE.
Can some one guide me is there  any other config which has to be done.
Thanks in Advance
Regards,
Arvind
Points will be awarded.

Hi Arvind,
Relevant GL accounts we have to attach for ETT Type DLFC (for Sales) in ETT Table.
Assign GL Accounts for excise transactions node in IMG.
Path: Logistic General u2192 Tax on Goods Movement u2192 India u2192 Master data u2192 Account Determination u2192 Specify Excise & G/L Accounts per Excise Transaction.
Thanks and regards,
Padmaja N

Similar Messages

  • ERROR  IN J1IIN WHEN CREATE EXCISE INVOICE BALANCE IN TRANSACTION CURRENCY

    hi
    I am facing a problem  while creating the excise invoice in j1iin .The message comes occurs " balance in transaction currency" and after enter the another message come " system failure during locking Gl A/C REPL by 210036..
    This problem occurs after separate SECESS..
    PL give me alternative solution on the specific problem..
    Thanks and Regards
    Sachin Hadke
    SD Consultant
    MO.No. 9870734140

    hi
    hemalatha,,
    I have check every thing in cin customization but what the main reason behind that i cant find out. Actually i talk with me basis team he also reply me 1018071 is oldest note no. in 4.6c and currently we are using the 6.0 that its not possible to apply this note in the this series...
    Thanking u for give me valuable suggestion..
    Thanks & Regards
    Sachin Hadke
    SD Consultant
    Mo.No. 9870734140

  • Creating Excise Invoice from Sales Delivery using DI API.

    Hi Experts,
    I have been searching a lot for any Business Object for creating Excise Invoice base on Sales Delivery using DI API.. But have not yet found any one.
    I want to create Invoice for excisable items from Sales Delivery using DI API.,for Excisable items we cannot create standalone A/R Invoice . We need to create Excise Invoice also . But How to create Excise Invoice based on Sales Delivery using DI API. Is there any Business Object for that.
    Please suggest me.
    Thanks and Regards,
    Pooja Singh.

    Hi all,
    I have not received any reply for this thread. Does this mean that there is no provision for creating Excise Invoice from Sales Delivery ? Actually I was asked to create sales delivery and then Outgoing Excise Invoice and then Sales Invoice using DI API.
    But I don't find any Business Object for this in SDK ? Is it really not possible to create Outgoing Excise Invoice from Sales Delivery using DI API.? If possible then how?
    Please reply me if anyone has got any idea in this regard.
    Thanks and Regards,
    Pooja Singh.

  • Create  of (demo for)OVAI (transaction for create entries for each vendor)

    hi all,
    can anyone plz tell me how 2 create (demo for)OVAI (transaction for create entries for each vendor)
    thans & regards,
    srinivas reddy.

    hiii
    yes you can call transaction like that..take tcode in that parameter then you can use it in your program with statement like
    call transaction (variable)..in background process.
    regards
    twinkal

  • Best workflow for creating games for pc and starling games in AIR

    best workflow for creating games for pc and starling games in AIR.
    I need to develop for tablets with starling and AIR as well as for pc without starling ie: downloading from a server.
    In starling you have to
    1. instantiate starling
    2. use texture atlases for loading graphic assets - well its the recommended way
    3. use juggler
    etc...
    ie: with all these differences is it best to:
    1. create completely different projects
    2. just create different classes for the starling specific parts
    3. use a conditional compile constant
        eg: CONFIG::STARLING
                "then do this"
    or      CONFIG::CPU
              "then do this"
    I currently have the latter but it feels a little messy. I would prefer separate classes for each platform where the image loading is concerned.
    There must be so many game developers out there but in large gaming companies that know exactly what to do. Perhaps you can point me in the right direction with a book or something.
    CHEERS

    The other thing is that I can't see the games being very different as you suggest. I have downloaded Lee Brimelows tut on creating a starling game on Lynda.com and the code is great for creating games using states for menu, play, gameover etc... The only difference is that he uses texture atlas and there is a great difference in loading them etc... so technically you would only need to handle them in a different class as collision and the rest of game play should be the same in both. I think!!!
    Well, actually not exactly but near enough - maybe it might be easier to create separate projects and just cut and paste the new code introduced.

  • Error using WebServicesAssembler to create webservice for PL/SQL-Example

    Hello all,
    I tried to create a webservice based upon the pl/sql package emptax (Oracle Example: Boolean). The package just contains:
    PACKAGE EMPTAX as
    FUNCTION getTax(employeeid number, ismarried boolean) RETURN number ;
    END Emptax;
    JAVA_HOME, ORACLE_HOME and CLASSPATH are all set according to the manual. Now I start the WebServiceAssembler.jar with:
    java      -jar C:\oracle11\product\11.1.0\db_1\oc4j\webservices\lib\WebServicesAssembler.jar
         -config C:\Daten\tmp\webservice_boolean\Boolean\config\config.xml
    The config.xml looks like this:
    <web-service>
         <destination-path>./EmpTax.ear</destination-path>
         <temporary-directory>./tmp</temporary-directory>
         <context>/webservices</context>
         <stateless-stored-procedure-java-service>
              <uri>/EmpTax</uri>
              <jar-generation>
                   <schema>scott/tiger</schema>
                   <db-url>jdbc:oracle:thin:@10.10.10.10:1521:prod11</db-url>
                   <db-pkg-name>EmpTax</db-pkg-name>
                   <prefix>EmpTax</prefix>
              </jar-generation>
              <database-JNDI-name>jdbc/prod11</database-JNDI-name>
         </stateless-stored-procedure-java-service>
    </web-service>
    The EmpTax.jar is created, containing:
    - EmpTax.java
    - EmpTaxBase.java
    - EmpTaxBase.sqlj
    - EmpTaxUser.java
    - EmpTaxUser.sqlj
    At the end, there appears the error:
         java.lang.Win32Process.create
         java.lang.Runtime.execInternal
         java.lang.Runtime.exec
         oracle.j2ee.ws.tools.WsAssemblerConfig
         => NullPointerException: class EmpTax.EmpTaxUser not found
    The EmpTax.ear-File is not generated. I'm really stuck now. Does anybody has a hint?
    Thanks in advance
    Christoph

    Ignore the last one. I did the example here over lunch and it works fine.
    http://www.oracle.com/technology/sample_code/tech/java/jsp/samples/boolean/boolean.html
    Try the -debug and see what happens.
    When I run these tests, I always make sure that my PATH, and CLASSPATH are the absolute minimum. That is:
    SET PATH=C:\j2sdk1.4.2_10\bin
    SET CLASSPATH=.\
    SET OC4J_HOME=C:\OC4J_101202
    SET J2EE_HOME=%oracle_home%\j2ee\home
    It may just be that the classpath that you see when you run it in debug mode is missing some of the required jars for the jpub/sqlj stuff. Verify that they are all ok.
    Eric

  • Error when trying to create Excise Invoice

    Hi All,
    We have an issue when generating an Excise invoice for domestic transaction, it was fine some time back, parallely other modules are doing customization and the error developed recently.
    When we user J1IIN to create the Excise invoice we get the error  u201CBalance in transaction currencyu201D
    And then subsequently u201CSystem failure during locking GLaccount EGH by 205213u201D
    I have gone through the other mail threads Viz.,
    Balance in transaction currency
    error in Balance in transaction currency
    Balance in Transaction Currency
    We had applied the notes 978186 and 1018071 but of no use.
    We strangely find that if the transaction is in USD [ a) In case of Export under Rebate where in it has to hit the GL Account as domestic or  b) In case of  domestic sales if the transaction is in USD) there is no error.
    But when the transaction is in INR the error is recurring.
    Please help if you have found and solved the issue earlier.
    Regards
    Krishna

    This issue was posted many times and please search the forum before posting such repeated questions.  Check these threads
    [Tax code in Procedure taxinn is invalid    |Tax code in Procedure taxinn is invalid]
    [Re: tax code invalid in tax procedure taxinn|tax code invalid in tax procedure taxinn]
    [tax code in taxprocedure taxinn is invalid    |Re: tax code in taxprocedure taxinn is invalid]
    thanks
    G. Lakshmipathi

  • Cw 9.5 for creating plugins for adobe indesign cs2 in mac 10.4.8

    i am new to plugin creations.please anyone give me an basic idea of creating plugins for adobe indesign cs2.
    and how to debug the plugin, how to create it using code warrior 9.5, if any one know the site reference please inform me.
    thanks in advance
    subha

    i am new to plugin creations.please anyone give me an basic idea of creating plugins for adobe indesign cs2.
    and how to debug the plugin, how to create it using code warrior 9.5, if any one know the site reference please inform me.
    thanks in advance
    subha

  • Possible for using profiler for creating workload for Database Engine Tuning Advisor in case of SSRS reports

    I have SSRS reports with each 5 parameters. Parameter datasets includes statements like WHERE @CategoryKey
    I have 20 tables in SQL Server. We don't have OLAP cube.
    I have created SQL Server Profiler trace. I have clicked all reports during process.
    I have opened Database Engine Tuning Advisor.
     I have selected all tables to Tune.
     Tuning options are Indexes/No Partitioning/Keep all existing PDS
    Result is following:
     14% improvement
     10 recommendations (8 statistic for Calender table and 2 index for Calender)
    Tuning logs:
    S008 exec sp_executesql N'  LongSQLStatment including IN (@CategoryKey) Event does not reference any tables
    S007 Replaced event exec sp_executesql
    My question is that why I did not get any recommendations for other tables that Calender?
    Could it be because of SSRS parameters like @CategoryKey?
    Is it possible at all to use SQL Server profile for creating workload in case of SSRS reports with parameters?
    I have tables and reports like ProductSales, which I suppose should be get indexedbecause of WHERE statements.
     I have where statement like Month and Category and Color.

    Yes it is possible to capture a trace using profiler, but please provide the t-sql behind your dataset before I can answer your question about the DTA recommandations.
    Regards
    Rasmus Glibstrup
    http://blog.sqlguy.dk

  • T code for creating font for smartform

    Hi All,
      please give the transaction for creating <b>FONT</b> which is to be used in smartforms.
    Regards
    Anil Kumar K

    hi anil,
    goto transaction 'SMARTSTYLES' from the control bar .
    in here u an set the font family , font size ,font style like bold, italic etc.
    after setting the font use the same in smart forms .
    note: assign the same in the transport request of the smart form cause if the release status is gone wrong then the font will cause problems.like if u r familiar with scripts u will understand..
    vijay.

  • FM for creating longtexts for BP ?

    Hello forum,
    is there an fm for creating/changing longtexts for a business partner ?
    We have customized longtext fields for business partners and now we want to fill them
    with data, but I haven't found anything.
    Hope someone can help me !
    Best regards
    Gerd

    hi, in same to ERP,  in CRM  save the long text need to call function  'SAVE_TEXT'
    several parameter is important to call it, 
    LINES   the contents of your long text
    HEADER  it include the text ID  text language,  text name (normally the name is the document number, in your case it is the BP ID)
    text object(you must know it when you configure the long text)
    if you don't know very clear how to call it, you can set a breakpoint in it, change a long text in SAP GUI or WEB UI to trigger, and  search out how SAP standard call it.

  • Simplest approach for creating database for small collection of data - new project design phase

    Hello. I am at the design stage of a VB.NET project, which I hope will help me strengthen some skills I have learnt so far, and learn new ones. I have a couple of questions. Firstly regarding data types, is there a unified, standardised, all-convergent
    data type available I can use? Secondly I've read about numerous avenues to create a database, namely binary serialisation, access-based, excel-based, notepad-based - The project I intend to create, will only require storage of a "relatively" small
    collection of data, which may grow over time, but not significantly - so, taking this into account, which method is advisable for creating my database? (a beginner-friendly option is preferred). I have included a couple of images, with my questions, to give
    a rough idea of what I'm planning to do. Thanks for your advice and suggestions.

    Type would be the type of recording, as in LP (Long Play - standard album), EP (Extended Play) or Compilation. Most would be LP.
    Chris,
    I have a start on this and I want to pause here to post what I have and to discuss it.
    There’s a lot to talk about because you’re going from little knowledge of a class to a lot in a hurry. There is no real hurry
    in any of this; if you don’t understand then let’s stop and talk about it – until you fully have a handle on it, adding more would only fuel the confusion.
    I’ll add this at this juncture: There is no one single right way to do this. There are definitely some
    wrong
    (or maybe just simply ineffectual) ways, but certainly no single right way. A lot of what you’ll see in the following will reflect my preference; nothing more than that.
    Also though, I’m doing some of this to expose you to it. By that I mean that I may or may not have done it this way all along,
    but I decided that I want to open the doors, even though at first it’ll seem like you’re trying to get a drink of water from a fire hydrant. ;-)
    I have it set up with two namespaces: CMJR and Common. The latter one is for use for what I’m considering to be a ‘common’ need
    – things that you may use in several classes. In time, the routines for serialization will be there but no need to even talk about that now so it’s not there.
    The code so far (which I’ll show by the end of this discourse) is about 500 lines. For a class library, that’s puny! Most of
    what I have thus far is just a shell of what will be filled in later. I won’t at all be surprised that by time this is completed, that 500 lines can easily grow to 5000 lines or more.
    Like I said yesterday, the great thing about doing it this way is that it’s done
    your
    way; the drawback is just how much there is to do though, so if nothing else, this will perhaps influence your decision on how you want to handle things like this in the future.
    The namespaces/classes are laid out as:
    CMJR
    Music (a class)
    Film (a class)
    Games (a class)
    Common
    IDataSource (an interface)
    IGenre (an interface)
    Utilities (a class)
    This
    image shows the structure of things thus far. The reason why the enum “GenreType” isn’t expanded in that
    image is because it’s hugely long! In fact I fully expect that you’ll likely delete most of those. I got them from someone else’s class library (about a decade ago) so it was convenient to use.
    Let’s start from the inside and work toward the outside here:
    What is an
    enum?
    An enum (enumeration) is a type all its own. It’s a constant (of integral type) that you define. You can think of it as “an
    integer with a name associated with it” because in code, you’ll use it like a multiple-choice selection and [typically] you’ll use its name.
    Any time there’s a need for some something to be “this or that”, an enum very often is a useful type to use. In what we talked
    about yesterday regarding what the source of the data is (CD or PC), that’s what came to mind; select which of the two from an enum. I always include a “_String” property with these so that it can later be used in whatever will consume the class. Often it’s
    nothing more than use the .ToString method of the enum itself, but remember that then enum is actually an integer, not a string.
    In this library so far, I have three enums defined. Two of those are in each of two interfaces (discussed in a bit) and one
    is specifically related to only the music, so it’s in the class “Music”:
           Public Enum MusicFrom
               LP
               EP
               Compilation
           End Enum
    The “type” that I asked about earlier is encompassed in that enum and you can more or less see how it works without any further
    explanation.
    Do understand that enum is only ‘useful’ for programming. We could use strings for all that it matters, but the problem with
    doing that are many, including things like typos and capitalization. That’s not the case with an enum because you select one of the choices offered. In the one above, that would be either LP, EP, or Compilation. It can’t be anything else.
    So if strings have this issue with typo’s and the like, what about if we just assigned it a number (an integer). Sure that’s
    a better idea but are you really going to remember what 23 means? I doubt it, or not for long.
    BUT – if we had a number that has a string associated with it, yea that’s a good idea!
    Right! Now you know what an enum is. ;-)
    Notice from the
    class
    diagram though – it’s not shown; I’m not using it all and that’s because I question its worth here, at least
    for the current setup. I’ll explain what I mean:
    As it’s currently set up, the basic unit of the class “Music” is a song. Even though there’s a title for the album, the album
    – as a type – doesn’t exist. LP, EP, and Compilation refer to the album, not the song (in my opinion here) so I don’t see how it can be used.
    If, however, we create a new type called “Album”, then I can see how it could be used. In something I worked on a while back
    that’s exactly how I have it set up: An album is a “container for songs” and the album (a class in what I’m referring to from a few months back) has certain properties like a name and cover art, etc..
    I don’t have this set up that way, but give that some thought.
    What is an
    interface?
    Until quite recently I ‘knew of them’ but I never used them. There may or may not be merit in it here either but I wanted to
    expose you to them.
    From that link above:
    “An
    interface defines a set of members, such as properties and procedures, that classes and structures can implement. The interface defines only the signatures of the members and not their internal workings.”
    The interface is a way in which you create a ‘code contract’. You don’t define what the methods, properties and events do in
    the interface – you define that they have to be implemented if a class uses it.
    It’s up to the class to actually put it to use (i.e., the code that’s executed in the member of the interface).
    It’s a lot deeper than I’m discussing here – including a fair amount of ambiguity – so I won’t go any further than that for
    now.
    I have two interfaces set up and I have them in the “Common” namespace. They are “IDataSource” and “IGenre”.
    IDataSource has an enum named “SourceType” and two read-only properties (see it later in the code).
    The interface IGenre is likewise set up the same way and that’s where the long list of elements are in the enum named “GenreType”
    that I talked about earlier.
    I think it’s a good idea with Genre that it’s a “pick one of these” rather than simply a string and here’s why: If we later
    add in a method to choose songs from a collection of them, one of the options might be of a particular genre. That’s not an uncommon request I would think. By using an enum, we don’t have to worry about your users mistyping when they add the data:
    RockAndRoll
    Rock and Roll
    Rock
    …etc., and imagine some of the typos your users might come up with, so by using an enum it’s definitive rather than guessing.
    I said that an enum is ‘only for programming though’ so we’ll need to make it more usable later on. For example, I can also
    build in methods to hand you back a string array of the string equivalent of those enums and then later a method to turn that string back into the actual enum member. By doing this then the method(s) which will use this will filter the data from the collection
    to only include those with that particular genre.
    Other than something simple, I’ve learned that once you get involved in a really long enum – like the genre that I showed above
    – it’s better to create a class which, all on its own, has methods for handing you the string array and then handling the conversion back to an enum, so that’s a possibility too.
    That’s for use in your UI so the blinders will start to come off at that point. ;-)
    Continued in a subsequent post…
    Still lost in code, just at a little higher level.

  • Does CS5 have tools for creating websites for mobile devices?

    Does DW CS5 have any built in tools for creating web pages for mobile devices, iPads, iPhones, etc?
    Thanks.

    This will go back to your other post about the CSS tables, it depends on how much you know.  CSS3 is a style language and while support is growing in Dreamweaver and within browsers it is taking some time so the more you understand the code the better off you will be.  With regards to HTML5 animations, you will find that no tool out there can do this easily outside of some Apple developer tools and if you are serious about programming to work with the iPhone/iPad you will want to sign up (registration is free) and download their developer tools.  Adobe has mentioned making some strides and trying to use their existing tools (ie: Flash) to help transition to HTML5 animations from Flash and Illustrator has also gained some HTML5 vector tools to help out.
    To find out more about what Adobe is doing for HTML5 there was a post made on John Nack's blog not too long ago that you might want to read over (and follow the links).
    http://blogs.adobe.com/jnack/2010/11/so-what-has-adobe-actually-done-for-html5-lately.html
    Dreamweaver is not going to hand you everything though.  To get the most out of it you have to put something into it.  It is easily the most advanced tool in the PHP and ColdFusion realms (ASP/.NET goes to Visual Studio).  But in order to do more and customize things to your needs, understanding the code is a must in the world of web design.

  • Workflow for creating animations for web (Creative Suite CS6)

    Hi,
    I was wondering about what the best workflow is for creating animated videos for the web (say, YouTube) once the project reaches the "computer" stage (i.e. story, look etc. are all decided).
    Is it best to use Photoshop, Illustrator or Fireworks to draw everything if the software to animate these drawings is After Effects?
    The project I'm talking about is as of yet hypothetical but would be relatively short (90 seconds) and simple as I don't have much experience with this at all - hence my question.
    I've been looking around for a good set of basic tutorials but can't really work out how to go about this from start to finish using the Adobe Suite.
    Thanks!

    size is mort important than format. I prefer PSD files, but png, tiff, tga, even jpeg if you do not need transparency. Just make them big enough that at some point in your composition they are scaled to 100%. IOW, if you are drawing full frame animation cells for HD they do not need to be any bigger than 1920 X 1080 pixels. If you are going to scale them up or move in on some details then the area you are going to be pushing in on needs to be 1980 X 1920.

  • Workflow for creating files for online printing

    I recently asked a question about making a copy of a file in Aperture 2 but am still unsure as to the best method to use. The original is cropped for posting to the web, and the duplicate is to be cropped for standard print sizes. I didn't quite get a clear answer, so I wanted to ask what other users' workflow is for preparing images for printing at an online site (I use adorama, which has an aperture plugin). In my case, my "ideal" crop, posted to a mobile me gallery, is not a standard size, but I do want the print to be a standard size. How do you keep the preferred crop for viewing online but change to a standard crop for printing?
    Thanks,
    John

    size is mort important than format. I prefer PSD files, but png, tiff, tga, even jpeg if you do not need transparency. Just make them big enough that at some point in your composition they are scaled to 100%. IOW, if you are drawing full frame animation cells for HD they do not need to be any bigger than 1920 X 1080 pixels. If you are going to scale them up or move in on some details then the area you are going to be pushing in on needs to be 1980 X 1920.

Maybe you are looking for

  • Deleting a component do not remove its handler

    Removing a component from design view by selecting it and clicking on the trash icon removes the component from the design view but do not do so for its handler in the Java code view. As the handler (method buttonNameAction still references the compo

  • Print Preview Purchase Order with release strategy

    Hi gurus, With release stratregy you can not print a PO before release through ME9F. The system will give error message 'No corrosponding document found'. However, you can print PO through 'Print Preview' by clicking on Print icon in ME22N, we need t

  • Latest Adobe Acrobat X doesn't support PNG transparent graphic?

    So in the past using version 8.x I had no problem inserting graphics, including a signature that is a transparent PNG.  Now with the update to the latest studio 5.5 which came with Acrobat X 10.1.1 when trying to insert that graphic (which took a whi

  • Video Drivers under Boot Camp

    Can you install ATI drivers (like from Omega Drivers) under a Boot Camp installation of WinXP, or are you stuck with whatever Apple provided?

  • HR -LDB selection screen

    Can we debug the LDB PNP, if so how?  How to change the selection screen of LDB.