Difference between F1 & F2 billing types

hi,
can any body explain the difference between
F1 & F2
Billing types
regards
balaji.t

Normally F1 is called Order related Billing type whereas F2 is called Delivery related Billing type.
You can also create both F1 nad F2 type of billing from LF.
If , F1 TYPE OF BILLING IS CREATED FROM lf, THEN PRICE IS RE-RUN, that means it considers latest price but not in F2 billing type in standard settings.
This is controlled from the copy control table.
Normally, from F2 type of Billing document DR type of Accounting document is created,
from Billing type G2, Accounting document type DG iscreated and from L2 type of Billing document, NN type of Accounting document is created in FI.
These accounting documents can be identified by their Number range also.
If the "Document Type" fIeld is blank in the Billing type (VOFA), then it may be any Billing document system will create accounting document under Document Type "RV", irrespective of the Billing type.

Similar Messages

  • Difference between invoice and billing document

    Hi ,
    As an ABAPer , I am finding it very difficult to find the difference between the billing and invoice.
    If both are different, then how these documents are configured.
    thanks
    Devi Reddy

    Hi,
    No difference between invoice and billing document.
    But If we want to inform the payable to the customer we use the terminalogy invoice.
    Example Credit meomo, debit memo. etc ...
    As there is no difference , both have the same document types.
    thanks
    Kuntla

  • Difference between fully-specified data types. and generic types

    Hi,
    Can anyone tell me the difference between fully-specified data types and generic types.
    Thanks in advance.
    Regards,
    P.S.

    HI
    Generic table types
    INDEX TABLE
    For creating a generic table type with index access.
    ANY TABLE
    For creating a fully-generic table type.
    Data types defined using generic types can currently only be used for field symbols and for interface parameters in procedures . The generic type INDEX TABLEincludes standard tables and sorted tables. These are the two table types for which index access is allowed. You cannot pass hashed tables to field symbols or interface parameters defined in this way. The generic type ANY TABLE can represent any table. You can pass tables of all three types to field symbols and interface parameters defined in this way. However, these field symbols and parameters will then only allow operations that are possible for all tables, that is, index operations are not allowed.
    Fully-Specified Table Types
    STANDARD TABLE or TABLE
    For creating standard tables.
    SORTED TABLE
    For creating sorted tables.
    HASHED TABLE
    For creating hashed tables.
    Fully-specified table types determine how the system will access the entries in the table in key operations. It uses a linear search for standard tables, a binary search for sorted tables, and a search using a hash algorithm for hashed tables.
    Fully-specified table types determine how the system will access the entries in the table in key operations. It uses a linear search for standard tables, a binary search for sorted tables, and a search using a hash algorithm for hashed tables.
    see this link
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb366d358411d1829f0000e829fbfe/content.htm
    <b>Reward if usefull</b>

  • Difference between Mb1b 541 Mov type and ME2O

    Hi,
    I want to know difference between Mb1b 541 Mov type and ME2O.
    Thanks and regards
    Gitesh

    Hi,
    ME20 has 2 options one to directly transfer, that is without delivery.  And, anotehr is with delivery.
    Option 1 will create a material document in ME20 transaction.
    With option 2 it will create a delivery note.   you have issue the material in vl02n if delivery note is created and then material documetn will get generated.
    regards
    alexandro.

  • Whats the difference between RFC destination of type "HTTP" and "TCP/IP"

    Hi Folks,
    I want to know the difference between RFC destination of type "H" and "T".
    In what instances/tasks we would use them?
    Looking forward for your valuable answers...
    Cheers,
    Ram.

    Type of RFC connection.
    By entering the type of RFC connection, you specify the communication method (TCP or SNA) and the logon type in the target sys
    Type T (TCP/IP) destinations are connections to external programs that use the RFC API to receive 'Remote Function Calls'. You must specify the host name and the pathname of the program to be started. The communication method depends on how you select the program location.
    Type H is the HTTP connection to R/3 system
    Type G is the HTTP Connection to external server

  • Difference between 122 & 102 movement types

    Hi All SAP experts,
    I have done 101 movement type with incorrect rate.
    So i used 122 mov type for cancellation & then again have done 101 mov type with correct rate.
    But accounting entries are going wrong in GI/IR account related with frieght,issurance & octroi.
    The same GI/IR entries are passing in 122 mov type.
    For GR reversal 102 is standerd one. ?????
    If yes what is exact difference between 102 & 122 mov types in accounting view.
    Please help me out.
    Thanks in advance.
    Regards
    Gitesh

    Jürgen L.  ,
    Ok fine but in case of frieght how both 122 & 102 works.(gi/ir account)
    In migo (122) GI/Ir account is not hitted properly.
    It debiting for two times in case of fright a/c.
    Where as material gi/ir a/csa are hitting properly
    Thanks once again

  • Difference between Table and Table Type

    Hi
       Can you please let me know the
    Difference between Table and Table Type and
    Difference between Structure and Table Type?
    Regards,
    Sree

    hi,
    table is a data dictionary object in sap. table is of different types
    1. transparent tables
    2. pool tables
    3. cluster tables
    table type gives option for u to select different types of internal tables. they r
    1. standard table
    2. sorted table
    3. hash table
    Structures :
    -Defined like a table and can then be addressed from ABAP programs.
    -Structures contain data only during the runtime of a program.
    -Just like user-defined data type.
    - they are not present in database server and only on application server.
    if helpful reward some points.
    with regards,
    Suresh Aluri.

  • Purchasing - Difference Between Organisation Classification and type?

    Hi All,
    Whilst setting purchase organisation i was curious to know what is the difference between organisation type and organisation classification when creating organisation within Purchasing?
    Any useful explanation will be welcomed

    Hi Lavanya,
    this choice boils down to the XML definition of Type an Element.
    A type is not something concrete; meaning that it is merely a definition. You'll always need something of that type to put data in. In other words; if I only have a type, I'll need to create an element that is of that type in order to have something to work with.
    For the messages it comes down to this: say, I've declared a type by the name of
    <complexType name="arbitraryType">
    <sequence>
    <element name="contentGoesHere"/>
    </sequence>
    </complexType>
    If I make the message of this type: it will look like this:
    <MessageName>
    <payload>
    <contentGoesHere>
    </payload>
    </MessageName>
    If I define an element as following:
    <element name="arbitraryElement">
    <complexType>
    <sequence>
    <element name="contentGoesHere"/>
    </sequence>
    </complexType>
    </element>
    and I put it in the message, it will look like this:
    <MessageName>
    <payload>
    <arbitraryElement>
    <contentGoesHere/>
    </arbitraryElement>
    </payload>
    </MessageName>
    Hope this clears up a little. Refer to w3.org for an exact definition of the two.
    Cheers,
    André

  • Difference between Pro-forma & billing doc.

    Dear all,
    I wanna know the differnce between pro-forma & billing Doc. ,as i heard that pro-forma do not update the accounts.
    So what iz the actual scenario,waiting for reply,
    Thanks & Regards,
    Olet Malla..

    Dear Olet,
    As you already told, proforma invoice will not create the accounting entries.
    Requirement for Proforma invoice may differs.
    One requirement is to intimate the customer to settle an advance payment. While making the payment, customer wants to see the sample bill for which he is going to make payment. So he demands proforma invoice.
    Another requirement is to have a document while freight forwarders carry the materials. An invoice or Proforma invoice should be accompanied. This is the legal requirement.
    Another requirement to have proforma while Stock Transport Order.
    Regards,
    Mullairaja

  • Query on differences between table Icons and types in smartforms

    Hello,
    I have a question regarding the apparent differences between tables in smartforms.
    I have noticed on some of the default smartforms that are supplied the table icon is the same as on the
    'Create new session' button at the top of a Sap session window. The icon on a table that I am currently working on is like a 'spread sheet' design, a heading with columns, as shown in the current documentation. The way the  two styles of tables work is different.
    Is the difference down to the fact one was created in an older implementation of Sap?
    The reason I ask is because the table I refered to initially, is easier when configuring cells.
    Regards
    Mike.

    Hello Karthik
    Thanks for taking the time to reply to my question.
    The difference in the icons but with essentially the same function has always confused me since starting Smartforms.
    Thank you for enlightening me.
    I asked the question because the Complex node has a feature that I could have used. I have managed though to solve my problem using a table node.
    Ten points awarded.
    Best Regards
    Mike Spear.

  • What's the difference between text and value type for SO item category?

    Dears,
    Could anybody help me on this question?
    Many thanks!
    Regards,
    Shiliang

    Hi Shiliang,
    In a Bill Of Material the main item is a  composite item which represents what is being sold to the customer. For eg. a computer typically would consist of Monitor, Keyboard,mouse and CPU, speakers. Here computer refers the collection of all these items which are physically existing and basically items present in our inventory ( Value Items ). Where as computer is just a text item meant to describe the collection.
    Also to add the for Usage we use it as text sometimes, which is used to say the item has been authenticated by the quality dept and we print " Tested " on it or these days all the items come out with unique article numbers for identification purpose. So we use this usage as text.
    Hope it adds. Pl reward if useful.
    Thanks & Regards
    Sadhu Kishore

  • What is the difference between  Process Type TRIGGER AND CHAIN

    What is the difference between these two process types.  When I am looking process types, I want to provide information only about process chains and not individual steps of process chain. Looks like one can do using either.
    Along the same line, I am looking  at  data from RSPCPROCESSLOG, no where this table has a column process chain id. So How od I find information about a process chain.
    Thanks a lot,

    A "Chain Process" can be a a step in a Process Chain as well.    For Example: So you could have the following Process Chain:
    Process Chain Example
    Step 1. TRIGGER (Execute Daily at 4am)
    Step 2. DTP_LOAD Execute DSO Load
    Step 3. DTP_LOAD Execute InfoCube Load
    Step 4. CHAIN Execute Master Data Process Chain
    I believe the "Master Chain" is called a "MetaChain" since it controls the start of another Process Chain.
    Hope that helps...

  • Difference between types of plan data

    Hi Friends,
    BPS
    1. Cost Center Planning: Costs and Allocations
    2. Cost Center Planning: Activity Type Prices
    3. Cost Center Planning: Cost Center/Activity Type Prices
    4. Cost Center Planning: Cost Driver
    For the above types of data, I like to understand what is the difference them.
    For type 1, I understand it is for primary costs.
    For type 2 and 3 they are related / same type of data. So what is the difference between them?
    For type 3, seems like combo of types 1 and 2.
    For type 4, I am not sure what it is about.
    Questions I have:
    <b>1</b>. Why is it only primary costs. Where is secondary costs?
    <b>2</b>. Type 1 costs is identified by cost elements of costs centers. But type 2 is by activity, quantity and rates ( i think). And costs calculated. So, is this type of cost outside the cost calculation of type 1 such that to get wholistic cost picture, need to add types 1 and 2 at least? Thus, are they mutually exclusive.
    <b>3</b>. Now, how does the same apply to type 4?
    <b>4</b>. What is the purpose of type 3?
    Hope you could advise me friends
    Regards
    Michael

    Hello Michael,
    Different types of CO planning relate to how an organization is using SAP Controlling functionalities. Activity represent typically internal labor/machine provided by one department (cost center) to a production order, project network etc. depending on the type of organization (production activities or project-driven operation etc.). Activity price would set per cost center for time of periods (months), representing standard price for valuation of actitivities.
    More CO documentation attached:
    http://help.sap.com/saphelp_erp2005/helpdata/en/dd/4298375ae2f84ae10000009b38f8cf/content.htm
    Regards
    Auvo Ahola

  • Billing Type Difference

    Dear Friends
        I want to know what is different between "Delivery-Related Billing Type" and "Order Related Billing Type"? in VOV8 and What is the effects in business process.
    Regards
    Arun

    Hi Arun,
    Let me give 2 scenarios here:
    Scenario 1 - Cash sales
    In cash sales scenario, customer will take the goods from you and pay you at the same time. In this case, you do not have to deliver the goods to your customer at a later date.
    For this case, in the standard system, we bill the customer based on the sales order document and not the delivery document. We call it order-related billing.
    Scenario 2 - Standard sales
    This is the normal sales scenario. Customer order goods from you. Later you deliver the goods to your customer and then bill your customer according to the delivery document. This is what we call delivery-related billing.
    When you are configuring the sales document type in VOV8, you can set the "default billing type" for order-related and/or delivery-related billing for a specific sales document type.
    For example, for scenario 2, let's say you have set "F2" as the default delivery-related billing type in VOV8 for sales document type, "OR".
    When you are creating a billing document with reference to sales document type, "OR" the system will use "F2" as the default billing type. However, you can still change the billing type if you want during billing document creation.
    Hope this helps
    Appreciate if points are rewarded if you find this useful
    Regards,
    Nicole

  • Difference between Association Types for Log Destinations

    In the documentation you can read: Use the Association Type dropdown box to select the required type: LOG, PRIVATE_LOG, or LOCAL_LOG. But what is the difference between these three association types. Could someone explain this things.
    Best Regards
    Manfred

    Hi Manfred,
    have a look at <a href="http://help.sap.com/saphelp_nw04/helpdata/en/c7/7ee3df9433ee4f867ce7d61941c594/frameset.htm">this</a> page in the documentation. Seems like those properties determine inheritance of messages from child objects.
    hope that helps a bit!

Maybe you are looking for

  • Pc phone connection?

    Hello, I'm currently developing a music-server-application that should work togehter with my phone. The server is run on a computer with a usb-bluetooth-dongle(Cubix). My phone is a SonyEricsson S700i (without JSR-82 Bluetooth). To the phone I will w

  • Startup issue - Managed Server Soa_server1

    Hi, Can anyone share your expertise on the following as I am getting this error When I try to start soa_server1 by startManagedWebllogic.cmd on win 32bit. Thanks in advance, Prasad. starting weblogic with Java version: java version "1.6.0_29" Java(TM

  • How can I upload DS2 recording to MACbook pro?

    Olympus DS2 is not supported by Lion; how can I upload things I've recorded on DS2 player to my Macbook Pro?

  • Registrierung der Fireworks Upgrade Seriennummer ist nicht gültig

    Registrierung der Fireworks Upgrade Seriennummer (CS5->CS6) ist nicht gültig (Aktivierung von Fireworks CS6 hat funktioniert).

  • DEFAULT option of ACCEPT command doesn't work

    Hello, I'm using the ACCEPT command to prompt for input for substitution variables. The ACCEPT command has a DEFAULT option that lets you specify a default value so the user doesn't have to enter one every time. Here's the syntax of the ACCEPT comman