Doubt with applying receipt

Hi all,
When we try to apply receipt for our transactions using receipts window,we have the option to apply the receipt to Credit Memos,*Debit Memo's* and our Invoice. Now,my doubt is.Is there any way where we could limit this so that i can apply my receipt only to Debit Memos.
Navigation:
Receivables Manager-->receipts-->Receipts
Before this i have created Credit Memo and Debit Memo for this Invoice.
Hope i am clear enough.
Any help is appreciated,
Thanks in advance!!

Hi.
Well, one way of achieving you goal is to use Forms Personalization. Each time a user chooses a transaction different from Debit Memo to apply the receipt, raise an error message and clear the record from the form. This is only one approach. Forms Personalization allow you to use different ways of achiving the same result using different methods.
Octavio

Similar Messages

  • Doubt with applying RUP 6 - running the Technology Stack Validation Utility

    Hi.
    I am following note 444524.1 in installing the RUP 6.
    On page 39, Section 5 Step 4, we are told, under "Applying this patch" :
    Oracle Applications Technoilogy Updates for 11.i.ATG_PF.H.delta.6 (RUP 6) contains a unified patch driver to be applied with AutoPatch. Please apply the driver file on all application tier server nodes"
    Then we are given the name of the driver.
    I am a little lost here - how do we verify we have this driver applied ? Do we apply this after the RUP ?? ? ?
    EBS 11.5.10
    AIX 5.2
    Oracle 9.2.0.8
    Well, it appears that this is part of the adpatch utility, though there is no mention of this in the document. With other patches, when adpatch is not required there is no mention of it. In this document there is no mention of it, and yet we need it.
    Edited by: Dan A on Dec 1, 2008 10:43 AM
    Edited by: Dan A on Dec 1, 2008 10:48 AM

    Dan,
    Simply, use adpatch to apply 11i.ATG_PF.H.delta.6 (RUP6) patch driver "u5903765.drv".

  • Doubt with index hint

    I have a doubt with applying the index hint to fire for multiple coulmns in a query.
    For a single column, it is ok like:-
    select /*+ index( ppbS_inv_sim_serial iss_status) */ item_type_id, status, city from
    ppbS_inv_sim_serial where status='IT';
    there is a problem with indexes firing in our database so this way, using hint, the
    indexes fire.
    But, what, if i want all 3 indexes in the query to fire like
    select count(1) from
    ppbS_inv_sim_serial where status='IT' and item_type_id='A2' and city='USA';
    I hope, my question is clear. Please, help i solving my doubt as it is urgent.
    regards.

    Fix the problem. Not the symptom.
    Using hints in SQL, especially production SQL, is a very poor way to address the problem and only fix the symptom for a period. Until the problem rears its head again and bite you in the butt - a lot more painful this time around.
    Solving performance problems start with Rule #1.
    RULE 1#. IDENTIFY THE PERFORMANCE PROBLEM
    Saying that something is slow, is not identifying the problem. The only way a problem can be solved is if you have at least some idea what the actual problem is.
    Identifying the problem will point to issues like:
    - database schema(s) not being analysed or analysed correctly
    - poorly designed and written SQL (often the case)
    - poorly configured Oracle instance
    - problem/bug(?) with the Oracle CBO
    And depending on the problem analysis, the problem can be CORRECTLY and COMPREHENSIVELY and PROPERLY addressed.
    Fixing symptoms? That is only moving the brick wall a bit further away. Allowing you to run even faster into it the next time around.

  • Apply Receipts and CM

    Hello all,
    We Have Oracle EBS R12.
    There are many invoices already entered to the application.
    There are more than 1000 Check (Receipts) already entered in the application, also there are 1000 Credit memo's Entered in the application.
    As there are no enough time to apply them one by one, Is there any thing (request, API ...) that can help in Applying those Receipts with invoices, and those
    Credit Memo's with invoices.
    As for applying receipts with invoice i tried the following procedure but it there are problem when applying 1 receipt with more than invoices, example
    receipt = 7000, invoice1=5000, invoice2= 3000. It apply 5000 with invoice1, but the remaining = 2000 doesn't apply with invoice2.
    CREATE OR REPLACE PROCEDURE xx_ar_receipt_apply_b (
    cr_rec_id IN NUMBER,
    rec_amount IN NUMBER,
    rec_no IN VARCHAR2,
    cus_id IN NUMBER
    AS
    l_return_status VARCHAR2 (1);
    l_installment NUMBER;
    l_msg_count NUMBER;
    l_msg_data VARCHAR2 (240);
    cash_receipt_id NUMBER;
    inv_no NUMBER;
    inv_date DATE;
    inv_amount NUMBER;
    new_amt NUMBER;
    rec_amt NUMBER;
    payment_id NUMBER;
    --- Define cursor c ---------
    CURSOR c
    IS
    SELECT ct.trx_number inv_no, rac.amount_due_remaining inv_amount,
    rac.payment_schedule_id payment_id, ct.trx_date inv_date,
    rac.terms_sequence_number l_installment
    FROM ar_payment_schedules_all rac, ra_customer_trx_all ct
    WHERE rac.customer_trx_id = ct.customer_trx_id
    AND ct.bill_to_customer_id = cus_id
    AND RAC.CLASS = 'INV'
    AND rac.amount_due_remaining > 0
    ORDER BY ct.trx_date, rac.payment_schedule_id;
    BEGIN
    DBMS_APPLICATION_INFO.set_client_info (102);
    fnd_global.apps_initialize (1374, 20678, 222);
    mo_global.init ('AR');
    mo_global.set_policy_context ('S', 102);
    new_amt := 1000;
    FOR REC_INV IN C
    LOOP
    IF new_amt > REC_INV.inv_amount
    THEN
    BEGIN
    ar_receipt_api_pub.APPLY
    (p_api_version => 1.0,
    p_init_msg_list => fnd_api.g_true,
    p_commit => fnd_api.g_true,
    p_validation_level => fnd_api.g_valid_level_full,
    x_return_status => l_return_status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data,
    p_receipt_number => rec_no,
    p_cash_receipt_id => cr_rec_id,
    p_trx_number => REC_INV.inv_no,
    p_amount_applied => REC_INV.inv_amount,
    p_installment => REC_INV.l_installment,
    p_applied_payment_schedule_id => REC_INV.payment_id
    new_amt := new_amt - inv_amount;
    END;
    END IF;
    IF new_amt <= REC_INV.inv_amount
    THEN
    BEGIN
    ar_receipt_api_pub.APPLY
    (p_api_version => 1.0,
    p_init_msg_list => fnd_api.g_true,
    p_commit => fnd_api.g_true,
    p_validation_level => fnd_api.g_valid_level_full,
    x_return_status => l_return_status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data,
    p_receipt_number => rec_no,
    p_cash_receipt_id => cr_rec_id,
    p_trx_number => REC_INV.inv_no,
    p_amount_applied => new_amt,
    p_installment => REC_INV.l_installment,
    p_applied_payment_schedule_id => REC_INV.payment_id
    new_amt := 0;
    END;
    END IF;
    IF new_amt = 0
    THEN
    EXIT;
    END IF;
    END LOOP;
    END LOOP;
    END IF;
    arp_standard.disable_debug;
    END;
    Thanks in advance.
    Edited by: 858923 on May 14, 2011 12:56 PM

    how do you create your receipt? if you are using lockbox, you can specify invoice number(s) so that the receipt will be applied to the invoices after creation.

  • Doubt with alter system

    I have the doubt with the statement like :
    SQL> alter system set OPTIMIZER_FEATURES_ENABLE=8.1.7 scope=both;
    is going to permanently alter the system or for that particular instance or session. I mean is it done once or everytime in a new session. Also, how to see the currect value of this parameter, I mean how to query it?
    I hope, my question is clear.
    Please, help in solving the doubt.
    regards

    user574290 wrote:
    I have the doubt with the statement like :
    SQL> alter system set OPTIMIZER_FEATURES_ENABLE=8.1.7 scope=both;
    is going to permanently alter the system or for that particular instance or session. I mean is it done once or everytime in a new session. Also, how to see the currect value of this parameter, I mean how to query it?
    I hope, my question is clear. Well, here is what alter system about SPFILE is
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#sthref445
    From it,
    >
    SCOPE = BOTH     The change is applied in both the server parameter file and memory. The effect is as follows:
    For dynamic parameters, the effect is immediate and persistent.
    For static parameters, this specification is not allowed.>
    So this setting will persist across the session logon and log off.
    Suggestion, its good to check oracle docs, choke full of useful info.
    HTH
    Aman....

  • Apply Receipt against Invoice through Auto Invoice Program

    Please explain how to accomplish this process - Apply Receipt against Invoice through AutoInvoice Program.
    Regards,
    Abhishek

    I would check to see if you have any corresponding records in ra_interface_distributions_all.
    If you are populating ra_interface_distributions_all with gl code combination data, whatever you populate in this table will take precedence over your Auto Accounting rule.
    Regards,
    James Kim.

  • Receipt Qty in AP invoice does not match with actual receipt qty.

    Hello everyone,
    I am facing an issue in oracle Payables module. When we match invoice with receipt while preparing invoices, Quantity received shown in the Receipt quantity block in invoice window does not match with actual receipt quantity of that item. Due to this difference user is not able to book the invoice. Please help me to resolve this issue.
    Thanks,
    Himanshu Gupta

    Exactly. What i mean is in the invoice window, There is a block called reciept quantity shown in the lower part. The received quantity displayed in that block is more the actual quantity being recieved. (when we see the recieving transactions). is this a bug?
    thanks for your reply, awaiting your response......
    Himanshu Gupta

  • Report to Purchase Orders with Good Receipt and pending for Invioce Receipt

    Hello,
    I'm looking a report bring me Purchase Orders with Goods Receipt and waiting for Invioce Verificacion (MIRO).
    I appreciate any help.
    Regards,
    Hector

    Hi,
    ME2N - In selection screen, enter Selection parameters as
    WE102 i.e. Goods receipt exists and in output screen put a filter on "Still to be invoiced (qty)" and "Still to be invoiced (val.)" as not equal to zero OR greater than Zero.
    OR use RECHNUNG i.e. Open invoices and execute the report
    OR Use MB5S - GR/IR Balances

  • Applied Receipts Register Report in AR - RXi Report

    Hi Fincon,
    I have a client requirement wherein we need to customize the Applied Receipts register report in AR. After analyzing program andd the executable we discovered that the report is an RXi report spawned from a plsql program.
    From the SQL Trace analysis, we found that the report is not doing anything different from what a normal rdf report would do. Can someone throw me any lights on why is this report an RXi report? Has anybody done any customizations on this report? Were there any challenges in customizing this report? How was the customization of this RXi report done?
    Thanks.
    Srini.

    This has to be customized using :Oracle Financials RXi Reports Administration Tool, but it's not that flexible.
    http://download-east.oracle.com/docs/cd/B25516_11/current/acrobat/115finrxi.pdf

  • Price change for material with Goods Receipt with out Order reference?

    hi all,
    Our client company have some finished products produced from raw materials. But we are not using Production planning module. So in MM we are receiving these products with Goods receipt with out order reference(521).
    The issue is, the price for this product will change monthly. This new price will affect the existing stock as moving average price calculation.
    ex:
                                     Quantity             Price             Value
    Stock balanace        100To                 2.00/To         200 
    Newly produced      100To                 2.20/To         220   
    after the GRN for newly produced is done. The price also need to change as below.
    Total                         200To                 2.10/To         420
    This is easy if we receive goods with PO price, as moving average price will updae in the master record.
    But here no reference. So only quantity updated with existing price. 
    So how to achieve the change of price ? Please help.
    Thanks,
    Aravind

    Hi Bijay,
    Thanks for the reply. I will use the posting method suggested by you.
    but how you are arriving  newly produced material quantity & price!
    The reply for your comment is,
    Every month My client company revise the price of the produced material based on various factors including the
    raw material purchase cost.
    The price will be fixed for the whole month.
    While posting the GRN, the accounts updated are,
    Dr  Material account
    Cr Production Cost
    Please let me know what you have asked is answered or not.
    So that i can brief more. This is my initial project. So your feedback is very helpful to me.
    Thanks,
    Aravind

  • Report with goods receipt value and invoice posting value

    Is there any standard report with goods receipt value and invoice value (the value with which invoice is posted.

    Hi
    Please check MC$4 transaction, mey be helpful.
    regards
    Srinivas

  • Doubt with creation of Model in the application Webdynpro Java

    Good Morning,
    I have the following doubts with the fields when i am creating a models in WebDynpro Java
    Model Package
    Source Fólder
    Default logical system name for model instances
    Default logical system name for RFC metadata
    Logical Dictionary
    Dictionary Type Package.
    Can Help me?
    Kind Regards

    Hi,
        Please check this link:
    [https://wiki.sdn.sap.com/wiki/display/WDJava/FAQ%20-%20Models%20-%20Adaptive%20Web%20Service]
    Thanks and Regards

  • Charge off difference whening clearing customer open item with bank receipt

    Hi,
    Our company users will use F-32 to clear customer open item with bank receipt, sometimes, our invoice is 100 RMB issue to customer, the customer finally pay 99.98, then in F-32, we use charge off difference to post 0.02 difference to a account.
    The user then want to control this, saying for example, if the customer pay only 90, whening using charge off differnce, the system will pop up a error message.
    Can this be done in SAP, or we need to use user exit, then which user exit?
    Thanks.

    Dear,
    This is done through customer tolerance group using transaction OBA3. Here enter the maximum amount in Loss under the Permitted Payment Differences. you are able to hold tolerance for customer clearing.
    Is this what you wanted?
    Regards,
    Chintan Joshi.

  • Problem with applying fills & strokes to grouped objects in Illustrator CC

    I have this problem that I deal with everyday & I can't figure out how to fix it.
    I am always struggling with applying fills & strokes (or changing fills & strokes).
    It seems like I always have to ungroup the objects first (even if I never grouped them in the first place), or I have to clear appearance first. Sometimes I have to ungroup several times, even if it is only one object by itself, not grouped with anything else.
    I think It may have something to do with the pathfinder... like the pathfinder is creating groups when I use the divide filter.
    Even when I use the direct selection tool, to select just the object I want, it wont let me apply the fill or stroke that I want.
    Also, it seems like it has several layers of appearance... when I ungroup the object, it changes appearance (the fill or stroke changes).
    Also, if I eyedrop the object to apply its appearance to another object, the "hidden" appearance is the one that gets appled to the new object.
    The closest discussion I could find was about compound paths, but I think this is a different issue, because when I go to compound paths in the menu, it doesn't give me the option to release anythig.
    I have this problem ALL DAY LONG, every day. Please help!!

    Thanks for your reply!
    I see what you are saying, and I think is some cases that could be a helpful trick - but the problem I'm having is slighlty different.
    The object that I want to change doesn't show the actual appearance... it only shows its underlying appearance after ungrouping several times, and then when it is completely ungrouped, it visibly changes to another fill & stroke. This happens even when the object is not grouped with anything... it is just grouped to itself i guess & I am not grouping these items, they just become grouped somehow - I think because of the pathfinder. I often have to ungroup 3-5 times, which is a hassle in iteself... but sometimes I actually need to grouping to keep items togther so I can manage all the ojects & move them around as needed.
    So... the method you are suggesting could possibly solve the issue, except I don't know what the fill & stroke is until I ungroup everything, so I can't create the swatch off to the side to match it. The other thing is, it seems like I would be creating a lot of swatches, since I use lots of different fills & it seems like it would be a lot of extra work.
    Here is an example of 2 objects before using the pathfinder. Please note how the object selected & the fill & stroke boxes all jive:
    Now here are two images after using the pathfinder tool (I added another object to get the problme to happen). Please note how the fill & stroke boxes do not match the objects selected:
    This is what happens when I try to change the fill to green (the fill does not apply):
    I thought it had something to do with compound paths, but as you can see below, the menu doesn't give me an option to release compound paths:
    The final image is what happens after I ungroup the objects:
    I don't understand:
    1) why pathfinder is grouping these objects
    2) why the strokes & fills change & why the fill & stroke boxes don't match the actual fill & stroke.
    3) why I can't change the fill or stroke without ungrouping (even when using the direct selection tool).
    4) why the fill & stroke change again after ungrouping

  • Struggling with Applying Cell refences of formulas to multiple cells

    Probably a basic question- I am new to Numbers.
    Ive been struggling for ages with applying a formula or cell reference to more than one cell at a time. If I select multiple cells (shift or command clicking them) - then I am unable to create a new 'Cell References'. Pressing the equals = sign merely gives me an error sound. And the formula bar is not accessible
    I have been struggling with this on and off now for about a week. Help - well it doesn't help and implies that I am doing the right thing, but it is not working. - Please help

    marky3 wrote:
    I ve been struggling for ages with applying a formula or cell reference to more than one cell at a time. If I select multiple cells (shift or command clicking them) - then I am unable to create a new 'Cell References'. Pressing the equals = sign merely gives me an error sound. And the formula bar is not accessible
    I have been struggling with this on and off now for about a week. Help - well it doesn't help and implies that I am doing the right thing, but it is not working. - Please help
    A better use for your time was to read carefully *Numbers User Guide* and *iWork Formulas and Fucnctions User Guide*.
    We may insert a reference to a range of cells in a cell's formula but we can't insert a formula in several cells with a single task.
    The correct protocol is :
    insert the formula in the first cell of the range then use the fill down (or fill up or fill to the right or fill to the left) feature.
    Yvan KOENIG (VALLAURIS, France) dimanche 21 février 2010 22:21:40

Maybe you are looking for

  • Game Center Question about WiFi

    Does anyone know if you can play games with someone connected to the same WiFi as you? I've read about port forwarding requirements and that seems to indicate you cannot since you can't forward a port to multiple IPs. I have tried to paly a game with

  • Need help generating an rss feed via jsp

    this is ridiculous, but i cannot get my jsp to generate rss feed code. i am querying my database for stories, then displaying the various fields within the rss xml codes. the page either refuses to load altogether or displays the content as one run-o

  • ITunes Windows/Mac Sharing

    I have two machines: one Mac (Leopard), one Windows XP (SP3). I have recently updated iTunes on both machines to 9.2. Previously I could see the Mac's shared library on my Windows PC (using iTunes 8 on the PC, 9-something on the Mac). Now I cannot. O

  • Helix only works with external power

    Hello Just received my Helix and I have some issue, one of the biggest issue so far is that it will only power up and stay on with external power, when I dock it it works fine, if I undock it it will shut down, if I plug the power cord to the tablet

  • Delete on the basis of date

    Hi All, I need to delete data from a table based on a date column. If the date in DATE column is 180 days old than current sysdate then it should delete otherwise not. So i found out below two ways 1. Use sysdate-tab_date >180 in where clause 2. Use