Personal Ledger Account

Hi All
Why do we pay excise duty through PLA when we can pay through CENVAT A/c?
-Saleel

Hi
PLA is the Government account maintained in your books of accounts. If the Cenvat availed / balance available is not sufficient for payment of Central excise duties to the Government, then the manufacturer needs to deposit the differential amount with Government through TR6 Challan. After getting the deposit slip / TR6 Challan back from the bank you can adjust the amount deposited for payment of excise duty to the Government. In SAP, the first activity, ie payment of amount to Government is carried out through a normal FI journal entry, debiting PLA on Hold (intermediary account till the deposit challan is received back from bank) and crediting Outgoing cheque issued account. After receipt of the challan from Bank, TR6 Challan details needs to be updated in SAP through transaction code J1IH-> TR6 challan updation which will Debit PLA account and credit PLA on Hold.
During utilisation through transaction code J2IUN, system will show the amount to be paid to the Government as well as the balances available in different Cenvat registers including PLA register. The manufacturer can select the appropriate registers for payment of Excise Duty and the entry will be debiting Excise Duty Payable account and crediting the respective Cenvat Registers.
Regards,
Lakshmanan Krishnan

Similar Messages

  • Can't send email from my personal pop3 account via my S5.  Receives mail fine.

    Hi,
    I have an S5 that I use to receive email from my personal email account (supplied by Primelink).  I can receive email fine, but can't send anything.  My SMTP server is mail.wgtest.com using port 465.  I am using K9 mail as my email app.
    I was told by Primelink that it's a Verizon Wireless issue.  Is there any way to respond to my emails from my phone?  I can send via my hotmail account, but then my hotmail sent message folder gets filled up and the reply to address always shows up as my hotmail address, not the wgtest.com address.
    How can I fix this problem?
    Thanks in advance!
    Spectre55

    Thanks for the reply.
    I have tried using three different email apps and keep getting the message that it can't connect to the server.  I'm using the smtp address of mail.wgtest.com.  As I said, I can receive fine, but Primelink told me that Verizon won't let me send from my primelink account through their system.  They said I may have to use an smtp relaying service, which I've never heard of.

  • General Ledger Accounting (New): Line Items of the Leading Ledger

    Hello Guys,
    We are planning to implement
    General Ledger Accounting (New): Line Items of the Leading Ledger
    0FI_GL_14
    We are in ECC6 sap_appl 6.00 and BI 7.0 SP 14, BI Content 7.3 level 4.0
    The new GL line item is available
    Financial Accounting: General Ledger Accounting (FI-GL)
    Available as of Release - SAP Enhancement Package 3 for SAP ERP 6.0
    Shipment - SAP NetWeaver 7.0 BI Content Add-On 3 Support Package 08
    Content Versions- 1.0; 703
    Just we have  to install SAP NetWeaver 7.0 BI Content Add-On 3 Support Package 08  and on ECC side SAP Enhancement package 3 for ERP 6.0 --. Financial accounting - SAP APPL 603.
    Is it correct. Can you please confirm.
    Thanks
    Senthil

    Hello Senthil,
    Yes, thats engough, since SAP is recommending the same for that datasource 0FI_GL_14. I think you are already in that version.
    See this SAP help document
    [DataSource Transactional Data: 0FI_GL_14|http://help.sap.com/saphelp_nw04s/helpdata/en/45/4f8e8bbf3f4f63a5dd197ef7d53fa2/content.htm]
    Thanks
    Chandran

  • General Ledger Accounting (New): Line Items 0FIGL_O14  Performace issue

    Dear Forum,
    We are facing a performance issue while loading the data to 0FIGL_O14 General Ledger Accounting (New): Line Items from  CUBE ZMMPRC01 -> ODSO 0FIGL_O14 DSO.
    Please see my requirement below for updating the data to 0FIGL_O14 DSO.
    This report is generated to display Dry Dock and Running Repair expenses for the particular Purchase orders with respective G/L's.
    1) The G/L DSO will provide us the 0DEBIT_LC and    0DEB_CRE_DC Foreign currency amount with signs (+/-) amounts and.
    2) ZMMPRC01 Cube   will provide us the 0ORDER_VALUE  (Purchse order value)and    0INVCD_AMNT Invoice  amount.
    While we are loading the data from  CUBE ZMMPRC01 -> ODSO 0FIGL_O14 DSO ,we have created nearly 19 InfoObject  level routine to derive the below mentioned fields data for MM Purchase Order related records.
    0CHRT_ACCTS    Chart of accounts
    0ITEM_NUM      Number of line item within accounting documen
    0AC_DOC_NO     Accounting document number
    0GL_ACCOUNT    G/L Account
    0COMP_CODE     Company code
    0COSTCENTER    Cost Center
    0CO_AREA       Controlling area
    0COSTELMNT     Cost Element
    0SEGMENT       Segment for Segmental Reporting
    0BUS_AREA      Business area
    0FUNC_AREA     Functional area
    0AC_DOC_NR     Document Number (General Ledger View)
    0AC_DOC_TYP    Document type
    0POST_KEY      Posting key
    0PSTNG_DATE    Posting date in the document
    0DOC_CURRCY    Document currency
    0LOC_CURTP2    Currency Type of Second Local Currency
    0CALQUART1     Quarter
    0CALYEAR       Calendar year
    For reference Please see the below logic to derive the data for PO related record.
    DATA:
          MONITOR_REC    TYPE rsmonitor.
    $$ begin of routine - insert your code only below this line        -
        ... "insert your code here
        types : begin of ty_FIGL,
                    CHRT_ACCTS type /BI0/OICHRT_ACCTS,
                    ITEM_NUM type /BI0/OIITEM_NUM,
                    AC_DOC_NO type /BI0/OIAC_DOC_NO,
                    GL_ACCOUNT type /BI0/OIGL_ACCOUNT,
                end of ty_FIGL.
        data :it_figl type STANDARD TABLE OF ty_figl,
              wa_figl type ty_figl.
        SELECT single CHRT_ACCTS
                        ITEM_NUM
                        AC_DOC_NO
                        GL_ACCOUNT from /BI0/AFIGL_O1400
                          into wa_figl
                          where DOC_NUM = SOURCE_FIELDS-DOC_NUM and
                                DOC_ITEM = SOURCE_FIELDS-DOC_ITEM and
                                /BIC/Z_PCODE = SOURCE_FIELDS-/BIC/Z_PCODE
                                and
                                /BIC/Z_VOY_NO = SOURCE_FIELDS-/BIC/Z_VOY_NO
                                and
                                FISCYEAR = SOURCE_FIELDS-FISCYEAR.
        if sy-subrc = 0.
          RESULT = wa_figl-AC_DOC_NO.
        ENDIF.
        clear wa_figl.
    Please note the same kind of logic is applied for all the above mentioned fields.
    Here is my concerns and issue.
    For the all above all routines i am referring BI0/AFIGL_O1400
    DSO and finally loading to the Same DSO(BI0/AFIGL_O1400
    The worried part is my DSO  0FIGL_O1400 is currecnly having nearly 60 Lacks records and MM cube is having nearly 55 requests which are required to update to the Above DSO for PO related PO value and Invoice amount.
    The big issue here is while uploading data from MM cube to DSO say for example if the request is having  25,000 records from this  nearly 500-600 records will be updated to DSO.
    But here it is taking huge time ( nearly 3 days for request ) for updating  these records , like this i have to pull 50 more requests from Cube to DSO as per the requirement.
    Please note as of now i haven't created any indexes on DSO to improve this loads.
    Please note am facing this issue in Production environment and need your help ASAP.
    Thanks & Regards,
    Srinivas Padugula

    Hi,
    If selecting data from 0FIGL_O14 is taking long time then you can create secondary indexes on DSO.
    0FIGL_O14 would be huge as data volume directly corresponds to data volume in BSEG.
    But for you requirement, I think what you can do is,
    1. create multiprovider on top of DSO and Cube and create Bex report to give you the fields requried from both the infoproviders, you can then use open hub or APD approach to keep the data in the staging table or direct update DSO and then load the data to the DSO
    2. Create secondary indexes on DSO so that fetching would be faster.
    3. Do the enhancment at R/3 level to fetch fields from MM during load of G/L
    Regards,
    Pravin Karkhanis.

  • New General ledger accounting in ECC 6.0 : Profit centre not in BSID table

    hi,
    I already create new transaction code and report from standard transaction code
    *s_alr_87012168 : Customer Aging Report (Due Date Analysis for Open Items)* and i
    also add Profit center fields into Dynamic selection.
    My problem is, if i run the report using customer account the output is displayed but
    if i run the report with customer & profit centre the output is not displayed. currently i'm using
    new General ledger accounting in ECC 6.0 and when i look into bsid table the value
    is empty for profit centre and the value for profit centre are stored in new table
    FAGLFLEXT.
    do i miss something?
    thanks.

    s_alr_87012168 : Customer Aging Report (Due Date Analysis for Open Items) this is a report generated.

  • I have a personal itunes account with an iPhone5s and an iPad 4 mini. I have unlokced my old iPhone 4 to use for work on a diffeent SIM and new number, can i have all devices associated to me single appleID and use both numbers ?

    I have a personal itunes account with an iPhone5s (perosnal mobile numer) and an iPad 4 mini (no SIMM). I have unlocked my old iPhone 4 to use for work on a different SIM and new number,
    Do you know if I can have all devices associated to my single apple ID and still use both numbers without messing up my profile. It has just changed my number over.

    I would not be able to give you idiot proof guide, since different games are different. Some of them have icloud integrated already, but those already taken care of. Some of them use specific logins and once you log - you get your info. General recommendation is to contact support sites of those games for enabling icloud instructions or enabling of transfer. There are other purely apple ways - like sync your phone in itunes and then sync apps with ipad, but those are only one time transfer. There is another way that is not typically recommended - restoring ipad from iphone backup. It may transfer your game content, but once again sync in the future has to be done by game.
    So if I were you, I would address that individually with every game provider.

  • What is the "best" way to configure iTunes on an iMac with personal user acounts so each user can access the media library but sync devices on their personal user account?

    I am trying to determine the best way to set up our imac so each user account can access the same media (songs, movies etc.) through itunes and also back up and manage their personal devices under their own personal user account.  There are 4 users on our iMac.  Me, my wife, and our 2 children.  We have built an extensive library of music/media together using the same iTunes store account.  I would like to establish a seperate apple id and iTunes store account for each of us going forward but have the ability for each of us to share our purchases.  What is the best way to configure our system and devices in order to allow shared access to media and at the same time allow for individual management of devices including contacts, apps, photos, etc. Please help, I would like to do this once!
    Thank you in advance! 

    OK, seeing as no-one replied (presumably because a lot of this information is on the forums in bits elsewhere) here's how I've got on so far.
    Applications - just went through them.  About the only one I needed was my media server app.  Just downloaded and re-installed, had a quick look back though my email to find the license key and it all went on fine.  Installation never seemed quite right on my old machine so solved that problem too. 
    Movies - New iMovies just copied across the clips and projects into their respective folders.  Seems to have worked but haven't checked it all that thoroughly.  Some duplicate footage here but I can trim this out at some point when I get a chance to go through here. 
    Documents - Just copied these across. 
    Photos - used an app called iPhoto Library Manager.  You can download for free but have to pay to use the part that consolidates your libraries.  Possibly if I was willing to spend a bit more time I could have got away without using this but given I didn't know the state of my different libraries and just how many duplicates I had this was too much of a convenience to ignore.  Also got my library into a state where I can now spend a few hours organising it a bit better with Faces / Events etc. 
    Not attempted Music or iPhone sync yet as been stuck trying to solve a problem with my power adapter. 

  • I have a .mac family account, a personal .mac account and separate iTunes id I use for my work iPhone and the associated apps.  How do I keep them separate in the iCloud change?

    I have a .mac family account, a personal .mac account and separate iTunes id I use for my work iPhone and the associated apps.  How do I keep them separate in the iCloud change?

    Welcome to the Apple community.
    Could you tell us a little more about what you want to do. Bear in mind that iTunes has nothing to do with your iCloud account.

  • If I have two email accounts, one personal hotmail account and one MS Exchange work account, how can I setup individual notifications for each account. Right now, any email from any account has the same notification. I want work to be different than perso

    If I have two email accounts, one personal hotmail account and one MS Exchange work account on my iPhone 4s, How can I setup individual notifications for each account? Fore example, if I get a work email, I want to hear a DING, DING....If I get a personal email, I want to hear a BEEP, BEEP. Right now, any email from any account has the same notification. I want work incoming email notification to be different than personal incoming notification. The only semi-workaround I've seen is just disable any notification for the Hotmail account, so only work emails would notify. But then I don't know when I get a personal email. Even the lowely Blackberry Torch 9800 has this feature..not iPhone 4s??
    Thanks

    Sorry you get only one notification sound for all email accounts.  you can send a suggestion to apple here http://www.apple.com/feedback/

  • HT1386 How do I unsync my phone from another person's account?

    How do I unsync my phone from another person's account? Another family member's phone was synced into the computer. As I tried to sync my phone it automatically synced into the account of the other phone. How do I sync my phone under my name so I can sync what is on my phone?

    Create another user profile on the computer so that you can log in as yourself and have your own copy of iTunes.

  • HT1206 I need a work iTunes account for my work system, but used my work email address as an associated email to my personal iTunes account. Now I can't use the work email to create the new iTunes account.  how do I remove the email from my personal accou

    Since I upgraded to Mavericks from Snow Leopard I need a work iTunes account for my work system, but used my work email address as an associated email to my personal iTunes account.
    Now I can't use the work email to create the new iTunes account.  how do I remove the email from my personal account?

    You can long into an account via this page and update the email addresses that you have on it : http://appleid.apple.com

  • Is there a way to not allow an employee to send texts on the business iPhone using their personal iCloud account?

    I work for a company that issues business iPhones to our sales representatives so that they can easily communicate with our customers in their territories and have access to many helpful resources.
    One of our sales reps recently went on to work for a different company (our competition). When we were getting his company phone ready for the next representative that would take over his territory, we discovered that he had been using his iCloud account to text customers for the past 2-3 months instead of the phones number. Unfortunately this means he still has access to all of our customers via his personal iCloud account, and they are probably still texting him for their product needs.
    We aren't sure if this was intentional or not, but is there anything we can do to keep things like this from happening in the future? A way to keep the sales rep from using their personal iCloud address to send and receive texts on the company phones?
    Thanks!

    Settings App > Messages > Start New Conversations From [set to your phone number].

  • Is there a way to sync songs that I purchased from another person's account, which have transferred to my library, onto my ipod, without their authorization?

    I used to share an accout with a family member on itunes, where I bought a lot of my songs and kept them on a shared library. We used home-share to transfer my songs onto my MacBook Pro and start my own library, but when we turned off Home-Share and de-authorized the other person's account on my computer, I was no longer able to sync the songs I puchased on her account onto my ipod. She would have to remain authorized on my mac for me to be able to sync those songs onto my ipod. Is there another way to do it, without her authorization? Thanks!

    Your iPod will only work with and sync content you have either purchased from the iTunes store or imported from elsewhere via iTunes.
    B-rock

  • Co object assignment to a non-leading ledger account while posting

    Hi,
    while I m trying to post a document for non-leading ledger account which is opened as a cost element. for leading ledger it has to be filled by cost objects but in non-leading ledger is it a must ? In my opinion in non-leading ledger postings doesnt need to have cost objects because in CO it contains only leading ledger. am I wrong ?

    Dear Gizem,
    Refer note
    804753  - FlexGL: Data transfer to CO from parallel ledger
    regards
    Waman

  • Email messages from my personal email account are being posted (copied) to SMS messages.  I have a new cell device, and this is happening on the new device also.  The copy/forward to SMS is NOT being initiated by my email provider.  How do I end this?

    Email messages from my personal email account are being posted (copied) to SMS messages.  I have a new cell device (swtched from Droid to iPhone) and this is happening on the new device also.  The copy/forward to SMS is NOT being initiated by my email provider, and not by Gmail.   How do I end ûVerizon's forwarding my personal email to SMS? 
    Thanks.

    Maybe I'm missing something but how can Verizon have control over your personal GMail account?  Sounds like you do have your email set up to forward to sms. 
    I have certain emails that are forwarded to me as SMS but that is an option that is enabled on the email side of things and is independent from Verizon.

Maybe you are looking for

  • IPhone 4S stuck in recovery mode while trying to upgrade to iOS 7.0.4

    I ran into the issues with my iPhone 4S while trying to upgrade it it iOS 7.0.4 OTA and I have tried everything I can to recover it but no luck. I have tried different USB ports, different PCs altogether with av tuned off, and finally a MAC Pro this

  • Reg ALV grid display

    Hi Expert, I am facing simple problem regarding alv display. While retrieving data, records are shown in internal table (It_final), but it doesn't goes to alv display in output. The code is: FORM merge_data .   SORT it_qasr BY probenr prueflos  vorgl

  • Problem with Invoice

    Hi Experts, Iam facing a problem with invoice document with batch wise . If I enter one batch it taking 2 mins to  add the the invoice document.i have removed Sp transaction notification and format searches even then it is taking 2 mins. So kindly gi

  • EPrint image in (HTML) e-mail

    I'm using the HP Deskjet 3053A All-In-One Printer to print on a remote site. The printing is done by sending an email from an allowed emailaddress to the address of the printer. The email has been made in HTML with markup like an (header)image, table

  • IDVD '09

    I am trying to make a slide show with text and pictures. But when the slides begin the background is black and blocks the text. How can I change the background or change the pdf slides so they cover the black back?????