IN R12 -- HOW TO CREATE RECEIPT METHOD IN RECEIVABLES

IN R12 --> HOW TO CREATE RECEIPT METHOD IN RECEIVABLES
SET UP
RECEIPTS-------> RECEIPT CLASSES
I CREATED NEW RECEIPT CLASS AND NEW RECEIPT METHOD
WHEN CREATING NEW RECEIPT METHOD
BANK ACCOUNTS---------->
I AM ABLE TO SELECT THE DETAILS FOR THE FOLLOWING
1. OPERATING UNIT
2. BANK NAME
3. BRANCH NAME
4. EFFECTIVE DATES
5. CASH ACCOUNT
6. UNAPPLIED RECEIPTS
7. UNIDENTIFIED RECEIPTS
8. ON ACCOUNT RECEIPTS
BUT WHEN COMES TO THE
UNEARNED DISCOUNTS AND
EARNED DISCOUNTS I AM UNABLE TO GET LOV FOR THAT
IN THE SET UP----> SYSTEM OPTIONS ----> MISCELLANEOUS
I CHECKED THE CHECK BOX TO YES FOR
ALLOW UNEARNED DISCOUNTS
PLEASE GIVE SOLUTIONS FOR THIS
THANKS IN ADVANCE
PRINCE

Hi
Thank You Ketter Ohnes for Reply,
AR: Setup: Receipts: Receivable Activities
When i am doing above set up it is giving the following error.
PLEASE DEFINE A PARTY TAX PROFILE FOR OPERATING UNIT & ORG_ID
Thanks and Regards
Prince

Similar Messages

  • How do I receipt for goods received? I have already created my PO. Learning the three way match process.

    How do I receipt for goods received? I have already created my PO. Learning the three way match process. Navigations would be good.
    Thank You!

    Please visit following link.
    Procure to Pay (p2p) R12 - erpSchools

  • How to create a method in Interface Controller

    Hi Guys,
            I am working with webdynpro ABAP sample application "Component usage" . There i got a issue like i am not able to create a method in Interface controller. There i am not able to edit anything. Can anybody please let me know how to do that.
                Thanks In Advance
    Regards
    Ravikumar

    Hi Ravi,
              Check This
    If one Web Dynpro component (parent component) needs access to another Web
    Dynpro component (child component) the parent component can declare the use
    of the child component. A specific component usage instance is then created and
    the parent component accesses the functionality of the child component via its
    component interface controller.
    The only parts of a Web Dynpro component that are visible to the user, are the
    interface controller and the interface view(s).
    All Web Dynpro components have only one interface controller. Via the
    interface controller, data, methods, and event handlers can be exposed to
    other components.
    Interface views represent the visual interface of a Web Dynpro component.
    There is a one-to-one relationship between a Window and an interface view.
    Each time a window is defined, a related interface view is automatically
    generated, which makes the window accessible from outside the component.
    The interface view only exposes those inbound and outbound plugs to the
    component user that have the interface property checked. Methods and
    context data of the window are not accessible via the related interface view.
    If the component has no views, there is no need to have Windows. In this
    case, the component will not implement an interface view. Such components
    having no visual interface are known as faceless components.
    Regards
    Sarath

  • How to create a method with an interface parameter?

    Hi there.
    I would create a method with an interface parameter. I mean this:
    public interface MyInt {
        public void method(int i);
    public class SubClass implements MyInt {
        public void method(int i) {
            System.out.println("The number is: " + i);
    public class MainClass {
        public MainClass(MyInt inter) {
            inter.method(10);
        public static void main(String[] args) {
    (*)     new MainClass(new SubClass());
    }I tried to compile this but do not work (incompatible types on (*)) . Is it possible to do something like that or not?

    I compiled and runned this code on my machine and it works fine.
    How did you did to compile and run this code ?
    Did you put each code on its own file or all codes in the same file ?
    I did like this:
    I put each code in its own file and put all in the same dir, after I did:
    javac -classpath . MainClass.java
    After that, I did:
    java -classpath . MainClass
    I hope this help you
    Lucas

  • How to create a method for reading a file

    i tried to make it as static method for reading a file and
    then to return string
    is this code correct?
              public static String fileMaterial(String fileName)
                   fileReader = new BufferedReader(new FileReader(fileName));
                   info = fileReader.readLine();
                   while(school != null)     {                    
                        return info;
                        info = fileReader.readLine();

    I created a class you might want to look at. I come from a world of C and love fgets() and other FILE stream functions. I created a class that uses the Java I/O buts to the calling application behaves like fgets and such. The block of code where I do the calling in the calling program even looks like C. In my class I capture almost all errors and set error buffers to the errors. The calling program looks at the return to see if it succedded or errored.
    BuffIO new = BuffIO.fopen("fiilename", "r");
    String s;
    if((s = new.fgets()) == null)
    System.err.println("error reading file: " + new.ferror());
    That would be waht the calling program does

  • EBS R12 - How to create a Timecard

    Hello,
    I'm new to Oracle EBS R12.. I wanted to know the exact steps (including set up steps) for creating a timecard for our organization. It ll be really helpful if you can provide me with the exact step by step procedure. I have installed the Production Database of EBS R12 in my machine.
    Thanks in Advance.

    Please see these docs/links.
    Oracle 11i and R12 Human Resources (HRMS) Time And Labor (OTL) Timecard Configuration [ID 304340.1]
    Oracle Human Resources (HRMS) Time and Labor (OTL) Implementation and User Guide, Release 12 [ID 1070930.1]
    Release 12.1 Documentation Library
    http://download.oracle.com/docs/cd/B53825_03/current/html/docset.html
    Thanks,
    Hussein

  • R12: How to create Customer contact at party/account-site level

    Hello,
    I am working on a customer conversion where the legacy system stores customer contact at the address id (i.e. party site) level.
    Using various HZ APIs I have been able to create a party, customer account, location, party site, account site and account site use.
    Now, I want to create contacts at the party site or account site level. Which API is used to create a contact? (I found a note 985500.1 but it shows creation of contact point such as a phone number or email but not the contact itself).
    Any pointers appreciated.
    Manish

    HZ_PARTY_CONTACT_V2PUB

  • How to Create A Method that reads out JAVADOC form JAVASRC

    Hey everyone!
    I need to develop a Method that reads out the JavaDoc from A certain Javasrc-File.
    That method should look like this :
    String readJavaDoc(String MethodName, String src)
    So the first Parameter is the Name of the Method to witch the JavaDoc should be retrived.
    E.g. :
    String s = test.readJavaDoc("getName", "Foo.java");
    -> read out JavaDoc from Foo.java and retrive only Documentation to the Mehtod "getName()".
    Is this possible or somithing like this??
    Thanks for any help!
    P.S. Sorry for my bad english.

    I have a feeling that you didn't fully think this through. What do you do in case of overloaded methods? Which Javadoc do you return?
    Apart from that, it'd require either some text parsing, or you could try to find a library that can deal with Javadocs. I'm sure some like those exist. Google a little. You'll find stuff like this:
    http://java.sun.com/j2se/javadoc/faq/index.html

  • How to create multiple files with Receiver File Adapter in SAP PI 7.31 Java Stack

    Dear Friends,
    I am using Sender JDBC Adapter and Receiver File Adapter in Integration Flow in SAP PI 7.3 EHP 1 SP08 Java Stack environment. The requirement is that we need to create multiple files based on the row count in jdbc resultset. If there are 5 rows in resultset, we need to create 5 XML files with one row elements in one file. Similarly if there are 10 rows, we need to create 10 XML files.
    So how can we create multiple files in this scenario. I tried placing a for loop in the Java Mapping as below in the transform method:
    DynamicConfiguration conf = arg0.getDynamicConfiguration();
    StringBuffer sbFileData = new StringBuffer();
    for (int i =0; i < record.size(); i++ {
         . // Create XML for each row and Marshal the object into to the String Buffer
         String strFileName = "DC_" + new SimpleDateFormat("ddMMyyyyHHmm").format(new java.util.Date())+"_"+i+".xml";
         conf.put(KEY_FILENAME, strFileName);
         arg1.getOutputPayload().getOutputStream().write(sbFileData.toString().getBytes("UTF-8"));
         arg1.getOutputPayload().getOutputStream().flush();
    So here I'm flushing the OutputStream for each record. But it's not creating the multiple file, instead it creates only one file will all record XMLs appended to each other.
    Please let me know if I missing something or need to do some thing else.
    Regards,
    Shreyansh Shah

    Hi
    You can easily achieve this using graphical mapping.  Create your target message type like below
    MT_Target
      Details  0 to 1
          Data  0 to 1
    Source sample structure
    <resultset>
    <row>
    <column-name>column-value</ column-name>
    </row>
    Then do the message mapping like below
    map <row> with  MT_Target
    contant ----> Deatils
    column-name ------>Data
    In the signature tab of message mapping, choose the occurrence of your target message type as
    0 to unbounded.
    This will generate multiple files from multiple rows.
    Let me know if you have any doubt.

  • How to create  in the Interface controller of a component

    Hi  Gurus............
    Could any one tel  How to create a method  in the interface controller of component
    and  use that componet  into other  comoponent as  Used Contoller .
    I  Found  following  Tutorial  but it was not cleared  Description.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2e71ce83-0b01-0010-11a4-98c28a33195f
    Thanks in Advance.

    Hi all,
    My actual requirement is as follows..
    I have implemented some functionality in One component .
    Here I  want to create a new method in the interface controller, so that I should be able to access this method in another component by declaring this component as used component in another one.
    My problem is, I am unable to create new method in interface controller of my component,
    It is appearing i n 'disabled' mode.
    Can any one please suggest me the appropriate solution?
    Thanks in advance
    SivaKumar

  • NEED HELP!! creating a method to search records from a data.dat file

    i am having a lot of trouble trying to create a method for searching records from a data.dat file as a contacts application i am using (for) and (if) together and getting the same error messages saying a ")" is needed when it doesn't and illegal start of expression can anyone help! on letting me know how you create search methods! thanks

    public static void search_records()
              System.out.println("Please Enter a Surname (* for all):");
              user_surname = data_input.next();
              System.out.println("Please Enter a firstname (* for all):");
              user_firstname = data_input.next();
              for (int i = 0; i < number_of_records; i++)
                   if(user_surname.compareTo(lastName) || user_surname.compareTo(*));
                             if(user_firstname.compareTo(firstName[i]) || user_firstname.compareTo(*));
                                  system.out.print("Result:",number_of_records);

  • Web Services - How to create a websevice in XI/PI

    Hi,
    I have zero knowledge on webservices. Can someone help me understand what a webservice is and give me a step by step guide on how to create a sender and receiver webservice.
    Thanks in advance.
    Cheers,
    S

    Hi
    Search on SDN, you will get blogs and document.
    WebService is an application on the Web/Internet. Wheneever Service is requested by the user, it provides the service ( Request/Response)
    look some blog Create Web Service
    Using the SOAP inbound channel of the Integration Engine
    Web Service Senario
    RFC -> XI -> WebService - A Complete Walkthrough (Part 1)
    Invoke WebServices in XI
    Invoke Webservices using SAPXI
    WebService Scenario
    SYNCHRONOUS SOAP TO JDBC - END TO END WALKTHROUGH
    https://www.sdn.sap.com/irj/sdn/weblogsblog=/pub/wlg/7729
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d23cbe11-0d01-0010-5287-873a22024f79
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5474f19e-0701-0010-4eaa-97c4f78dbf9b

  • How to delete the automatically created receipt in the expense report

    Hi experts,
    I am getting an error "no expense type for estimated costs has been defined. cannot save" while creating a travel request for an employee.
    Base on the reply from Raynard which posted on Re: FM for  trip exp
    It's because "The estimated cost in plan and request are now included into fund management. So if you have active funds management, the entered estimated cost are used to make availability check and commitment. Therefore you must create an expense type in view V_T706B1. Under 'amounts are' you have to choose 'estimated cost, no reimbursement to employee'."
    How ever, because the linkage with funds management, I faced the problem and also ckecked out the reason from SAP Help that "After the trip takes place, the user needs to manually delete the automatically created receipt in the expense report."
    Anybody can provide the solution how to automatically delete this receipt before user create the expense report??
    Thanks
    Daniel

    Hi Francis,
    Check the BADI "TRIP_WEB_CHECK" method "USER_CHECK_GENERAL_DATA".
    Here based on the schema you can modify the "estimated cost" field.
    Hope it helps.
    Regards,
    Jyothi

  • How to create automatic receipts in ar

    hi,
    we created document sequence and assigned receipt method against it. And changed profile option to partially used. And create the Receipt Classes for automatic. While making the receipt it asking payment instrument. how to solve this error. Pls guide me.
    Regards,
    R.Carolin

    hi,
    Provide exact error message which you are getting.
    --Sri                                                                                                                                                                                               

  • How to Create MultiSheet Excel Report Output in XML Publisher in Oracle R12

    Dear All,
    How to Create MultiSheet Excel Report Output in XML Publisher in Oracle R12.
    My Requirement is to develop RTF Template and geneate Excel output in Multiple sheet.
    plz guide me on this..
    thnx
    Khushal

    plz see
    BI Publisher: How to create Multisheet in Single Excel file using Excel Template [ID 1352000.1]
    for r12 you can use excel template
    i think it more appropriate for excel output

Maybe you are looking for

  • Airport to DSL?

    I'm helping my son with his iMac (blue) slot loading G3 machine that is running 9.2 Verizon sold him a package for DSL that requires OS X to work. He his remote from home where he had been using MacWireless to Airport to cable for connectivity. Doesn

  • Will gradient issue 24" iMacs end up as refurbs?!

    I've just ordered a 24" 2.8ghz Extreme refurb here in the UK. Now having read various posts over the net regarding the gradient issues, I'm worried I'll be opening my new machine to find a dodgy screen. What is the likelihood that all the returned iM

  • How to check the element  in xml file by xpath

    hi all, * How to check the element in xml file by xpath for the following XML file, * I want to check whether the element (sage) is present or not in the following xml file XPATH expression... * I have tried by the following expression , NodeList res

  • ALV hierarchy header

    hi .. Abaper~ I have a question. I'd like to use the hierarchy header in ALV. For example. --no | name -| - part-- | | - |   position |  subpart---- |    1|- jake---|-senier -|accounting--|     2|miky|-junier---|recruting-----| isn't it possible? ple

  • Set cursor in subscreen

    Hi all, While validating a field on main screen, on error condition, is it possible to enable a particaular field in subscreen and set cursor on that?? Please let me know how to do that. Thanks, Keerthi.