Deposit Slip - Customer vs Payee name

Hi,
Before creating a Crystal template I thought I'd double-check here... the PLD template doesn't seem to allow it to be customized so that the "Customer" name indicated on the deposit form is the actual Payee indicated in the Incoming Payment transaction (and on the cheque). The deposit slip points to the BP Name field but I did not see in the table listing the option of getting Incoming Payment or the default PayTo/Bill To code from Business Partner.
If the Customer/BP Name is ABC Company but the Payee selected in the Incoming Payment record is XYZ Company, XYZ needs to be indicated on the Deposit Slip to match up with the cheque attached to the slip for the bank to deposit it. Currently it will print ABC Company.
If someone knows how this can be done in PLD, that would be much appreciated.
Thank you,
Heather

Hi,
So far only 1 payee/Bill To on a customer record - but the name is different than the BP Name.
SBO version is 2007A SP01 PL7.
Not sure what you mean by "a different PLD just for this purpose". If you are able to create one from scratch, that would be nice to know as I have not been able to figure that out.
Thank you,
Heather

Similar Messages

  • Manual Check Deposit Slip Number? in FF68

    Hi Team,
    Can you please suggest me, can we assign the Check Depoist Slip,
    In FF68, I see the Group name is freely definable, as it is you can print deposit list separtly per group name.
    Now My customer what to assign numbe to every Check deposit slip and need to print on check deposit slip
    Please suggest
    Regards,
    Anil

    Hi,
    I hope it is not possible.
    You need to give / follow sequential numbering to GROUP field in FF68 manually.
    Else, check with your ABAPer, whether if he can put some USER EXIT to FF68 to generate the next GROUP number automatically, based on the existing defined groups.
    Hope this may help you.
    Regards,
    Srinu

  • Payee Name in FBZ5

    Hi Friends
    I am processing the GL payment fom F-07 and no vendor is involved in this.
    and now want to assign and take print out of the Cheque in FBZ5.
    But system is giving me the Error message to enter payee name
    Please come up with appropiate solutions
    as i am in stage of GO live Please help on urgent basis,
    Thanks

    Hi Naveen,
    The check writer report file name is PAYUSCHK.rdf, since it is a seeded once you might need to be careful when you customize it.
    You can modify this report file and print payee name in uppercase but there might be easier solution for that without touching the file
    because now its using XML based. So check in metalink if you can create a custom pdf template to print payee name in uppercase.
    Hope this helps.
    Thanks,
    Satin

  • Change Payee name in Cheque while printing

    HI,
    Before post this thread i tried for solution to the below query but i couldn't get required solution.
    My end user wants to change the payee name at the time of  cheque printing.
    he is using fbz5 for that and he never stored the payee name(required name) anywhere.
    he wants to give it at the time of cheque printing.
    Is it possible.. if yes can u plz anyone suggest me.
    Thanks in Advance
    Edited by: anurag.radha on Oct 14, 2011 10:31 AM
    Edited by: anurag.radha on Oct 14, 2011 10:46 AM

    Hi Radha,
    Do one thing while printing cheque from fbz5 you have a option to maintain name3 and name4 ,then  from script call one custom program in that write one select query to get name3 or name4 from payr table with the input of doc no and year whatever you provide at fbz5  .
    select single name3 name4 into u'r local variable from payr  where VBLNR = fbz5-docno and GJAHR = FBZ5-YEAR.
    then check if your variable not initial print name3 or name4 else print as it is.
    this total code need write in custome routine.
    or else better to ask to maintain alternative payee in xk01 .
    Thanks & Regards
    Nagesh
    Edited by: emax nagu on Oct 14, 2011 1:32 PM

  • AP to GL Transfer: How to have a custom Journal Header name in GL.

    Hi,
    Does any one know how to have a custom Journal Header name while transferring the Journals from AP to GL?
    Assume that I am transferring the Journals which belongs to a Single Invoice from AP to GL. When these Journals are transferred from AP to GL, Oracle will create a Journal Header with the default naming convention. The Oracle generated Header name will be as shown below.
    *123456 Purchase Invoices USD*. Where 123456 is AE_HEADER_ID and USD is the Invoice Currency code.
    Our requirement is, we want the Journal Header name something like *"Hello World"+TIMESTAMP*, where TIMESTAMP is the date when the user has ran the AP to GL transfer program.
    I know that when building the AAD(Application Accounting Definition) we can define the Journal Header descriptions and Journal Lines descriptions. But, I did not see any setup option to have the custom Journal Header name in GL.
    Any suggestions on this issue are highly appreciated.
    Advanced Thanks,
    Lokesh.

    Hi Lokesh,
    The best way to have a custom journal header name is using hook package.
    When data move from XLA to GL, every time it creates a new dynamic table as GL_INTERFACE table but the name is different (XLA_GLT_XXXXX).
    This table information stores in 'gl_interface_control' table but after use the record has deleted from 'gl_interface_control'.
    So we can't see table information after finishing create accounting program.
    What the modification you will made in this table it will affect GL base table. So to made custom journal header name, we need to change Reference4 column of dynamic table.
    Here is the code to get the table name and through procedure you can update the Reference4 column.
    FUNCTION pre_module_hook(run_id IN NUMBER,
                   errbuf IN OUT NOCOPY VARCHAR2) RETURN BOOLEAN IS
    chr_errbuf varchar2(50);
    chr_retcode varchar2(50);
    l_interface_Table_name varchar2(2000);
    BEGIN
         SELECT interface_table_name
    into l_interface_Table_name
    FROM gl_interface_control
    WHERE interface_run_id = run_id;
         BEGIN     
    xxdb_gl_icaccntgdist_pkg.gl_int_jrnl_update (chr_errbuf,chr_retcode,l_interface_Table_name);
    RETURN(TRUE);
         END;
    END pre_module_hook;
    Make these changes in GL_IMPORT_HOOK_PKG.pre_module_hook function.
    You can make the changes through calling procedure using dynamic query under the function pre_module_hook.
    Thanks,
    Gaurav K
    Edited by: 972729 on Nov 22, 2012 4:46 AM

  • Select option "Show this View : in Folder of Content type : {Custom Content Type Name}" while creating view using CSOM

    Hi,
    I am trying to create "View" in a Document Library and need to enable following:
    1. Mark as default View
    2. Folders -> Show this view : in Folders of Content Type : {Custom Content Type name}
    I am using following code which sets "in Folders of Content Type : " to "Folder" rather than selecting custom content type despite passing Content Type ID of custom content type.
    code:
    var itemContentTypes = clientContext.LoadQuery(web.AvailableContentTypes.Where(ct => ct.Name == viewContentType));
    clientContext.ExecuteQuery();
    var itemContentType = itemContentTypes.FirstOrDefault();
    view.ContentTypeId = itemContentType.Id;
    view.DefaultViewForContentType = true;
    view.Update();
    clientContext.ExecuteQuery();
    Please highlight what seems to be missing?
    Thanks
    Sonal

    Hi,
    Before you set the content type ID for the view, you need to add the custom content type to the library firstly.
    You can add the content type to library using OOTB feature “Add from existing site content types” in library settings or using Client Object Model.
    Here is a code snippet for your reference:
    var list = context.Web.Lists.GetByTitle(listTitle);
    list.ContentTypesEnabled = true;
    var contentType = context.Site.RootWeb.ContentTypes.GetById("0x0120");
    list.ContentTypes.AddExistingContentType(contentType);
    context.ExecuteQuery();
    More information about add exist content type using Client Object Model:<o:p></o:p>
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.contenttypecollection.addexistingcontenttype%28v=office.15%29.aspx
    Best regards,
    ZhengyuGuo
    Zhengyu Guo
    TechNet Community Support

  • Payee Name History not maintained.... PA0009

    The report is not picking up the name of the Payee if a new one is not entered. I added new IT0009 Bank Details records for personnel numbers 1 and 230. I assigned them the Payee names of Test 1 and Test 2 respectively. Their old Payee names do not appear in the report for records I created yesterday. When I manipulated the Payee names today, they appear. I also created other new records today without changing the Payee name after I noticed this and they did not appear. The report should pull the Payee name whether it has changed or not.
    Please help.

    Hello Ramesh,
        Check the condition in the report for selecting the payee names.the report is selecting the names if it payee changes it seems.
    Regards,
    Manoj.

  • Deposit-slip creation in SAP Fico

    Hi,
    The possibility of deposit-slip creation in SAP FICO
    Regards,
    Murthy

    Hi this is sushma from Melstar, Bangalore we are looking for SAP FICO professionals with Retail domain experience
    To know More............
    Melstar Information Technologies, Established in 1986, we focus on servicing the Banking, Insurance, Government and IT domains. Headquartered in Mumbai with It Technology experts, professionals worldwide and having 6 offices in India including 3 development centers. Melstar is a complete provider of Application Management services and solutions.
    Melstar's software facilities are assessed at SEI-CMM Level III and ISO 9001 certification.
    For More Information Login
    www.melstar.com
    We have an excellent Opening with our Client u201CCibersitesu201D for Delhi Location
    Skills : SAP FICO and SAP SCM
    Skills: SAP FICO (IS Retail)
    Rev Exp: 4-8yrs of Rev Exp in FICO
    Must have at least One Full Life Cycle Implementation Exp from (Project Preparation till Go-Live)
    Retail Domain Exp Is MUST
    Job Location: Delhi
    Skills: SAP SCM
    Rev Exp: 4-8yrs of Rev Exp in SCM
    Must have at least One Full Life Cycle Implementation Exp from (Project Preparation till Go-Live)
    Retail Domain Exp Is MUST
    Job Location: Delhi
    (Candidates Anywhere in India who can relocate to Delhi can Apply)
    Regards,
    Sushma A
    Melstar Information Technologies Ltd
    A CMM Level III and ISO Certified Company
    Bangalore
    Tel : 080 2522 5737 Ext: 115
    Mbl:9019686842

  • User Exit for FF68 to modify the bank deposit slip

    Hi ,
    I am searching for a user exit on FF68-to modify the bank deposit slip.
    Users want to print the cheque deposit slip grouped by the bank/branch and the cheque number.
    currently it is not grouping them even they have the same cheque number
    i am a bit new to enhancements, and user exists
    I searched the cmod and vmod but could not find smthing useful
    Can you please help?
    Thank you

    hi Shailaja
    thank you very much for your help
    i checked it via smod
    It says Transfer Additional Data in Finnish TITO Format.
    do you know what steps to follow to make the change?
    i am new to this
    as far i read i need to change this exit -change the table
    but how to link this with the code?
    does the ff68 knows that exit already?

  • Check Deposit Slip without FF68

    Hi guys,
    I am trying to create a check deposit slip without running FF68.  The system I am working on right now doesn't have bank sub accounts(incoming check clearing account for example). Therefore, payments will be posted directly to the master bank account, and it makes FF68 look redundant just to create a check deposit slip.
    Is there any other way to create a check deposit slip without using FF68?
    Thank you for your input.
    Eagle.

    Hi Anil,
    Can you please send me the screen shots also to my email id.  I also want to do manual check deposit and then print the deposit list and send to the bank.
    Any other advice will be useful also. My email id is [email protected]
    Thanks a lot for your help.
    Dammah

  • How to get customer number and name from the SD document

    Hi All,
    Can you please let me know how to get Customer Number and Name from the SD Document?
    Thanks a lot....
    Anil

    Hi,
    It will be displayed in the SD (BIlling document) itself,  you clikc on the VF03. The customer name and number will also appear in the SO document also Tcode VA03
    regards,
    radhika
    Edited by: kolipara radhika on Jul 10, 2009 5:32 AM

  • Payee Name of Travel Expenses Bank Defaulting to IT2 Name and Lastname?

    Changing employee name in IT2 (P0002-NACHN or P0002-VORNA) will automatically change ng Payee Name (P0009-EMFTX) in IT9 for travel banks (IT9 subtype 02).
    Does anybody know where or in what program can I find the code for this particular action?

    Hello Karen,
    If you type the name into infotype, this will override the infotype 0002 data.
    Regards,
    Manny

  • Deposit slip( t code ff68)

    my problem is that i need to print deposit slip in below format....
    header:---
    deposit date
    lodgement id
    bank account
    account no
    page no
    no of items | cheq issuer| cheque no| bank |branch| amount| co code| invoice no.| cust no.|
    i not able to find out fields to pick up data.
    selection screen entry only is bank key....

    check tcode F.27.
    for cheque details check tables
    bsid,
    bsad,
    bkpf,
    febko,
    febep,
    febcl.
    logic is some what difficult.
    regards
    Prabhu

  • Custom product launcher name

    Hi,
    There is a way to set custom product launcher name on Oomph .setup files?
    Explaining... I'm defining a custom product setup, with predefined plugins, location, some preferences, etc., and I like to define the launcher name from "eclipse.exe" to "myproduct.exe" (Windows setup, ignore .exe if you like
    Thanks!!!

    Hi Claudio,
    Comments below...
    Cheers
    /Eike
    http://www.esc-net.de
    http://thegordian.blogspot.com
    http://twitter.com/eikestepper
    Am 06.08.2015 um 19:38 schrieb Claudio Weiler:
    > Ed,
    >
    >>> Doesn't confuse the two terms: a plugin is not a product. A product is...
    > Maybe we have different points of view that are makings things more difficult, and my poor English do not help on this...
    >
    > I'm based on this page https://wiki.eclipse.org/Eclipse_Oomph_Authoring. But using "Setup Product Model" wizard. That
    > is what I'm calling "product". I find this page https://wiki.eclipse.org/FAQ_What_is_an_Eclipse_product%3F, that is
    > what I think you are calling "product". Two different concepts with same name... :(
    Clearly we suffer from the fact that there are more concepts (or variations thereof) in the world than short names for
    them. The word "product" serves even more purposes in the Eclipse world. It refers to the project in your workspace that
    contains your artifacts (especially the .product file) that specify a product. It refers to the p2 metadata (i.e.,
    installable unit) that's derived from those artifacts and lives in a p2 repository or p2 profile. It refers to the
    executable installation that's created by the p2 director from that metadata. And so on...
    >
    > From now I will call these as "product setup" and "eclipse product", respectively.
    That seems okay if the context doesn't disambiguate the word product enough.
    >
    > I tried to find how to build a custom eclipse product, but no luck til now...
    Oomph is *not a build technology*, so you won't find that in our documentation, but the article you mentioned above
    directly links to https://wiki.eclipse.org/FAQ_How_do_I_create_an_Eclipse_product%3F and the web is full of tutorials on
    that topic: http://lmgtfy.com/?q=eclipse+product+build
    >
    > Sadly Oomph is too new
    By now Oomph is more than two years old.
    > and my findings on internet is not helping me to put the pieces together.
    Nobody said that it's simple, but the information is all publicly available (not in Oomph of course) and you should
    first learn how to *build* an Eclipse product. Then you can learn how to create an Oomph setup to make it easier to
    install this Eclipse product.
    > I git cloned https://git.eclipse.org/r/oomph/org.eclipse.oomph and studied a bit this structure, but it's hard to
    > understand without a guideline,
    That's certainly a subjective statement, but I doubt that the Oomph sources would help you understand how to build an
    Eclipse product.
    > and it is too "eclipse installer"!!
    Whatever that means. But yes, Oomph is an Eclipse installer; it can only install Eclipse products.
    > I tried to find some "eclipse.product" but failed...
    >
    > Thanks!!

  • How can i create a custom Audio Language name for video?

    I have create a dvd with menu and vidoe (Audio 1 is sing a song , and Audio 2 is only music)
    but i cant define" a audio name for andio that is mute,
    my question is How can i create a custom Audio Language name for video?"
    Anyone can help , thank you so much for reading !!

    Thanks Stan Jones,
    Anyone can tell me a soluation and some better show up method to present that the user is changing a audio track in correct name ...
    Or Encore can do a pop-up message to show the user's selection or not ?_? (i don't know)

Maybe you are looking for

  • How can I create a search filter on my muse project?

    How can I create a search filter on my muse project like the 'sort by' function of this website? http://trufcreative.com/work By that I mean be able to narrow down the content displayed on a single page (preferably with an animation) without having t

  • Webi Report - Error when doing drilldown

    Hi Experts I'm facing a problem now that I hope to get some guidance from you all. I've created a Universe based on a MSAS Cube, It's working fine so far, but we realized during the tests that when we drill down  or just include the fields (related t

  • Error in database 500

    Hi, please help to find in disaply result as below.I think some thing is error in database. -----------------------------------page start------------------------------------------------------------------------------------- HTTP Status 500 - type Exce

  • SPNego login using additional attribute in LDAP

    Hello experts, We have a situation here to implement SPNego login for portal. We have integrated LDAP with portal and the j_user is mapped to an additional parameter (for ex, employee number) to enable the user to use this as a login-id instead of th

  • HELP: just upgraded to Mac OS 10.7.3 and InDesign CS5.5 keeps crushing upon opening

    Hi - Indesign CS5.5 stopped working after I upgraded to mac OS 10.7.3. It was working fine before the upgrade... It keeps crushing during the launch. Photoshop seems to work fine but the same thing happens when I try to open Illustrator. I reinstalle