Reg.MM implementation

Dear All
I am in need of one full cycle implemention of MM our concern.
I know what to do and how to do.Though I know all paths and Tcodes,I have some doubts,what are the prequisite I have fo consider and before going to implementation.I read in one guide that some PDF forms has to copy from Client 000 to my current client. what is that.Could any one help me in this.
What is the 1st step, and next what.
Please explain.
Thanks
Rajakumar

hi check this link
it may help you to know what are the prequisite and all paths and Tcodes which will help you
http://help.sap.com/bp_blv1600/V5600/BL_IN/html/index.htm

Similar Messages

  • Please check the code reg mail implementation and give guide lines to me

    Hi experts
    I written some code for implementing the mail in webdynpro using java mail API,i did not get the out put ,Is any configuration i have to do in webdynpro or WAS
    Can any body review my code and tell me where i mistaken in the implementation .Is there any thing i want to configure .Here with i am sending my code in the action of Send button
    public void onActionSendMail(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSendMail(ServerEvent)
        // get the values entered by the user  in the form
        try{
        String toAddress=wdContext.currentContextElement().getTo();
        String ccAddress=wdContext.currentContextElement().getCC();
        String bccAddress=wdContext.currentContextElement().getBCC();
        String subject=wdContext.currentContextElement().getSubject();
        String messageBody=wdContext.currentContextElement().getMessage();
        //set the properties of host and port no
        Properties p = new Properties();
        p.put("mail.transport.protocol","smtp");
        p.put("mail.smtp.host","12.38.145.108");
         p.put("mail.smtp.port","25");
         //get the session object or connection to the mail server or host
         Session sess=Session.getDefaultInstance(p,null);
         //create a MimeMessage and add recipients
         MimeMessage message = new MimeMessage(sess);
         if(toAddress !=null && toAddress.length()>0){
              message.addRecipient(Message.RecipientType.TO, new InternetAddress(toAddress));
         }else
              wdComponentAPI.getMessageManager().reportSuccess("Please Enter the To Address");
         if(bccAddress !=null && bccAddress.length()>0)
         message.addRecipient(Message.RecipientType.BCC, new InternetAddress(bccAddress));
         if(ccAddress !=null && ccAddress.length()>0)
         message.addRecipient(Message.RecipientType.CC, new InternetAddress(ccAddress));
        if(subject!=null && subject.length()>0)
         message.setSubject(subject);
         message.setFrom(new InternetAddress("[email protected]"));
         if((messageBody!=null) && (messageBody.length()>0))
              message.setContent(messageBody,"text/plain");
         }else
              message.setContent("","text/plain"); 
         Transport.send(message);
        catch(Exception e)
             e.printStackTrace();
    Please mail to :  [email protected]
    Thanks and regards
    kalyan

    Hi Venkat,
       The code seems ok to me. you don't need to configure WAS to use JavaMail APIs. However, if this code doesnot work then check with the code given below as this is working fine.
    Properties prop = new Properties();
              prop.put("mail.smtp.host", host);
              prop.put("mail.smtp.auth", "false");
              Session session = Session.getInstance(prop, null);
              session.setDebug(true);
              try {
                   MimeMessage msg = new MimeMessage(session);
                   msg.setFrom(new InternetAddress(from));
                   InternetAddress[] address =
                        { new InternetAddress(to1)};
                   msg.setRecipients(Message.RecipientType.TO, address);
                   msg.setSubject(subject);
                   msg.setSentDate(new Date());
                   MimeBodyPart msg1Body = new MimeBodyPart();
                   msg1Body.setText(msg1);
                   MimeBodyPart msg2Body = new MimeBodyPart();
                   msg2Body.setText(msg2);
                   Multipart mp = new MimeMultipart();
                   mp.addBodyPart(msg1Body);
                   mp.addBodyPart(msg2Body);
                   msg.setContent(mp);
                   Transport.send(msg);
              } catch (AddressException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                   System.out.print("AddressException : " + e.getMessage());
              } catch (MessagingException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
                   System.out.print("MessagingException : " + e.getMessage());
              } catch (Exception e) {
                   System.out.print("Exception : " + e.getMessage());
    where host is 12.38.145.108 in your case. May be you chk if your mail server  is using another port. 25 is the default port for the smtp. This may be the case that your code is not working.
    Regards:
    Abhinav Sharma
    PS : Do reward points if it helps

  • Reg. multiple implementations

    Hi all,
    If i 've multiple implementation for a particular BADI definition, then how we differentiate these two in application program.
    I mean in calling the method.
    I ensure u for points.
    Regards,
    [email protected]

    Hi,
    please check out the links below it might help you
    http://help.sap.com/saphelp_nw2004s/helpdata/en/32/a83942424dac04e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0e/4d3e42fc94aa04e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/42/f96b8bbaf93268e10000000a1553f6/content.htm
    Some useful URL on BADI
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    *********please reward points if the information is helpful to you**********

  • Reg,  New Implementation Documentation

    Hello,
    Will you pl, help me in getting complete documentation (Std / Template)for all stages of ASAP methodology, for a new module. If you provide at least URL, it will be of great help.

    Hi
    You can download a complete ASAP methodology for EP project (includes all phases, design, scenario,project /test management templates etc) from here
    https://websmp101.sap-ag.de/~sapidb/011000358700004874282004E
    Cheers
    Jawahar Govindaraj
    Ps: reward pts

  • Reg:implementation Enterprise portal in solution manager

    hi all
    i am new to the concept of solution manager .In this how can we implement Enterprise portal .Actually what an EP consultant work need to be done in this  solution manager.can any  one provide some real time scenarios info related to it .
    regards
    Deepika

    Hi,
    Regarding the implementation phase, Solution Manager helps you via several functionalities:
    - Solution Documentation: Central documentation of processes, system landscape, custom code,...
    - Test Management:Change impact analysis, End-to-end test management
    - Change Control Management: Integrated quality management, Synchronized transports of various components, Controlled and documented adjustment of business processes incl. approval process
    - Application Incident Management: Integrated service desk, Involvement of partners in problem resolution, Provide root-cause analysis for complex landscapes with diverse technology stacks
    The most important part in from my perspective for a implementation consultant is the Project Documentation functionality, where you can get Implementation Content for Enterprise Portal. This includes business scenarios documentation and business process included in the Business Process Repository, how to configure different scenarios and business processes, test cases, etc.
    I think you can find some information in the marketplace about this functionality. For example you may find something under service.sap.com/alm -> SAP Solution Manager and Tools.
    Best regards,
    Fernando

  • Reg:: OEM Grid console configuration/implementation

    Folks,
    This is regarding implementation of OEM grid control on R12 EBS and 11g R2 database .
    pls advice that how to proceed . what is AMP and how it is related to OEM and what is the necessary for R12 EBS
    Thanks

    Hi;
    Please see our previous same topic which is answered by Hussein Sawwan posts
    Follows below thread please
    Configure OEM in EBS R12
    Re: OEM & EBS
    Regard
    Helios

  • Reg: Can I code in standard implementation of a BADI "WCM_DECOUPLING"

    Hi all,
    I'm trying to use a  BADI (WCM_DECOUPLING) for transaction IW32. But when I tried to create an implementation for this BADI in SE19, it is throwing the following error "BADI definition WCM_DECOUPLING is only provided for SAP internal use".
    Then I've checked the attributes of this BADI in se18, an option "within SAP" is checked.
    I've checked the old threads also, but I couldn't find any help to use this BADI somehow.
    MY QUESTION: later, I've found using transaction SE84 that this BADI is already implemented by standard SAP in the name
    "WCM_DECOUPLING_IMPL" and activated. But, it's runtime behavior is shown as "EA-PLM is deactivated; implementation will not be called". Can I use this standard implementation to code my changes or validations.
    Thanks,
    Rajan U

    Dear Shahin,
    Thanks for your prompt reply.
    I've adapted the same method (SE24) to find this BADI. I see other BADIs doesn't have the required parameters flowing in. That is the reason why I am trying to some how implement this BADI.
    My requirement: After creating work order in Iw31, a list of people has to approve the work order by using permit (ech one will have the unique permit key). For this a pop window containing table control of permit keys listed in the order is provided.
    I've to place a check/validation to ensure that these permits are approved in the same order as it has to be done.
    for example: 1) Functional head 2) General manager 3) Managing director
    I've also searched for user exits, but, on that is suitable for this req is not working.
    Please suggest me a method to do this.
    or
    if I create ZBADI i.e. ZWCM_DECOUPLING, will this be called inside the standard program? will the exit handler call this?
    Please give me your suggestion.
    Thanks,
    Rajan U
    Edited by: Rajan Usman Basha on Jun 2, 2011 5:45 AM

  • Reg. oops...implementation of abstract method in se24...have ur ponts..

    Hi all,
    In SE24 i made an abstract class & made a method abstract successfully.
    Now i made another class that inherited my abstract class, it is showing my abstract method there.
    Now when i want to give implementation to that method, but when i double click on that system is showing "method is abstract & has not yet redefined".
    Pleas let me know..how i implement it..
    Thanx in advance..
    <b>Have ur point.s</b>

    Hi
    Inheritance Inheritance defines the implementation relationship between classes, in which one class (the subclass) shares the structure and the behavior defined in one or more other classes (superclasses). Note: ABAP Objects only allows single inheritance.
    Inheritance is a relationship, in which one class (the subclass) inherits all the main characteristics of another class (the superclass). The subclass can also add new components (attributes, methods, and so on) and replace inherited methods with its own implementations.
    <b>Single Inheritance</b>
    ABAP Objects only has single inheritance.
    A class may only have one direct superclass, but it can have more than one direct subclass. The empty class OBJECT is the root node of every inheritance tree in ABAP Objects.
    <b>Relationship between Superclasses and Subclasses</b>
    Common components only exists in  the superclass
            new components in the supercalss are automatically available in subclass
            amount of new coding is reduced ( programing by difference)
    Subclass are extremely dependent on superclases
           white box reuse – subclass must possess detailed knowledge of the implementation of the superclass
    <b>Inheritance: Syntax</b>
           Normally the only other entry required for subclasses is what has changed in relation to the direct superclass. Only additions are permitted in ABAP Objects, that  is, in a subclass you can "never take something away from a superclass". All components from the superclass are automatically present in the subclass.
    <b>Class name defination.
        public section.
             methods. First name importing some type some type
                                            returning value(value) type some type.
       private section
              data : make type string..
    Endclass.
    Class name1 definition inheriting name
    public section
           method. : get  returning value ( value) type get.
    Priavte section.
       data : max type some type
    endclass</b>
    <b> Redefining methods</b>
    The REDEFINITION statement for the inherited method must be in the same SECTION as the definition of the original method.
    If you redefine a method, you do not need to enter its interface again in the subclass, but only the name of the method.
    In the case of redefined methods, changing the interface (overloading) is not permitted; exception: Overloading is possible with the constructor.
    Within the redefined method, you can access components of the direct superclass using the SUPER reference.
    The pseudo-reference super can only be used in redefined methods.
    reward if usefull

  • Request of suggestion for implementing XI Scenarios - Reg

    Hi Experts,,
                     We are new to SAP. We need to implement the following scenarios in our landscape..Please give us suggestion how to proceed further.
    Scenario 1::
           There is no PI at cutomer landscape and only SAP R/3 system is present..But in our landscape PI is present.From their SAP R/3 how we can connect to our PI?
    Scenario 2::
             Suppose if there is no PI and SAP R/3 and customer is only willing to give .csv file  or any flat file , from our PI  how we can pick that flat file at customer side?

    >>Scenario 1::
    >>There is no PI at cutomer landscape and only SAP R/3 system is present..But in our landscape PI is present.From their SAP >>R/3 how we can connect to our PI?
    No problem.
    1) Do ALE Configuration between Customer R/3 and your PI. Now ask customers to send idocs to PI.
    Check this link
    http://wiki.sdn.sap.com/wiki/display/ABAP/7StepsForALEConfiguration
    or
    2)through proxy configuration between Customers and Your PI, you can establish communication.  There are plenty of ways to connect R/3 to PI. 
    >>Scenario 2::
    >>Suppose if there is no PI and SAP R/3 and customer is only willing to give .csv file or any flat file , from our PI how we can >>pick that flat file at customer side?
    Create NFS at unix level and request customer to drop file over there. Configure File adapter in PI  to pick up the file. The file can be flat file or xml.

  • Reg: Basics of business package implementation

    Hi,
    Can someone provide me some documentation for basics on business package implemantation.
    and i have a question, once the business package is installed on the portal, the respective roles and the iviews will appear in the specialist folder? or we have to do something from portal end?
    Thanks in advance.

    Jyothi,
    Below are the steps for implementing BP in portal,
    1.     Derive the right business packages from System landscape study and analysis
    2.     Download the business package and the supporting components from Service market place through SolMan
    3.     Deploy the downloaded packages into portal through SDM (Software Deployment Manager)
    4.     Configure SLD(System Landscape Directory) and JCo (Java Connector)
    5.     Create Portal System Object for backend connection
    6.     Configure the Backend system
    7.     Configure and Customize the portal contents
    Once you deployed the business package into portal, the portal contents such as iViewss, Pages, roles etc will appear under content admin -> portal content -> content provided by SAP folder.
    Just serch in SDN for the suitable documentation.
    Ram

  • Reg Implementing the interfaces in JDBC

    Hi,
    When we do a program that deals with database connectivity,we are not implementing the Interfaces like Statement,ResultSet.But we are using those
    interfaces inside our program.
    Can anybody justify how it is possible.
    Thanks in advance

    The DB vendors are responsible for providing implementation classes for these interfaces. That's why we need to keep DB specific jar files in CLASSPATH when we do DB activities..
    Gautam

  • Reg: Implementing a formula in Matrix Reports

    Hi Everyone,
    i have a simple scenario, i have a matrix report with ROWS => EMPNO, COLS => DEPTNO, CELLS => SAL
    Using Matrix report wizard i am able to do this very easily... now i implemented summaries like {AVG,MIN,MAX,SUM } DEPTNO wise using default summary options provided.
    Now i want sum of squares of salaries as one of the summary along with {AVG,MIN,MAX,SUM}
    What is the method to access the cell information in order to use it in formula column.
    Regards,
    Sreekanth

    Hi,
    There are three salaries in a column per deptno, suppose for deptno 10 there are three matching values {10,20,30} now i want them to be (10 square + 20 square + 30 square) in a Formula column CF_1 and then return it into a field which would be placed along with summaries like AVG,MIN,MAX.
    To do the above my formula column code would simple be return(:sal * :sal) in the same group which contains 'sal' but i dont know how many would i get at runtime to sum them up and i tried without summing by giving just return(:sal*:sal) and connected it to a field along with summaries AVG,MIN,MAX and i am getting error:
    "REP-1213: Field 'F_1' references column 'CF_1' at a frequency below its group"
    Hope i am clear.
    Thnaks and Regards,
    Sreekanth.J.U.P

  • Reg: implementation

    Hi
    To all i have some droughts in implementation . That is
    1.from which phase u entered in to the  project.
    2. what is no mark up dates . when u do extraction on 2lis_02_bx ?   then have u checked the no mark up date ?
    3.u r client have r/3 r not if yse ? how much time have u taken to load  date from r/3 ?
    4.have u worked from flat file to load data ? what is the requirement for that ?
    5.tell me about asp methodology ? and exp brefly each phase. plz .
    6.how u keep the info objects in to dim . how u diside ?
    7. How u post req id from devlopment system to quality system . ? is that requ id is same r not .?
    Plz Help to answer to me for this quations .
    Regards
    Krishna
    Edited by: chanragold reddy on Apr 28, 2008 10:40 AM

    Hi,
    Totally we have 4 phases ..
    (1)
    i.Project preparation phase
    ii.Blue print phase
    iii.Realization phase
    iv.Golive & post implementation phase.
    i.In this phase the company identifies project manager and project manager recruits team for a particular project,in the same team he identifies 2 or 3 members to work in onsite..
    ii.In blue print phase onsite team will know all about company and prepares business objects and performance indicators nothing but charecters and key figures which they want..After collecting all those the onsite people prepare functional spects nothing but Data sources,Info sources,Data targets etc..
    iii.In realization phase we have to prepare technical spects nothing but Technical names to that particular data sources ,infosources etc..we have to prepare documents as below
    a)Data target document
    b)Mapping document
    c)Reporting document
    In Data target document we have datatargets
    In mapping document we have Transfer rules & Update rules
    In reporting document we have objects what we have to use
    iv.After realization phase we have golive and post implementation phase ,here we do monitoring ...
    (2)Depends on the load it will take time
    If it helps pls assign points.
    Thanks,
    Akshay a

  • REG:Oracle Database Vault Implementation .

    Hi ,
    I want to Implement the Database Vault on my Oracle Applications(12.1.3) Database with 11.2 version .
    My Database is monitored using Oracle Enterprise Manager Grid Control , so should i have to again implement database console for that database in order to implement DB Vault ?
    Regards .

    My Database is monitored using Oracle Enterprise Manager Grid Control , so should i have to again implement database console for that database in order to implement DB Vault ?No need to configure anything until you will define any policy at DBSNMP account.
    As OEM perform database monitoring by agent running on target which will make connectivity with DBSNMP account in database.
    So if you're not doing anything on this account then monitoring will not get impacted.

  • Reg Downtime for MM implementation

    Dear Users,
    We are already using SAP ECC 6.0 for the day to day business operations and planning to implement a part of Materials Management module soon.
    Does anyone here think that we need a downtime on SAP for this implementation please?
    Warm regards,
    Vijay.

    Hi,
    I don't know which sub module you are going to implement. If this is only an additional functionality like Version Management, Confirmations etc, then there is no need to down time.
    You can make changes in Golden / Development client, then move it to Quality. Test it there and then move the changes to Production.
    Anand

Maybe you are looking for