Handling Refunds- need a solution

My client is on 4.6c and although they are up and running in AP, the vendor and customer is not linked in customer master.  Is there a solution in handling refunds?  I know this has something to do with payment method however what t-codes make a refund happen etc I don't know.  I am an A/R consultant and this client, the A/R group can initiate refunds and process job.
Input would be greatly appreciated.
Points promised.

> Thank you Barry-
>
> Can you give me specifics?  Documentation?  I am not
> clearly understanding what you did here.
>
> Many thanks!
>
> POINTS PROMISED
OBA7 - Document Type   -  Make reference mandatory for linking into Invoice
FBZP - Payment Type
Create a "Credit" for the Customer on this document type.
Run APP / F110 and select this document type and for all customers and it will create a refund.

Similar Messages

  • I need a solution

    Hi,
    i need a solution for voip,
    we have two offices in two city
    in one of our offices we have 100 land line and in another 25 land line, we need 200 internal line for first office and 75 internal for second office , we need both offices connect to each other,
    what equipments do you offer to me
    Regards,

    linksys is just for small office home office, im afraid the device they have will not be able to handle the network setup that you required. the number of lines that can be available for linksys voice system is limited. you may check some other heavy duty voice over ip device for this kind of network setup.

  • My ITunes got corrupted and I kept getting a message when updating iTunes64msi missing so I uninstalled all files and I thought I removed all registry values but  when reinstalling I get an older version is installed and cannot be removed. I need a soluti

    My ITunes got corrupted and I kept getting a message when updating iTunes64msi missing so I uninstalled all files and I thought I removed all registry values but  when reinstalling I get an older version is installed and cannot be removed. I need a solution.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I need a solution of this complicated problem to finalize my final project

    Introduction
    This project revolves around an important text processing task, text compression. In particular, you will be required to encode a sequence of words read from a source file into binary strings (using only the characters 0 and 1). It is important to note that text compression makes it possible to minimize the time needed to transmit text over a low-bandwidth channel, such as infrared connection. Moreover, text compression is helpful in storing large documents more efficiently. The coding scheme explored in this project is the Huffman Coding Scheme. While standard encoding schemes, such as Unicode and ASCII, use fixed-length binary strings to encode characters, Huffman coding assigns variable-length codes to characters. The length of a Huffman code depends on the relative frequency of its associated character. Specifically, Huffman coding capitalizes on the fact that some characters are used more frequently than others to use short codewords when encoding high-frequency characters and long codewords to encode low-frequency characters. Huffman coding saves space over state of the art fixed-length encoding and is therefore at the heart of file compression techniques in common use today. Figure 1 shows the relative frequencies of the letters of the alphabet as they appear in a representative sample of English documents.
    Letter     Frequency     Letter     Frequency
    A     77     N     67
    B     17     O     67
    C     32     P     20
    D     42     Q     5
    E     120     R     59
    F     24     S     67
    G     17     T     85
    H     50     U     37
    I     76     V     12
    J     4     W     22
    K     7     X     4
    L     42     Y     22
    M     24     Z     2
    Figure 1. Relative frequencies for the 26 letters of the alphabet.
    Huffman coding and decoding
    Huffman’s algorithm for producing optimal variable-length codes is based on the construction of a binary tree T that represents the code. In other words, the Huffman code for each character is derived from a full binary tree known as the Huffman coding tree, or simply the Huffman tree. Each edge in the Huffman tree represents a bit in a codeword, with each edge connecting a node with its left child representing a “0” and each edge connecting a node with its right child representing a “1”. Each external node in the tree is associated with a specific character, and the Huffman code for a character is defined by the sequence of bits in the path from the root to the leaf corresponding to that character. Given codes for the characters, it is a simple matter to use these codes to encode a text message. You will have simply to replace each letter in the string with its binary code (a lookup table can be used for this purpose).
    In this project, you are not going to use the table given in Figure 1 to determine the frequency of occurrence per character. Instead, you will derive the frequency corresponding to a character by counting the number of times that character appears in an input file. For example, if the input file contains the following line of text “a fast runner need never be afraid of the dark”, then the frequencies listed in the table given in Figure 2 should be used per character:
    Character          a     b     d     e     f     H     i     k     n     O     r     s     t     u     v
    Frequency     9     5     1     3     7     3     1     1     1     4     1     5     1     2     1     1
    Figure 2. The frequency of each character of the String X.
    Based on the frequencies shown in Figure 2, the Huffman tree depicted in Figure 3 can be constructed:
    Figure 3. Huffman tree for String X.
    The code for a character is thus obtained by tracing the path from the root of the Huffman tree to the external node where that character is stored, and associating a left edge with 0 and a right edge with 1. In the context of the considered example for instance, the code for “a” is 010, and the code for “f” is 1100.
    Once the Huffman tree is constructed and the message obtained from the input file has been encoded, decoding the message is done by looking at the bits in the coded string from left to right until all characters are decoded. This can be done by using the Huffman tree in a reverse process from that used to generate the codes. Decoding the bit string begins at the root of the tree. Branches are taken depending on the bit value – left for ‘0’ and right for ‘1’ – until reaching a leaf node. This leaf contains the first character in the message. The next bit in the code is then processed from the root again to start the next character. The process is repeated until all the remaining characters are decoded. For example, to decode the string “0101100” in the case of the example under study, you begin at the root of the tree and take a left branch for the first bit which is ‘0’. Since the next bit is a ‘1’, you take a right branch. Then, you take a left branch (for the third bit ‘1’), arriving at the leaf node corresponding to the letter a. Thus, the first letter of the coded word is a. You then begin again at the root of the tree to process the fourth bit, which is a ‘1’. Taking 2 right branches then two left branches, you reach the leaf node corresponding to the letter f.
    Problem statement
    You are required to implement the Huffman coding/decoding algorithms. After you complete the implementation of the coding/decoding processes, you are asked to use the resulting Java code to:
    1.     Read through a source file called “in1.dat” that contains the following paragraph:
    “the Huffman coding algorithm views each of the d distinct characters of the string X as being in separate Huffman trees initially with each tree composed of a single leaf node these separate trees will eventually be joined into a single Huffman tree in each round the algorithm takes the two binary trees with the smallest frequencies and merges them into a single binary tree it repeats this process until only one tree is left.”
    2.     Determine the actual frequencies for all the letters in the file.
    3.     Use the frequencies from the previous step to create a Huffman coding tree before you assign codes to individual letters. Use the LinkedBinaryTree class that we developed in class to realize your Huffman coding trees.
    4.     Produce an encoded version of the input file “in1.dat” and then store it in an output file called “out.dat”.
    5.     Finally, the decoding algorithm will come into play to decipher the codes contained in “out.dat”. The resulting decoded message should be written to an output file called “in2.dat”. If nothing goes wrong, the text stored in “in1.dat” and the one in “in2.dat” must match up correctly.

    jschell wrote:
    I need a solution of this complicated problem to finalize my final project The solution:
    1. Write code
    2. Test code3. If test fails, debug code, then go to step 2.

  • I´ve bought the new IPad3, what a disappointment the 3G does not work, no Internet available, APPLE what are you doing for the all the people in Germany who bought the new IPad3? I´m still an Apple fan, all my products are from Apple but I need a solution

    I have been waiting since months for the new IPad4G 64 Gbt. ON recommendation of Apple Support I have changed my IPad 4G last week in the hope that something was wrong with the firts one I bought.
    The one I have now has the same problems. WiFi is working however 4G not at all. Apple what can I do? What are you doing for the thausands of German Apple fans who have bought a IPad4G and can not use it. We need a solution NOW. I´m working with this tool and need to be able to rely on it.
    Thanks for a feed back.

    JKerki wrote:
    They had not heard about the problem, however made no problem to change it for an other one. Apple Support Germany pretendet not to know about this problem. However the web is full of complaints.
    It would be advisable for Apple to react officially on it. € 799, - for something that doesn´t function is no fun :-((
    Isn't replacing your iPad Apple "officially" acting on it?

  • My 4s phone getting hot in sim tray side so i need a solution

    my 4s phone getting hot in sim tray side so i need a solution?

    They are free at Corporate Verizon stores; retailers usually charge for them.  You also can call Customer Service and have them send you one.
    And you don't need a SIM card to activate an iPhone 4S on VzW's network.

  • I NEED A SOLUTION ON HOW TO UNLOCK THE AFTER EFFECT "Action Trailer.aep"

    I NEED A SOLUTION ON HOW TO UNLOCK THE AFTER EFFECT File, "Action Trailer.aep"

    We seriously don't have enough information to help you.
    What do you mean by "unlock"?
    My wild, shot-in-the-dark guess is that you've got some sort of template that, when you try to save, says that it's locked. If that's the case, try using "Save As" instead. If that's not your problem, refer to Todd's link and provide more info.

  • I need a Solution Manager Key, please

    Hello,
    I'm running an HSC and need a solution manager key. Can anyone generate a key for me, please?
    Hostname = FUJISAPD
    System number = 01
    Instance = R3Q
    Thanks in advance.
    Best Regards,
    André Koji Honma
    Support Analyst

    Those keys  MUST NOT be posted here.
    Install a solution manager, you will need it because you won´t get any patches without it.
    Markus

  • Adobe error (523:523) In version 10 - Need Alternative solution

    When I am trying view Statements(PDF) which are encrypted in my application , for few statements it triggers " There is problem with Acrobat / reader. If it is  running, Please exit and try again(523:523)". In few forums it has been stated that by turning off the protected mode at start up " Edit-->preferences-->general-->Enable protected mode at start up" resolves this issue. But the client doesnt want to turn off " Protected mode"due to security reason. Can any one help me with this?
    FYKI :
    I have got reply from Adobe forums ..
    https://forums.adobe.com/message/6578512#6578512
    The purpose of re- posting the same query is we need  alternate solution other than Turning OFF Ënable protected Mode at start up.
    Please advice me in this regard. Thanks a lot.
    Regards,
    Sreelatha Sekhar.Pat Willener

    Hi Shakti,
    Please find the details which you have asked me for.
    1) I am the user  of those encrypted files.
    2) Windows 7 / Windows 8.1.
    3) I am not opening the PDFs in Browser instead I am opening through the application in which Adobe Reader is linked to it to view the PDF files.
    I have also updated to Adobe Reader 11.0.08. Still the problem persists.
    Please help me in this regard. Thank You.
    Sreelatha

  • Good day I need the solution to the problem presented my iphone with ios upgrade from 7 to access any app, I get a message that says "log on to itunes to receive notifications"

    Good day I need the solution to the problem presented my iphone with ios upgrade from 7 to access any app, I get a message that says "log on to itunes to receive notifications"

    After the iOS 7.0.2 update words with friends is not working for me either. When I attempt to open the app it just closes itself after a few seconds of being open. This happens every time I attempt to open it.

  • I bought an iphone 4s from someone and i dont know password of his Apple ID and i need to update the apps on my new iphone i need a solution please

    i bought an iphone 4s from someone and i dont know password of his Apple ID and i need to update the apps on my new iphone i need a solution please

    The only solution is to erase the apps and purchase them through your own iTunes Store account. You have no legal right to those apps - the license is not tranferrable - and cannot in any case update them without the orginal purchaser's Apple ID.
    Regards.

  • Just download lightroom cc and not open at all. Have desistarei and will install several times and the problem continues ... I need a solution .. thank you  Operating System Windows 7 64bit

    just download lightroom cc and not open at all. Have desistarei and will install several times and the problem continues ... I need a solution .. thank you  Operating System Windows 7 64bit

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • I have removed all music/movies/etc. from iTunes due to duplicates. I have connected iTunes to a NEW library only to have the same problem, duplicates (2 or 3 of every song). I need a solution.

    I have removed all music/movies/etc. from iTunes due to duplicates. I have connected iTunes to a NEW library (38.33 GB) only to have the same problem, duplicates (2 or 3 of every song or 63.80 GB). I did not have this problem until syncing my library with the new Macbook Pro. I need a solution (a solution IS NOT sifting through my iTunes song by song and deleting the duplicates).

    Try disabling the computer's antivirus and firewall.
    - Next try the manual install method of:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch
    Place the iPod in recovery mode after the firmware download is complete and then restore using the instructions in the article. Sometimes recovery mode timeouts and returns to disabled before the firmware download is complete.
    - Then try on another computer

  • HT201263 I'm so disgusted! I just realised I will lose the photos of my daughter's birth... And why??? because I pushed a stupid button for a software update???? Apple,..I need a solution. I haven't paid this device to have this kind of issues.

    I'm so disgusted! I just realised I will lose the photos of my daughter's birth... And why??? because I pushed a stupid button for a software update???? Apple,..I need a solution. I haven't paid this device to have this kind of issues.
    My Iphone is still in the recovery mode and I don't know if there is a way to restart it without losing my photos? I made the last backup months ago...:(((

    I'm a little confused. At what point did the phone go into Recovery mode? Did you just leave it alone for awhile after you clicked the update button? I just updated my phone, and after the initial download, the phone restarted itsef a couple of times, installing the update in the process. When you do an update, you need to leave your device alone until it is completely done.
    As far as your photos go, sorry, but if you have not backed them up, and you are truely in Recovery mode, then you won't have any way to restore them.
    Are they in your Photo Stream in iCloud by any chance?
    If not, and you have to do a Recovery, then you won't be able to restore them from a backup.
    But if they were so important, why wouldn't you have backed them up?
    You cannot blame Apple for this. What if your phone had been stolen, or you had lost it? You would be in the same boat - you would lose your photos.
    So, two things:
    Are you sure your phone isn't just completing the update? Have you let it do it's thing for 20 or 30 minutes? If not, leave it alone and see if it is in the same condition in 30 minutes.
    If you have, then determine if you have those photos in your Photo Stream. If you do, then they should still be there when you restore your device and sign back onto iCloud.
    Cheers,
    GB

  • Need a solution on which page template to opt for my requirement..

    Hi Forum,
    I need a solution how to proceed with this requirement.
    I need a Two pages on my application
    First Page : It need to be displaying approx 7 to 10 cloumns of data from 5 tables based on QUERY1, out which one is the hyper link to the second page ( say JOBNUM as one of the column ). These data are located in a flat database.There are no PK in the tables. Once you click on the JOBNUM it needs to navigate to the second page displaying data based on a QUERY2 which runs with the JOBNUM we clicked and the clumns on the second page needs to be alligned as per my design. Example is shown below.
    DATA1 DATA2 DATA3
    DATA4
    DATA5 DATA6
    I started this by designing a FORM ON REPORT.
    The first page which is report is fine displaying data and I changes one of the columns JOBNUM on the first page to Hyperlink onto 2 page ( FORM ). But now I need some help from the forum how to generate that FORM page based on
    1) on a SQL query which runs on 5 tables
    2) and the JOBNUM selected as this JOBNUM is in those 5 tables
    and How to change the allignment of the cloumns on the form
    Thanks for your time and help in advance.
    Krishna.

    Krishna...
    When you ask about creating page two as a FORM page, are you wanting the ability to update the record(s) that are queried from those five tables? If so, you'll more than likely need to build the page by hand without using one of the wizard options that do all the DML for you. If you are updating information of just one of those tables, you should include the ROWID of the table you wish to update in your query since you said there is no PK on any of those tables. You can easy store the ROWID in a hidden item on the page. If you wish to update more than one table, you should include all of the ROWIDs of each table with different aliases. Then your page processing needs to be savvy to which columns were updated in order to perform update statements against each table individually using the appropriate ROWID.
    If you are not updating and simply want to display the information in a report region and the query on page 2 will be retrieving more than one record based on your JOBNUM parameter, you could look into using a custom region template that you build using a combination of standard HTML tags and special Application Express placeholder tags. An example of this is in the Aria People Search packaged application found at this link, http://www.oracle.com/technology/products/database/application_express/packaged_apps/packaged_apps.html, and look at (hopefully) page 2. There is a report region on one of the main pages that displays a lot of information about a person and uses a custom region template that positions the resulting columns of a query into specific locations in of a table. Not necessarily positioned exactly like how you want it, but the concept is the exact same -- you can use HTML [table] [table] syntax to put the results of your query into specific locations.
    Hopefully I have not completely misunderstood your request.
    Shane.

Maybe you are looking for