Who gives the list that contains which business process is to be implemente

hi ,good morning to all
i have a question
that is how a solution consultant comes to know that which business process/which business process step is to be implemented in particular scenario? (for eg nw ep)

The Business process represents the various activities [processes] involved in attaining a business goal.
For example,in a procurement scenerio,
1] The goal is procurement.In system we have to map this thro'Transaction code/s.
2] This [ procurement] process involve various activities such as [a] getting indent from the user dept <b> getting financial approval [specific /standing] [c] floating the tender /RFPs etc [d] getting the quote from the vendors [e]finalizing the vendor [f] placing the purchase order [g] recieving and inspecting the goods <i> pay the vendor.
Like this,for every scenerio/process we have the relevant  activities.
Before SAP implementation the client performs the Business process Re Engineering [BPR] and correctly defines the various process/s and the relevant activities.Before implementation the cosultant performs a detailed discussion with the user group and obtains process flow chart and other relevant details.Thus the detail_ gathering is a culmination of interactive discussions with the client,the info.being provided by the client by means of standard documents,flow-charts etc,the experience and judgenment of the consultant.
This gives an idea about the whole scenerio.
Having known this,we can map in to the system using a T/code[relevant to each activity-say automatic paymentT/code.F110] and interpret the whole process in terms of T-codes.
The users test this using unit test and the integration test [ MM-FI interface using Account determination, for example] and verifies if the process has been mapped in full and correctly.The test once passed shows that you have configured adequately Vis A Vis the business requirements.
This is how the process in full is understood [by the consultant] and mapped in to SAP.
Hope this helps.
Regards,
Ramesh.
Message was edited by:
        Ramesh Ramaswamy

Similar Messages

  • I have a requirement where I have to give the list of users who can access a specific computer. I am new with PS. Do you have a script to list users that can access a computer object of AD ?

    I have a requirement where I have to give the list of users who can access a specific computer define in AD.
    I am new with PS.
    Do you have a script to list users that can access a computer object of AD ?
    I have executed the following script  but it does not give me the access rights of who can access the computer 'computername'
    How can i have this information. please help
    Import-Module activedirectory
    $computer=get-adcomputer "computername" -properties ntSecurityDescriptor
    $omputer.ntsecurityDescriptor.Access | select-object -expandproperty IdentityReference | sort-object -unique

    I would say that, since the OP has so little info, there are no policies in use.  It there were then this question would never be asked the way it is being asked.
    I had a client call with a letter from their insurance company; an accountant with malpractice insurance.  THey asked the same question inmuch the same way.  "What computer can you users access?"  The question should be more like
    "Do you have a policy that restricts access to computers and do you audit for compliance?"
    I have had other clients whose insurance asked the question in that way.  It produces a better view of what should be happening and how to show compliance.
    I recommend that companies being asked these questions by their legal departments or insurance companies should contract with a god computer security consultant to assist with answering these very tricky questions.  Of course if it is just you boss's
    curiosity  then you may need to discuss his requirements with him in more depth.
    ¯\_(ツ)_/¯

  • Error: List View Threshold. The number of items in this list exceeds the list view threshold, which is 5000 items.

    Hi, i had created a SharePoint List in cloud ( office 365) using List Template.
    List template contains 12000 items taken as template from SharePoint on Premise.
    I am getting this error message, in SharePoint Online (Office 365)
    The number of items in this list exceeds the list view threshold, which is 5000 items. Tasks that cause excessive server load (such as those involving all list items) are currently prohibited.
    How to resolve it, to get data in my SharePoint list, any help will be appreciated.

    With O365 lists over 5k items are now officially supported but they will have limited behaviour due to the threshold. There are no workarounds or options to increase the threshold either temporarily, for specific users or for the list itself as you have
    with on-prem.
    You'll need to remove enough items to get it below the threshold limit, add indexed columns to support indexed views, then re-add the items again. This article is for 2010 but the section around indexed columns and views is still accurate:
    https://technet.microsoft.com/en-us/library/cc262813(v=office.14).aspx
    It may be possible to add the indexes on your on-prem list where you can increase/avoid the threshold, then re-export the list. That would rely upon the list creation script adding indexes before it uploads items but it's a logical assumption.

  • Get the values of the list that exist in bean

    Hello to all the programmers ,
    I have a list that i initialize in the action (it's can be also servlet in pure j2ee) , the list is exist in the bean and then i used that list in the jsp page getting it from the bean.
    I pass over the list by logic iterate and show each object of the list , till this point it's work fine.
    Each of the object in the list has an attribute that used for the radio for selection , the problem is how do i get the selection of the user from the jsp.
    My code is here :
    The action from (Bean) :
    public class userBean extends ActionForm {
         private String firstName = null;
         private String lastName = null;
         private List theList = null;
         public String getFirstName() {
              return firstName;
         public void setFirstName(String firstName) {
              this.firstName = firstName;
         public String getLastName() {
              return lastName;
         public void setLastName(String lastName) {
              this.lastName = lastName;
         public List getTheList() {
              return theList;
         public void setTheList(List theList) {
              this.theList = theList;
    }The Object that the list contain :
    public class userDetails {
        private String firstName = null;
         private String lastName = null;
         private int selection = 0;
         public userDetails(String firstName, String lastName, int selection) {
              super();
              this.firstName = firstName;
              this.lastName = lastName;
              this.selection = selection;
         public String getFirstName() {
              return firstName;
         public void setFirstName(String firstName) {
              this.firstName = firstName;
         public String getLastName() {
              return lastName;
         public void setLastName(String lastName) {
              this.lastName = lastName;
         public int getSelection() {
              return selection;
         public void setSelection(int selection) {
              this.selection = selection;
    }The action that contain the list for the jsp :
    public class userAction extends Action{
         @Override
         public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              ArrayList listNames = new ArrayList ();
              listNames.add(new userDetails("Joe","Pashi",0));
              listNames.add(new userDetails("Moshe","Yaniv",0));
              listNames.add(new userDetails("Bill","Clinton",0));
              listNames.add(new userDetails("Bill","Gatez",0));
              listNames.add(new userDetails("John","Kendi",0));
              ((userBean)form).setTheList(listNames);
              ActionForward forward = mapping.findForward("userDetails");
              return forward;
    }The jsp page the present the list of the objects :
    <%@ taglib uri="/WEB-INF/struts-bean" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-logic" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-nested" prefix="nested" %>
    <%@ taglib uri="/WEB-INF/struts-tiles" prefix="tiles" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
    <html:html>
    <html:base/>
    <body>
       <html:form action="/userAction.do">
                 <html:text property="firstName"></html:text>
                 <html:text property="lastName"></html:text><br/>
                 <html:submit value="Click Here"></html:submit>
                 <br/>
                 <logic:iterate id="userDetails" name="userBean" property="theList" >
                    <html:radio name="userDetails" property="selection" value="1"></html:radio>
                    <bean:write name="userDetails" property="firstName" />
                    <html:hidden property="firstName" value="${userDetails.firstName}"/>
                    <bean:write name="userDetails" property="lastName"/>
                    <br/>
                 </logic:iterate>
       </html:form>
    </body>
    </html:html>so the big question is how do i get the selection of the user from the bean.
    Thanks in advance

    Hi ,
    thanks for asking me.
    I will explain that again i have a list of names that i set by the action and then pass it to the jsp.
    In the jsp page i show the list of the names and near each name there is a radio button , i want the user select any name from the list to get it from the bean , How do i do that ?
    thanks

  • I recently changed jobs and no longer have access to the computer that contained my Firefox bookmarks. I don't have a Firefox profile. Is there any way to find and transfer my bookmarks to my new computer?

    I recently changed jobs and no longer have access to the computer that contained my Firefox bookmarks. I don't have a Firefox profile. Is there any way to find and transfer my bookmarks to my new computer?

    If you don't have access to the old computer any longer, '''no'''. Unless you were using something like the Google Toolbar & Google Bookmarks or Xmarks, which would have your bookmarks in an online account that you could access. Firefox doesn't include an online storage feature for personal data, yet. That is coming in a future version.
    If you have a friend at your old job maybe they have access to that old PC and they could export your bookmarks to a file and email that file to you.

  • Where do I find the list that loads the programs at start-up so that I can disable some.

    Where do I find the list that controls the program loading at start-up. Also how do I know which ones I can disable. I am trying to speed up the start-up process.

    See http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx Autotruns

  • HT202279 Choose your server from the list that appears

    I administer four Yosemites servers using OS X Server.
    Everytime I launch OS X Server I have to option to Continue, which I do not choose. But I never get a list of other Macs to Adminsiter. I always have to choose "Other Mac" and enter the URL, etc. This happens on two Macs running Yosemite and being used for administrating.
    Where is the list of other Macs? No matter how often I connect to them, they never show up and I can find nothing in the menus to add them.
    According to How to administer OS X Server remotely using Server App - Apple Support it should be there:
    The first time you open the Server app on your admin computer, do not click the Continue button in the "Welcome to Server" window. Instead, choose Connect to Server from the Manage menu.
    Choose your server from the list that appears, or click "Other Mac" and then click Continue.

    I should've noted that these are web servers in various locations. They would not show on Bonjour.
    I'd still expect Server to remember and list them, and certainly the documentation doesn't indicate it's a LAN only feature.

  • What are the tables that Contains DTP Filter Entries

    Hello,
    for the filter entries on a DTP Process I found the table RSBKSELECT "Selections for DTP Request (Summary)". But that holds only value which are done generic by Formula etc. but not the information which are entered manual.
    Does anybody knows the table for the rest of entries ??
    I need this Information to Report these Filter as Selectioncriteria.
    Thank for any help
    Henning

    Hi,
    Please note that I was able to link the tables by this kind of code:
    "Get the request from the cube, to identify them.
        CALL FUNCTION 'RSSM_ICUBE_REQUESTS_GET'
          EXPORTING
            i_infocube     = LV_IC
          IMPORTING
            e_t_request    = LT_REQUEST
          EXCEPTIONS
            wrong_infocube = 1
            internal_error = 2
            others         = 3.
    "Check each request
        LOOP AT LT_REQUEST INTO LS_REQUEST.
          "Populate LV_REQUID_CHAR to be able to read the table RSBKSELECT
          "The key is : Request id, without leading 0, right justified, and shifted one time to the left.
          LV_REQUID_CHAR = LS_REQUEST-PARTNR.
          SHIFT LV_REQUID_CHAR LEFT DELETING LEADING '0'.
          SHIFT LV_REQUID_CHAR RIGHT DELETING TRAILING SPACE.
          SHIFT LV_REQUID_CHAR LEFT.
          "Get the filters
          SELECT  *
            INTO TABLE LT_RSBKSELECT
            FROM RSBKSELECT
            WHERE REQUID = LV_REQUID_CHAR.
    ENDLOOP.
    The internal table LT_RSBKSELECT will now contains all the filters used by the DTP.
    It is way better than using the field that contains the concatenation of all filters since it is limited to 255 characters.
    Hope it helps.

  • I know the name of an object - how do I get the name of the object that contains it?

    If I have a Movieclip, I can trace the name of the Movieclip
    that contains it using the _parent property.
    With a generic object, is there a way to trace the name of
    the object that contains it?
    Please, please tell me - this will be a huge help.
    Thanks

    Thanks for these comments - my problem isn't with MovieClips.
    I need to know if there is something which is the generic Objects
    equivalent to the MovieClips _parent property.
    Here's some code that hopefully will help explain further:
    class MyClass extends Object {
    var myObject:Object;
    function MyClass (){
    myFirstObject = new Object();
    myFirstObject.theParent = this;
    private function getNameOfParent(p_object:Object){
    // Some code to return the name of the object that contains
    p_object
    trace(p_object.__proto__); // Output: [object Object]
    trace(p_object._parent); // Output: undefined
    trace(p_object.theParent); // Output: [object Object]
    return ???
    public function doSomething(p_num:Number){
    var parentName = getNameOfParent(myObject);
    // do some more action...
    Timeline code:
    var myClass1 = new MyClass();
    myClass1.doSomething();

  • Dear all, I just downloaded the now IOS7 on my iPhone4S, the background picture has faded a bit, the folders that contains my icons are solid bright grey and the keyborard is pail/bright grey and I can hardly see it. Is there a way that I can change it?X

    Dear all,
    I just downloaded the now IOS7 on my iPhone4S, the background picture has faded a bit, the folders that contains my icons are solid bright gray and the keyboard is pail/bright gray and I can hardly see it. Is there a way that I can change the colors, the shades, etc? I don't like the new layout, it's too bright and too pale, like the face of a Georgian monarchy. Thank you for your help and support.
    Raya Alfa

    I changed the background picture, which is a dark pink flower, now the folders have become solid pink! Not esthetically pleasing

  • EBS field how can we get the information that on which form this filed is

    we are doing some data mapping activity for datawarehousing if we are given some EBS field how can we get the information that on which form this filed is located is there any good method

    Hi Kapoor,
    please give also others a chance, and excuse that I get up late on vacation ;-)
    Anyway, I'd keep the story creation responder to recognize the copy, then combine it with an observer on the backing xml story to catch the associated XML element which is created there. Something like below:
    UIDRef xmlStoryRef = Utils<IXMLUtils>()->GetBackingStore(doc);
    InterfacePtr<ISubject> subject ( xmlStoryRef,IID_ISUBJECT );
    subject->AttachObserver(observer,IID_IIDXMLELEMENT,observer->GetAttachIID());

  • MDB Deployed Twice/Once not even under the JAR that contains it

    We have an application that has multiple jars bundled into one ear. Our application
    tag looks like follows from the config.xml for the project:
    <Application Name="Central"
    Path="C:\PPOS\2004.1.0\Application\Central Server\weblogic\applications\pposcentralserver.ear"
    StagedTargets="central" StagingMode="stage" TwoPhase="true">
    <EJBComponent Name="commonserver" Targets="central" URI="commonserver.jar"/>
    <EJBComponent Name="hostcommonserver" Targets="central" URI="hostcommonserver.jar"/>
    </Application>
    hostcommonserver.jar contains a MDB. It gets deployed properly and if I monitor
    the queue it looks at on another server I can see it has "connected". The problem
    however is on this server if I monitor commonserver.jar, the same MDB shows up
    there even though it is NOT contained in the deployment descriptors for that jar.
    If I look on the server that contains the queue I can see that there are twice
    as many consumers as there should be.
    The weird part. If I change the name in the <EJBComponent> tag above from "commonserver"
    to anything else, this does not happen.
    I have not tested putting a message on the queue to see which MDB consumes it
    (getting to that point of testing will take me some time so I wanted to get the
    ball rolling on this) however I feel there is some bug here and since using the
    WLS console to look at the properties of this MDB is an often used part of support
    troubleshooting for this product, I can't have the wrong version of the MDB in
    place consuming messages while the correct one sits idly by making it appear it
    is not getting messages.
    Thanks.

    Try posting to the jms newsgroup.
    cheers
    mbg
    "Jeff Walsh" <jeff.walsh@no_spam_jda.com> wrote in message
    news:3fb298e4$[email protected]..
    >
    Bump...
    "Jeff Walsh" <[email protected]> wrote:
    We have an application that has multiple jars bundled into one ear.
    Our application
    tag looks like follows from the config.xml for the project:
    <Application Name="Central"
    Path="C:\PPOS\2004.1.0\Application\Central
    Server\weblogic\applications\pposcentralserver.ear"
    StagedTargets="central" StagingMode="stage" TwoPhase="true">
    <EJBComponent Name="commonserver" Targets="central"URI="commonserver.jar"/>
    <EJBComponent Name="hostcommonserver" Targets="central"URI="hostcommonserver.jar"/>
    </Application>
    hostcommonserver.jar contains a MDB. It gets deployed properly and if
    I monitor
    the queue it looks at on another server I can see it has "connected".
    The problem
    however is on this server if I monitor commonserver.jar, the same MDB
    shows up
    there even though it is NOT contained in the deployment descriptors for
    that jar.
    If I look on the server that contains the queue I can see that there
    are twice
    as many consumers as there should be.
    The weird part. If I change the name in the <EJBComponent> tag above
    from "commonserver"
    to anything else, this does not happen.
    I have not tested putting a message on the queue to see which MDBconsumes
    it
    (getting to that point of testing will take me some time so I wanted
    to get the
    ball rolling on this) however I feel there is some bug here and since
    using the
    WLS console to look at the properties of this MDB is an often used part
    of support
    troubleshooting for this product, I can't have the wrong version of the
    MDB in
    place consuming messages while the correct one sits idly by making it
    appear it
    is not getting messages.
    Thanks.

  • When I use Sync My Itunes I always get the message that Itunes is busy and to try again later.  I'm trying to sync my Touch so I don't get the index is full message.  Help.

    I'm trying to use "Sync My Itunes" to use my Ipod Touch in my 2011 Ford Escape.  I keep getting an index is full and all songs may not play message.  When I use the "Sync My Itunes" I always get the message that Itunes is busy and to try again later.  How do I get this to work?  I can't reset my Ipod without losing all my 4,000+ tunes.  Help!

    The "Show iTunes in the Cloud Purchases" solution did not work for me, but this did:
    In your iTunes library, make sure the "iCloud Download" column is showing (looks like a little cloud icon). Check for any songs that have a light gray cloud icon. Do whatever you need to do to make this icon disappear for that song (get iTunes to make sure it's downloaded onto your machine, or delete the song). Run Sync My iTunes again and it should finish.
    Notes:
    - Plugging in your iPhone/iPod might cause these songs to get copied back into your library, and you'll have to do this again. 
    - I didn't start having this problem until I bought Match
    How I discovered this:
    I noticed that it stopped every time at song #1242 in my library, so I ran "Sync My iTunes (Debug)" to see which song it stopped on. Then I went back to my library, found the song, and noticed it had the light gray cloud icon. It also had a local copy of the song already. I think iTunes gets confused sometimes and forgets that it downloaded a song from your cloud library, then tries to download it again even though it's already on your computer. Then it realizes the file's already there, and doesn't download it. However, it leaves it in your library flagged as an incomplete download. Sync My iTunes triggers iTunes to attempt download, which then makes it look like iTunes is busy. My theory at least...

  • In 7u51, will all jars referenced by the applet need to be updated to include the Permissions Manifest attribute ? Or, will it be limited to the jar that contains the applet code ?

    To whom it may concern,
    According to Java RIA checklist(http://www.oracle.com/technetwork/java/javase/overview/ria-checklist-2055184.html),
    as of 7u51(January 2014), Permissions Manifest attribute in main JAR file will be required.
    But, at least, as of 7u45, when the Security Level slider is set to Very High,
    a jar without Permissions Manifest attribute, which doesn't contain the applet code but is just referenced by the applet,
    prevent the applet from running.
    So, the question is:
    In 7u51, does it mean that all jars referenced by the applet need to be updated to include the Permissions Manifest attribute ?
    Or will it be limited to the jar that contains the applet code?
    There is a concern that we will have to modify library jars that we do not control.
    Sincerely,
    Toshio Shiko

    Thank you for your quick response and your investigation!
    It do help us very much.
    But, unfortunately, for the moment, I'm not allowed to test the early access version.
    As soon as circumstances are changed, I' d like to test it.
    Again, thank you for your providing of the useful information.

  • How do I assign a file to a drive other than the drive that contains my program software?

    I've just installed a video editing program on my new Mac Pro Xeon 64 bit workstation. I want to ensure that all my media files reside on a drive other than the drive that contains programs. I had no problem doing this on my old Dell. How do I do this on my Mac Pro? -- Gary

    Application Preferences.
    Next time, 'what' program would also help.
    Most people do setup with a dedicated boot drive with OS and apps, .then use other drives or array(s) for media, scratch as needed, including external hardware RAID.

Maybe you are looking for