Help in IS-Retail

hI Guys...Who can help me?
I'm working in the firts time with SAP Retail..and I have a doubts about the Organizational Structure, Material Master,
Services MAster.
01 - in definition of Organizational Structure of SAP Retail the SITE has the same function of Plants in ''normal' SAP?
02 - Can I use the AC01 for services in SAP Retail? All Materials have been creates with MM41 or I can using the MM01 for
other materials?
If anybody has a documents for MM ( SAP RETAIL ) I appreciate because this is my firts project with Retail.
Is there a Guide for SAP Retail? Im searching in service.sap but i cant find..
Regards,

Hi,
1. In retail Site need to be created by T-code WB01 as Same site acting as vendor and customer also .
2.You can use AC01 to create srvice master data but ou can not use MM01 in Retail .
3. You will get useful info.  link
http://help.sap.com/saphelp_erp60_sp/helpdata/en/50/94f500470e11d1894a0000e8323352/frameset.htm

Similar Messages

  • BADI help for IS Retail

    Hi Friends,
    I need to implement badi "WRF_APC_X_PLITEM_E", when I went for the implementing it, in documentation of method "DISTRIBUTE_QUANTITIES" I found the below note
    <b>Notes</b>
    To complete the implementation of this method, you must add a new menu option on the purchasing list toolbar by implementing the method ON_TOOLBAR of the BAdI WRF_APC_X_PLISTALV_E.
    This new menu option must have the function code 'DISTR_PQ' with the text description of your choice (for example, 'Distribute quantities top down'.
    So If anyone has handled this kind of problem to handle function code please provide me the solution.
    Regards,
    Varsha

    Hi,
    1. In retail Site need to be created by T-code WB01 as Same site acting as vendor and customer also .
    2.You can use AC01 to create srvice master data but ou can not use MM01 in Retail .
    3. You will get useful info.  link
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/50/94f500470e11d1894a0000e8323352/frameset.htm

  • A CRY OF Help..To All Java Programmer

    Iam desperate please help....I Have to finish this code until tommorrow...i have done some and its running but it doesnt show the right computation...
    Prob:
    Mail order house sells 5 different product..prod1-$2.98, prod2-$4.50, prod3- $9.98, prod4- $4.49 and prod 5- $6.87..Write an application that reads a series of pairs of numbers as follows:
    a)Product number
    b)Quantity sold for one day
    Program should use a switch structure to help determine the retail price for each product.Your program should calculate and display total retail value of all product sold last week. Use a TextField to obtain the product number from the user. Use sentinel -controlled loop to determine when the product should stop looping and display final results.
    Note: I change temporarily the product because I am not familiar with double data types..
    this is the code i have currently done..Please.please.please i need all the help..
    import javax.swing.JOptionPane;
    import java.text.DecimalFormat;
    public class ProbMod {
         public static void main( String args[] )
              int quant,
                   prodnum,
                   Counter,total,input,lahatna,prodquan,
                   gtotal;           
              double      
                        average;
              String
                        num1,
                        num2;
              total = 0;
              Counter = 0;
              gtotal = 1;
              input = 0;
              lahatna = 0;
              prodquan = 0;
                   num1= JOptionPane.showInputDialog( "Enter Product Number, -1 to Quit");
                   prodnum = Integer.parseInt(num1);
              while (prodnum != -1) {
              switch ( prodnum ) {
                   case 1:
                        JOptionPane.showMessageDialog(null, "1 - $2.98");
                        break;
                   case 2:
                        JOptionPane.showMessageDialog(null, "2 - $4.50");
                        break;
                   case 3:
                        JOptionPane.showMessageDialog(null, "3 - $9.98");
                        break;
                   case 4:
                        JOptionPane.showMessageDialog(null, "4 - $4.49");     
                        break;
                   case 5:
                        JOptionPane.showMessageDialog(null, "5 - $6.87");     
                        break;
                   default:
                        JOptionPane.showMessageDialog(null, "Invalid value entered" );     
                        break;
                   }//end switch
                   num2= JOptionPane.showInputDialog( "Enter Quantity, -1 to Quit");
                   quant = Integer.parseInt(num2);
                   num1= JOptionPane.showInputDialog( "Enter Product Number, -1 to Quit");
                   prodnum = Integer.parseInt(num1);
                   if (prodnum == 1) {
                        input = quant * 239;
                   else if (prodnum == 2) {
                        input = quant * 129;     
                   else if (prodnum == 3) {
                        input = quant * 99;
                   else if (prodnum == 4) {
                        input = quant * 350;
                   else if (prodnum == 5) {
                        input = quant * 350;
                   }//endif
                   gtotal = input + 0;
                   Counter = Counter + 1;
              } //end while
              DecimalFormat twoDigits = new DecimalFormat( "0.00");
              if ( Counter != 0) {
              //     average = (double) total/ Counter;
                   lahatna = lahatna + gtotal;
                   JOptionPane.showMessageDialog(null, "Retail Total " + twoDigits.format( lahatna ),
                   "Mail Order House",JOptionPane.INFORMATION_MESSAGE );
              else
              JOptionPane.showMessageDialog( null,"No Product number entered", " ",JOptionPane.INFORMATION_MESSAGE );
              System.exit( 0 );

    Hi.
    I hope the class below meets your needs. Please note that I didn't spend too much time testing it and that I cannot guarantee that it works perfectly. At least it should calculate the correct results for the input values.
    public class ProbMod {
        public ProbMod() {
        public static void main(String[] args) {
            int productNumber = 0;
            int soldAmount = 0;
            double price = 0.0;
            int counter = 0;
            double total = 0.0;
            do {
                try {
                    productNumber = Integer.parseInt(JOptionPane.showInputDialog("Enter product number (-1 to quit)"));
                    switch( productNumber ) {
                        case -1:
                            break;
                        case 1:
                            price = 2.98;
                            break;
                        case 2:
                            price = 4.5;
                            break;
                        case 3:
                            price = 9.98;
                            break;
                        case 4:
                            price = 4.49;
                            break;
                        case 5:
                            price = 6.87;
                            break;
                        default:
                            JOptionPane.showMessageDialog(null, "You have entered an invalid product number. Please try again.");
                            throw new Exception("");
                    if( productNumber != -1 ) {
                        soldAmount = Integer.parseInt(JOptionPane.showInputDialog("Enter quantity"));
                        total += (double)soldAmount * price;
                        counter++;
                } catch( NumberFormatException e1 ) {
                    JOptionPane.showMessageDialog(null, "You have entered a non numeric value. Please try again.");
                    productNumber = 0;
                } catch( Exception e2 ) {
                    productNumber = 0;
            } while( productNumber != -1 );
            JOptionPane.showMessageDialog(null, "Retail total (" + String.valueOf(counter) + " product(s)): " + new DecimalFormat("0.00").format(total));
    }Regards,
    Kai

  • ABAP IS-Retail

    Hi,
    I am an ABAP Consultant and am newly into IS-Retail module. I may be working mostly on Reports,Scripts and User Exits.Could anyone let me know how IS-Retail can be significantly different from other modules technically (not functionally).I know either it is any module , the ABAP programming doesn't change but am just curious about any info that I can go through which is more related to ABAP in IS-RETAIL like T-codes,Imp tables, Pricing scenarios etc. that I need to aware of.I apologize if there is a similar thread on ABAP IS-Retail but I hardly couldn't find any.I am really looking forward if anyone could help me with this in programming perspective.
    Thanks,
    Sunil.
    Edited by: Sunil Saladi on Oct 27, 2011 1:35 AM
    Edited by: Sunil Saladi on Oct 27, 2011 1:35 AM

    Hi Sunil,
    Its my own personal view that ABAP for Industry Modules is more process oriented rather than core advanced ABAP. This means, you would be doing all same normal ABAP stuff except that it would be more of a already existing process enhancements for customer requirement.
    More Information related to IS-Retail can be found at:
    [http://help.sap.com/retail]

  • About Retail & Modules Related to Retail

    Hi Experts,
      I am new to Retails, I need information regarding Modules involved in Retail  & Landscape ( Compatibility with BI Analytics )  .
    Thanks,
    Swap

    Hi,
    You have plenty of information available in the below link, I would suggest you to go through this first.
    http://help.sap.com/retail
    Suhail Shaik

  • IAm all mIx Up..Need serius Help

    Really nid help in this probelm...dont know how to use switch and Text Field please help ...
    Mail order house sells 5 different product..prod1-$2.98, prod2-$4.50, prod3- $9.98, prod4- $4.49 and prod 5- $6.87..Write an application that reads a series of pairs of numbers as follows:
    a)Product number
    b)Quantity sold for one day
    Program should use a switch structure to help determine the retail price for each product.Your program should calculate and display total retail value of all product sold last week. Use a TextField to obtaimn the product number from the user. Use sentinel -controlled loop to determine when the product should stop looping and display final results.
    .....Help will ne greatly appreciate guys..Ive been doing this for 2 days..dont know where to place diffrent controls...send source code if possible thank you..

    I've done something with 2 articles, but you need to improve it yourself.
    It works like this:
    - you enter a product number and an amount, separated by a slash (e.g. 2/3)
    - for totals, you enter nothing, but simply press enter inside the text fieldimport java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Example extends JFrame implements ActionListener {
        private JTextField addField;
        private double totalSold;
        public Example () {
            super ("Example");
            totalSold = 0D;
            addField = new JTextField (10);
            addField.addActionListener (this);
            getContentPane ().setLayout (new FlowLayout ());
            getContentPane ().add (new JLabel ("product number/amount:"));
            getContentPane ().add (addField);
            setDefaultCloseOperation (EXIT_ON_CLOSE);
            pack ();
            setLocationRelativeTo (null);
            show ();
        public void actionPerformed (ActionEvent event) {
            String value = addField.getText ();
            if (value.equals ("")) {
                JOptionPane.showMessageDialog (this, "The total revenues are $" + totalSold, "Totals", JOptionPane.INFORMATION_MESSAGE);
            } else {
                String[] values = value.split ("/");
                double price;
                switch (Integer.parseInt (values[0])) {
                    case 1:
                        price = 2.98;
                        break;
                    case 2:
                        price = 4.5;
                        break;
                    default:
                        price = 0D;
                        break;
                totalSold += Integer.parseInt (values[1]) * price;
                addField.setText ("");
            /* improvements here:
             *     - error handling
             *     - revenue formatting ($12.50)
             *     - more articles
             *     - resetting the totals after they're shown
        public static void main (String[] args) {
            new Example ();
    }Kind regards,
    Levi

  • Someone meet the problem, I am not abble install mac OS 10.6 snow leopard on intel based machine, (intel core 2 duo, 2,8 ghz, 4GB RAM, 320 GB HDD, OSX 10.5.8) system every time wrote "OS X snow leopard cannot be install on this machine" please help, Majo

    omeone meet the problem, I am not abble install mac OS 10.6 snow leopard on intel based machine, (intel core 2 duo, 2,8 ghz, 4GB RAM, 320 GB HDD, OSX 10.5.8) system every time wrote "OS X snow leopard cannot be install on this machine" please help, Majo

    It is retail disk, i bought it in apple store. I also resetter PRRAM and SMC and checked disk. I also tried clean installation and upgrade, nothing works, after run installation program after few seconds wrote: OS X Snow Leopard cannot be install on this machine :-(
    Thank you for your answer
    Majo

  • Activating Retail 4.7 System

    Dear Gurus,
    I have installed SAP IDES 4.7.1 in my system. I want to activate Retail in my system. As Tx. SFW5 is not available in SAP 4.7, i went to SPRO =>SAP R/3 Extension Set and checked on EA-RET(Retail). However on saving i get error "Data Record does not exist". There is no detailed help for this error. Could anyone help me installing Retail in my system or anyone who has faced similar error? Thanks a lot in advance.
    PS. I am unable to upgrade to ECC 6 due to system constraints.
    Regards,
    Georg

    Dear Venu,
    Thanks a lot for your support.
    While executing program SETRETAILSYSTEM, i am getting following error:
    "The following software components do not allow you to set retail flag.
    EA-IPPE   SAP R/3 Enterprise iPPE
    LSOFFE    LSOFE (Learning Solution - Front End)
    ST-PI        Solution Tools Plugin "
    Could you please help me to deactivate the above components present.
    Thank you once again!
    Georg

  • I just have a power mac G4 and i would like to delete mac OS 9.2 and install mac OS x ,please help.

    hello ,i just have a power mac G4 and the os is mac 9.2 , i will be pleased if i could delete the os and install a later os which would be compatible with my G4 config which is ,
    cpu 800GHZ
    ram 1500 MHZ
    hdd ATA 60 GB
    graphic ?
    i appriciate your help.

    Buy a retail Mac OS X 10.4 DVD from a source such as Amazon or eBay, double-click the installer, and perform an Erase & Install.
    (106819)

  • Imovie and Ipad2 crashing, help!

    When using Imovie on the Ipad 2, whenever I try to import photos from Iphoto nothing shows up, then when I try to grab a photo from camera roll, it crashes Imovie. Location settings are on.
    any suggestions?
    thanks,
    pat

    Thanks for letting me know that you found my iSight info helpful, brimx
    From your subsequent posts, you seem to have determined that it is unlikely that iSight is the cause of your problems.
    With new, different, and unrelated problems appearing across different applications every couple of hours, your software may be damaged.
    It is also possible that your hardware is failing, so backup your important files now!
    I do not use iNtel Macs or Windows, so I do not know, nor can I test, the answers to your latest questions.
    If you do not get the answers you need here and cannot find them in Apple's Intel-based iMac Support page and Boot Camp Support page, you may want to service help from your retailer, Apple, or an Apple-Authorized Service Provider. You will certainly want to get these problems corrected while your Mac is still covered by warranty.
    If you want to continue to try to resolve the problems yourself, search or start new topics in the Using your Intel-based iMac Forum. 
    Because you have such widespread trouble, I would suggest that you concentrate in the iMac forum, but if you can narrow down the problems to one or two issues, you could post in the appropriate forum regarding Boot Camp, Front Row, or Installing & Using iPhoto '08.
    EZ Jim
    PowerBook 1.67 GHz w/Mac OS X (10.4.11) G5 DP 1.8 w/Mac OS X (10.5.2)  External iSight

  • Switch structure HELp!!!

         Really nid help in this probelm...dont know how to use switch and Text Field please help ...
    Mail order house sells 5 different product..prod1-$2.98, prod2-$4.50, prod3- $9.98, prod4- $4.49 and prod 5- $6.87..Write an application that reads a series of pairs of numbers as follows:
    a)Product number
    b)Quantity sold for one day
    Program should use a switch structure to help determine the retail price for each product.Your program should calculate and display total retail value of all product sold last week. Use a TextField to obtaimn the product number from the user. Use sentinel -controlled loop to determine when the product should stop looping and display final results.
    .....Help will ne greatly appreciate guys..Ive been doing this for 2 days..dont know where to place diffrent controls...send source code if possible thank you..

    class Sale{
       double total=0;  //total sales
    public int addSale(int product,int amount){ //amount is the num of product saled
        switch(product){
           case 1: total+=(2.98*amount);
                   break;
           case 2: total+=(4.50*amount);
                   break;
           case 5: total+=(6.87*amount);
                   break;
           default:System.out.println("no such product!");
                   break;
    }

  • Help in control structure

    hey guys nid help on switch structure how can i place mathematical operation/ computation inside a switch without causing any problem...ive seen some switch sample but it only focuses on strings..
    ...you see my problem is:
    Mail order house sells 5 different product..prod1-$2.98, prod2-$4.50, prod3- $9.98, prod4- $4.49 and prod 5- $6.87..Write an application that reads a series of pairs of numbers as follows:
    a)Product number
    b)Quantity sold for one day
    Program should use a switch structure to help determine the retail price for each product.Your program should calculate and display total retail value of all product sold last week. Use a TextField to obtaimn the product number from the user. Use sentinel -controlled loop to determine when the product should stop looping and display final results.
    //Fig 4.9: Average.java
    //Class average program with sentinel-controlled repetitions
    import javax.swing.JOptionPane;
    import java.text.DecimalFormat;
    public class AverageMod {
         public static void main( String args[] )
              int quant,
                   prodnum,
                   gradeCounter,
                   gradeValue,
                   gtotal,
                   total;
              double      
                        average;
              String
                        num1,
                        input;
              total = 0;
              gradeCounter = 0;
              /*input = JOptionPane.showInputDialog( "Enter Grade, -1 to Quit:");
              gradeValue = Integer.parseInt(input);
              num1= JOptionPane.showInputDialog( "Enter Product Number, -1 to Quit");
              prodnum = Integer.parseInt(num1);
              while (prodnum != -1) {
              switch ( prodnum ) {
                   case 1:
                   //     casetotal = casetotal + 2.98;
                        JOptionPane.showMessageDialog(null, "1 - $2.98");
                        break;
                   case 2:
                   //     casetotal = casetotal + 4.50;
                        JOptionPane.showMessageDialog(null, "2 - $4.50");
                        break;
                   case 3:
                        JOptionPane.showMessageDialog(null, "3 - $9.98");
                        break;
                   case 4:
                        JOptionPane.showMessageDialog(null, "4 - $4.49");     
                        break;
                   case 5:
                        JOptionPane.showMessageDialog(null, "5 - $6.87");     
                        break;
                   default:
                        JOptionPane.showMessageDialog(null, "Invalid value entered" );     
                        break;
                   }//end switch
         /*     while (prodnum != -1) {//start while*/
                   total = prodnum + total ;
                   gradeCounter = gradeCounter + 1;
                   num1= JOptionPane.showInputDialog( "Enter Product Number, -1 to Quit");
                   prodnum = Integer.parseInt(num1);
                   num1= JOptionPane.showInputDialog( "Enter Quantity, -1 to Quit");
                   quant = Integer.parseInt(num1);
              } //end while
              DecimalFormat twoDigits = new DecimalFormat( "0.00");
              if ( gradeCounter != 0) {
                   average = (double) total/ gradeCounter;
                   JOptionPane.showMessageDialog( null, "Class Average is" + twoDigits.format( average ),
                   "Class Average",
                   JOptionPane.INFORMATION_MESSAGE );
              else
              JOptionPane.showMessageDialog( null,"No Product number entered", "Class Average ", JOptionPane.INFORMATION_MESSAGE );
              System.exit( 0 );
    i already created this code but i dont know how to make the computation..thanks GodBless

    Can you be more specific about your problem ?
    I mean what actually you are trying to do and what all inputs you are
    expecting from user ?

  • IS-Retail Guide

    Hi Friends,
    Can any give me some pointers , where I can get help Related SAP Retail?
    Please reply me ...it is urgent.
    I will prefer some e-books if I can get online.
    Thanks a lot for giving your valuable time to me.
    Regards,
    Rajwant.

    Hi
    Please refer to the link below
    http://help.sap.com/saphelp_47x200/helpdata/en/50/94f500470e11d1894a0000e8323352/frameset.htm
    Raghu

  • Reinstall CS5 Design Standard: I purchased a box set and not need to reinstall, but I am missing a disc. Please provide the link to dowload the suite. I have all of the original serial numbers. Thanks.

    I need to reinstall CS5 Design Standard on a  new computer. I have uninstalled it on old computer, but now realize I am missing a disk. I have tried multiple avenues to track down the link for reinstalling this software, but have had no luck. Please provide a link where I can download software that I have already purchased on a disc. I have all of my serial numbers, and I can see the purchases in my account. But I can't find the download link. the one I was provided was not correct. Thanks for the help.

    Jerryllmoreno the retail installation files are located at Download CS5 products.

  • ISight : black or green picture

    Hello,
    on my mid-2007 20" imac, the integrated iSight doesn't work any more. All I get is a black picture (with iChat) or green picture (with Photo Booth). No error message saying the iSight is already in use. The green light on the right of the camera lights when expected. The iSight is seen in the USB device list. I've tried all the ideas found on this forum and the support section of Apple web site ... I've reset the SMC, unplugged all other USB devices ... still no picture. And obviously, it worked in the past, I have succesfully used it for a few iChat sessions.
    I'm not quite sure it's a hardware problem, and fell a kind of bug due to some recent OS revision (10.4.10). Anyone having this felling ?
    Regards,
    Philippe.

    Hello Philippe
    Here are the solutions that help most iNtel Mac users who encounter black or green-screen problems. None are complicated, but the only way to find which one will work for you is to continue down the list until you find the one that fixes your Mac.
    (1) Check your System Preferences as explained in this kbase article about Built-in iSight camera produces blue or green pictures.
    (2) Aluminum iMac users who have not yet applied the iMac Software Update 1.1 should repair permissions (click here if you need help with permissions repair), apply the iMac 1.1 update, and repair permissions again. Then check to see if your iSight works correctly.
    (3) If your software is up to date and your System Preferences are set correctly, try every suggestion re: Built-in iSight in the "How to Troubleshoot iSight" article.
    Be sure to include the checks for whether the problem is "application-specific" and "user-specific".
    If you need help creating a new user account to check whether your problem is "user-specific" during Troubleshooting, see this Help article.
    (4) If resetting or the other suggestions do correct your problem, try the following:
    • Backup your Home Folder, or at very least, your important files.
    • Repair permissions.
    • Then download and apply the Mac OS X 10.4.10 Combo Update v1.1 (iNtel).
    • Finish with another Permissions Repair, and then check your iSight again.
    Users have reported fixes to a variety of audio, video, connectivity, and software conflicts and unreliability issues after properly applying Combo Updates.
    (5) Some iNtel Mac laptop users have also reported success after unplugging their Macs and leaving the battery out for half-an-hour to overnight. If none of the suggestions above corrects your problem, you might try disconnecting EVERYTHING, including power and peripherals, from your iMac for a while to see if that helps. However, nobody has yet reported that disconnecting helps anything but the laptop iNtel Macs.
    (6) If none of these suggestions help, contact your retailer, Apple, or your Apple-Authorized Service Provider for professional repair.
    EZ Jim
    PowerBook 1.67 GHz   Mac OS X (10.4.10)    G5 DP 1.8  External iSight

Maybe you are looking for

  • Configuration issue of syslog.conf

    Dear All, My client is facing a configuration issue of syslog.conf. They have set a cacti on a Linux server for monitoring of all servers snmp & syslog. The part of snmp has set up successfully but cannot send the syslog to the cacti. My client want

  • Itunes Backup Files

    Hi! I was in the process of formatting my computer. Of course my iPhone 3G decided to quit during formatting leaving me with no backup of my phone. I was able to recover the MDDATA/BACKUP files from my formatted hard drive, but how can I import it in

  • FDM 11.1.2.1 register HFM adapter problem

    Hi experts, i have seen many post about this problem when connecting to HFM using FDM, but never when you register the adapter, that's why i post this. Our environment is Windows 2008 R2 64 bit with FDM11.1.2.1 32x installed. We have imported the fil

  • How can I make a slideshow in iPhoto into a video on an iPad 3?

    Been trying to find a way to make a slideshow in iPhoto into a video. Is there a way to do this?

  • HT2731 My apple Id was verified but it is not working

    MY I'd was verified but it's not working