LSMW through t.code F-02

HI
I am trying to Upload the data through LSMW using the T.code (F-02).Which method will be succefully upload the data. In the LSMW two different process two upload the data. (1) Driect batch input /standard  batch input or (2) batch input recording or BDC through.Can you please help me on this issue.Thanks
40 26600855 Bank GL 155000
15 1443507 Customre GL 155000
40 43000064 EXP GL 2000
31 1443507 Vendor GL 2000 2000
How can right process to upload the data thorugn T.code - F-02.
Moderator Message: Search for available information before posting.
Edited by: kishan P on Dec 13, 2010 1:17 PM

Hi, run sm35 Processing mode :Display errors only

Similar Messages

  • Error while reversing the asset accounting document through t code AB08

    Hello All,
    i have one query where the user has scrapped the assets through T code ABAVN in the month Dec 2009 with doc date of Nov 30th 2009. Now he realised that the posting was wrong and he wants to reverse it in 1st of Jan 2010 with the t code AB08. when we click on the reverse button in t code AB08, system is by defaultly taking the fiscal year, posting date and period, only we need to give the reason code. here user is trying to give the reversal date manually and making the posting. Now system is giving an error "Reversal in different fiscal year is not possible" with the message AA487.
    we are using SAP ECC 5.0 and i got SAP 1393737 for this and it is mention that there is a program error and needs to implement the program corrections.
    Please can any one suggest me, is that correct approach or should i need to follow the another work around to resolve this issue.
    Thanks in advance.
    Regards,
    Venkat

    Reversal in different fiscal year is not possible in the Standard        
    system since it will affect your balance sheet and other accounting      
    legal report.                                                                               
    It is not possible in FI-AA to reverse       
    a document in this way,  "because of the calculation of depreciation"                                                                               
    The reasons are:                                                                               
    1. The reconciliation of FI and FI-AA must be ensured, and therefore     
       Posting and Asset Value Date must be in the same fiscal year.                                                                               
    2. Depreciation of aquisitions posted in the previous year, are          
      not automatically corrected, when you post a reversal.                                                                               
    One way is to open the previous period(previous fiscal year) and post    
    the reversal to the same fiscal year. PLEASE NOTE THIS IS ONLY IF YOU    
    HAVE NOT EXECUTED YEAR END CLOSING TRANSACTIONS.     
    Blaz

  • Field Profit Center is not populated while posting through T-Code F-02

    Dear Sir / Madam,
    While posting through T-code F-02 the field Profit center is in hidden mode
    as a result I am getting the given below error.
    "GLT2201 - Balancing field profit center in line item 001 not filled"
    Please guide me as to how do I change Field status varient so that the field Profit center gets activated in optional mode in F-02.
    I tried searching the same but could not find the solution.
    Regards
    Chirag Shah

    Dear expert
    Check following steps...
    1. Use transaction ACSET and enter cost center as your account assignment for type 01 APC posting..
    2. Make sure Cost Center exists in the Asset Master..
    3. Make sure profit center is entered into Cost Center master.
    4.Check the steps where you assign the GL accounts to the splitting rules.
    suggest you to go through the below mentioned links
    Balancing Field "Profit Center" in line item 001 not filled
    Balancing field "profit center" in line item 001 not filled
    GLT2201 - Balancing field profit center in line item 001 not filled
    Balancing field "Profit Center" in line item 001 not filled
    F-51: Balancing field "Profit Center" in line item 001 not filled
    Balancinf field profit center in line item 001 not filled
    Regards,
    Ajeesh.s

  • Posting of cenvat credit of 50% on capital goods through T.Code:J1IH

    Hi
    Please advise me the procedure for posting of cenvat credit of 50% on capital goods through T.Code:J1IH.
    As a matter of fact, when i tried to post the last year credit of 50% cenvat credit on capital goods the system accepting 50% only.
    For example, last year we got Rs.200000 as cenvat credit and out of that 50% credit of Rs.100000 got availed last year. In this year when i tried to avail of remaining of Rs.100000 through transaction code J1IH system is accepting 50% of Rs.100000 i.e only Rs.50000 is accepting.
    I look forward for your reply
    Thanks and Best Regards
    Shekhar
    Edited by: Shekhar Yecham on Sep 16, 2008 8:54 PM

    Hello,
    The settings before 01.04.2010 were same.  However, after thorough checking of the GL A/cs, I have following observations -
    1) Plant 1 - Balance as on 31.03.2010 in Cenvat on Hold A/c -Rs. 195080. It is upload balance & t.code used is FBVB
        There are some more transctions in this A/c which are  reversed due to wrong entries.
        Balance in Excise Duty RG 23 C as on 31.03.2010 - NIL
    2) Plant 2 - Balance in Cenvat on Hold A/c as on 31.03.2010 is  Rs. 166701. Again this is an upload balance with FBVB
        Balance in Excise Duty RG 23 C as on 31.03.2010 - Rs. 56931.62
    3) Plant 3 -  No upload balance.  All the transactions are routed through J1IEX except 1 from FB01
        Balance as on 31.03.2010 - Cenvat On Hold A/c - Rs. 86876.06
                                                     ED RG 23C  - NIL
    Hence, would like to know -
    1) Any separate procedure to take the credit of upload entries?
    2) If the Balance in ED RG 23C A/c is NIL, will it affect on taking credit?
    Thanks & Regards,
    Reshma

  • Running windows command through java code

    Hello
    i want to execute jar.exe through java code , i have written following piece of code , but it isn't working
    ProcessBuilder processBuilder = new ProcessBuilder(new String[]{"cmd.exe","/c","%java_home%\\bin\\jar.exe"});
              Process process = processBuilder.start();
              BufferedReader inputReader = new BufferedReader(new InputStreamReader(process.getErrorStream()));
              String line = inputReader.readLine();
              while(line != null){
                   System.out.println(line);
                   line = inputReader.readLine();
    does anybody knows why
    Regards
    Edited by: Mayur Mitkari on Mar 5, 2013 10:19 PM
    Edited by: Mayur Mitkari on Mar 5, 2013 10:20 PM
    Edited by: Mayur Mitkari on Mar 5, 2013 10:20 PM

    sorry for that , but the
    Runtime runtime = Runtime.getRuntime();
              Process proc = runtime.exec(new String[]{"cmd.exe","/c","jar"});
              proc.waitFor();
    int i = proc.exitValue();
    this code was different from first one
    and in case of Process if runtime .exec is succesful it is wainting for long time , in this case i want if the runtime.exec is succesful something should be returned
    Regards

  • Interactive Form - How to make fields read-only through the code?

    Simple question but i can't seem to figure out how to do it. I have an interactive form that have editable fields. How do I toggle fields to make some of them read-only through the code. Please provide cold sample. thanks a lot.

    <b>Nagarajan Kumarappan:</b>
    I know how to do that but that's setting the value at design time. Mine has to be done at runtime(when the page loads) because there are a lot of condidtions determining which fields should be and should not be readonly. therefore I have to do in the code. Any by saying code I mean Java not java script or formcal.
    <b>kushagra mittal:</b>
    are you talking about regular webdynpro input fields? I am asking for that. I am talking about input fields inside my adobe interactive form embedded on the webdynpro page.
    I think what needs to be done is to disable context attributes like Nagarajan Kumarappan suggested but do that through Java which I don't see any tutorials show that.
    still looking for help.

  • Electronic Bank Statement (EBRS) through T.Code: FF_5 Vs FF67

    Dear Experts
    My client so far BRS is doing manually through T.Code: FF67 or FF68.
    Initially the configuration is done wit two GL accounts, (1) Main bank account ending with +++++++0 ,(2) Outgoing clearing account ending with ++++++1 and there is no incoming clearing account, whenever the client issue the cheque credit to the outgoing clearing account and debit to the vendor account and whenever receive the cheque Debit to the Incoming clearing account is debit & Credit to the Customer. and the same manual BRS is completed very weel without problems.
    But now as per client requirement I have to do run Electronic bank reconcilation in the system using T.code : FF_5. I have received  file format SWIFT MT940 from banks about 5banks and rest of the banks around 25 babnks  they have to continue with manual BRS FF67 / 68 only.
    so i should not change the configuration , so i have to continue with existing configuration and have to complete the EBRS using with two GL account (main bank, outgoing clearing ) , if i continue with existing configuration shall i complete the EBRS with extra additional settings (Assign External Transaction Types to Posting Rules, and Assign Bank Accounts to Transaction Types ) using T.Code: FF_5.
    what is the impact, whether i can complete  EBRS or not, kindly advice on this how i have to procssed futher.
    Please advice on this and what is the impact on EBRS or manuall BRs.
    Regards
    Eswar

    Hi,
    no problem working with two accounts in your business process. In this case your reconciliation will be like  before.
    Anyhow FF_5 (FF.5) or FF67 do the same thing. Post transactions from the bank statement. To learn more about the accounts used in your company check the transaction OT83.
    regards

  • Partial amount unblock through t code MRBR, it is possible - MRBR

    HI FICO Expert,
    I want to release partial amount unblock through t code MRBR, it is possible ?
    Example :
    At the time of Vendor Invoice booking total amount booked in BLOCKED FOR payment amount Rs 10000/-
    now i want to release only Rs 9000/- balance in blocked for payment Rs 1000/-
    Thanks
    Kamlesh

    Hi Kamlesh,
    No, it's not possible. You can only remove payment block code in MRBR.
    You might be able to respond to requirement by manipulating payment block and payment terms in FB02.
    If it's inadequate, it will require a custom development.
    regards,
    Eddgar

  • Problem while transfering documents from FI to CO through t.code 1KEK

    Dera Experts,
    When I am posting FI document through transaction code 1KEK (Profit Center Accounting : Transfer Payables/REcievables) from FI to CO, line items are not shown in Profit Center document. Means in profit center document, G/L are not shown after the transfer.
            It is urgent. Pls get back ASAP if find the solution. Thanks in advance.
    Regards,
    Taral Patel

    I think you have to use for line items:
    Balance Sheet Adjustment
    F.5D - Calculate
    F.5E - Post
    F.5F - Display Log
    F.5G - Special Functions

  • Adding rows to J2ME WTK/Settings/User Defined (through Java code)

    Hi all..
    Just a quick question..
    Is it possible to add Key/Value pairs to a MIDlet's 'User Defined' field through Java code..(ie) - add a new row to the User Defined field..
    If not, can anyone tell me how a Bluetooth-Client GUI can save an image it has been sent by a Bluetooth-Server GUI?
    Thanks in advance..
    Rookie

    if i understand you, you want to call application module method when user clicks on add button on the UI and your table is from VO
    so what i can come up for now is:
    1) create variable binding from the iterator for both name and price.
    2) on your UI action button :
    <af:commandButton actionListener="yourbean.addToCart">
    <f:attribute name="pName" value ="binding.<created name bind variable>"
    <f:attribute name="pPrice" value = "binding.<created price bind variable>"
    </af:commandButton>
    3) custom Managed Bean:
    //yourBean.java
    public void addToCart(ActionEvent e){
    // get binding here
    // use executeWitParams method to send parameter to the function "testMethod" and execute
    //AppModuleImp.java
    public void testMethod(String pName,String pPrice) {
    CardVOImpl vo = this.getCartVO1();
    CardVORowImpl r = (CardVORowImpl)vo.createRow();
    r.setAttribute("NAME", pName);
    r.setAttribute("PRICE", pPrice);
    vo.insertRow(r);
    Hope this helps...
    Let me know if not..
    Thanks
    Edited by: MavenDev on Oct 30, 2011 8:08 PM

  • I need to be able to debug through cfc code

    I need to be able to debug through cfc code being called from a Flex app remote object. I know how to debug straight cfm code using cfeclipse for flex builder but am unable to figure how to get this working for cfc's. If I set a break point in my cfc and start my coldfusion debugging session in Flex Builder and run my flex app and get it to call the cfc the debugger doesn't stop.
    Any ideas? Do i need to modify the Flex-config?

    Write a simple cfm page that invokes the method in question.  Do whatever you have to do to get the cfc working properly.  After that, don't touch it.  Subsequent problems will be due to something else.

  • Disallow changes in Sales Order through T-Code VA02

    Dear Gurus,
    We create the Sales Order and with reference to that the User wants to change few fields (Account Assignment Group, Pricing Date, Invoice Date, INCO terms, Payment Terms etc.) which are not supposed to be edited by him through T-Code VA02. Changes should also not to be made with regard to Material Line Item Material like Description & Quantity in Sales Order. We have tried to do the same through Transaction Variant (T-Code SHD0 & User Exit). Unfortunately it is not working. We are not able to assign the Transaction Varient for T-Code VA02 in sales document type through VOV8.
    System Audit has raised these points and needs to be done at the earliest.

    Hello Aaheli,
    I think your requirement of restricting the modification of Sales Order through VA02 can be meet using the following approach:
    Seek out the help of BASIS to restrict the Sales order modification role for that specific User ID.
    If you wanna restrict the modification of Sales order through VA02 for amny User ID then please use User exit.
    Do inform us about the latest updates on this issue.
    Regards,
    Sarthak

  • List of Sales Orders wrt SHIP TO PARTY through T Code VA05.

    Hi Experts,
    Please let me know how can we extract list of Sales Orders wrt SHIP TO PARTY through T Code VA05. We can select Ship to Party option through Partner function tab in selection screen, but while executing transaction, we get list for SOLD TO PARTY.
    Please advise.
    Thanks,
    Abhishek Agrawal

    Hi,
    In the VA05 report selection screen, you have the option of selecting the relevant partner function that needs to be considered. Click on the "Partner Function" button and change it to "SH"
    Then given the ship to party number you want to analyze and execute the report.
    In the report output screen, you will see the  Ship-to Party in the header.
    In the detail level, you see the sold to party numbers. Since the report can be executed for one ship to or sold to at once, there is no requirement to see the ship to party in the line level.
    If you double click on the line, you can go to the sales order and verify your sold to and ship to details.
    Best regards,
    Anupa

  • How to Increase Java Heap Size through Java Code. Increase inside Code?

    Hi All,
    I am using a third party tool. When i run a particular program it says OutOfMemory error. I like to increase heap size through Java Code before calling the particular Java application or Code..
    Is there is any way to set the Heap Size through Java Code in run time ???
    Pls Kindly help.
    Thanks.

    if you start the program with a -Xmx512m flag, the virtual machine gets half a gigabyte of memory to use (or that's the max it's allowed to use). All things run in the same virtual machine will have the same limit, third party tools run in the same virtual machine can't "not care about this" unless they're throwing OOMs themselves for some stupid reason.

  • Help regarding calling BRFPLUS function through ABAP code

    Hi,
          I have  a situation where I have to input  data into a BRFPLUS function  as a table (i.e the data is input as select options where list or range of data can be provided).The corresponding output is also in the form a table .I've created this function in BRFPLUS and is working fine .Now I have to call it through ABAP code.Can someone kindly  provide me with the probable code for this scenario.
    E.g:
            ZT_MATNR  is the table in brfplus representing the list of MATNR values input along with other such inputs to function module Z_FM
            ZT_ATM   is the  resultant output table  of the function  which contains several fields.
    Now I have to call this BRFPLUS function with help of ABAP code.Could someone kindly help.

    Hello ,
    There should be a number of BRF+ tutorials available in SCN which discuss the FDT APIs. You can have a look at them to get an idea of the various APIs available and their uses.
    For your usecase, you should do the following.
            lo_fdt_function         TYPE REF TO if_fdt_function,
            lo_fdt_result           TYPE REF TO if_fdt_result,
    * Get function handle
          CALL METHOD lo_fdt_factory->get_function
            EXPORTING
              iv_id       = lv_function_id
            RECEIVING
              ro_function = lo_fdt_function.
    where lv_function_id is the GUID of the BRF+ function . You can either make it a constant , or you can use a FDT API to get the function GUID from the BRF+ application name and function name.
    *   Set function context
        TRY.
            CALL METHOD lo_fdt_context->set_value
              EXPORTING
                iv_id    =
                ia_value =
    This is one way to set the input context ( pass the input to the BRF+ function to process ). There are other ways to do this as well. Which one you use would depend on the kind of input you want to pass.
    * Execute BRFPLUS function
      TRY.
          CALL METHOD lo_fdt_function->process
            EXPORTING
              io_context = lo_fdt_context
            IMPORTING
              eo_result  = lo_fdt_result.
    * Get result output
      TRY.
          CALL METHOD lo_fdt_result->get_value
            IMPORTING
              ea_value =
    Another direct way of doing it would be to use the method PROCESS of the class CL_FDT_FUNCTION_PROCESS.
    I have not gone into much explaination here , but it should provide you an idea of how you can go about it.Read the SCN docs on the APIs to get a better idea , or better still if you can get hold of a copy of the BRF+ book by Carsten Ziegler , you will get an end to end explaination of all BRF+ APIs in it.
    Regards,
    Indranil.

Maybe you are looking for

  • Vga out to tv?

    I know this has probably been asked but i cant find any yes it can heres how i did it or no it cant be done answers. 450 mhz imac w/vga out port running 9.2 and 10.3.9 (maybe 10.4 soon)

  • Recommend me an audio interface

    I need an audio interface - PCI, Firewire or USB-2 - with a bunch of inputs and outputs (min. 6 in, 4 out), a couple of universal XLR/minijack input jacks with good pre-amps and, here's the clincher, separate level controls for headphones and monitor

  • Open portal window in another portal

    Hi all portal experts, I need connect from one portal to another one. Explanation: I need to create iview or something like that which will open another portal in my portal, but like another user. It have to connect automatically, and I can't see the

  • COPA : Drive Item Category from billing doc. / without sales order

    Dear All , I need to drive item category directly from billing document ( billing without sales order - POS inbound doc. ) i tried to drive it from table VBRP but the derivation failed as table VBRP need the billing doc. number & i can't get it from

  • Keyboard no longer covered under Applecare

    This is more a comment than a question. Today I took my ibook G4 to Tekserve in Manhattan (a very reliable Apple retailer with a great service department that honors Applecare) to get my keyboard replaced for the second time because, as happens with