FBZP APP configuration - Urgent

Hi sap guru's,
I had encountered with the following problem. 
Our client has 3 a/c's with a bank SBI at same branch(mumbai) and he issues cheques from all 3 a/c's. Here how the configuration should be done for check payment method for APP.  can any one please explain.
I had created one house bank and 3 account id's and under account determination-->bank selection how to configure payment method, how to determine the bank sub account under bank a/c determination.     As Under bank a/c’s same pmt method along with same currency not allowed under one house bank but here our client has 3 a/c's at that branch and issues cheques from 3 a/c's so i have to configure the 3 a/c's in whichever way the ranking order may be. I was unable to configure as it is not allowing for same payment method, same currency under one house bank.
Any one please reply
Thanks in advance,
krishna
Edited by: vamshi krishna on Feb 25, 2008 11:09 AM
Edited by: vamshi krishna on Feb 27, 2008 6:38 AM

you need to review how and why your client issues checks for the same currency from three accounts.
What is the business logic?
If you had one for Dollar and one you Euro then ranking order and bank accounts.
You could look at creating two new payment methods and assigning them to the lower level in the bank account section but first I would question how the client knows which account should be paid from.

Similar Messages

  • Fiori App Configurations

    Dear All Gurus,
    We have just successfully set up the Fiori Server(BASIS) and the next step gonna be the App Configuration. I know that there are a lot of PDF and links for this subject . What is the best/latest guideline given by SAP for latest App Configuration?
    (Initially there were 25 Apps then 200 and I was referring to that and now feel like that is not anymore valid since Apps been upgraded with 390+ (Owsome....!!! ) )
    Thank you all in advance.....
    Message was edited by: Michael Appleby

    You can start with latest Fiori Catalog here.
    SAP Fiori for SAP Business Suite - SAP Library
    Click on the application you want to configure, then goto 'App Implementation'.
    That should give you the steps required to configure.

  • Managed App Configuration using Profile Manager

    Hello,
    We're using Profile Manager as the MDM server of our iPads. Everything works fine except that recently we want to manage some app configurations through MDM, but were unable to find the Managed App Configuration settings from Profile Manager.
    May I know if Profile Manager supports Managed App Configuration for iOS?
    Thanks,
    Jacky

    We are not running it yet but I am believe that when you setup a user in airwatch or another MDM and you install the agent on a device the user has to authenticate with AD creds, so then you can configure it to pull a cert from your SCEP server using those creds and it will then pull a user cert. instead of a generic certificate. Obviously that is a pretty dumbed down explination but in a nutshell that is how it is going to work.

  • RuntimeException only for one model in configurator-Urgent

    I created a custom web page in OAF to launch Configurator. It was working fine untill this morning , when another co-worker made some changes and published one particular model.
    My application fails to launch that model where as all the models work fine.
    This model launched fine from Quoting/OM and Config Dev.
    Error from the logs is :
    [Sep 17, 2008 1:07:13 PM
    CDT]:1221674833273:Thread[Thread-27248,10,main]:6616:1985801979:s1v1280:10.122.84.1:8101:16010:STATEMENT:[fnd.framework.webui.OAPageBean]:CZInitString=<initi
    alize><param name="database_id">szzzzzzz_macp</param><param name="icx_session_ticket">0DA897D89B5B9415C7975C52278BFF45</param><param
    name="calling_application_id">601</param><param name="responsibility_id">24742</param><param name="ui_def_id">0</param><param
    name="terminate_id">null</param><param name="ui_type">JRAD</param><param name="init_was_saved">true</param></initialize>
    [Sep 17, 2008 1:07:18 PM
    CDT]:1221674838221:Thread[Thread-27248,10,main]:6616:1985801979:s1v1280:10.122.84.1:8101:16010:EXCEPTION:[cz.service.ConfiguratorServiceLocal.From
    processMessage()]:[null_475db5b_b0 # 16171] Cannot find the text with persistent id 33125520 in source ui 23080
    java.lang.RuntimeException: Cannot find the text with persistent id 33125520 in source ui 23080
         at oracle.apps.cz.dio.ui.UiController.getTextByPersistentID(UiController.java:779)-----------
    I saw a few notes on metalink and found some scripts for debugging, but I have no idea what sense to make out of it.
    SELECT * FROM cz.cz_db_logs WHERE message_id='353320'
    - no result
    SELECT model_id,publication_id from cz_model_publications where export_status = 'ERR'
    --no result
    SELECT intl_text_id, persistent_intl_text_id,text_str,ui_def_id FROM cz_intl_texts where persistent_intl_Text_id = 33125520;
    2 rows
    33136901    33125520 . . . . . . .Rewind(s) upgraded to 3HP. . . . . . . 239347
    33125520    33125520 . . . . . . .Rewind(s) upgraded to 3HP. . . . . . . 23080
    select model_id,ui_def_id,intl_text_id,creation_date from cz_intl_texts where persistent_intl_text_id = 33125520
    2 rows
    2409785 239347 33136901 9/17/2008 9:53:29 AM
    21400 23080 33125520 9/17/2008 9:09:28 AM
    SELECT intl_text_id, text_str, persistent_intl_text_id, seeded_flag, ui_def_id, model_id FROM cz_intl_texts where ui_def_id = 23080 AND deleted_flag = 0;
    -- 8 rows
    SELECT * from cz_model_publications WHERE object_type = 'UIT' ;
    24 rowsPlease help, its urgent.
    Thanks

    I investigated more and here are my findings:
    we have 2 publications in production published for different set of applications,
    pub1 is published for applications : asn, qot ,oem
    pub2 is published for applications : mac(custom application) --this was created for changes in future and has effectivityset for future.
    It seems while launching , it picks the ui for pub2 and I want it for pub1
    My query is :
    select distinct
         rep.name name ,
         pub.ui_def_id,
         pub.publication_id
    from cz_model_publications pub,CZ_UI_DEFS defs,CZ_REPOS_TREE_V rep,CZ_PB_CLIENT_APPS apps
    where pub.ui_def_id=defs.ui_def_id
    and apps.publication_id=pub.publication_id
    and rep.object_id=defs.devl_project_id
    and pub.publication_mode='p'
    and rep.object_type='PRJ'
    and pub.organization_id = '101'
    and pub.deleted_flag = 0
    and pub.disabled_flag = 0
    and apps.fnd_application_id=880 --this is available for quoting UI
    order by rep.name
    Can anyone plz help me on this .
    I will appreciate it
    Thanks

  • How to clear invoices posted in foreign currency in APP  VERY URGENT

    Hi Sap Gurus,
    I have posted 2 invoices , one is in inr (local curcy), another one in usd and i have run the app using the t.code f110
    local currcy incoive was cleared but usd curcy invoice went to exception list
    Why this happened?
    how can i clear foreign cuurcy invoices in app ?
    How can see the exception list ?
    can i edit r delete the payment proposal ?
    what is the use of additional log in f110 screen?
    thanks in advance for ur answer
    points wil b assigned
    Regards,
    Rajesh

    Hi Rajesh,
    Pls. check following in your payment program configuration.  Configuration of Payment Program can be access through APP Tcode F110.  Go to Environment --> Maintain Configuraiton.
    Check Following:
    1) Payment Method for Country : Whether Foreign currency (USD) is added in the list of permitted currency for the payment method specified in the APP Run.  If not, add USD as a permitted currency for the payment method.
    2) Payment Method for Company Code : Select Foreign Currency / Foreign Payment indicator for the company code/ payment method combination. Select all three indicator.
    3) Check the house bank configuration : Whether house bank determined for the company code/ payment method combination in ranking order is set up for any specific currency payments.  Keep teh currency field blank if you want to pay in multiple currency from the house bank determined in ranking order.
    Hope this helps. Pls reward points if this is useful.
    With Regards,
    Chirag

  • FBZP - Payment Configuration: Bank Determinatio - Ranking Order

    I have one House Bank, say CITI, and two branches CITI-A and CITI-B, our client has two bank accounts, one in each. Both are RMB and used for payments. Both are used to pay for method T (Bank Transfer) and for currency RMB. But in FBZP, if i need to configure the rank order, i can do that only for House Bank, and for accounts within them. How to solve this? One workaroudn is, i define tow house banks, CITI-A and CITI-B instead of one house bank CITI. But I dont want to do that. Any Suggestions?

    Dear Balla,
    In SAP
    one bank is not = one house bank but,
    One bank branch = one house bank.
    Even if you want this tree In standard system then it is not possible.
    Regards,
    Chintan Joshi.

  • Custom Concurrent not available thru Apps Adapter - Urgent

    All,
    Version : BPEL & JDev 10.1.3.4
    Summary of my project: Integration 3rd party appln with Oracle EBS 11i (11.5.10.2).
    We have a custom concurrent program defined in Purchasing module of Oracle EBS. From BPEL I need to invoke this concurrent. But on configuring the Apps adapter, I'm not able to see the custom concurrent but the standard concurrents are listing out!
    How should I make my concurrent configure thru Apps adapter? Can anybody plz help me out with this scenario?
    thanks,
    sen.
    Edited by: Sen2008 on Sep 1, 2009 5:21 AM

    I had raised an SR with Oracle recently on this issue SR Number 7643220.994 and got a satisfactory solution
    This is the meat of the discussion
    1. On 11.5.10 this is NOT supported out of the box => You cannot see your custom concurrent program in the iRep in Apps adapter. Some public documentation at http://download.oracle.com/docs/cd/E12839_01/integration.1111/e10537/T430238T528906.htm
    2. For 11i the IRep data file is seeded and is located in the following
    jar file of Jdev installation
    <Jdev install directory>/jdev/extensions/oracle.bpm.modeler.10.1.3.jar
    File path within the jar is
    oracle/tip/tools/ide/pm/wizard/adapter/apps/data/IRep.xml
    So what I did is - unjar'ed this file, modified IRep.xml, and rejar'ed. Restarted JDeveloper. My custom cp was visible. I even tested it. It worked fine.
    hth
    Amit

  • Regarding DMS configuration - urgent help

    Hi,
    I need urgent help with the below scenario.
    I created one document,attached a drawing,now i want to submit to a higher level authority using workflow who can approve/reject.how do i do this.
    Also i would like to create  two vaults Vault A and Vault B ,user A has read/write to vault A and user B has read/write to only Vault B ,but user C has read.write to both vaults.
    Please let me know how do i create users,configure vaults and give permissions.
    thanks
    prasad suresh

    first u have to create  status for approval
    i give u one example of it
    first u have to create different stauts  for approval process
    for this u have to configure in SPRO with the relevant document type
    and give the  proper authorization in PFCG to relavant user , who create the doc and who chek and who released the doc
    read this carefully , i made this kind of approval process in my project
    1 --- "CR"   means "Create"  by document Creater
    2 --- "Ch"   "Checked" by X authority    /  if any mistake found then  "R1"    "Rework"  by X authority
    3 ---  "Re"   " Released" by Y authority / if any mistake found then "R2"    "Rework"  by Y authority
    think that there is three  stage for approval of any drawing
    first stage  -
    document creat   (Draft Man Creat Drawing and attached )
                              at that time document status is "Cr" after creating doc , that DIR info is sent to higher
                              authority using document distribution functionality
    second stage----- document checker (Receive document from Draft Man in SAP Inbox)
                               he chek that drawing (DIR) . if there is not any other mistake than it again
                              follow the cycle of document distribution to his higher authority. this time
                                document status updated from " Cr "  to " Ch" means from "creat" to "checked "
                                if any mistake found than he change status "Cr"  to "R1" means
                                create to rework  and send it back to drafts man
                                 and drafts man again modify drawing and modify status "R1" to "Cr"
                                 and send it to higher authority
    third stage -
        document aprover  (Receive document from document checker in SAP Inbox)
                               he chek that drawing (DIR) . if there is not any other mistake than he update
                                document status  from  " Ch" to "Re"  means from  "checked " to "Released"
                                if any mistake found than he change status "ch"  to "R2" means
                                checked  to rework  and send it back to drafts man
                                 and drafts man again modify drawing and modify status "R2" to "Cr"
                                 and send it to higher authority
    and in second question , pls tell me clear what u wana do
    vaults means what ?
    is it Repository or what ?
    give me idea by some example

  • Are purchased app configuration backed up or synced from itunes?

    if you have a purchased app that is configured on ipad1, is it possible to copy/transfer the configuration to ipad2.  for instance setup a mobile printing app and dropbox app with logon account and personal printer choices. backup and sync ipad1 with itunes. connect ipad2, reset to factory specs, restore from backup and sync apps.  the setup of the mobile printing app and dropbox does not come across with either bacup or sync.  any thoughts, recommendations or solutions?  thanks in advance

    I doubt very much that you can recover the data at this point. The safe way to do things (I found for me at least) is download apps initially via iTunes instead of your phone, then mark them for syncing and do the normal sync. I purchased all of my apps this way and sync several times a week with no problem. I also do all the app updates thru iTunes.

  • Oracle apps configuration required to install oracle lite database

    Hi,
    Can any one suggest me the oracle apps setups and configuration required for installing the oracle lite databse in my laptop.
    The olite databse must sink with my existing oracle apps.
    thanks in advance...

    user596857 wrote:
    Dear Experts, (I'm far from expert, but I possess enough shreds of knowledge to answer your question, so here goes. ;-) )
    1a)
    My server has Oracle version 11.1.0.6.0, but the matrix says it wants 11.1.0.7.
    I should get a warning right?
    Can I just proceed with the install, over-riding the warning?
    1b)
    If so, what is the procedure to install into the existing database?
    It wasn't obvious in the (150 page) install docs. The EBS install delivers its own ORACLE_HOME for the database. There isn't an option to install into an existing database as far I know. The installer will ask where to put the new ORACLE_HOME for the EBS database. You might get a warning if you try to install to a pre-existing ORACLE_HOME, and I don't recommend ignoring that warning. The result will either be ugly immediately or, even worse, ugly later when it's harder to figure out why. ;-)
    Do an upgrade?Won't really help. The ORACLE_HOME that's bundled with the installer usually comes with additional patches pre-installed, as well as EBS-friendly configuration options. You're much better off taking what it gives you so you can get down to the real fun of learning EBS. :-)
    Or, do regular install, but not Express/Rapid Install?I recommend doing a Vision install for learning EBS.
    Can I choose not to install the database software?Nope (unless my memory is really that bad), and there's no real benefit to doing so. All you'd save is a couple GB of disk, and as a percentage of the total install footprint of EBS, the database ORACLE_HOME is relatively tiny.
    Regards,
    John P.
    http://only4left.jpiwowar.com

  • Apple Configurator Can't install app configuration profile bug?

    Hey all-
    We currently use configurator to maintain 30 new ipads. We have updated the IOS on these devices to 6 and now whenever we install a configuration profile blocking people from installing their own app or in app purchases we get a "Can't install app" error message as part of the refresh process. I understand I am using configurator with a drastically changed device and the profile part of configurator hasn't been updated yet. As of right now the only workflow I have found that works is to
    1.) Unsupervice the device
    2.) Resupervise it
    3.) Reinstall apps
    4.)Install the configuration profile blocking app purchases.
    I have to do this any time I want to do application updates...
    Anybody else runing in to this problem?

    Ryan,
    I loan all of our ipads on a 4 day basis and I never have them all back at the same time to do that type of sweeping change. Before IOS 6 came out I could have changes waiting for an ipad to be returned and they would take effect then. Now if I update an app for one all of the other ipads we plug in will fail (If I'm not here when they are returned). This is a problem apple needs to fix and not something simple I can work around.
    I've pretty much just stopped updating apps but once every month or so till this gets resolved.

  • I want to transfer the app configuration of the iPad to iTunes

    I spent quite some time with arrangeing and organising the apps on the iPad into folders and make them use only two pages on the desktop of the iPad. Unfortunately I can not get my iTunes on the computer convinced to take this configuration. Instead it seems like iTunes wants me to repeat the entire organisation on the computer and then mirror it back to the iPad. Is there a way to prevent this double work?
    thankyou and regards
    Ingo

    Create some space.

  • No Internet Access while Apps configure with Static IP - How to resolve?

    Dear Legends,
    I have installed a development instance which my configuration as follows:
    OS - Oracle Enterprise Linux 5.7 64 bit
    Instance - R12.1.3
    HDD - 500 GB
    RAM - 8GB
    IP - static - 192.168.1.10
    Subnet mask - 255.255.255.0
    Gateway - 192.168.1.1 --> router ip
    I need to setup a static ip only, but if i setup a static ip am able to access instance but no internet access, so that if i need to do any automation work like cron and sendmail is not working. How do i resolve this?
    1. I tried to setup a static ip configuration as editing the /etc/hosts and entry as
    192.168.1.10 hostname alias
    2. edited the resolv.conf for adding a nameserver as follows
    search hostname
    nameserver primary dns
    nameserver secondary dns
    but these entries are not available when i issue a service network restart
    3. Edited /etc/sysconfig/network-scripts/ifcfg-eth0
    # Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller
    DEVICE=eth0
    BOOTPROTO=none --> even i have changed this to STATIC/none but no change
    HWADDR=B8:88:E3:30:1A:ED
    ONBOOT=yes
    TYPE=Ethernet
    USERCTL=no
    IPV6INIT=no
    PEERDNS=yes
    HOSTNAME=devl.rel.net
    IPADDR=192.168.1.10
    NETMASK=255.255.255.0
    GATEWAY=192.168.1.1
    Since i'm trying to update my old threads if it is similar to this but i dont find any old threads, please kindly request you to provide your valuable suggestions.
    Regards,
    Karthik Singh

    karthiksingh_dba wrote:
    Hi Hussein,
    As per your request i am continuing this thread in the followiing link HOW TO ACCESS MY VISION INSTANCE GLOBALLY? is it correct?
    Regards,
    Karthik SinghYes.
    Thanks,
    Hussein

  • APP-ISSUE (Urgent)

    what should i do if i want to see due date invoice in APP?
    Regards
    Sap Guru

    Hi
    Use the t.code S_ALR_87012168(Due date analysis for open items).
    Award points if it is useful.
    Thanks & Regards,
    A.Anandarajan.

  • Pick Ranking order 2 Bank in APP configuration

    Hi,
    In FBZP settings I have maintained the below:
    Payment Method     Currency     House Bank     Rank Order
    H                              PLN               PPAB                    1
    H                              PLN               NDEAP                  2
    Now, when I execute F110, then by default system picks up the Bank PPAB for outgoing Payments. This is because the Ranking Order of PPAB is 1.
    However, the user also wants to use NDEAP Bank in making outgoing payments.
    So, in what way can we pick the Second Bank for making Outgoing Payments through FBZP.
    Please advise.
    Regards,
    Devdatth

    Hi,
    You also have below options available:-
    Enter house bank in Vendor master record (as suggested by one of the member)
    Enter house bank while posting Vendor invoice
    Use substitution for populating house bank in the vendor invoice Need to decide on which condition substitution should work
    BTE 1810 which could be used for populating house bank in F110, you would have to take help of ABAP (Refer SAP note 1412591 – F110/BTE1810: change predefined House Bank)
    Regards,
    Anand Raichura

Maybe you are looking for

  • Cannot send email on iPhone4 via 3G

    Since updating my iPhone4 to iOS 6.0.1 I find that I cannot send e-mail on my phone via 3G, although I continue to be able to receive e-mail and data, and can send and receive text messages on 3G.   I receive this message on my phone: "Cannot Send Ma

  • To identify the user running the job at runtime

    Hi All, My requirement is to develop a program which need to send mail only if a particular user runs the job. I need to read the user who runs the job at runtime, i tried with SY-UNAME but it holds the user name of the person who created the job at

  • Adobe Acrobat Pro 9.1.3 will not convert web page to Pdf

    While using Acrobat 9.1.3 Pro, I cannot convert web pages to PDF format. the output is garbled and text is cyrillic or backwards. Using Internet Explorer 7.0.5730.13

  • Merge two folders????

    I have a large folder hierarchy that has all of my documents and files organized into folders & sub-folders. All in all were talking about 40 gigs worth of evidence, documents, and other assorted things. Before I was converted from XP I could easily

  • PDFs with Navigation for Kindle or Android

    Hello, I created a large PDF in Word, and added navigation functions in Acrobat (a linked TOC, links to specific maps, etc.). It functions great in the Kindle using certain PDF readers. But the Back to Last Location button does not work. It is done t