Single Cheque for Multiple Business Area

Hi Experts
How can I print one cheque for multiple business area with the option of printing different cheques still remaining?
Thanks
Nadia

Hi Nadia.....If Iam not mistaken you DONOT want to make Separate Payments for each Business Area.
In such a case donot select the checkbox Separate Payments for Business Area -FBZP--Paying Company code customisation.
If this indicator is set, line items from different business areas are paid separately.
Hope Iam clear about this.
Please assign points if helpful
Regards
Aravind

Similar Messages

  • Single Trip number range for multiple personal areas

    Hi,
    Can any expert suggest me whether can we use single trip number range for multiple personal areas.
    Thanks
    Srinivas

    Dear Srinivas,
    This can be done. Please follow the below logic.
    Create a new implementation (enhancement) in BADI  =TRIP_WEB_NUMBER
    Method = USER_EXIT_NUMBER_INTERNAL
    with the below codes.
    DATA:        LV_ZZTRIPTYPE TYPE PTRV_HEAD-ZZTRIPTYPE,
                         LV_CCLAND TYPE BUKRS,
                         LV_LAND TYPE T001-LAND1.
    Fetch the company code from the data inputed.
          SELECT SINGLE LAND1
           FROM     T001
           INTO     LV_CCLAND
           WHERE    BUKRS = ORGANIZATIONAL_ASSIGNMENT-BUKRS.
    IMPORT TRIP_HEADER-ZZTRIPTYPE  TO  LV_ZZTRIPTYPE FROM MEMORY ID 'ABC'.
      CASE ORGANIZATIONAL_ASSIGNMENT-BUKRS+0(2).
             CONCATENATE ORGANIZATIONAL_ASSIGNMENT-BUKRS+0(2) '01' INTO NUMBER_SUBOBJECT .
      ENDCASE.
    NUMBER_RANGE = 'Pass the number range'.
    This is an example on how this will work. Please modify accordingly for your company.
    Edited by: Rajagopalan Kannan on Jun 6, 2011 3:08 PM
    Edited by: Rajagopalan Kannan on Jun 6, 2011 3:11 PM

  • Single invoice for multiple payment terms

    Hi Friends,
    I have given 2 different payment terms for 2 line items in single order and the billing is splitted due to this reason. I want to know where the system is checking this control. Because I want to create single Invoive even the payment terms are different. (The routine 003 under Data VBRK/VBRP in SO to Bill copy controls will be usefull only to create single Invoice for multiple SO's where the payment terms is same). But I need to create single Invoice even for multiple payment terms.
    Can anyone suggest me at the earliest please.
    Kumar

    Hi Kumar,
    The Billing Split is take care at Copy control level.
    For multiple line items in one single SO, with different Payment terms is not acceptable as per the  business logic and its not best practices.
    Please suggest the business to go on Split method only.
    Or
    Try to use Proforma Invoice Concept.
    Regards
    Srini

  • Single-signon for multiple sites or sub sites

    Does anyone know of some good articles/publications or suggestions for
    implementing a single signon for multiple very secure internet sites in
    weblogic type environments.
    For example, bank1 has a internet site and bank 2 has an internet site.
    Bank 2 has some cool features they want to offer bank1's customers. They
    agree but, bank1 wants to present bank2 as a tab or part of bank1 site.
    IN order to do this there are lots of fun things, but the things Im
    interested in are how to authenticate between them and handle timeouts.
    timeouts seem particularly tricky in that if I dont hit a page on bank2
    for a while, it could time out its session for the guy on bank1. Also if
    im in the bank2 section of the site, then bank1 could time me out as
    well.
    any ideas let me know.
    thanks
    Joel

    I've been informed ;-) that a pure Java solution is also available from
    Entegrity. So here are a couple of URLs for you to research
    anagrammatically:
    http://www.netegrity.com
    http://www.entegrity.com
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com
    Tangosol: How Weblogic applications are customized
    "Cameron Purdy" <[email protected]> wrote in message
    news:[email protected]...
    Netegrity?
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com
    Tangosol: How Weblogic applications are customized
    "Tim Funk" <[email protected]> wrote in message
    news:[email protected]...
    This is long winded and I tried to have this make sense, if it doesn't
    just mark this as read ...
    I am running into the same issue. Out of need, different applications
    need to be hosted on different boxes/JVM's/web applications. I am
    experimenting with a customer single sign on process which is
    independent of Java but lends itself nicely to it. Here is my thoughts:
    1) All applications need to run under the same domain. For example:
    foo.redrose.net, www.redrose.net, bar.redrose.net, app1.redrose.net
    all reside under redose.net.
    2) You have a database table (secure) that contains the following:
    user id, password, session id, last access time.
    3) This database table contains all of the valid sessions across the
    domain (in this exmaple .redrose.net)
    4) There is a daemon running which runs every ?? seconds that deletes
    any records older than ?? seconds/(or minutes/hours) in the
    database.
    5) There exist a cookie which is set to the domain level that contains
    the session id.
    6) The session id provides a way to obtain the id and password for the
    user to authenticate to the container. For example in WL5.1SP8 there
    exists: weblogic.servlet.security.ServletAuthentication.weak(...) to
    authenticate to your container. By using this you will get the
    capability of setting up your roles and ACLS etc in you web.xml and
    weblogic.xml to handle authorization.
    7) All requests to any applications participating in this philosophy
    must do the following for EVERY request (or appropriate):
    Even if you are logged authenticated to the container and authorized,
    you may have timed out or logged out of another application. So the
    database table must be checked to see if the session id exists. At the
    same time, you must also update the last access time to prevent timeout.
    8) If the user tries to access a different application which he has not
    authenticated to yet - the user will be forwarded to a servlet whichwill:
    a) Look for the cookie at the domain level
    b) If the cookie is found - get the UID and PWD from database
    b2) Present login form if cookie is invalid/not exists
    c) Authenticate to container
    d) Forward back to original page and let the container handle
    authorization since you have already authenticated.
    I use have encapsulated the database activity into 3 stored functions:
    1) isValidSession(session_id) - Returns null or the user id and pwd
    concatentated which will need split apart if needed
    2) makeSession(user_id, password) - Returns a new unique session id and
    creates the appropriate record
    3) cleanUpSessions() - Arguements not yet determined. This will delete
    any records older than a certain time. I would like to have the proc
    know what to delete without being given a parameter but time to the
    second level can be tricky for some DBMS's.
    There is a concern of storing the user id and password in the database
    but this can be eliminated with a good design to restrict access to the
    database table and using encrypted connections.
    Hope this helps. Hopefully - a similar philosphy will be adopted by an
    application container so I may not have to worry about this and I can go
    back programming business functionality.
    -Tim
    Joel Nylund wrote:
    Does anyone know of some good articles/publications or suggestions for
    implementing a single signon for multiple very secure internet sites
    in
    weblogic type environments.
    For example, bank1 has a internet site and bank 2 has an internetsite.
    Bank 2 has some cool features they want to offer bank1's customers.They
    agree but, bank1 wants to present bank2 as a tab or part of bank1site.
    IN order to do this there are lots of fun things, but the things Im
    interested in are how to authenticate between them and handletimeouts.
    >>>
    timeouts seem particularly tricky in that if I dont hit a page onbank2
    for a while, it could time out its session for the guy on bank1. Alsoif
    im in the bank2 section of the site, then bank1 could time me out as
    well.
    any ideas let me know.
    thanks
    Joel

  • Single invoice for multiple orders with different divisions

    Dear All,
    while I am trying to do single invoice for muliple orders with different divisons invoice is gettting splitted..In copy control vbrk routine I  tried with 003 and 007 etc..but result is same..what configuration need to be done for getting the single invoice
    Thanks In advance
    Regards
    CNRNAIR

    Hello
    single invoice for multiple orders with "different divisions" invoice is getting split
    FYI - Different Division means different Sales Area.
    So, sales doc (whether sales order, Delivery & Billing) is applicable to EXACTLY one sales area.
    Thus, combining docs with different sales area is practically impossible.
    Provided, you are using common division.
    Hope this assist you,
    Thanks & REgards
    JP

  • Best practices for EUL/Business Areas

    What is the best way to handle multiple business areas? Even if they have no relations with each other?
    Should I have one EUL with many business areas in it? Or many EULs with one business areas in each?
    Does any one know where I can find the advantages and disadvantages of each?
    Thanks,
    Rob

    Hey there (repost of a similar thread in this forum).
    Many clients I've been at have the exact same discussion. And the one I push for is to have 1 EUL, let the BIS views have their own business areas and like you said, don't customize them.
    For all corporate business areas, folders, etc. just create them in the same EUL but the business areas have a corporate prefix (ie: coca cola would have a CC_ prefix). That way ALL folders can access the BIS views if wanted (ie: join across business areas), special setups (ie: LOVs) could be in a particular business area where ALL folders could access) and updating BIS views with new versions would be a problem.
    I really don't like multiple EUL as it's one of those simple things that can be a gotcha' for many end users that drives the helpdesk nuts trying to understand why a particular user can see his info.
    Just my take (and of course, what I think is the 'best practice' 8-) ).
    Russ

  • Multiple business areas

    Hi All,
    In invoice multiple business areas are there . that time any business area is not updating in vendor line item. 
    Is there any way to solve this problem?
    Please tell me. It is uregent
    Thanks
    Krishna

    Hi Krishna,
    You have multiple business area and wants to update in Vendor line item, system is showing blank in busuiness area field.
    As this is very much logical as you have not defined any split ratio between the busienss areas. How the system will split the vendor line items.
    Ex:- You have vendor invoice of Rs 10000/-
    it consits of two business area  4000/-(Mumbai) and rest 6000/- for Kolkata.
    But you have not mentioned any split ratio.
    You can do this using document split concept.
    Regards
    Ashish Jain

  • Single Spool for multiple smart forms

    Hi,
    I am doing Cheque Printing  My multiple smart form in single spool
    I Created Single spool for multiple smartforms and i can able to see all the smart forms in single spool
    While I am printing smart form from spool it is taking only first page.
    Any inputs how to slove this.
    Regards
    Azeez
    Edited by: Rasheed salman on Feb 3, 2010 7:41 AM

    Hi,
    You can call Open Spool and Close Spool function modules. Between these two fm you can call your smartforms. Just have a look the procedure below.
    Call function OPEN_SPOOL.
                 Call function SM1
                 Call function SM2
                 Call function SM3
    Call function CLOSE_SPOOL.
    Hope this will resolve your issue.
    Thanks,
    Abhijit

  • Single  bill for multiple connections

    Dear All,
    Is it possible to print single bill for multiple connections ? This is my requirement Customer X having 2 connections for Water and 2 connections for Electricity.But we need to bill Electricity and water in a different bill ,but 2 connections for water and 2 connections for electricity should be billed in a single bill.We have created a separate contract accounts for 4 connections.
    Pls guide...
    Best Regards
    Jay

    Hi,
    I am not sure, if i completely understand your requirement.
    But as per my understanding, you have 4 installations, ( 2 for Water and 2 for Electricity) and you want to have a single invoice created for Electircity and water.
    So, its better to create a single contract account with multiple contracts.
    If you are creating multiple contract accounts, then it would create multiple invoices (one per contract account - regular scenario). So, please have a multiple contracts with single CA.
    Also, if you want to invoice all the contracts together, please find the option on contract for joint invoicing. (option 1).
    And, in case you want to bill two connections of electricity as one entity and two of water as one, so in this case, have two contract accounts one for Electricity and one as a part of water. And assign all the electricity contract to one CA and rest of water to another CA.
    Invoices are always created at contract account level and the billing documents are created at contract level.
    Hope this helps !!
    Regards,
    Rajesh Popat

  • Single Del. for multiple sales order:

    Dear all,
    i wanna do a single del. for multiple sales order ,So plz provide me the exact flow to do it.
    Also provide what conditions are required to do the same.
    Waiting for ur reply,
    Thanks & Regards,
    Olet malla..

    Hi,
    It is very much possible in SAP.
    Goto the T code VL10A and enter your Shipping point and Execute.
    This will give you the list of Sales orders which are ready for delivery.
    Select the sales orders for which you want to create single delivery and click on "Back Ground".
    This will create the delivery. PGI you can do it VL02N.
    Requirement for combining Sales order are: Ship to party should be same, Route should be same, Delivery date should be same, Shipping point should be same, plant should be same.
    Regards,
    Mullairaja

  • GR/IR Automatic Clearing for Different Business areas items

    Hello All,
         we have different business areas, and some times we create a PO for all business areas and invoice it in a specific business area
    in F.13 automatic clearing:
    for GR/IR account
    Documents with different business area cannot be cleared.
    any idea to solve this issue is appreciated,

    Thanks for your reply,
    I've tried such a solution with more parameters ( EBELN, XREF3 and EBELP)
    but in F.13 :
    - the document cannot be cleared when >>> selecting GR/IR account special process.
    if we treat GR account as a normal GL account, I mean without selecting GR/IR account special process.
    the document can be clear
    i want to be able to clear the document with selecting GR/IR field ( is it possible )
    and if it is not allowed, do we will face a problem by clearing GR account without selecting GR/IR parameter ??
    Many Thanks

  • Single invoice for multiple deliveries in Export scenario

    Hi All
    I am trying to create a single invoice for multiple deliveries. In case of Local Sales i am able to do it.
    But when it comes to export sales the system is not allowing me to create Single invoice for 2 deliveries . This is a export scenario. Can you suggest... When  i am checking the split invoice log it says split due to header data "Number of foreign trade data i"
    Plz suggest.
    Thanks
    Rishi

    Thanks G. Lakshmipathi
    Resolved
    As per the split analysis, System was checking the number generated for Foreign Trade data at delivery level.
    As told  i have Tried maintaining the Indication at copy control level VTFL "Redetermination of Foreign Trade Data at Billing level".
    This has resolved my Issue.
    Thanks Again
    Rishi

  • Single invoice for Multiple Purchase Orders

    Hi,
    How to Park the single invoice for multiple purchase orders

    brother this is possible to enter one Invoice fro multiple purchase order.
    call transaction MIR7, select " purchase order/Scheduling Agreement" from the PO refernce Tab. then click on arrow. give your purchase orders here.
    Thanks

  • Single spool for multiple smartforms

    Hi,
    I am using Function modules SSF_open and ssf_close for creating single spool for multiple smartforms but when i try to run the program in background then the job is getting cancelled...........and if i run the program in foreground then the program is running fine giving single spool for multiple forms........
    so the problem is that job should run in background if i run it in background instead job is getting cancelled.
    please tell me the solution how can i get the single spool for and multiple smartforms as well as the job should run if i am doing so.

    Moved to the correct forum

  • One cheque for multiple vendors

    hi,
    is it possible to generate one cheque for multiple vendors ?
    cheque will be sent to bank and bank will deposit the amounts into vendor banks.
    Can you anybody help me?
    regards,
    kalyan

    Hi
    Yes. you can do it 
    First transfer the amount to bank and from there bank will transfer the amount to respective vendors through ther banks.
    Go for implementing automatic payment programme according to your client reqyuirement. Check  TCode F110 which is master transaction for APP.  Check at TCode F110-Environment-maintain Config.....
    Cheers
    Srinivas

Maybe you are looking for

  • Creative Zen Review With the AudioBook Listener In Mi

    Here is a copy of my review of the Creative Zen which I just published on the amazon.com mp3 player forum in the thread I started over a year ago entitled "What's the best player for AudioBooks " It is the longest thread in the forum with little indi

  • Why can't I find Adobe Reader on my computer?

    I work for a company with several users and we're having an issue with Adobe Reader. I download Adobe Reader from Adobe.com and it installs like normal and even confirms it's installed. However, I try and find the reader and it is nowhere to be found

  • Mac Mini and blue screen.

    I've had my mini for just over a month now, and in recent weeks my screen has started to go entirely blue at random intervals and not clear. I'm left with no icons, no mouse, no programs, yet I get sound (although any control of it is delayed by abou

  • ETDS in ECC 6.0

    Dear All, I need to know how do we file eTDS in ECC6.0 for country India.Version prior to this we had a standard functionality with T code J1INEFILE. I could not find that in ECC 6.0 Instead in the reporting tab I can find t code as J1INAR. What is t

  • Re Download Purchased Songs after hard disc format

    Hello everyone i have a problem with my iTunes on my Macbook Pro...I had format my hard disc and my purchased music is gone... How can i re-download my lost music? Thanks