I need forum for beginner learner in inventory purchase and SCM modules

I need forum for beginner learner in inventory purchase and SCM modules

Saging,
Hmmm.  It seems a bit odd to be creating a 'forecasting-of-material-procurement' tool, when SAP has so many already built in, either within ERP or within APO.  Oh well, I am sure there must be a good reason.
I have seen from our systems that most loads come from APO going to BI. Is it always that way?
BI type data can come from any source.  The most common BI solutions I have seen is where BI data are extracted from the main ERP.  However, the beauty of BI is that it doesn't care, SAP builds in functionality to get data from anywhere.
Are data from ECC considered as well?
They can be if you design it so.
You should be aware that most data existing in ERP that are relevant for material planning also usually exist in APO.  The Core Interface between ERP and APO is normally set up to natively replicate substantial quantities of Master data and also transactional data.  It may be that in your business environment, you really don't need to connect to anything other than APO.  However, this is not a limitation of BI, it is just smart programming to try to minimize the number of sources of your data.
Best Regards,
DB49

Similar Messages

  • I want to buy a laptop for my study in college. I need it for web browsing, youtube, words, powerpoint, and light-medium photoshop. Should I buy rMBP 13" or MBA 13" ? Thx

    I want to buy a laptop for my study in college. I need it for web browsing, youtube, words, powerpoint, and light-medium photoshop. Should I buy rMBP 13" or MBA 13" ? Thx

    Either - if you need the 'ultimate' in portability, buy the Air. But whichever you buy, make sure that you max out the RAM and the storage as neither the Air or the Retina MacBook Pro are user upgradeable.
    Clinton

  • Transaction codes for goods issue,Initial inventory,purchase contract......

    hi experts,
                can any one know the transaction codes for  Goods issue,Initial Inventory,
    purchase contract,billing data and the table name in which inactive vendors and active vendor are available.
                          thanking you

    Hi,
         mb5b, mb51  for goods issue
    MI01  for Initial Inventory
    ME31K for Purchase Contract
    MIRO for Billing data
    in SAP easy access
    under Financial accounting >Accounts payable-> information systems-->masterdata report
    you can display blocked vendors also as a list there using those reports.
    the vendors which are blocked are inactive vendors
    <b>Reward points</b>
    Regards

  • Need API for EAM Active Association - Asset number and Asset Group

    Hi
    I am working in R12 and need api for EAM Active Association - Asset number and Asset Group to insert the new records.
    If any one is aware please let me know API with sample script.
    Regards
    Suresh P

    All APIs are listed in Oracle Integration Repository
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

  • I was charged for music that I unknowingly purchase, and haven't downloaded. Can I be credited for that purchase?

    I was charged for music that I unknowingly purchase, and haven't downloaded. Can I be credited for that purchase?

    Click here and ask the iTunes Store staff for a refund.
    (115268)

  • Settings for updating info structures of purchasing and inventory managemen

    Hi Experts,
                    Infor structures of MM aren't updating in my system. Is there any indicator to be maintained in material and vendor master for updating these info structures? and kindly tell me the settings for this.
    Thanks
    Harmandeep

    Plz some one help

  • Need help for JTextPane as JTree node renderer and styling in JTextPane!!!

    hello,
    I have a tree which is loading from database. And in renderer i am using JTextPane. I am putting huge text around 500 words in each node. And this Text is formatting using StyledDocument in JTextPane.
    My problem is tree is taking very long time for loading because of this styleddocument. and also size and space of nodes are not proper. how can i solve this issue.
    here is my renderer code.
    public class TraditionalViewTreeRenderer  implements  TreeCellRenderer
            private JPanel jpRubricName;
            private JTextPane lblRubricName;
            private DefaultTreeCellRenderer defaultRenderer = new DefaultTreeCellRenderer();
            private Color backgroundSelectionColor;
            private Color backgroundNonSelectionColor;
            private FontMetrics fontMetrics;
            public TraditionalViewTreeRenderer(){
                jpRubricName=new JPanel();
                lblRubricName = new JTextPane();
                jpRubricName.add(lblRubricName);
                backgroundSelectionColor    = defaultRenderer.getBackgroundSelectionColor();
                backgroundNonSelectionColor = defaultRenderer.getBackgroundNonSelectionColor();
            @Override
            public Component getTreeCellRendererComponent(JTree tree, Object value,boolean selected,boolean expanded, boolean leaf, int row,boolean hasFocus){
                Component returnVal=null;
                if(value!=null && value instanceof DefaultMutableTreeNode){  
                    Object userObj = ((DefaultMutableTreeNode)value).getUserObject();
                    if(userObj instanceof RubricNode){
                        try {
                            RubricNode node = (RubricNode) userObj;
                            if(node!=null && !node.getRubricName().equalsIgnoreCase("")){
                                if(node.getRemedyList()!=null){
                                    lblRubricName.setText("");
                                    highlightContent(lblRubricName,node.getRemedyList(),node);
    //                                fontMetrics = lblRubricName.getFontMetrics(lblRubricName.getFont());
    //                                int prefHit = fontMetrics.getHeight() * node.getRemedyList().toString().length();
    //                                if(prefHit!=tree.getRowHeight()){
    //                                    lblRubricName.setPreferredSize(new Dimension(Short.MAX_VALUE,prefHit   ) );
    lblRubricName.setPreferredSize(new Dimension(900,getContentHeight(node.getRemedyList().toString())   ) );
                            if (selected) {
                              jpRubricName.setBackground(backgroundSelectionColor);
                            } else {
                              jpRubricName.setBackground(backgroundNonSelectionColor);
                            lblRubricName.validate();
                            jpRubricName.validate();
                            returnVal = jpRubricName;
                            tree.expandRow(row);
                        } catch (Exception ex) {
                            Logger.getLogger(RepertoryTradView.class.getName()).log(Level.SEVERE, null, ex);
    //            if(returnVal==null){
    //                returnVal = defaultRenderer.getTreeCellRendererComponent(tree, value, leaf, expanded, leaf, row, hasFocus);
                return returnVal;
        private void highlightContent(JTextPane comp,List l,RubricNode rubric) throws BadLocationException{
            for(int i=l.size()-1;i>=0;i--){
                comp.getStyledDocument().insertString(0, "., ", ((Remedy)l.get(i)).getRemedyStyle());
                comp.getStyledDocument().insertString(0, l.get(i).toString(), ((Remedy)l.get(i)).getRemedyStyle());
            if(l.size()>0){
                comp.getStyledDocument().insertString(0,rubric.getRubricName()+":",rubric.getRubricStyle());
            }else{
                comp.getStyledDocument().insertString(0,rubric.getRubricName(),rubric.getRubricStyle());
        } Remedy List is the list of 300-500 words..
    see above .. n suggest me something.
    My problem is about the size and spacing of each tree node and insertString() of styled document which is taking huge time to load.

    Main performance issue there is comp.getStyledDocument().insertString(...) calls.
    Each time you call this your comp which listens model updates layout.
    Instead of using the same Document create a new instance of the Document (e.g. by kit.createDefaultDocument()). Pass the newly created document in the method to insert all the content and after the insert completed call comp.setDocument(newDocInstance)
    Also check this http://java-sl.com/JEditorPanePerformance.html

  • [Beginner:] Incorporation of ECC, BI and SCM APO Inquiries

    Hi All,
    I would like to seek your help on something I am working on. We have this supplies procurement planning tool that I was helping to create. Our general objective is to create a tool that will give a forecast of supplies that people need to procure from a facility for the future months. I am under BI and I am wondering on the basics regarding BI and SCM APO data flows. Honestly, I am still clueless on this. I have seen from our systems that most loads come from APO going to BI. Is it always that way? Are data from ECC considered as well?
    Hoping to hear lots of advises on this. Thanks in advance for sharing your knowledge to a newbie like me.

    Saging,
    Hmmm.  It seems a bit odd to be creating a 'forecasting-of-material-procurement' tool, when SAP has so many already built in, either within ERP or within APO.  Oh well, I am sure there must be a good reason.
    I have seen from our systems that most loads come from APO going to BI. Is it always that way?
    BI type data can come from any source.  The most common BI solutions I have seen is where BI data are extracted from the main ERP.  However, the beauty of BI is that it doesn't care, SAP builds in functionality to get data from anywhere.
    Are data from ECC considered as well?
    They can be if you design it so.
    You should be aware that most data existing in ERP that are relevant for material planning also usually exist in APO.  The Core Interface between ERP and APO is normally set up to natively replicate substantial quantities of Master data and also transactional data.  It may be that in your business environment, you really don't need to connect to anything other than APO.  However, this is not a limitation of BI, it is just smart programming to try to minimize the number of sources of your data.
    Best Regards,
    DB49

  • TS1646 I am being charged for something i have not purchased and i would like to stop being charged

    I have been charged for things that i have not purchased and i would actually like my money back from them or for you to figure out who is using my card to buy things.
    thank you

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    You've checked your account's purchase history : http://support.apple.com/kb/HT2727 ?
    And you haven't got any auto-renewing subscriptions : http://support.apple.com/kb/HT4098 ?
    If they show on your accounts purchase history and you didn't make them, and nobody else has access to your account or devices and made them, then you can contact iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    If nothing shows on your account's purchase history then you may want to contact your card issuer.

  • Need info for Beginner in ADF Faces

    Hie,,,
    I am a total beginner in ADF and have even no background with JSF.
    So, could anybody please point me to some resources talking about managed bean and all...
    vik

    I've published a dummies guide to JSF here
    http://groundside.com/blog/GrantRonald.php?title=introducing_java_server_faces_to_4gl_dev&more=1&c=1&tb=1&pb=1
    might help you a bit.
    Regards
    Grant

  • I need options for data replication within production db and dimensional db

    Hi,
    I'm looking for options on how to solve this issue. We've 2 databases, one is our production, operative database, used by around 400 users at a time, and another one, which is our dimensional model of the same info, used to obtain reports. We also have a lot of ETL's (extract, transform and load) processes running every night to update the dim model.
    Mi problem is that we have some online reports, and nowadays, we're getting data from the operational database, causing a performance issue in online operations. We want to migrate this reports to the dimensional model, and we're trying to find the best options for doing this.
    Options that we're considering are ETL's process running continuously every XX minutes, materialized views, ETL's on demand, and others.
    Our objective is to minimize performance issues on transactional database.
    We're using Oracle 8i (yes, the oldie one) and Reporting Services as report engine (reports just run a pkg to get data).
    Any option is welcome.
    Thx in advance.
    Regards,
    Adrian.

    The best option for you if the performance is the
    most important is ORACLE STREAMS. Also is the most
    complex but the final results are very goodsAgreed. As User12345 points out, though, that requires Oracle 9.2 or higher.
    Another option is the materialized views with Fast
    Refresh , that need the materialized view logs in
    the master site.
    The first load is expensive but if you refresh each
    15 minutes the cost is not high.I'd be careful about making that sort of statement. The overhead of both maintaining materialized view logs (which have to be written to synchronously with the OLTP transactions and which impose an overhead roughly equivalent to a trigger on the underlying table) and doing fast refreshes every 15 minutes can be extensive depending on the source system. One of the reasons that Streams came about was to limit this overhead.
    For refresh i execute a cron shell that run the
    DBMS_MVIEW.REFRESH package. my experience with group
    refresh not was goodWhat was your negative experience with refresh groups? I've used them regularly without serious problems. Manual refreshes of individual materialized views against an OLTP system would scare the pants off me because you'd inevitably end up with transactionally inconsistent views of the data (i.e. child records would be present with no parent record, updates that affect multiple tables would be partially replicated until the next refresh, etc). Trying to move that sort of inconsistent data into a different data model, and trying to run reports off that data, would seem highly challenging at a minimum. Throwing everything into a single refresh group so that all the materialized views are transactionally consistent, or choosing a handful of refresh groups for those tables that are related to each other, seems like a far easier way to build a system.
    Justin

  • Need Solution For Motorcyclist, GPS, Music, BB 8830 and Intercom.

    Hello, here is a real hands free scenario that I and many other Motorcyclists would pay bucks for; most of the long distance riders would love to have GPS with Voice Response, Phone, Music (XM or Sirius) and Intercom all in one wireless package communicating from the Blackberry to the Rider / Riders helmet.
     As I understand it there are some problems with either the software package that Verizon uses for their GPS (VZ Navigator) or transmitting data via blue tooth.  They do have a product that transmits from the Blackberry via blue tooth to what they call a “Gateway”.  Below is the text from that product:
     “Break away from your regular headsets and enjoy your favorite music throughout the comfort of your own home. This small, stylish device works with your home sound system or personal stereo to stream the music stored on your BlackBerry smartphone or other A2DP-compatible devices. To wirelessly transmit your music, simply connect the Gateway using the accompanying 3.5mm stereo cable or RCA auxiliary cable to your stereo system, turn on the gateway, pair your device, and that's it! You are free to roam up to 30 feet without missing a single beat. The BlackBerry Remote Stereo Gateway is compatible with all Bluetooth enabled mobile devices so you can stream your music from your BlackBerry smartphone, PC, laptop, or any other A2DP-compatible mobile phone. This easy to use, ultra portable accessory is great for those looking to enjoy their music the way it is supposed to be heard. Includes a BlackBerry Travel Charger necessary to provide power”. So, I really do not understand what the problem is.  To Me it looks like I can do every thing that I want, I just need a compatible head set microphone for My Nolan N-102 helmet.  I was looking at using J&M Bluetooth Wireless Helmet Headsets (web link  www.jmcorp.com/SeeProducts.asp?PF=30 ).  The way I can envision how it would work is as follows:
     After starting the Motor Cycle / Sidecar (I own a Ural Gear-Up Sidecar) I would pick a waypoint that I want to go too, launch the browser, type in the XM radio stations web address, put in My user name and password in, pick the music that I wished to listen too, get on the Sidecar with My Wife (She would have a Wireless Headset as well) and Off we would go.  A call would come in and either rider could answer it (Phone cuts off the audio for everything else: Primary).  She would end the call and tell Me Via the intercom who it was (Intercom would cut off Music and GPS Voice Prompts: Secondary).  She gets off the phone and a GPS Voice Prompt tells Me turn right ( GPS Prompts cut off Music audio).  If there is a weather alert it would cut off the GPS Prompts and Music audio.  And that is how I see using this product.
     Jay 
    Message Edited by Digital_Eye on 07-09-2008 06:02 PM
    Message Edited by Digital_Eye on 07-09-2008 07:23 PM

    8830's GPS seems only works with cdma

  • RE : need assistance for the BAPI between Web methods and SAP

    *Hi All,*
    *I need help regarding the integaration between webmethods and SAP by using BAPI_PROJ_MAINTAIN.*
    *Details:*
    *From webmethods side they are maintaining 2 fields called Region and Sub region with parent and child hirearchy*
    *From SAP side we are maintaining the only one field called subregion.*
    *Need clarification:*
    *can we map field : subregion from webmethods to field : subregion in SAP without maintaing any parent and child hierarchy?*
    *Any imapact will be there on SAP system like Data loss and mismatch of the existing fields.*
    Thanks & Regards
    Raju M
    9944531233

    Between webpages is quite simple.  It sounds like your Xacute Query template and BLS are configured to receive the properties, so make sure the web page containing your applet uses an irpt extension and then add the following lines within your applet tags to receive the tokens for the query:
    <PARAM NAME="Param.1" VALUE="{LowRange}">
    <PARAM NAME="Param.2" VALUE="{HighRange}">
    Then call your page with a URL like:  ...Page.irpt?LowRange=0&HighRange=100
    If you look at the web page examples in the Module Library template downloads here on SDN you'll see examples like this, as well as others.

  • 100% Noob - Need Help for basic setup of Cisco 2504 and 1600 AP

    Hello,
    I am completely noob in (cisco) networking.
    I have to setup a basic but secure wireless network.
    I have a cisco 2504 and 2 APs 1600 + a random switch
    I have 4 ports on the controller.
    I want to keep the 1st port on the network for the controller management, plug my internet box on the 3rd port, and my switch on the 4th port. Then the AP will be on the switch.
    I am able to make something working when everythings are plugged on the switch, plugged in the first port (default management port).But this is not what I want.
    First thing, Is that possible ?
    1st port : office network
    2nd port : empty
    3rd port : Internet Box
    4th port : Switch + all APs
    Then, if that is possible, how should i configure the controller to make that work ? I am completely lost in the menus.
    I dont need a perfect configuration, just something simple and working.
    1 SSID, 10 DHCP addresses, block wireless users trying  to go on the office network.
    If anyone could help my doing that, It would be very nice.
    Thank you.

    You basically need two SSIDs one for corporate users and second for guests .check the link with  step by step config and brief details .
    http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wireless-vlan/70937-guest-internal-wlan.html

  • Need help for asynchr. scenario between 4.6c and XI

    Hi,
    I need some help with this.  We are running 4.6c and now I need to talk to XI 3.0 asynchronously.
    I have a situation where I need to send data to an external application.
    So: R/3(4.6c) -> XI -> external application (the application is not in our landscape).
    It's not required for now to get an answer back from the external application so what are my options?
    I want to build my solution around that I will eventually get a response back to be real time but
    for now, the FTP adapter should work fine.  PCK will be implimented in the future to make it real time.
    Just for a test, I tried:
    R/3 -- (RFC Adapter) --> XI --> File adapter ...   but it's crashing in R/3 since R/3 is expecting
    a response back.  If I setup two receivers in XI (one being R/3 and the other the file adapter, then it's crashing in XI saying since I cannot have two receivers for a synchronist request.)
    I was looking to use an ABAP proxy but from what I'm reading, it cannot be used in 4.6c.
    So what are my options? Is it only trough an IDoc that I can communicate out of R/3 to XI if my request don't required a response back?
    Thanks
    Yves

    Hi Yves.
    For a 4.6 R/3 system the only possible options are the RFC adapter and the Idoc adapter.
    The Idoc adapter is used for async processing (no reponse)
    The RFC adapter is used for sync processeing (and will therefore always expect a respons message)
    The File adapter also onlu supports async (no response) processing.
    There are two ways to solve your problem:
    1. Create a Idoc to file scenario
    2. Use the sync to async bridge
    On help.sap.com you can fing documentation on this scenario:
    http://help.sap.com/saphelp_nw04/helpdata/en/83/d2a84028c9e469e10000000a1550b0/frameset.htm
    Best regards,
    Alwin

Maybe you are looking for

  • MAIL DOES NOT OPEN AFTER SOFTWARE UPDATE

    Computer - software updates are available - clicked ok Computer - restart  - said yes Mail now has ffg msg - YOU CANT USE THIS VERSION OF MAIL WITH THIS VERSION OF MAC OS X You tried to open Mail version 4.5 (1084/1085) in It can't be used on this ve

  • How To: Display Special Characters, Not Boxes?

    Okay, here's a question. I searched the FAQs, the support pages, and used the search forum option and came up with nothing, so here I am. I have CDs that are from other countries, namely Japan. The bands names and song titles are written in Kanji (th

  • How do I know which PRL to use?

    Moved for greater exposure

  • JSP and SQL.. not displaying records

    <html> <body> <%@ page import="javax.servlet.*" %> <%@ page import="javax.servlet.http.*" %> <%@ page import="java.sql.*" %> <%@ page import="java.util.*" %> <%@ page import="java.io.*" %> <P> The results are: </P> <%-- connection to database--%> <%

  • Close button at the right corner

    Hi friends , i would like to know if there is any function key or function code is available for the close button. at the right corner. if u know please let me know.. regards, diana.