Cess and Edu cess values are not coming/credited in accounting doc created

Hi All,
We have done rejection of materials ( 122 mvt type) from UD , the materials are exciseable and for that we are creating rejection invoice in J1IS  transaction ,  the document is getting posted but when we check the accounting entries we could see only Basic Act CENVAT - DEBIT and Cenvat Clearing A/C - CREDIT , there is no entries of Cess and Edu cess in accounting document. I have checked the configuration both Specify Excise Accounts per Excise Transaction & Specify G/L Accounts per Excise Transaction , but everything seems to be correct for me , do let me know if there is any setting/configuration missing. We are using TAXINN procedure.
Thanks
Benny

Closed

Similar Messages

  • Assessable value and the Excise details are NOT coming in MIGO

    We are facing problem that assessable value and the Excise details are NOT getting populated automatically when doing MIGO in IN03 plant.We have a STO from a DC to plant. We created the outbound delivery and then captured the excise invoice using J1IJ.In migo we give the reference of this excise invoice in the excise invoice tab then the values calculated should flow in MIGO.This is not happening and user have to manually calculate the tax and put in the system.
    I have followed the following steps
    1. Create STO PO ME21N
    2. Create outbound delivery using VL10B
    3. Do the PGI using VL02N
    4. Capture the exice invoice using J1IJ in depot
    5. Do MIGO and give the reference of the excise invoice created

    Hi,
    In STO, your supplying plant is your Vendor for the receiving plant. Hence, you have to maintain the supplying plant as vendor also. Pl. check in table J1ID that the vendor data is maintained for the supplying plant.
    Regards,
    Prashant

  • Value are not coming (tcode cm50)

    hi expert ,
    in below code values are not comes into ITAB_TXTLINES (  WA_DATA ) . we use a standard program cm50 tcode . into
    customize program  memory but values is not coming into wa.
    values(arbpl ,werks,kapar,planr)
    this is my first time i use standard progarm
    so plz help
    REPORT  ZPP_CM50  LINE-SIZE 170..
    TYPE-POOLS : SLIS.
    DATA : INT_CAT TYPE SLIS_FIELDCAT_ALV,
           INT_FCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA : LS_LINE TYPE SLIS_LISTHEADER,
           VN_TOP  TYPE SLIS_T_LISTHEADER,
           IT_SORT TYPE  SLIS_T_SORTINFO_ALV,
           WA_SORT LIKE LINE OF IT_SORT.
    DATA : LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA: BEGIN OF SLIST_LISTLINE,
          LINE(1024)      TYPE   C,
          END OF SLIST_LISTLINE.
    DATA: ITAB_TXTLINES LIKE SLIST_LISTLINE OCCURS 0 WITH HEADER LINE.
    TABLES : CRHD , KAKO .
    DATA: BEGIN OF ITAB_DATA OCCURS 0,
          AA(20),LEVEL(20),ITEM(20),OBJ(20),OBJID(20),
          OBJDES(20),OVRFLW(20),QTY(20),UOM(20),ICT(20),
          END OF ITAB_DATA.
    DATA : WA_DATA LIKE ITAB_DATA.
    DATA: TEXT TYPE C LENGTH 10,
          RSPAR_TAB  TYPE TABLE OF RSPARAMS,
          RSPAR_LINE LIKE LINE OF RSPAR_TAB,
          RANGE_TAB  LIKE RANGE OF TEXT,
          RANGE_LINE LIKE LINE OF RANGE_TAB.
    *DATA: TEXT TYPE C LENGTH 10,
         RSPAR_TAB  TYPE TABLE OF RSPARAMS,
         RSPAR_LINE LIKE LINE OF RSPAR_TAB.
         RANGE_TAB  LIKE RANGE OF TEXT,
         RANGE_LINE LIKE LINE OF RANGE_TAB.
    DATA  : LIST_TAB TYPE TABLE OF ABAPLIST.
    SELECTION-SCREEN : BEGIN OF BLOCK ABC WITH FRAME TITLE TLT.
    SELECTION-SCREEN   SKIP 1.
    *SELECT-OPTIONS     ARBPL FOR CRHD-ARBPL.
    SELECT-OPTIONS     WERKS FOR CRHD-WERKS.
    SELECT-OPTIONS     KAPAR FOR KAKO-KAPAR.
    SELECT-OPTIONS     PLANR FOR KAKO-PLANR.
    SELECTION-SCREEN   SKIP 2.
    SELECTION-SCREEN : END OF BLOCK ABC.
    START-OF-SELECTION.
    *RSPAR_LINE-SELNAME = 'TRUST_ID'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = 'RPF1'."'VD06011013'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    RSPAR_LINE-SELNAME = 'YEAR'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = '2009'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    RSPAR_LINE-SELNAME = 'REPONAME'.
    RSPAR_LINE-KIND    = 'P'.
    RSPAR_LINE-LOW     = 'FORM3A'.
    APPEND RSPAR_LINE TO RSPAR_TAB.
    CLEAR RSPAR_LINE.
    SUBMIT RCCRY000 EXPORTING LIST TO MEMORY
    USING SELECTION-SCREEN '1000'
                    WITH CRHARBPL-LOW EQ ARBPL
                     WITH CRHWERKS-LOW EQ WERKS
                     WITH KAKKAPAR-LOW EQ KAPAR
                     WITH KAKPLANR-LOW EQ PLANR
                      AND  RETURN.
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          LISTOBJECT = LIST_TAB
        EXCEPTIONS
          NOT_FOUND  = 1
          OTHERS     = 2.
      CALL FUNCTION 'LIST_TO_ASCI'
        EXPORTING
          LIST_INDEX         = -1
          WITH_LINE_BREAK    = ' '
        TABLES
          LISTASCI           = ITAB_TXTLINES
          LISTOBJECT         = LIST_TAB
        EXCEPTIONS
          EMPTY_LIST         = 1
          LIST_INDEX_INVALID = 2
          OTHERS             = 3.
      LOOP AT ITAB_TXTLINES .                                   "from 5.
        CLEAR WA_DATA.
        SPLIT ITAB_TXTLINES AT '|' INTO: WA_DATA-AA
                                         WA_DATA-LEVEL
                                         WA_DATA-ITEM
                                         WA_DATA-OBJ
                                         WA_DATA-OBJID
                                         WA_DATA-OBJDES
                                         WA_DATA-OVRFLW
                                         WA_DATA-QTY
                                         WA_DATA-UOM
                                         WA_DATA-ICT.
       IF ITAB_TXTLINE-SY-INDEX .
    then
         DO 4 TIMES.
           REPLACE '.' IN WA_DATA-LEVEL WITH SPACE.
         ENDDO.
    *DELETE ITAB_DATA-INDEX=1." WHERE WA_DATA = ITAB_DATA.
         CONDENSE WA_DATA-LEVEL.
         IF NOT WA_DATA-LEVEL IS INITIAL and not WA_DATA-LEVEL cp 'Emp*'.
            APPEND WA_DATA TO ITAB_DATA.
         ENDIF.
       ENDIF.
      ENDLOOP.
    thanks.

    Hi,
    CM50 is generated from CM10 main program for parameter 'M'. It generates it on the runtime and exports values into memory. It's less likely you will be able to generate the whole set into a Z Program.
    I didn't find a function module to do so. But, with your consultants help you can create your own function module that gives results similar to CM50, it's merely calculation of capacity of workcenters for a period using the sales order booked against the work centers in that period. If you try a bit you can create it.
    Good luck.
    Also remember, before you post a code, use  ...

  • Values are not coming in report S_ALR_87013558

    Hi,
    I am running the budget report S_ALR_87013558. In that report except budget column, other values are coming(Actual,Comiitment, remordpla, assigned,available)....
    BUt I have assigned the budget..It is showing properly in S_ALR_87013557.
    In S_ALR_87013228 report, available it is showing in negative.
    How to rectify this issue?
    Regards
    Suresh

    Hi Virendra,
    Thanks for ur reply.
    I have ran CJEN for the project. But still it is showing the same in S_ALR_87013558 report.
    But the budget value is coming properly in S_ALR_87013557 report.
    How to goahead???
    Regards
    Suresh

  • Infoview pick list values and CR parameter values are not the same

    Hello All
    We have created created Crystal Reports based upon BW Query using Static Parameters as recomended by SAP. When we run the query in InfoView the Pick List is dynamically updated and returns the correct data for selection. When The Crystal Report opens and you wish to navigate through the report using the parameter selection the selection criteria has not been maintained by BW and does not match the Pick List.
    Can you please advise if there is any way to make this work?
    We ar using Crystal Reports 2008 version 12.3.1.684
    on BOBJ XI 3.1
    Any help would be appreciated,
    Phillip

    Hello Ingo
    What is strange that in InfoView the pick list is only dynamic the Parameters when the document is open (in InfoView) are not dynamic. An example would be Searching on Material. In Info view the pick list provides all the materials to select from. Once though the report is open the parameter list on the left hand side could be seen as blank as it refers to the static list that is not manually maintained within Crystal Reports or provide a list of details that has no reference to the dynamic selection as returned from BW as it is a static list that was loaded with Crystal Reports Designer on creation.
    What we are wanting to achieve is that Info View Pick List is Dynamic and the Parameter list that can be used to navigate within the document once opened is dynamically refreshed to be the same as the Pick List provided by BW and InfoView.
    Is this possible?
    With CR Designer if we use Do Not Show, Info View no longer provides this parameter on the left hand side.
    If we use Editable the list provided in InfoView is equal to the static list as maintained within CR Designer.
    We have not tested Read Only Yet so I am not sure if this could be the solution or not.
    Any ideas would be of great benefit
    Phillip
    Edited by: Phillip L on Nov 26, 2010 5:22 PM
    Edited by: Phillip L on Nov 26, 2010 5:23 PM

  • Namespace and prefix are not coming up in xml payload created from BSSV

    Hello
    I am facing this issue that when I am creating xml payload from BSSV, payload does not have namespace and no prefix. I googled on this and made code change in package-info. java file. Now, when I test BSSV locally from Jdeveloper xml gets created with namespace but when I run it from server, there's no namespace.
    Does this file package-info.java gets deployed on server? is it ok to make change to it? If not, then what is the other way to resolve this issue?
    Please suggest.
    Thanks
    TK

    Hi Peter,
    Thanks for the valuable input.
    We have already implemented note 378648 i.e these all parameters are already there under sidadm user in DB node.
    BR_OFS=1
    BR_OFS_RESOURCE=< database_resource_name>
    BR_OFS_CLUSTER=< cluster_name>
    BR_OFS_USER=<user_name>
    BR_OFS_DOMAIN=<domain>
    BR_OFS_PWD=<password>
    registry HKEY_LOCAL_MACHINE/Software/Oracle/HomeX ORA_<SID>_AUTOSTART is having value false.
    Please guide what could be the other possible reason?
    Regards
    Praveen

  • IT Depreciation area '15' values are not coming

    Hi,
    We have configured the AA component and the transactions are working fine includes Acquisitions, Depreciation etc. we have created the group assets to take the IT Gross block and enabled the '15' Depreciation area for them and created the derived depreciation area '16', difference between Book (01) -IT (15). But the thing is, for individual assets (other than Group assets) system is not showing the IT Depreciation where the IT Depreciation is displaying for the group assets only, so the derived depreciation area '16' is displaying wrong amounts. For ex-
    Main Asset - 1000         
    Book(01)    - 200           
    IT(15)         - 0 (is not displaying in the AW01N)
    Derived Dep (01-15=16) - 200
    Group Asset - 1000     
    Book(01)  - 0 (is not displaying in the AW01N)
    IT(15)  - 400
    Derived Dep (01-15=16) - 400
    How should I get the correct values for derived depreciation area at individual asset level?
    Please give some inputs to resolve the above
    Thanks & Regards
    Ramki

    Hi Srinu,
    Thanks for your valuable reply.
    1) You should have all of your group assets under one asset class only and that asset class would have ticked in OAAX. - YES
    2) Group asset number should have assigned to the concerned assets in depreciation area details section. - In AS01, for every individual assets, we have assigned the Group Asset number since the Group asset is required for area '15'
    Regards,
    Ramki

  • Column Name values are not coming

    Hi All
    Something Strange problem i have received. I amusing Obiee 10.1.3
    In RPD Level & DB level, a column called "CVCR" is there with length of 30 Char... It has values (say some descriptions).. "HELLO WORLD"
    but at webcat level its displaying only "HELLO W"..........what might be missing ?
    We r using DAC.. checked the design tab --> of this table..and saw the length of CVCR column is 30... no failures... can any one please suggest on this

    Hi There
    Seems my fault in checking the Repository tables..There are two tables W_ & WC_... i missed out checking the base one W_ table where it has less length and thats y getting the half string values from answers...

  • Revenues are not coming in the accounting tab page in cprojects

    Hi all,
    I am configuring the mulitilevel controlling on account assignment in cprojects with Project system. 
    I have given cost/revenue rate in customization along with revenue element.  The revenue element i categorised in the cost element category of "11".Then the cost element has assigned to controlling area and then to company code and then i replicated these values also.
    Apart from the above, is there any other setting i forgot? Please help me.
    Thanks

    Hi,
    (A) Which costing varianr you use
          PCO2 --> internal order
           PS06 --> Easy cost planning
    The costing variant controls how the costing is to be carried out. With it, you control:
    -->Whether the costing results are to be regarded as plan costs or actual costs
    -->Which prices are used to value the materials, internal activities and external activities
    -->How overhead surcharges are calculated
    (B)Define cost & revenue rates for the project role & enter the validity details. The start date and end of the validity dates should be within the organization and project dates ( IN C PROJECT )
    then go to make seeting in ERP
    C PROEJCT --> ACCOUNT INTEGRATION --> MAKE SETING IN ERP ( R/3 SYSTEM)
    (C) In CONTROLLING check the costing varaint
    (D)Settings for “Define Controlling Scenario
    (E)Assign Cost Elements and Activity Types
    Check this setting any thing is missing .
    and also check in Cproject Resoure tab page --> Costing  tab
    planned cost and Revenues
    CHECK AND REVERT BACK
    THANKS
    SUNIL JAWALKAR

  • Payscale group and levels values are not appearing in IT0008

    Hi Friends,
    I craeted Payscale group & Level in V_T510. Eventhough these values are not coming as F4 (drop down)values in IT0008.
    Pls adivice where I have missed the configuration.
    Thanks

    Hi..
    ESG/CAP and and its grouping in V-t510 have already been maintained. however still it is not coming as drop down values.
    Pls suggest to resolve.
    Thanks

  • Yeild and Activity Types are not coming on confirmation

    Dear Sir's
    Hope everyone fine by the grace of GOD.
    Friends i am facing a problem while doing Confirmation of production order in T.Code Co11n .Yeild(net production) is not picking from the Production order and also Activity types are not coming while doing confirmation.
    please help me out in this problem
    Best Regards,
    HAFIZ ABDUL HASEEB KHAN
    SC.PP Consultant

    Dear
    There are 3 possibilities to populate the activity  and yeild field:
    1) The system can propose them based on quantity, using the standard
    formula, directly after entry of the operation being confirmed please check it in your order first
    2) The system can propose them at the time of saving
    3) They can be manually entered ~ however using this option, formula
    will not recalculate using the settings from the Standard value key,
    set for the work centre.
    To set one of the above as default in customising, follow these steps:
    - Call transaction OPK0
    - Select the default Confirmation Profile SAP001 is being ticked marked. - Default Values , Qty and Service in OPK0
    - Select the Default tab and set the default for Quants and Services
    to 'Immediate Proposal' or 'Propose When Saving'
    These options allow you to choose whether the activity  and yeild proposal in
    C011N is given immediately after entry of the operation to be
    confirmed or upon saving the confirmation. However note that if
    you subsequently override these proposals by maually entering activity
    details, the formulae will not be recalculated and manually entered
    data will take presidence.
    Hope this is clear
    Regards
    JH

  • Sales order are not coming in FS10N ?

    Issue:  How is it possible to see number of sales order in the detail of item in the transaction FS10N?
    When i see the Transaction FS10N for 2011 , at item level Sale Documents are Present , but when i Use the Same FS10N for 2012 , Sale Document values are not present ?
    Kindly tell me the possiblities why the Sale Document Values are not Coming ? Its Urgent .
    Best Regards
    Amit Arora

    Did you install any major upgrades or other system changes recently?  I am not saying that that could cause this, but I really cannot think of anything that would suddenly stop populating Sales Document and Sales Document Item when you enter a new fiscal year.  Also, are you sure you are looking at the line items that originated in the SD module?

  • Field value is not coming in my customize ALV report

    Hi All,
    Good day.
    I have added two fields in a customized ALV report. But the customized report was not developed by me. Therefore I am unable to understand the whole report. As per my requirement I have added 2 fields more like* quantity* & unit field in that ALV. But not understanding why values are not coming in my report though values are there in DB. Plz help me regarding this. The portion of the code is given below.
    SORT t_ekbe by belnr.
      loop at t_ekbe INTO w_ekbe where vgabe = '1'.
        on CHANGE OF w_ekbe-belnr.
          SELECT  MBLNR
            BWART
            SMBLN
            ERFMG   " This is the new added field
            erfme     " This is the new added field
          INTO CORRESPONDING FIELDS OF TABLE t_mseg
          from mseg
          where mblnr = t_ekbe-belnr
          AND   bwart = '101'.
        endon.
      ENDLOOP.
    Thanks,
    Tripod.

    hi ,
    Do according to this
    SORT t_ekbe by belnr.
      if  t_ekbe[] is not initial  .
          SELECT  MBLNR
            BWART
            SMBLN
            ERFMG   " This is the new added field
            erfme     " This is the new added field
          INTO CORRESPONDING FIELDS OF TABLE t_mseg
        for all entries in t_ekbe
          from mseg
          where mblnr = t_ekbe-belnr
          AND   bwart = '101'.
      endif.
    after this
    loop at t_ekbe .
    loop at t_mseg  where mblnr  = t_ekbe-belnr .
      t_ekbe-ERFMG = t_mseg-ERFMG .
    t_ekbe-erfme =   t_mseg-erfme  .
    modify t_ekbe transporting ERFMG  erfme .
    clear t_mseg .
    endloop.
    clear t_ekbe .
    endloop.
    Regards
    Deepak .

  • Text messages are not coming in

    apple changed updated my new eamil address in itunes and now my messages are not coming in.help

    Hi nancy183,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Ensure that iMessage is turned on in Settings > Messages.
    To send and receive iMessages, your device must have a valid cellular or Wi-Fi data connection.
    iPhone: Troubleshooting Cellular data
    iOS: Troubleshooting Wi-Fi networks and connections
    iMessage registration validates your Apple ID for use with iMessage. If you are unable to activate iMessage, follow this article.
    If an iMessage cannot be sent, it will be resent using SMS or MMS, depending on the content. You can turn this behavior on or off in Settings > Messages > Send As SMS. Carrier messaging rates may apply.
    Verify that the Apple ID or phone number is listed in Settings > Messages > Send & Receive.
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Cheers,
    - Judy

  • ARE 1 does not update Educ cess & Higher edu cess

    Dear SD gurus.
    Today when I was posting Excise to ARE1 I found that Edu cess & higher EDu Cess is not getting updated. We are using ECC 6.0. Is there any kind of Note to be applied? or there is any setting required for this.
    Kindly help
    Regards
    Sreekanth

    Dear SD gurus.
    Today when I was posting Excise to ARE1 I found that Edu cess & higher EDu Cess is not getting updated. We are using ECC 6.0. Is there any kind of Note to be applied? or there is any setting required for this.
    Kindly help
    Regards
    Sreekanth

Maybe you are looking for

  • Post Moved Connecting-hub-3-infinity-to-smart-tv

    Post moved http://community.bt.com/t5/Other-BB-Queries/Connecting-hub-3-infinity-to-smart-tv/td-p/616324 If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then ple

  • Help! Can't export the movie I've edited :(

    There's no share menu button in my FCP X - also when i push the "export movie" button nothing happens, no pop up, nothing. When I try to publish it on You Tube, this message showed up "compressionkit error or domain error." What to do? I even ended u

  • My i phone5 s not opening even after putting passcode

    My ipone 5s not opening pass code lock Before this what happened was is suddenly voice help got activated automattically. It didnt go ;so i switched off the phone. When i switched on it told type pass code. I hv typed it. But it is not accepting Plz

  • Differnence between two codes of event handling

    hello i am learning event handling in swing but confused between two codes :- the first code of event handling is given in book "head first java " and working fine import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Swingde

  • Publisher File Question

    Why does a mail-merge in MS Publisher split into multiple files when printed as a pdf file?