Implementing IBAN - Question

Hi all,
When an IBAN is maintained for a vendor and F110 is executed the field ZIBAN in table REGUH is NOT populated with the IBAN. Why is this???
Afterall, the SWIFT code (if maintained on the Bank Master record) is populated into field REGUH-ZSWIF. The reason I ask is because I wish to pickup the IBAN and place it on our payment advices and payment media. The most appropriate table to pick the IBAN up is in REGUH. However, it seems to me that I can only pick it up from the table TIBAN.
I have reviewed the applicability of the checkbox ''SWIFT and IBAN' in the F110 configuration (Payment Method/Country) but it does not help. Why? Because it demands either a SWIFT or IBAN code (after applying OSS 970193) and some banks do have SWIFT codes and some banks do not provide IBANs!! Therefore, to my mind for companies outside Europe with beneficiary banks outside Europe then this checkbox adds no value.
My point here is why doesn't SAP insert the IBAN into REGUH, if the IBAN is maintained on the Vendor Master record.
Many Thanks,
John.

Hi Andreas,
Thanks for your reply. The most applicable OSS Note that I can find is 970193 "F110 ... IBAN without SWIFT / SWIT without IBAN" which states:
"IBAN and SWIFT are provided by the payment programs for data medium creation only if these values are required for the payment method used. Both values must also be defined in the bank details. This means that you cannot define a payment method for which you require only one of these values." *** This note allows you to define a payment method for which only the IBAN or SWIFT code are required.***
My point with all this is what's the big deal about linking the IBAN to a payment method!! It should be that when F110 runs it simply picks up the IBAN on the vendor master record if it is avalable - and stores it in table REGUH.
Cheers,
John.

Similar Messages

  • Oracle EBS R12 Pre - Implementations phase question air

    Oracle EBS R12 Pre - Implementations phase question air
    Posted: Jun 30, 2009 10:22 AM Edit Reply
    Dear all Gurus,
    We are going to implement Oracle EBS r12, for industrial concern, we have following quires if any peer may suggest.
    1) we heard the oracle R12 has build new release with 11g db , is it been practical for choosing it for corporate ???
    2) Linux Read hat which version is more stable like 5 releases is compatible with R12 new release?
    3) We are also thinking for 64 bit architecture rather than 32 bit, could any one figure out the practical pros and cons for this.
    4) We are also wondering about the server machine brand and its configurations like HP DL380 G6, DELL 2850? could any one share abut his experience about the same.
    5) What sort of Server configurations (Processor , 2way -4way , RAM , HD and other accessories ) for r12 Multi node setup for 150 clients (DB Server , Apps Server , Test Prod )
    6) What should be backup strategies like tap backup and how much space requirements we must have provisioned for retaining almost 2~3 month backup.
    7) Application implementations methodologies?
    8)
    I know to address our queries would be time consuming for you bust peoples , but I would really oblige for being shared your journey this would defiantly the PATH way for other like mentoring for others.
    looking forward your valuable instructions ASAP.
    Thanks & Best Regards
    Muhammad Waseem
    Manager IT
    Neee-Has Textiles Divisions
    31-Q Gulberg II Lahore
    Pakistan
    92-0333-4240949

    Duplicate post.
    Oracle EBS R12 Pre - Implementations phase question air
    Oracle EBS R12 Pre - Implementations phase question air

  • First Implementation - Random Questions

    Hi all, I've been doing my first implementation for past week and I've come across a few questions that I haven't found the answers to (yet). While scouring the user guides and Google, I figured I might as well ask the forums to expedite my research.
    1) I created a new security device, but canceled creation during the process. Now when I try to re-add the device with the same name, it complains that it already exists, however it's not in the device list. Where can I find it?
    2) I added my Foundstone device to MARS and configured it to do topology updates. Is there any method for confirming MARS is pulling vulnerability information from Foundstone?
    3) When I create a custom rule (keyword specific) to be notified on, a similar built-in rule fires, but mine does not. If I disable the built-in rule, mine will fire and alert me. Does MARS match only the first, or the best rule to fire on?
    4) Is it possible to customize the main Dashboard, or only the "My Reports" section.
    Thanks in advance for any replies,
    TBC

    Thanks for the replies. I was able to add the device and schedule the topology updates, but short of watching the Foundstone database for incoming requests from MARS, I'm unable to verify that MARS is actually querying and using vulnerability information from Foundstone.
    Thanks again
    *Edit*
    Progressing through this issue. I found that if I go to Management > IP Management > "Device_Name" > Edit > Vulnerability Assessment that I should be able to see the detected OS and services running on the machines. I do not see that information.
    Upon review of the logs, I found the following:
    pn va VulnerabilityDiscovererFActory PN-1100: Java message: Unsupported device type: Microsoft,Windows,Generic, use Dummy VulnerabilityDiscoverer
    pn va foundstone FoundstoneVulnDiscoverer PN-1100: Java message: Exception caught in getting JDBC connection: Db server closed connection.
    pn va ThirdPartyVulnDiscoverer PN-1100: Java message: Foundstone: Can not get JDBC connection.
    So it appears to be a configuration issue or at least a database communication issue. I will continue to pursue it.
    Thanks

  • Implementing interfaces question

    I have a really vague question about interfaces....can't really figure out how this works...I know that interfaces only have method definitions and the implementing classes should define those methods.
    I am trying to use a DOM parser to parse an XML document. The org.w3c.dom package gives you a list of interfaces like Node, NodeList, Document etc to work on.
    Assume that i have the following code in my class:
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document doc = builder.parse(invoiceXML);
    NodeList itemList = doc.GetElementsByTagName("item");
    Here is what I dont understand...doc is of type Document which is an interface. How can you call the method of an interface directly in the 4th line? I thought we are only supposed to call methods on the implementing class...the problem is I dont see an implementing class here...does the builder.parse(invoiceXML) return a Document interface or an object that implements the Document interface? If 'doc' is actually an object that implements the Document interface then it makes sense here...but then will all the methods be automatically implemented in the object created by the api?

    Here is what I dont understand...doc is of type Document which is an interface. Yes.
    How can you call the method of an interface directly in the 4th line? How? Just like that.
    I thought we are only supposed to call methods on the implementing class...Methods are applied to objects, not classes.
    the problem is I dont see an implementing class here...And you don't need to. Do you need to open up your DVD player and look inside in order to push "play"?
    does the builder.parse(invoiceXML) return a Document interface or an object that implements the Document interface? Methods don't return interfaces. They return references to objects (or primitive values).
    If 'doc' is actually an object that implements the Document interface then it makes sense here...Eureka!
    but then will all the methods be automatically implemented in the object created by the api?"Automatically" is not how to think about it. The Document interface was implemented by some class, the details of which aren't important. What's important is that if you have a reference to an object of type Document, you can apply Document methods to it, according to the API for Document.

  • 3 Tier implementation-Few questions

    Guys,
    We have 3 tire environment i.e source systems will send files into stage database in separate server and target warehouse database in other server.
    When we get the files into shared directory in stage server we need to load them by using external tables in stage area and load them into load tables in main target data warehouse and then integrate into star schema.
    In the stage database we are having master repository and work repository and ODI_TEMP Schema.
    I have few questions here :-
    1)where to install agent?Is it on stage server?
    2)What KM's i have to use?Is it DBLINK related KM's? If dblink KM's
    what privileges in need and where? and what temp objects it will create where?
    or if any other KM's i can use to move the data from external tables in stage database into load tables in datawarehouse like LKM's or IKM's as both the databases are ORACLE databases?
    Do you they will work without db link km's?
    3)and where the temp objects will be created?
    Can you please clarify above mentioned things.
    Cheers
    Jinni

    Jinni,
    The answers to your questions
    1)where to install agent?Is it on stage server?
    you have to install the agent in staging and target as well.
    2)What KM's i have to use?Is it DBLINK related KM's? If dblink KM's
    what privileges in need and where? and what temp objects it will create where?
    Let me start with temporary objects--wherever is your work schema is specified in the topology manager..your temporary objects are created. Knowledge modules..depending upon what type of load you want..control append for just insert/truncate insert
    incremental update for merge/update insert....and SCD for slowly changing dimensions.
    Priveleges..you need to create/insert/delete on the staging server...
    or if any other KM's i can use to move the data from external tables in stage database into load tables in datawarehouse like LKM's or IKM's as both the databases are ORACLE databases?
    Do you they will work without db link km's?
    yes they can..you need to create connections in the topology manager and create corresponding models.
    3)and where the temp objects will be created?
    Let me start with temporary objects--wherever is your work schema is specified in the topology manager..your temporary objects are created.
    Thanks
    Venkat

  • General Persistence Implementation Strategy Question

    Hi,
    I want to implement a J2EE application and use a persistence system like Hibernate. I will have to create several beans and set-up my ORM properly. Now, if I create an Enterprise project in NetBeans, where should I put my Peristence code? In a Web container or in a EBJ container knowing that both JSP pages and EJB will refer to my persisted beans? Or should I create another separate project and include the corresponding .jar in both my Web or EJB containers?
    What is the best strategy?
    Thanks,
    J.

    Jrm wrote:
    Hi,
    I want to implement a J2EE application and use a persistence system like Hibernate. I will have to create several beans and set-up my ORM properly. Now, if I create an Enterprise project in NetBeans, where should I put my Peristence code? In a Web container or in a EBJ container +
    knowing that both JSP pages and EJB will refer to my persisted beans+? I would say that JSPs should not be contacting your database directly. Better to go through a well-defined service layer that hides the persistence layer. All security, binding, and validation issues should be resolved before the service layer is called.
    Or should I create another separate project and include the corresponding .jar in both my Web or EJB containers?Both? Wrong.
    %

  • ACE Implementation Bridging Question

    Hi,
    My customer is looking to undertake ACE Module implementation in favour of legacy installed products.
    One of the requirements of the current environment is that some applications have VIPs and servers in the same IP Subnet and same Layer 2 vlan.
    I assumed using Bridge Mode (BVI) would be the way to go - but now I am not so sure. The examples of bridge group config I have seen reference the VIP in a separate Layer 2 Vlan to the Servers.
    My requirement is to have all in the same Layer 2 Vlan. Is this possible ?

    yes it is possible.
    You need two Vlans. clients & Vip will be on one Vlan and the servers on the other Vlan then you will bridge them using ACE.
    For e.g
    Lets say currently you have VLANX with all users & Servers.
    You can create a new Vlan "VLAN Y" , assign all servers to VLAN Y, assign VLAN X & VLAN Y to ACE and bridge VLANY (new vlan) & VLANX (Old VLAN) using ACE.
    Now your VIPs & clients will belong the old vlanX (same Ip subnet) & Servers will be on a new VlanY (again same Ip subnet.
    If you donot want to use two Vlans
    then you will have to use ACE in one arm mode. Simply extend the current vlan to the ACE module and configure SRC NAT/PBR.
    Reason behind using SrcNat/PBR is to make sure that return traffic from the servers should not bypass ACE module
    (which is not possible in case of bridge mode).
    Thanks
    Syed

  • Implementing Security Questions to reset password

    Hi there,
    we want to activate to solution, that a user, who forget his password, to reset their password with a securityquestion and answer.
    I set the parameter in UME-Properties and User Admin UI tab and create the UME-Roles,
    but after click on Help button at loginscreen, I see only four fields to enter:
    Username, Firstname, lastname and eMail.
    Anybody knows some hints?
    System is EP7 SPS15
    Best regards
    Christian

    Christian
    My 2 cents
    Cent 1:
    In order to see a security question, there should be a security answer setup.
    Once logged in as a user, go to Personalization and check that security question/answer are in place. If you setup self service correctly, you should be able to do see and setup them.
    Cent 2:
    Double check that the ume properties you setup via EP GUI are correct. There are consistency issues between EP Wizard and actual property values sometimes. Login to Config Tool and verify ume properties
    in com.sap.security.core.ume.service:
    ume.logon.logon_help
    ume.logon.logon_help.name_required          
    ume.logon.logon_help.securityquestion          
    If you change anything, restart the cluster.
    Regards,
    Slava

  • Implementing interface question

    Why is it that if you define an interface that includes a method that defines a throws clause, then the class that implements the method does not have to define the throws clause in the corresponding method definition.
    Cheers,
    SB

    Actually, you have overridden the interface�s method in your class.
    An overriding method may not throw an exception unless the overridden method throws that exception or a superclass of that exception.
    But you are not constrained to throw an exception when you override a method.
    Also, it is legal to not check for exceptions even if your method�s definition has declared an exception. This is true for any method declaration, not only for the overriding ones.

  • Need SD and SD/FI Interview Questions

    Hi,
    I need real-time interview questions for SD and SD/FI including sample tickets, project implementation type questions, and most commonly asked questions. I would greatly appreciate if you could send it to:
    [email protected]
    Rewards will be given generously.
    Thanks

    link: http://www.sap-img.com/sap-sd.htm
    <b>Interview Questions</b>
    Important Tips for Interview for SAP SD
    SAP SD Interview Questions
    Interview Question and Answers on SAP SD
    Some SAP SD Interview Questions 1
    Some SAP SD Interview Questions 2
    <b>Tables/Tcodes in SAP SD</b>
    Important Tables for SAP SD
    SAP SD Transaction codes List
    Task Specifc SD Transaction Codes 1
    Task Specifc SD Transaction Codes 2
    Regards,
    Rajesh Banka
    Reward suitable points.
    How to give points: Mark your thread as a question while creating it. In the answers you get, you can assign the points by clicking on the stars to the left. You also get a point yourself for rewarding (one per thread).

  • CIN Activation Later after implementation

    Hi All,
    My customer is using SAP from last 2 years with out activating CIN. They are posting excise entries through conditions. Now they are going for CIN implementation, My question is that what are the challenges do we face while implementing CIN Now?
    Right now customer has activated TAX jurisdiction.
    Could you throw some light on what are the things do we need to take care at the time of implementing CIN.
    Thanks in Advance
    Shashikanth.M

    hh

  • Why the HashMap implements the Map interface twice

    See the type hierarchy below:
    HashMap<K,V>
    &#9475;
    &#9507;AbstractMap<K,V>
    &#9475;&#9475;
    &#9475;&#9495;Map<K,V>
    &#9495;Map<K,V>
    The HashMap extends AbstractMap, which implements Map. So the HashMap has already implements Map, and has the Map type. But the HashMap's declaration still contains "implements Map".
    So why the HashMap implements the Map interface twice?
    Thanks in advance.

    georgemc wrote:
    Maybe the guy who wrote HashMap wanted to make it clear that HashMap implemented Map, rather than rely on you looking further up the hierarchy to find outYes, it does make the Javadoc clearer. If they hadn't done that then there would have been legions of newbies who couldn't tell that HashMap implemented Map and thousands of "I have a doubt, does HashMap implement Map" questions here.

  • Oracle Reserved Words in EJB Implementations

    Hello Everybody!
    Suppose there is a table in Oracle , say Account which has a column, say comment. comment is a reserved word in Oracle. I would like to know how Oracle reserved words are handled in EJB implementation. For example, suppose there is an enterprise application that accesses such a table using CMP beans, how would we specify the <field-map>
    <field-map>
    <cmp-field>comment</cmp-field>
    <dbms-column>COMMENT</dbms-column>
    </field-map>
    This doesnt work because COMMENT is a reserved word in Oracle. In Oracle,
    if we use comment as a column name, it has to be represented in double quotations.
    for example, this select query doesnt work
    select COMMENT from account;
    these select queries works
    select "COMMENT" from account;
    select A."COMMENT" from account A;
    Regarding the current EJB implementations, the question is whether they support Oracle reserved words in their mappings??
    "COMMENT"s welcome
    Thanks!
    Manu Ramakrishnan

    >
    This doesnt work because COMMENT is a reserved word in
    Oracle. In Oracle,
    if we use comment as a column name, it has to be
    represented in double quotations.
    Did you try it?
    Did you try it with double quotes?
    The specs I looked at do not discuss this(jdbc, ejb, j2ee.) The ejb spec reserves as part of EJB QL some standard ANSI SQL reserved words and specifically suggests that other ANSI SQL reserved words should not be used.
    And if I am reading the EJB QL section correctly identifiers (which would be a table, field names) do not allow quoted identifiers. Or at least they specifically do not allow fields with, for example, a space. This sort of name is specifically allowed for in ANSI SQL and has been since the first version of ANSI SQL. They also do not allow for case sensitive names, which again is allowed in ANSI SQL as part of a quoted identifier.
    That suggests to me that you use reserved words that either you going to be using a non-J2EE feature of a container or it simply won't work in the first place.

  • Sample Interview question and Scenario

    Dear Gurus
    iam going to prepare for my interview,  pls help if any interview question and scenario
    regards
    Mohammed Renu.I
    [email protected]

    Hi Mohammed Renu,
    Please Reward because people are spending lot of time on this and Motivates
    them in answering your questions.
    A.Please find some useful links below;
    http://www.sap-img.com/sap-sd/sap-sd-interview-questions.htm
    http://www.sap-img.com/sap-sd/some-sap-sd-interview-questions-1.htm
    http://www.geekinterview.com/Interview-Questions/SAP-R-3/Modules
    Refer to the following site
    http://www.allinterview.com
    http://www.sap-img.com/sap-fi.htm
    http://www.allinterview.com
    Check Below links for FAQ on SD
    http://storage-search-swicki.eurekster.com/SAPSDfaq/
    http://www.sapfans.com/sapfans/sapfaq/faqsd.htm
    http://www.sap-img.com/sap-sd/important-tips-for-interview-for-sap-sd.htm
    http://www.sap-img.com/sap-sd/sap-sd-interview-questions.htm
    http://www.sap-img.com/sap-sd/interview-questions-and-answers-on-sap-sd.htm
    http://www.sap-img.com/sap-sd/some-sap-sd-interview-questions-1.htm
    http://www.sap-img.com/sap-sd/some-sap-sd-interview-questions-2.htm
    http://www.sap-img.com/sap-sd/sd-questions-on-corporate-structure.htm
    http://www.sap-img.com/sap-sd/short-sap-sd-questions-1.htm
    http://www.sap-img.com/sap-sd/short-sap-sd-questions-2.htm
    http://www.sap-img.com/sap-sd/short-sap-sd-questions-3.htm
    http://www.sap-img.com/sap-sd/sd-faq.htm
    http://www.sap-img.com/sap-sd/link-between-sap-sd-mm-and-fi.htm
    http://www.sap-img.com/sap-sd/why-do-we-assign-division-to-sales-organisation.htm
    1. What is EDI invoices, how it reflects in SAP R3 system
    Ans: Quite generally, you create an invoice by a normal way, but after this you generate an output (print document) in the form of an IDOC. This IDOC can be sent to the customer. The process is similar to the standard print output of the invoice. The Idoc should be of a message type INVOIC. The function module is IDOC_OUTPUT_INVOIC.
    There is also a self-billing process with the invoice creation. In this case the customer sends the IDOC for himself. This IDOC must be processed via EDI on Sd side, then the SD invoice will be created. To learn this process, please call the function module IDOC_INPUT_SBINV in the transaction SE37 and the press the button "Function Module Documentation". The SBINV process can be realized via EDI only.
    http://help.sap.com/erp2005_ehp_02/helpdata/en/ef/cd3a1bb2e243cb8b25aec201ea732f/frameset.htm
    http://www.sap-img.com/basis/difference-between-edi-and-idoc.htm
    http://www.sap-img.com/sap-sd/sap-sd-interview-questions.htm
    2. What is meant by Explosion in SD?
    Ans: It is related to Bill of Material where one parent item is linked with several child items. For creation/edit/display, T-Code is CS01/02/03
    http://help.sap.com/saphelp_bev461/helpdata/en/f1/0e955bd1a011d49540006097d8f90e/content.htm
    3. What is the usage of configuration nprofile in variant configuration
    Ans: configuaration profile is a place where we will configure configurable material (mmk1) with class type 300 and class which u have defined. Here the values of variant characteristics will be stored
    or
    a). We use the configuration profile to assign the configurable material to one or more variant classes. This links the material to the characteristics of the class for configuration.
    b).You can define settings that affect the display options and scope of characteristics on the
    value assignment screen. (i.e. CU50)
    c). You can use the configuration profile to assign dependencies to a configurable object.
    d). For maintaining configuration parameters for BOM explosion.
    You maintain the configuration parameters for a configurable general maintenance task list in the configuration profile.
    The settings that you make here also concern the BOM explosion for the piece of material. In addition, at least one class, whose class type allows variant configuration, must be assigned to each configuration profile. The class contains the characteristics that the system proposes for characteristic evaluation when you create a maintenance or service order.
    4. What do you mean by tickets? Could you please give me some examples of tickets?
    Ans: Tickets in SD can be considered as the problems which the end user or the employee in the company face while working on R/3. Tickets usually occur during the implementation or after the implementation of the project.
    There can be numerous problem which can occur in the production support and a person who is working in the support has to resolve those tickets in the limited duration, every ticket has the particular deadline alert so your responsibility is to finish it before that deadline.
    End user is not able to
    1. Create Sales order for a customer from a New plant, since shipping point determination is not happened. (Without Shipping point the document becomes INCOMPLETE and he will not be able to proceed further like DELIVERY, BILLING).
    He raises a ticket and the priority is set in one of the below
    1.Low 2. Medium 3. High.
    Now you need to solve this ticket. You would analyze the problem and identify that the SP configuration has to be done for the new plant.
    You would request a transport for DEV CLIENT to BASIS. You do the change and Request one more Transport to BASIS for QA client. The End user will test the same by creating a sales order for the new plant and approve it.
    Finally u request a transport to move the changes to PRODUCTION.
    Once the change is deployed in production the TICKET is closed.
    What I have given is a small ex. You would get some real issues with severity HIGH in your day-day support
    1. kofo error?
    2. Defecit in sales order stock?
    3. Pgi is not possible?
    4. Ship conformation is not possible?
    5. Picking or packing pgi is not possible?
    http://www.sap-img.com/business/tickets-and-authorization-in-sap-business-warehouse.htm
    /thread/459563 [original link is broken]
    5. What is the difference between sales process and business process?
    Ans. Sales Process: is also a business process where in only sales related activities are involved. I.e. for e.g.: sales order, purchase order, etc.,
    Business Process: any activity or business event where in business is involved we can those processes as Business Process
    BUSINESS PROCESS: Sequentially and logically related series of processes and functions for an internal or external target group to deliver a defined good or service. The R/3 Reference Model provides sample business processes in scenarios as EPCs.
    6. What is the difference between transit time and transportation time
    Ans:
    Transit time: time taken by the material to reach customers place. for eg: this is the time period right after the goods have left the shipping point of the business to the customer till the goods are received by the customer at his place..
    Transportation time: time taken to schedule the materials by shipping company. For eg: this is the time period right from the material manufacturing to the delivery of the material to the customer.
    Transit time: is the time taken by the material to reach customers place.
    Transportation time: is the time taken to schedule the materials by shipping company.
    7. What is the difference between free goods and bonus buy?
    Ans. Free goods are either inclusive or exclusive if a customer orders for 10 products he will get 1 free for that no price is charged this is exclusive scenario
    If a customer orders 10 products he will get 9+1 for 1 product he will not charged this inclusive scenario
    For bonus buy if a customer orders regularly 10 products in one occasion if he orders 1000 products he will be given less price than the price he will get for 10 products this bonus buy scenario
    Or
    Free goods are considered to be merchandise, moveable belongings or personal property. Free goods are those which economists are not interested in because in free goods doe not offer the opportunity for creating a cost for usage. The best example of free goods is air because there is no scarcity of air. Economists are interested only in goods, which can be manipulated to create cost for usage. Free goods are plentiful; you have as much as you want without a chance for future cost to society.
    A bonus buy refers to any product manufactured or otherwise made available for purchase at a lower cost for a certain period of time. A bonus buy can relate to food, cars, stocks, bonds, insurance, bank loans or almost any product you can think of.
    Examples of Bonus buys are: buy one and get one free, 20% original price, 15% Reduced Mortgage today.
    Free Goods: Free goods :
    A bonus buy refers to any product manufactured or otherwise made available for purchase at a lower cost for a certain period of time. A bonus buy can relate to food, cars, stocks, bonds, insurance, bank loans or almost any product you can think of.
    Examples of Bonus buys are: buy one and get one free, 20% original price, 15% Reduced Mortgage today.
    Bonus Buy: [VBK1] T.Code
    example TV---10000
    DVD 5000
    total 15000
    if u go for bonus buy u will get both for 12000
    8. What is the difference between static and dynamic in credit management
    Ans: Static Credit Limit Check
    The customer's credit exposure may not exceed the established credit limit. The credit exposure is the total combined value of the following documents:
    - Open orders
    - Open deliveries
    - Open billing documents
    - Open items (accounts receivable)
    The open order value is the value of the order items which have not yet been delivered. The open delivery value is the value of the delivery items which have not yet been invoiced. The open invoice value is the value of the billing document items which have not yet been forwarded to accounting. The open items represent documents that have been forwarded to accounting but not yet settled by the customer.
    Dynamic Credit Limit Check with Credit Horizon
    The customer's credit exposure is split into a static part; open items, open billing, and delivery values (see above), and a dynamic part, the open order value. The open order value includes all undelivered or only partially delivered orders. The value is calculated on the shipping date and stored in an information structure according to a time period that you specify (days, weeks, or months). When you define the credit check, you can then specify a particular horizon date in the future (for example: 10 days or 2 months, depending on the periods you specify). For the purposes of evaluating credit, you want the system to ignore all open orders that are due for delivery after the horizon date. The sum of the static and dynamic parts of the check may not exceed the credit limit.
    Main difference is horizon period is related for dynamic check not for static check
    SIMPLE CREDIT CHECK: Tr.Code - FD32
    It Considers the Doc.Value + Open Items.
    Doc.Value: Sales Order has been saved but not delivered
    Open Item: Sales Order has been saved, Delivered, Billed & Transferred to FI, but not received the payment from the customer.
    Eg: Customer Credit Limit is Rs.1,00,000/-
    Suppose Doc.Value + Open Item Value is Rs.1,10,000/-
    Here credit limit exceeds then system reacts.
    Options: A) Warning Message
    B) Error Message (Sales Order won't be saved)
    C) Error Message with Delivery Block
    AUTOMATIC CREDIT CHECK: Give extra credit facilities to the particular customer.
    STATIC CREDIT LIMIT DETERMINATION: Checking Group + Risk Catageory + Credit Control Area.
    A) Credit Checking Groups: Types of Checking Groups.
    01) Sales
    02) Deliveries
    03) Goods Issue
    At all the above 3 levels orders can be blocked.
    B) Risk Catageory: Based on the risk Categories Company decide how much credit has to give to the customer.
    HIGH RISK (0001) : LOW CREDIT
    LOW RISK (0002) : MORE CREDIT
    MEDIUM RISK(0003) : Average Credit
    Static Credit Check it checks all these doc value & check with the credit limit
    1) Open Doc.Value / Sales Order Value : Which is save but not delivered
    2) Open Delivery Doc.Value : Which is delivered but not billed
    3) Open Billing Doc.Value : Which is billed but not posted to FI
    4) Open Item : Which is transferred to FI but not received from the customer.
    DYNAMIC CREDIT CHECK : 1) Open Doc
    2) Open Delivery
    3) Open Billing
    4) Open Items
    5) Horizon Period = Eg.3Months
    Here the System will not consider the above 1,2,3& 4 values for the lost 3 months
    Then assign the Sales Doc & Del Documents.
    Sales Doc.Type(OR) + credit Check (0) + Credit Group (01)
    Credit Limit Check for Delivery Type : Del.Type (LF) + Del Credit
    Group (02) + Goods Issue Credit Group (03)
    9. Difference between 4.6 version and 4.6c ,4.7ee
    Ans. There are so many differences between the versions in different objects
    1. In the customer master in 4.6 version there is no partner function tab in the customer in xd01 t-code and also there is no CIN tab in that version but it is there in the 4.7 EE version
    This is the major change from the 4.6cc to 4.7EE
    2. in 4.7EE there is some settings that are related for CIN which cannot be done in 4.7EE that means they need some patches for doing the configuration setting for the CIN
    But we can do the same in the 6.0 versions
    These are the some of the settings that are differed in the two versions and in that two objects
    Re: Difference Between SAP Version ECC 4.6, 4.7, SAP 5.0, 6.0 with SA
    Differences between ECC 6.0, 4.7 and 4.6
    ecc 6.0
    10. Where is rebate define for quantity REBATE
    Ans: Following explains how to create a rebate agreement, test it using a sales order and billing it. Then settling it partially or fully using a rebate credit memo. Please use the basic procedure and tweak your IMG settings according to your unique requirements.
    Rebate processing:
    1. First requirement is that the rebate processing must be active for
    a. the customer ( check in customer master) ,
    b. for the billing type ( check in IMG > Billing > rebate processing > active rebate processing > select billing documents for rebate processing. )
    c. For the sales organization:
    ( check in IMG > Billing> rebate processing > active rebate processing > Active rebate processing for sales org. )
    2. Next create a rebate agreement for this us T-code VB01. For the rebate agreement type you can choose either 0001
    (group rebate) or 0002 material rebate or 0003 (customer rebate) etc
    b. Enter your rebate conditions. Don’t forget to enter the accrual rate here.
    3. Now test your rebate functionality: create a sales order for the particular customer, sales org (ensure that the billing type used in your sales order is relevant for rebate). Create outbound delivery, transfer order to do picking and post goods issue.
    4. Now go to T.Code VB03 and check your rebate by choosing conditions, selecting the condition line and choosing payment data. You will see that the accruals and business volume are updated when accounting doc is created for billing.
    5. Settling your rebates:
    Once your rebates have been accrued you need to settle the rebate.
    For this first release the rebate for settlement by using T.Code VB02. As a trial basis choose B (you can choose other settings based on your requirement) and choose Create manual accrual. Now enter the amount to be paid and save the rebate agreement.
    6. Next display your rebate agreement using T.Code VB03.
    Enter your rebate agreement number. Next choose rebate payments > Rebate documents and select partial settlement. Click on the choose button to note down your credit request number.
    7. Use T.Code VA02 and release the billing block for your credit request. (Use item overview tab)
    8. Now use VF01 to create a rebate credit memo by entering the credit memo request number and save it
    9. Now release the credit memo to accounting using vf02.
    Quantity Rebate:
    In rebate agreement details we will define the rebate basis whether it is the quantity rebate or volume based rebate.
    Rebate Agreements
    A rebate is a special discount which is paid retroactively to a customer. This discount is based on the customer's sales volume over a specified time period.
    You can process rebate agreements when the following prerequisite conditions are met:
    sales org is relevant for rebate processing
    payer (customer master record) is relevant for rebate processing
    billing type (invoice, credit memo) is relevant for rebate processing
    Condition types for rebate agreements:
    BO01 – Customer/Material or Customer/Rebate group = % rebate
    BO02 – Customer/Material = quantity dependent
    BO03 – Customer = % rebate
    BO04 - Customer hierarchy = % rebate
    BO05 – Customer hierarchy/Material = % rebate
    BO06 – Sales vol independent
    Creating Rebate Agreements
    Logistics&#61614; Sales and distribution &#61614;Master data
    Agreements&#61614; Rebate agreement &#61614;Create
    To create a condition record for a rebate agreement:
    When you&#61614;&#61472;creating or changing rebate agreements, Conditions to get to the can create condition records by choosing Goto Agreement Overview screen.
    Enter the data necessary to create a condition record (for example: customer and condition rate).
    Choose ENTER.
    If you do not enter a value for the accrual rate, the system automatically proposes the value you entered as the condition rate.
    To create a pricing scale for a condition record, select the condition record and choose Scales.
    To display or change details in a condition record, select the condition record and choose Details.
    It is possible to see an overview of condition records that already exist in other rebate agreements and that have the same key combination (customer/material, customer/rebate group, and so on).
    To view the list, select Validity periods.
    You is to be&#61614;&#61472;can set for each rebate agreement whether it Rebate calendar renewed automatically or not. Select Extras Reactivate or Remove in the &#61614;&#61472;Change Rebate mode.
    Rebate Process with Ref. to SO
    Rebate agreemnts is based on agreement types.Conditon records which are created like B001 and B002 are linked to the rebate agreeements specifying the rebate rate + the accrual rates.condition records specify the rebate rate and the accrual rates.
    Consider an example..
    You decided to give a rebate of 3% to a customer whose sales vol is $1000 for a particular SO
    Then the rebate value is $30..
    Now when you make the rebate settlement by doiing the Credit memo and you decide to pay $27, then the accounting will be generated saying 27$ paid towards rebate and 3$ is the accrual which you owe to the customer
    Procedure:
    Rebate agreement: Transaction code: VB01
    When you go to VB01, choose agreement type 0002 and then in conditions give
    Material rebate
    1 20
    20 30
    Now create a sales order with a material say M-11 for SOrg 1000 12 00 with QTY 6
    Now check VB03 and see rebate agreemtent it will say Accruals 120 and payments 0
    since your rebate is not settled still.
    Rebate setllement
    Go to VB02 enter ur sales deal no, and change the agreemetn status to B then enter Shift+F12 and enter the amount to be paid for example u say $80
    Then check in rebate payments rebate doc and partial setllemetn since you have not paid in full.
    View the credit memo request
    Remove the Billing bloock Go to VA01 and put order type G2 ,,,go to create with ref and enter ur Sales order no,,,save the doc now...
    Then go to VF01 and enter the credit memo reqst no generated...save the doc no and go to VF02 and say release to accounting
    Now the final settlement will be this way
    Accruals:120
    Accrual reversed:80
    Rebate pay:80
    Amount payable:40
    So the balance 40 is still the accrual
    This is an example how a rebate will be processed with ref to a SO with an example.
    11. what is solution manager?what is purpose of it?2.in support what type of tool we can use?3.what is change
    Ans: SAP Solution Manager is a centralized, robust solution management toolset that facilitates technical support for distributed systems – with functionality that covers all key aspects of solution deployment, operation, and continuous improvement. It combines tools, content, and direct access to SAP to increase the reliability of solutions and lower total cost of ownership.
    With SAP Solution Manager, you can be sure your entire SAP solution environment is performing at its maximum potential. The toolset addresses your entire IT environment, supporting SAP and non-SAP software and covering current and forthcoming SAP solutions. As part of SAP NetWeaver, SAP Solution Manager is included in the annual maintenance fee for SAP solutions.
    SAP Solution Manager targets both technical and business aspects of your solutions, focusing strongly on core business processes. It supports the connection between business processes and the underlying IT infrastructure. As a result, it eases communication between your IT department and your lines of business. And it ensures that you derive the maximum benefits from your IT investments.
    SAP Solution Manager features and functions include:
    • SAP Business Suite implementation – SAP Solution Manager provides content that accelerates implementation. Configuration information and a process-driven approach to implementation speed the blueprint, configuration, and final preparation phases. SAP Solution Manager enables efficient project administration and centralized control of cross-component implementations.
    • Global rollout – The toolset eases process standardization and harmonization across organizations and locations by providing proven methodologies and all necessary functionality. You can more easily implement standardized settings at local sites, because configuration settings needn't be re-entered into local components.
    • Synchronization of custom settings – With SAP Solution Manager, you can maintain consistency as you customize your heterogeneous IT environment. It enables safer administration of customization, less error-prone replication of custom settings, and simpler consistency checks. SAP Solution Manager reduces manual synchronization efforts by automatically distributing custom settings to various systems simultaneously, and by centrally managing all requests to synchronize settings.
    • Testing – SAP Solution Manager speeds test preparation and execution. It provides a single point of access to the complete system landscape and enables centralized storage of testing material and test results to support cross-component tests.
    • IT and application support – The support desk included in SAP Solution Manager helps you manage incidents more efficiently and eases the settlement of support costs. Centralized handling of support messages makes the support organization more efficient.
    • Solution monitoring – SAP Solution Manager performs centralized, real-time monitoring of systems, business processes, and interfaces, which reduces administration effort. It can even monitor intersystem dependencies. Proactive monitoring helps you avoid critical situations, while automatic notifications enable fast response to issues.
    • Service-level management and reporting – SAP Solution Manager allows easy definition of service levels and provides automated reporting. Service reporting covers all systems in the solution landscape and provides a consolidated report containing the information you need to make strategic IT decisions.
    • Service processing – SAP Solution Manager makes appropriate service recommendations and delivers SAP support services. These include SAP Safeguarding, which helps you manage technical risk; SAP Solution Management Optimization, which helps you get the most from your SAP solutions; and SAP Empowering, which helps you manage your solutions.
    • http://blogs.ittoolbox.com/sap/support/archives/introduction-to-sap-support-10712http://help.sap.com/saphelp_nw04/helpdata/en/ae/64c33af662c514e10000000a114084/content.htm
    https://websmp109.sap-ag.de/~sapidp/011000358700003273032004
    tools:
    https://www.sdn.sap.com/irj/sdn/docs?rid=/library/uuid/04c6d8ea-0c01-0010-698f-f670daea40a7
    https://websmp209.sap-ag.de/~sapidp/011000358700003127162006
    http://www.sap.com/platform/netweaver/components/solutionmanager/index.epx
    12. How can we define sales order (VA01) & scheduling agreement (VA31)
    Ans: Sales Order: it’s a reference document for the order placed by the customer with the business. refer the link for more info: http://help.sap.com/saphelp_crm40/helpdata/en/1d/3117ee84ab1544b0422c84178e52d6/content.htm
    Scheduling Agreement:http://www.sap-img.com/sap-sd/sap-sd-scheduling-agreement-vs-contract.htm
    13. What is gap analysis and when it will be use in the time of project.
    Ans: Business blue print stage is called as is process. Fit gap means, before implementing the SAP all the business data is in the form of documents, we cannot keep this data as is in the SAP. There should be a gap. So by filling this gap, we make configuration with the help of these documents. This is called as fit gap analysis. In this stage, we should analysis the gap between as is and is as process
    GAP Analysis
    A through gap analysis will identify the gaps between how the business operates ad its needs against what the package can can't do. For each gap there will be one of three outcomes which must be recorded and actioned, GAP must be closed and customized software can be developed close the gap, GAP must be closed but software cannot be written therefore a workaround is required, GAP does not need to be closed.
    In simple terms: Gap means small cracks. In SAP world. In information technology, gap analysis is the study of the differences between two different information systems or applications (ex; existing system or legacy system with Client and new is SAP), often for the purpose of determining how to get from one state to a new state. A gap is sometimes spoken of as "the space between where we are and where we want to be." Gap analysis is undertaken as a means of bridging that space.
    Actual gap analysis is time consuming and it plays vital role in blue print stage.
    Cut Over Plans
    Detailed plans need to be developed for cutting over from the old system(s) to the new. Parallel runs of what will happen over the conversion period using test data, convert and watch for a period after wards to ensure nothing unexpected happens.
    Train Users
    Well trained users will support and defend the system on site. Unsupportive users will continually undermine the system and eventually it will be replaced. Therefore the more effort you put into helping the users master the system early the better. Fit gap means, before implementing the SAP all the business data is in the form of documents, we cannot keep this data as is in the SAP. There should be a gap. So by filling this gap, we make configuration with the help of these documents. This is called as fit gap analysis.
    GAP Analysis
    A through gap analysis will identify the gaps between how the business operates ad its needs against what the package can can't do. For each gap there will be one of three outcomes which must be recorded and actioned, GAP must be closed and customized software can be developed close the gap, GAP must be closed but software cannot be written therefore a workaround is required, GAP does not need to be closed.
    In simple terms: Gap means small cracks. In SAP world. In information technology, gap analysis is the study of the differences between two different information systems or applications (ex; existing system or legacy system with Client and new is SAP), often for the purpose of determining how to get from one state to a new state. A gap is sometimes spoken of as "the space between where we are and where we want to be." Gap analysis is undertaken as a means of bridging that space.
    Actual gap analysis is time consuming and it plays vital role in blue print stage
    The Gaps can differ from company to company. Most commonly, however, missing functionality is industry-specific.
    Examples:
    1. MGM Studios and Lycos sometime back worked with SAP to develop its new intellectual property management and media advertising management functionality, respectively.
    2. A leading Oral care product company wanted the promotion of free-goods where they wanted 'Buy one get 2 different products free'.
    2 gaps are, In customer master data the client requirement needs legacy customer number which can be solved with User exit.,
    In sales order we need customer Phone number, We can use user exit
    These 2 are gaps, which we cant, find in Standard SAP
    1. If client want new field in customer master like nearest fire station..
    2. Order will be uploaded directly with out va01. Through BDC... bcoz lot of orders if they get daily, they can opt these...
    Movement type 1 uses when a material have two movement types. Like example 101 and 261. One is incoming raw material and going for production...
    A through gap analysis will identify the gaps between how the business operates ad its needs against what the package can can't do. For each gap there will be one of three outcomes which must be recorded and actioned, GAP must be closed and customised software can be developed close the gap, GAP must be closed but software cannot be written therefore a workaround is required, GAP does not need to be closed.
    In simple terms: Gap means small cracks. In SAP world. In information technology, gap analysis is the study of the differences between two different information systems or applications( ex; existing system or legacy system with Client and new is SAP), often for the purpose of determining how to get from one state to a new state. A gap is sometimes spoken of as "the space between where we are and where we want to be." Gap analysis is undertaken as a means of bridging that space.
    Actual gap analysis is time consuming and it plays vital role in blue print stage.
    Cut Over Plans Detailed plans need to be developed for cutting over from the old system(s) to the new. Parallel runs of what will happen over the conversion period using test data, convert and watch for a period after wards to ensure nothing unexpected happens.
    Train Users Well trained users will support and defend the system on site. Unsupportive users will continually undermine the system and eventually it will be replaced. Therefore the more effort you put into helping the users master the system early the better.
    This is a part of Second Phase in project implementation
    14. How to get cash sale invoice with rd03 and tell me the process cashsale delivery and invoice please?
    15. What is the difference between rebate and discount?
    Ans: Rebate is nothing but this is also a type of discount given by the business but unlike Discount this is not given immediately to the customer, say rebates are given after a certain amount of purchase is reached by the customer, or during a particular period of time, whereas in Discount the customer is benefited by a reduce of bill amount immediately when a purchase is done by the customer.
    Rebate is a partial repayment, whereas a refund is a repayment of the total purchase price and Discount is reduction in Price
    Or
    Rebate: an incentive to be given to a customer. Clubbed with qty purchased by a customer within the period specified (say one month)-conditional.
    Discount: unconditional, to be given to a customer on account of heavy purchase by one single billing. From the price List (Base price).
    16. How to configure pod. Where to enter pod no in billing doc.how idoc is triggered
    17. What are tickets available in implementation project in sd module.
    Ans. /thread/459563 [original link is broken]
    http://www.sap-img.com/sap-sd/interview-questions-and-answers-on-sap-sd.htm
    www.sap-img.com > search for Tickets will get more info..
    18. What controls the schedule line what is the movement type of delivery?
    Ans: schedule Line Refer the link: http://help.sap.com/saphelp_erp2005/helpdata/en/dd/55fb20545a11d1a7020000e829fd11/content.htm
    movement type: 601
    19. Implementation interview questions of sap sales and distribution modules
    20. how system determines shipping point for a line item in the sales order?
    Ans: The shipping point is assigned to the shipping conditions, loading group and plant. i.e shipping point determination. through which shipping point is determined in the line item at order level.
    or
    system determines shipping point for a line item inthe sales order by shipping conditions from the cust master and loding grp from material mater and plant
    21. can you able to delete the company code data in customer master data?
    Ans: No you cannot delete company code..
    22. what is the tool used in sap sd support to communicate with the user for handling the tickets
    Ans: CITRIX is the tool to acces client's enviornment.Under CITRIX u can find an icon called SYNERGY (in synergy u can check your tickets.)
    23. How can the sales documents be combined for the stock ordering purposes??More specifically...a regional
    24. please,explain condition records in pricing
    Ans: http://www.sap-img.com/sap-sd/sd-questions-about-pricing-condition.htm
    25. how the data is transferred from r/3 to crm server
    26. how to configure partial deliveries?
    Ans:
    Partial Delivery: http://help.sap.com/erp2005_ehp_02/helpdata/en/dd/5607f4545a11d1a7020000e829fd11/frameset.htm
    Delivery Processing: http://help.sap.com/erp2005_ehp_02/helpdata/en/dd/56078c545a11d1a7020000e829fd11/frameset.htm
    27. What is the difference between ATP check and availability check how these reflect in sales order(which
    Ans: ATP Check: http://help.sap.com/erp2005_ehp_02/helpdata/en/2b/b22d3b1daca008e10000000a114084/frameset.htm
    Configuring ATP : http://help.sap.com/erp2005_ehp_02/helpdata/en/f7/372e3b7532394ce10000000a114084/frameset.htm
    Rules Based ATP: http://help.sap.com/erp2005_ehp_02/helpdata/en/d9/f22e3bbaf0ce6ee10000000a114084/frameset.htm
    ATP with MRP: http://help.sap.com/erp2005_ehp_02/helpdata/en/64/3a3054faba11d1a6bf0000e83235d4/frameset.htm
    Availability Check: http://www.saptechies.com/what-is-availability-check-how-to-configuration-of-it/
    http://help.sap.com/erp2005_ehp_02/helpdata/en/cf/70124adf2d11d1b55e0000e82de178/frameset.htm
    28. After the completion of the implementation if the end user is unable to process a transaction,how do
    29. what is the difference between free goods & bonus buy?How do you configure bonus buy?
    Ans: refer to ur Ques.7
    30. what is the control parameter in setting item category
    31. what are tickets/issues in sap SD? who handles these things and give a brief description of the same?
    Ans: refer to ur Ques.17
    32. What is Bonus Buy and how would I process?
    Ans: refer to ur Ques.7
    http://help.sap.com/erp2005_ehp_02/helpdata/en/40/c0e238f0d111d2adff080009d2232d/frameset.htm
    33. what is availability check, how to configuration of it?
    Ans: http://www.sap-img.com/sd028.htm
    Availability check-----stock confm qty--Urgent reply.....
    Also Refer to the links below for more info
    http://www.sap-img.com
    u can get most of the queries cleared up at sap techies
    http://www.saptechies.com
    Please Do Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

  • What architecture is best for accurate data logging

    Hello,
    I'm desiging some LabVIEW code for a standard DAQ application that is required to plot about 100 variables onto the screen on several different graphs and numeric indicators, as well as perform some simple feedback control and log data into a file once a second.
    I've done this before, and used a simple state machine architecture, where one state takes care of my logging, and I have a timer vi in there that countsdown 1 second and then writes to file.  However, this method makes me miss a second every once in a while.
    I started looking into the producer/consumer architecture as a possible remedy for this.  Because I hear it's good for running two things at different times, so I"ll have my quicker loop handling data acquistion, plots and feedback control, and my slower logging loop, executing once a second.  But I don't see how to implement this
    questions:
    1. is a simple producer consumer the right topology for my application?
    2. when I create my queue do I create it a 100 element array (my data for logging) and then enqueue that in my producer loop from my data acquistion, then pass that to the logging VI.... this seems wrong to me, cause I'm going to be enqueing alot of 100 element arrays... and will be de-queing them slowly at once a second..
    3. How do I trigger my consumer loop to execute every second, should I set it up as a timed while loop? or should something from the producer loop tell it to?
    I'm sure this is a pretty standard thing to do, I'm jus tnot sure how to implment the correct architecture.
    much thanks! 

    Ok, let's try this.  I've put together an example that should do what you need.  I put notes in the block diagram, but essentially it runs data in a while loop at whatever execution rate you specify, then sends the data to another graph (or in your case, a log) every one second.  Basically, I've used a 100ms execution rate for the while loop, then every 10th time (you can change this if you want), it sends a boolean 'true' to a case structure within the while loop that contains the enqueue element.  The graphs that I included show that it does indeed add a new point to the second graph once a second while the first one is adding a point every 100ms.
    The actual wiring of this Vi could be cleaner for sure, but it was a quick and dirty example I put together.  Hopefully this will help you accomplish what you're trying to do.
    Regards,
    Austin S.
    National Instruments
    Academic Field Engineer
    Attachments:
    Enqueue array 2.vi ‏28 KB

Maybe you are looking for

  • Apps will not open please help

    When i try to open some of my apps on my 3rd gen ipod touch they will open and then close before i can do anything. what do i do?

  • Apps not listed on Settings

    I just purchased the Team Umizoomi math app and loaded it on my iPad but there is no sound.  I read on the app's site that the sound needs to be turned on through settings. When I go to settings on my iPad, there is only one (of at least a dozen) app

  • I have accidentally deleted a document how do I recover it?

    I have accidentally deleted a text document and would like to recover it. Can anybody help? DouglasfromCroydon

  • Ii need to replace my rt battery is there a sequennce to follow? first time would not reboot

    »Compaq Presario CQ50-215NR Notebook PC / OS VISTA - need help with rt battery replacement - have new one from HP - recently worked for one run and would not boot afterward - put old battery back in and ran fine - is there something else to do other

  • Free Phone Friday

    Here it is thursday night and no one at BB knows anything about the free phone giveaway tomarrow morning. It's been advertised all over the web and at BB website but if you call the store guess what? No one there has a clue, can you believe it? What'