Automatic line generation in f-02, etc apart from using tax code

Hi,
In f-02, for a tax code with percentage > 0, a line item is generated automatically.
Can we automatically generate a line item in f-02,etc without using T code?
Say,
100 Debit
    100 Credit
If we use tax code of 20 percent and simulate,
below is possible
80 Debit
20 Debit
     100 Credit
But is below possible ?
On simulation without using tax code (with config only without using User Exit)
100 Debit
20 Debit
   100 Credit
    20 Credit
Thanks,
Anant

hi
good
declare the type of each value of the internal table, than it will take the appropriate value.though you have not exact type for each variable , though values are coming to the internal table it cant able to identify which type of field it is.
thanks
mrutyun

Similar Messages

  • Is there any way to find out wn was a table deleted apart from using audit

    Is there any way to find out wn was a table deleted apart from using audit
    Oracle version 9.2.0.7

    SQL> SHOW USER
    USER is "SCOTT"
    SQL> CREATE TABLE test_delete AS SELECT * FROM emp;
    Table created.
    SQL> DELETE FROM test_delete;
    14 rows deleted.
    SQL> COMMIT;
    Commit complete.
    SQL> conn sys@orclsb as sysdba
    Enter password: ******
    Connected.
    SQL> ALTER SESSION SET nls_date_format='DD-MON-RRRR HH24:MI:SS';
    Session altered.
    SQL> BEGIN
      2     DBMS_LOGMNR.START_LOGMNR (
      3           starttime => '02-FEB-2011 17:51:00',
      4           endtime   => '02-FEB-2011 17:54:00',
      5           options   => dbms_logmnr.DICT_FROM_ONLINE_CATALOG+
      6                        dbms_logmnr.continuous_mine +
      7                        dbms_logmnr.no_sql_delimiter +
      8                        dbms_logmnr.print_pretty_sql
      9                                  );
    10  END;
    11  /
    PL/SQL procedure successfully completed.
    SQL> set line 10000
    SQL> SELECT scn ,timestamp
      2         ,commit_timestamp, username
      3  FROM v$logmnr_contents
      4  WHERE
      5   username = 'SCOTT'
      6  AND  TABLE_NAME='TEST_DELETE';
           SCN TIMESTAMP            COMMIT_TIMESTAMP     USERNAME
       2309736 02-FEB-2011 17:53:20                      SCOTT
       2309739 02-FEB-2011 17:53:20                      SCOTT
       2309769 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
           SCN TIMESTAMP            COMMIT_TIMESTAMP     USERNAME
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
       2309774 02-FEB-2011 17:53:59                      SCOTT
    17 rows selected.
    SQL>

  • Digital audio input via mini jack/toslink from ADA, monitored via USB audio output... is this do-able? I know digital audio input should be okay but how do I monitor it, apart from using the internal speakers?

    Digital audio input via mini jack/toslink from ADA converter, monitored via USB audio output to amplifier... is this do-able? I know digital audio input should be okay but how do I monitor it, apart from using the internal speakers?

    You can output audio thru HDMI, with appropriate adapter.
    You can use additional cheap external usb audio for monitoring.

  • Options apart from using the http binding adapter

    In calling secured restful web services, what are the options apart from using the http binding adapter from BPEL/SOA 11.1.1.4.
    Pointers to examples highly appreciated.

    Hi,
    Have a look at this...
    http://technology.amis.nl/2009/12/15/the-oracle-soa-suite-11g-httpbinding-or-another-way-to-call-restful-services-from-soa-composite-applications/
    Cheers,
    Vlad

  • Apart from using a DNS Service, is there a way of getting an Xserve to notify an administrator of a change of external IP address?

    I have an Xserve running 10.5.8 which is I want to notify me when its external IP address changes.
    Is there a way to get it to do this?

    Here is my finished solution using applescript.
    If it is of use to anyone else please feel free to use/improve it.
    global OLD_IP
    global Current_IP
    global IP_text
    set OLD_IP to ""
    set Current_IP to ""
    set Test_text to ""
    ---on run get the current external IP address & set it as the Base IP to compare to
    do shell script "curl -s checkip.dyndns.org"
    set Pub_IP to result
    set OLD_IP to Pub_IP as string
    ---show the address
    display dialog "IP is: " & return & OLD_IP giving up after 2
    on idle
        try
            set IP_Changed to false
            set Current_IP to ""
            ---get the current external IP address
            do shell script "curl -s checkip.dyndns.org"
            set Pub_IP to result
            set Current_IP to Pub_IP as string
            if Current_IP is equal to OLD_IP then
                set IP_Changed to false ---if it is the same then it hasn't changed (false)
            else
                set IP_Changed to true ---if it is different then it has changed (true)
            end if
            if IP_Changed is true then ---if there is a difference the email the change to administrator(s)
                set target_string to Current_IP as string
                set replacement_string_1 to "<html><head><title>Current IP Check</title></head><body>"
                set replacement_string_2 to "</body></html>"
                my replace_and_select(target_string, replacement_string_1, replacement_string_2) ---removes HTML coding
                tell application "Mail"
                    set Mail_to_1 to "[email protected]"
                    set Mail_from to "[email protected]"
                    set theName to "Administrator"
                    set theAddress to Mail_to_1
                    set theSubject to "Server Public IP Address"
                    set theBody to IP_text
                    set newMessage to make new outgoing message with properties {subject:theSubject, content:theBody & return & return}
                    tell newMessage
                        set visible to true
                        set sender to Mail_from
                        make new to recipient at end of to recipients with properties {name:theName, address:theAddress}
                        activate
                        send
                    end tell
                end tell
                set OLD_IP to Current_IP ---set Base IP to the new one ready for next test
            end if
        end try
        return 3600 ---wait one hour before repeating the test
    end idle
    on replace_and_select(target_string, replacement_string_1, replacement_string_2)
        set this_text to target_string as string
        set this_offset to the offset of the replacement_string_1 in this_text
        set this_offset_2 to the offset of the replacement_string_2 in this_text
        set this_offset_3 to this_offset + (length of the replacement_string_1)
        if this_offset is not 0 then
            set IP_text to items this_offset_3 thru (this_offset_2 - 1) of target_string as string
        end if
           return
    end replace_and_select

  • Apart from using RSTXSCRP is there any other way of exporting a Sapscript?.

    We've been using RSTXSCRP to export Sapscripts in Russian from a noon-unicode SAP system. However, the text file seems to have hashes (#) where the Russian text should be. I've tried this program when logged in both English and Russian, but the result is the same, and hence the question.
    Regards
    Gary

    This a Sapscript that I'm talking about, not a Smartform. Smartforms allow me to output/input in XML format, but I don't think such an option exists for Sapascripts. Or have I misunderstood what you were saying?.
    Also, while I'm on the subject, the RSTXSCRP program allows the user to EXPORT Sapscripts in both text and Binary mode, having just read the documentation it might be that the binary mode is probably what we should have used for the Russian text export.
    I believe that my colleague used the text mode previously, so I shall try the binary mode a little later and will update with the results.
    Regards
    Gary

  • How Do I stop an old iPod from syncing with the cloud apart from using iTunes Match

    I have an old ipod touch with a 30 pin connector. How do I stop it from syncing all apps to the cloud exept itunes match, Facebook, Twitter, and Messenger.

    I'm afraid I don't understand the question. What are you trying to accomplish?

  • Copying text in automatic line items created

    Dear Experts,
    When using tax code for calculatin tax we enter text for our reference which was automatically updated in sencond/GL line item but not updated in tax GL.
    I cannot enter it manually because third line item is not visible it only appers when we simulate document before posting.
    Any idea.
    Regards
    Aly

    Hi Ali,
    You can do this by the following steps:
    1) Transaction FS00 - TAB CREATE/BANK/INTEREST - Check on the SUPPLEMENT AUTO. POSTING.
    2) In entry transaction (E.G FB70) select EDIT OPTIONS and CHECK ON "COPY TEXT FOR G/L ACCOUNT ENTRY".
    3) In entry transaction after SIMULATE you double click on the TAX line and enter some data. If you click + in the text field it will copy the text from the previous line item.
    Alternatively you can use SUBSTITUTION to fill the text field for TAX line items.
    Hope this answer your question.
    Regards,
    Benni

  • Texas Sales and Use Tax - SAP Automatic Tax Code Assignment

    We are an end user industry of materials and services - Refining.  We are also using SAP - 4.6C platform.  What are others in the SAP environment doing to address proper taxing assignment to purchased materials and services in the great state of Texas? As you may be aware the Texas State Sales and Use tax rules are probably the most difficult to understand and comply with that exist. I am embarking on developing a custom solution to automatically assign the proper tax code on purchase orders depending on key indicators associated with maintenance orders and material groups, etc.

    The Sales and Use tax code assignment can be handled at the creation of the purchase order for plan purchases of goods and services, and at the accounts payable level when the invoice is process.  At each step the necessary tax code must be populated on the jurisdiction field.

  • Tax Code does not appear in services PO at Services line item

    Dear Experts,
    I am trying to create a services PO with tax code. The tax code should be entered at Services Line item level not the PO line item level. But I can not see Tax Code field in the line item level. Although I have activated the the option for Tax Code at Services line item in t-code ML100. I have also checked the field reference settings for PO and External services to see if the field is suppressed.. but it is an option field in the setting...
    Can you please help what other setting needs to be done to see the tax code field at service line item level?
    Regards,

    Hi Kathrine,
    Go to SPRO-> Material management ->External services Management-> Define Screen layout
    In Field selection 5 double click field selection string 2.
    Check in additional data if your tax code is required field. refer the screen shot.
    Regards
    Subbu.

  • Overwrite Tax Code in Invoice tab of PO line item

    Hi all.
    Is there any user exit through which I can Overwrite Tax Code in Invoice tab of PO line item.
    I dont think a field exit will help since I have decide the tax code value based on the line item details like plant and a/c assignment cat. and header Purchase org.
    Any help will be very much appreciated.
    Thanks in anticipation.
    Regards,
    Aditya

    Hi Aditya,
    there are three different possibilities to influence tax codes in PO - user-exit is not one of them.
    If you can assign a company code to your purchase organization, then it's possible to determinate tax code based on purchase view.
    Some say, it's possible to maintain on company codes, too.
    It's possible to assign MM-tax class to sites and account assignments. Then via tax condition a tax code can be determined.
    And you can make a condition determination based on sales tax classes, but then in a pricing user exit corresponding tax class has to be read.
    Most times I use tax code determination via tax conditions - then users don't have to maintain anything in addition.
    Regards,
    Christian

  • Quantity based discounts, apart from scales?

    Hi,
    Another question that I could not readily answer.
    Apart from using "Scales" is there any other way of giving "Quantity" based discounts to a customer.
    Just for the sake of clarity.
    Normally, we would maintain scales and give the customer scaled based discounts, right?
    Example:
    001 -100 lets say 5% discount or 5 USD discount (whatever)
    101 -150 lets say 6% discount or 6 USD discount (whatever)
    151 -200 lets say 7% discount or 7 USD discount (whatever)
    My question, is there a way other than above mentioned example(scales) of giving the customer a "Quantity" based discounts.
    Thanks in advance,
    Raj SAP SD_Newbie

    The mentioned approach is the easiest way.
    Other approaches would be,
    1) manually adding discounts in the pricing procedure by the user when he/she process a sales order.
    2) add a routine in alternative calculation type column against the discount condition type in the pricing procedure. The discounts details can be stored in a z-table and the routine can read the discount detail from this table.
    Regards,

  • Methods for Mass Change to Price Condition Records apart from LSMW.

    Hi all,
    Apart from using LSMW, pls let me know if there is any other best way to do Mass Change to 1000 Price Records.
    Rgds,

    try using tcode scat or a program to perform BDC or try with tcode VK32.
    Regards,
    Raghu.

  • How to automate the generation of SCB Indicator while raising Invoices?

    Hi Team,
    According to our client requirements we are using different SCB Indicators(for Foreign vendors) in order to segregate the payments for diff. services. Can we automate this SCB Indicator while raising the invoices ? Else is there any other way to achieve this requirement.
    We are using different sources to raise the invoices automatically like self billing process, other middleware i.e. from Non-SAP system etc.,
    If we are raising invoices manually via MIRO / FB60 then we are giving the suitable SCB indicator according to the relevant service. Can we automate the generation of SCB Indicator while raising the invoices automatically ?
    Please provide your valuable suggestions!
    Thanks & Regards,
    Lakshmi S

    Hi Vinod,
    Thanks alot for your help in this regard
    Requesting you to please clarify here which BADI is the relevant one.PFB the screenshot for your easy reference.Because we found nearly 4 BADIs related to this scenario.Please through some light here once.
    Thanks in Advance!
    Regards,
    Lakshmi S

  • Automatic PR generation during third party sales order

    When I am create third party Sales order , systems automatically tries to creates the PR . Ok its fine and as expected . But system asks for Account assignment. Where I can give that account assignment during the auto PR at Sales order

    Hi,
    In Automatic PR generation during 3rd party sales order,the account category determination depends on following configuration:
    Step 1:
    Sales & Distribution-->Sales->Sales Documents->Sales Document Item->Define Item Categories--
    Check this configuration
    Step 2:
    Sales & Distribution-->Sales->Sales Documents->Sales Document Item->Define Schedule line CategoriesUnder this configuration ,for your scheduline item category ,check following entries ,Order type-NB ,Item Category---5 & Acct.Assingment category (3rd Party).
    Step3:
    Sales & Distribution-->Sales->Sales Documents->Sales Document Item--->Assign Schedule line Categories
    Then Assign the schedule line category to 3rd Party Item category defined .
    From this when PR get generated then acct.assingment category get populated automatically .
    Thanks,
    AMIT

Maybe you are looking for