Help needed in finding duplicate entries in invoices

Hi,
let me explian u the senario.
when we enter the invoice no. in vf03 and select any item and click on pricing button.
there i find the Cnty fild having duplicate entries like xr1 2 times and xr2,xr3,xr4,xr5 and xr6 all 2 times
so i need to write a query to find out which of all the invoices have these types of duplicate entries.
regards,
maqsood

Hi!
CnTy is header line of condition type column.
There can be several reasons, why conditions types are twice in a document. E.g. conditions can be given on header and line level, so they are two times in a document.
These tax conditions are just line level. But please check, if they have different colors. I currently don't remember if only the blue or only the black lines (with or without highlight) are relevant for the document.
The inactive conditions are still shown, but not 'counted'. You can set conditions inactive by requirements, by formula, by exclusion groups... so there are many ways to set the system up.
Only if your total is wrong you have to do something (e.g. give users a training how to create a sales order / invoice).
Conditions for invoice can be found in KONV with KONV-KNUMV = VBRK-KNUMV.
Regards,
Christian

Similar Messages

  • Help needed in Finding Download location for Sun One Portal 7

    Hi,
    help needed for finding download location for Sun ONE Portal 7. I tried to find in Oracle Download page ,
    http://www.oracle.com/us/sun/sun-products-map-075562.html, But unable to find.
    Please share the link for download location.
    I am totally new in Sun ONE Portal.
    Thanks,
    Edited by: 945439 on Oct 5, 2012 3:41 AM

    try edelivery.oracle.com under sun products.

  • Finding duplicate entries in an int[]

    Okay, So I need to solved the following problem.
    Given an int[] or Integer[] with 1,000,000 entries. There are 2 entries out of the 1,000,000 that are duplicate. I need to find and return the duplicate entry.
    Obviously iteration is out of the question given the size of the array, and converting to an arraylist would likewise not help alot.
    Please offer any suggestions

    well I tried this....
    public class Main
         public static void main(String[] args)
              int list2[] = new int[1000000];
              for (int i=0; i < 1000000; i++)
                   list2[i] = i;
              System.out.println(getDouble(list2));
         public static int getDouble(int[] intArray)
              ArrayList<Integer> list = new ArrayList<Integer>();
              for (int i=0; i < intArray.length; i++)
                   list.add(intArray);
              for (int i=0; i < list.size(); i++)
                   Integer a = list.get(i);
                   if (list.indexOf(a) != list.lastIndexOf(a))
                        return list.get(i);
              return 0;
    }and it takes forever.  So if you have a really fast way, a hint would be nice :-).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Finding duplicate entries in address book

    I am using Address Book 5.0.3, where I have been using LinkedIn's CardMunch to import contact details via my iPhone. However, I now end up with three distinct issues regarding duplicate entries:
    1/ two people with the same name, e.g. John Smith, but I know they are two separate people and they work for different companies.
    2/ After an import, I may have some duplicate entries, say Alan Walker, who has moved from company A to company B and I want to replace his old contact details with the new information.
    3/ two duplicate entries the same name, say Brian Vickers, both of which refer to the same person who still works for the same company, but has new contact details or additional data, such as a mobile number that I did not have before.
    4/ two duplicate entries that are identical. E.g. I imported the same card twice for some reason.
    5/ multiple entries marked 'Cannot Read Name', where CardMunch had a problem, but I know they are different people and I have to edit these to manually enter the correct information.
    Unfortunately the Address Book find duplicates function, whilst it works, does nothing useful. The only option I am presented with is 'Merge', which in all of the scenarios above apart from item 4 I do not want to do a merge function - I want to either 'Mark as NOT Duplicates' (item 1/), 'Replace Selected Fields' e.g. show me the two cards side by side and allow me to select which fields from which card are to be kept, replaced or removed and then implement the merge (item 2), "Add New Information' but allow me to select the label for that information before merging so that if someone has a new iPhone, but is still keeping their old mobile, I can select the field label correctly and then merge (item 3) or 'Edit Card' which allows me to open any identified duplicate and add in missing information that would mean that it is no longer a duplicate item.
    Can anyone suggest a way of doing this, or can Apple's developers please add these features to the Address Book App as soon as possible?
    Thanks, Russ Taylor

    books06,
    Welcome to Apple Discussions.
    It depends upon which version of Address Book you are using, and your definition of "view."
    1. Address Book 3.1.1 Help
    2. Address Book 4.0.3 Help: Combining duplicate cards and information
    To find and merge duplicate cards:
    1. Choose Card > "Look for Duplicate Entries."
    2. Address Book tells you if it finds duplicate cards, cards containing duplicated information, or both.
    3. Click Merge to merge duplicate cards and remove redundant information on cards.
    When Address Book merges duplicate cards, it creates a single card for the contact containing all of the unique information from each merged card. Address Book uses the picture from the merged card appearing first in the list.
    To merge selected cards only, Command-click to select the cards you want to combine and choose Card > Merge Selected Cards. Address Book creates a single card using the name and picture of the selected card appearing first in the list.;~)

  • Help me in finding the entry points in the source code of java.....

    hi...
    I want to design a compilation server and apply some of the optimization technique's like inlining, SSA and others.
    So i require to find the entry points in source code from where i can include my code and check the performance of the program at level it is performing .
    Please help in this problem....
    and i also like to know what are hot methods in java context?

    BigDaddyLoveHandles wrote:
    Do you even know Java? Why not just let the HotSpot optimization do its thing?Good point, I would try either of two things.
    If you have a good understanding of Java internals and are confident you could optimise code better, I suggest you contribute to the OpenJDK and we can all benefit.
    Otherwise I suggest you try using the optimisation built into the compiler and the JVM.
    Note: the JVM optimises the code dramatically in ways most normal people won't have thought possible.
    The compiler doesn't optimise the code so much as it leaves this job to the JVM.
    Two examples;
    - say you call a small method often. The JVM can inline this method for you. (the same way a compiler would) However say this method can be over-ridden and later your program calls a different implementation, it can inline both methods even if the new method in a new class didn't exist when the first method was inlined.
    - In a 32-bit JVM, 32-bit registers and references are used. In a 64-bit JVM 64-bit registers and references are used without needing to recompile the code. However there is a third option of using 32-bit references in a 64-bit JVM. In this case, it assumes the bottom 3 bits are always 000 so it shifts the reference down 3 bits allowing you to access 32 GB using 32-bit references. Again, you can use this with libraries which were compiled before 64-bit JVMs were available.

  • Finding Duplicate Entries in a table

    I have a table with the following fields in Oracle 10g.
    TABLE_1
    account_no | tracking_id | trans_amount
    Each account_no can have multiple tracking Id's.
    How do i query out the duplicate entries of account_no where tracking lies between 1 and 1000 ?
    Many thanks in advance for your help,
    novice.

    Hi,
    Whenever you have a question, it helps to post a little sample data, and the results you want from that data.
    You may think you're explaining clearly, but it won't be nearly as clear to someone who isn't familiar with your tables, your data, and your requirements. Sanjay and I apparantly have different ideas about what you requested, and perhaps neither is what you really want. It would be much harder for us to make mistakes and give you bad advice if you posted the data and results.
    Here's my guess:
    WITH     got_cnt     AS
         SELECT     table_1.*
         ,     COUNT (*) OVER (PARTITION BY account_no)
         FROM     table_1
         WHERE     tracking_id     BETWEEN     1
                        AND     1000
    SELECT     account_no, tracking_id, trans_amount
    FROM     got_cnt
    WHERE     cnt     > 1
    ;If there are two rows with the same account_no, and both rows have tracking_id in the given range, then both rows will be displayed.

  • Help Needed: Enable local currency for Customer Invoicing

    We are needing to enable local currency for customer invoicing on a project coming very soon.  Does anyone have any information on the best way to get this done and/or documentation to look over?  Any help would be greatly appreciated!!
    Thank You in Advance!
    Jay Esparza
    SAP Functional Consultant

    Hi
    Local currency automatically gets activated as you set your company code currency.
    No need to enable separately for customer invoicing
    Plz assign points if it is helpful.
    Regards
    Tapan

  • [SOLVED] Help Needed to find the name of the openbox theme

    Can anyone help me to find the name of the openbox theme ?.
    Thank you.
    It's Numix
    Last edited by bhante (2015-01-07 11:13:12)

    That looks a lot like the Numix GTK theme...

  • Finding duplicate entries in pages doc...

    i've got a huge pages document with email addresses.
    is there a simple way to scan the document for dupes?
    anyone??
    thx!

    If the email addresses are all that is in the document, they are in a list, and you also have Numbers, the following will work:
    Select all of the list. Copy
    Launch Numbers and open a new, blank document.
    Click on cell B2 of the table in Numbers. Paste.
    Your addresses should fill column B, with rows added to the table as necessary.
    Enter this formula into C2: =IF(COUNTIF($B$1:B2,B2)>1,"DUP","")
    (The result in C2 should appear to be an empty cell.)
    Click on the Column Reference tab for column C to select the whole column,  then
    Command-click on cell C1 to remove it from the selection.
    Go Insert (menu) > Fill > Fill Down.
    Your table will now resemble this one, with duplicate entries marked in column C:
    With column C still selected, Copy, then go Edit > Paste Values.
    This replaces the formulas in column C with the values calculated by that formula.
    Click the Reorganize button, then in the Sort section, choose Column C.
    The table will be sorted, bringing all the DUP entries together at the top of the table.
    Select all of the rows containing DUP (Click on the Row Reference tab of the first, then shift-click on the Row reference tab of the last) to select all of the rows containing duplicate addresses.
    Go Table > Delete Rows.
    Select the column containing the email addresses. Copy.
    Return to the Pages document. Paste.
    Done
    Regards,
    Barry

  • Help needed in finding max of a given dates

    I have stored a list of dates in an arraylist.
    I need to find the maximum or the latest date from the list.

    This "feature" was not documented (at least I haven't seen one for the last few months) and has been abused by some retard(s?) for CSS injection, so Sun chose to fix it by removing it ...

  • Help need to find $7.99 a month create pdf

    I need to buy an adobe program to create pdf file from word doc and quickbooks invoice.
    Your advisor told me to look up create pdf for $7.99 a month. cant find it.

    Hi,
    Create Pdf is now known as Pdf Pack . You can visit the below mentioned link for help:-
    https://www.acrobat.com/createpdf/en/home.html?promoid=KIIBF
    Thanks

  • Need to stop duplicate entry

    HI all
    i have a tabular form and i need composite key on that at form level how to do that
    Example
    table desc
    id
    name
    color
    if these three are eneterd once they can't be duplicate in the form
    please guide
    Thanks and Regards
    Vikas Singhal

    i have a tabular form and i need composite key on that at form level how to do that
    Example
    table desc
    id
    name
    color
    if these three are eneterd once they can't be duplicate in the form Dear Vikas Singhal
    make this 4 column as composite primary key. when insert Same value for this 4 column 2nd time, database will send a error message to entry form. pick the error code and create form level trigger or block level trigger(*ON-ERROR* TRIGGER) to show user a custom message.
    hope this will help u.

  • Help needed to find the schema/application data size

    Hi,
    Would i request you to help me to measure schema size/(APEX)application data size.
    I've 3 applications running on same schema and now i want to move one application to new server, new schema,
    Now i need to know how much space is required for this application to host on the new server, so i should find the application size and application data size in the current server, your hep is appreciated. thanks in advance.
    Regards

    Hi,
    Would i request you to help me to measure schema size/(APEX)application data size.
    I've 3 applications running on same schema and now i want to move one application to new server, new schema,
    Now i need to know how much space is required for this application to host on the new server, so i should find the application size and application data size in the current server, your hep is appreciated. thanks in advance.
    Regards

  • Help needed to find a good mapmytracks apps to N8...

    I had an older Nokia and used the apps mapmytracks, which is wonderful (you use your mobil as a gps, it has very good maps including topo, works also in the forrests, it counts the meter you walk and you can save the rutes afterwards. BUT it does not work with N8 and the developers will not fix it,  because the symphian3 has no future. Could anyone here  give my the name of an other apps that can do the same things. I would not find  such an apps for N8, I need it  and if I (and people who need precise tracking in a forrest) do not find such an  apps for N8 we need to stop using Nokia. Hope someone can help me.
    Mugge Pinner

    http://store.ovi.com/content/26345?clickSource=search
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Invoices with NUMBERS, help needed, the tax still on the invoice but it does not actually calculate it?

    Hello, I need help to display tax on the invoice, its numbers/ invoices,
    the tax is set to 21%
    it is as is but it does not calculate the tax indeed.
           subtotal    e495
    tax        21%    e0.00
    Total                e495
    any help?
    thank you

    Try reposting in the Numbers Forum

Maybe you are looking for