XI config for MM-SUS

Hi,
I am trying to configure XI for the MM-SUS scenario. I know there are predefined business scenarios available. I tried according to the configuration guide, but was not successful.
Could anyone send me any document which describes any additional settings. Are there any cookbooks available? ([email protected])
I would award reward points for any helpful information.
Thanks,
Robert G.

Hi,
SLDSAPAPI
LCRPRFCPAR
These two RFC destination with R/3 should be active.
Error when transferring PO from R/3 to SUS - 39k -
Unable to register SLD_UC en SLD_NUC in SM59 - 50k - Supplemental
Check these two link also.
BR,
Vijay Mittal.
Plz award the points for the help.

Similar Messages

  • Laptop config for installing oracle apps

    Hi All,
    what could be the best config and brand for installing oracle apps in laptop for learning purpose? Will oracle apps supports Windows Vista as most of the current laptops has Vista as the default OS?
    I have tried installing oracle apps in desktop and not in laptop yet.I found in the net the below steps is one of the ways to install oracle apps in laptop.
    1.Install VMware on windows OS (Virtual Machine)
    2.Install enterprise linux
    3.Install oracle apps
    Pls let me know if anyone have installled oracle apps in laptop.
    Thanks in advance
    kumar

    Hi Kumar,
    Yes, for learning Vista/VMWare/OEL/Apps would work, but note VMWare not supported on Vista but it does run (boot using Disable Driver Signing) and you might find Linux VMs take 20-30mins or so to start the first time after host boot. Also I'd turn off the Vista frilly bits!
    Specs - get something recent, the better hardware the faster it runs! For Vista and R12 on VMWare I'd say you'd want 4GB memory, fast dual core CPU and tons of disk. Also you'll want Vista 64 to get the best out of the memory (and if you want more than 4Gb). Some laptop brands come with options for different OS's like images on DVD or hidden on the harddisk that you can easily reinstall.
    PS. Laptops are like desktop's these days, not a huge difference in specs...
    PPS. If you want a less painful option try to downgrade to Windows XP (watch memory limits), still lots of hassles with Vista.
    PPPS. I'd go for OpenSuse (Suse clone) or Centos (RedHat clone) over OEL for learning machine due to no subscription for updates, etc.
    Drop me an email if you want.
    Regards,
    Gareth
    http://garethroberts.blogspot.com

  • How to set and static ip_address for a Suse Linux box

    Hi.
    I've done the following to set an static ip address for my Suse 9 Linux box:
    - Take not of inet address value from ifconfig command. ie: (172.17.2.14)
    - Change this value in /etc/hosts for my linux box.
    Since Suse is configure by default to use DHCP for assigning dinamic ip_addresses i'm not sure whether will lastly be set as a static address. I've rebooted my box and it seems to be OK.
    Thanks in advance ...!

    /etc/hosts is not configuration file for ethernet interfaces.
    Configuration files for ethernet interfaces are stored in /etc/sysconfig/network directory.
    For example if you have eth0 device then configuretion for this device is stored in /etc/sysconfig/network/ifcfg-eth0 file.
    Important directives:
    DEVICE - interface (eth0)
    IPADDR - IP address of interface
    NETMASK - netmask
    BOOTPROTO - "static" for static configuration, dhcp for dynamic configuration via dhcp
    ONBOOT - activating interface during boot (yes/no) (yes - of course :-) )
    GATEWAY - default gateway
    So for example you want setup static IP (192.168.10.1 / 255.255.225.0) for eth0 interface.
    Edit the /etc/sysconfig/network/ifcfg-eth0 file and your configuration should be:
    DEVICE=eth0
    IPADDR=192.168.10.1
    NETMASK=255.255.255.0
    BOOTPROTO=static
    ONBOOT=yesThen you simply restart the nework using:
    /etc/init.d/network restartOR
    /sbin/ifdown eth0
    /sbinf/ifup eth0 OR
    ifconfig eth0 down
    ifconfig eth0 up

  • Config for Production client

    Dear all,
    I'm a new basis and now I'm working in big project ERP. I have a disturbed about config for Production client.
    In scc4 we must set client role is Production and No change allowed for Objects. But in production some time we need do Open and Close Period, or change following business requirement, ... This is not allowed to do in Production client.
    How do we config for Production client to cover this requirements ?
    Do we need a config client for maintain Production client ? Example: Production client is 500, Config client is 100. When we need Open or Close Period or change anything, we do in 100 and transfer request to 500.
    Thank you very much.
    Regards,
    Thanh.
    Do not use text message language, the next time your thread will be deleted.
    Read the "Rules of Engagement"
    Edited by: Juan Reyes on Dec 1, 2010 11:06 AM

    You can customize transaction to be executable although the setting in SCC4 is "productive", this is accomplished by using transaction SOBJ:
    Note 1497640 - Open and close periods in productive client
    You can theoretically put every customizing view there and make it "executable" in a production system.
    Markus

  • How to use the same services-config for the local and remote servers.

    My flex project works fine using the below but when I upload my flash file to the server I doesn't work, all the relative paths and files are the same execpt the remote one is a linux server.
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <service id="amfphp-flashremoting-service"
                class="flex.messaging.services.RemotingService"
                messageTypes="flex.messaging.messages.RemotingMessage">
                <destination id="amfphp">
                    <channels>
                        <channel ref="my-amfphp"/>
                    </channels>
                    <properties>
                        <source>*</source>
                    </properties>
                </destination>
            </service>
        </services>
        <channels>
        <channel-definition id="my-amfphp" class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>
        </channels>
    </services-config>
    I think the problem  is the line
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
    but I'm not sure how to use the same services-config for the local and remote servers.

    paul.williams wrote:
    You are confusing "served from a web-server" with "compiled on a web-server". Served from a web-server means you are downloading a file from the web-server, it does not necessarily mean that the files has been generated / compiled on the server.
    The server.name and server.port tokens are replaced at runtime (ie. on the client when the swf has been downloaded and is running) not compile time (ie. while mxmlc / ant / wet-tier compiler is running). You do not need to compile on the server to take advantage of this.
    Hi Paul,
    In Flex, there is feature that lets developer to put all service-config.xml file configuration information into swf file. with
    -services=path/to/services-config.xml
    IF
    services-config.xml
    have tokens in it and user have not specified additional
    -context-root
    and this swf file is not served from web-app-server (like tomcat for example) than it will not work,
    Flash player have no possible way to replace token values of service-config.xml file durring runtime if that service-config.xml file have been baked into swf file during compilation,
    for example during development you can launch your swf file from your browser with file// protocol and still be able to access blazeDS services if
    -services=path/to/services-config.xml
    have been specified durring compilation.
    I dont know any better way to exmplain this, but in summary there is two places that you can tell swf  about service confogiration,
    1) pass -services=path/to/services-config.xml  parameter to compiler this way you tell swf file up front about all that good stuff,
    or 2) you put that file on the webserver( in this case, yes you should have replacement tokens in that file) and they will be repaced at runtime .

  • Config for Dispatch Intrastat

    Hello Experts,
    Our client has a manufacturing plant in France which is already in SAP. Now they are planning to come up with another plant in France. We will be creating a new Company Code and Sales Org. My question is that since France is already in SAP and uses Intrastat reporting so do we need to make any config for new Plant/Sales Org or is the Intrastat setting defined at country level only.
    Regards,
    Karan

    Hello Karan,
    We are going to create a new Plant as well as a new Sales Organisation. In Intrastat there is one setting where we assign Business Transaction Type to Sales Org/Item Category combination. For the reference Sales Org this setting is already in place so do we need to do this setting for new Sales Org also or does it get copied when we create new sales org with reference to existing sales org?
    In my view on the current set up which you are incorporating for new plant at France, there is no need to have new Company Code and Sales organization unless and untill there is some legal requirement at EU(If export process needs to be triggered). There is not much information available on Intrastat functionality but as i understand from you, you create Business transaction type at Intrastat, and then assign business transaction type to Sales organization, My suggestion would be :- most likely you would have to extend and include the newly created Sales Organization for Business transaction type.
    Thanks,
    Sarthak

  • Vendor Payment Terms config for 30%advance 70% after GR

    Hi Guys,
    How to configure Vendor Payment Terms for " Vendor Payment Terms config for 30%advance 70% after GR "
    Please suggest your expert comments.
    Thanks in advance.
    Regards,
    Jackie

    sappassion2011 wrote:
    Hi Guys,
    >
    > How to configure Vendor Payment Terms for " Vendor Payment Terms config for 30%advance 70% after GR "
    >
    > Please suggest your expert comments.
    >
    > Thanks in advance.
    >
    > Regards,
    >
    > Jackie
    Hi Jackie,
    Do them in trxn OME2
    Regards
    Shiva

  • Settings for Purchase Order output using services for MM-SUS scenario?

    Dear Gurus,
    I am configuring the service procurement classic and plan driven procurement for MM-SUS
    environment. We are on SAP SRM 7.01/ECC 6 EHP5.
    I need to maintain the below settings for PO output:
    1. RUN transaction SWETYPV
    2. IN the object types field, enter CL_SE_PUR_WF_OUT.
    3. In the event field, enter CREATED.
    4. In the receiver type field, enter WS53800008.
    5. In the receiver function module field, enter SWW_WI_CREATE_VIA_EVENT_IBF.
    6. Select the 'Linkage Activated' checkbox.
    7. Save your entries.
    Similarly, one more entry for the event CHANGED.
    However, the system is not allowing me to save the settings.
    If I choose BOR Object Type 'CL_SE_PUR_WF_OUT', it gives an error message 'Object type CL_SE_PUR_WF_OUT is not defined'.
    If I choose object category 'Business class for object type CL_SE_PUR_WF_OUT, it gives an error message 'Class CL_SE_PUR_WF_OUT is not a business class.'
    There are similar entries in the table SWETYPV for object type CL_SE_PUR_PO_WF_OUT' with object category CL.If we copy the entries and tries to replace the
    object type 'CL_SE_PUR_PO_WF_OUT' with CL_SE_PUR_WF_OUT and save it, it gives an error message 'CL is not used for workflow event'.
    Could you please help me on how to configure the settings for PO output from ECC system using services?
    Any input is highly appreciated.
    Thanks and regards,
    Ranjan

    Hi Ranjan,
    Please add the value 'CL' in the table SWF_CATIDS
    Then it will work.
    With Regards,
    Malay

  • What's the best Mac Pro config for Fireworks?

    What's the best Mac config for Fireworks?
    I can pretty much get whatever Mac I want at work... My boss is sick and tired of watching Fireworks crash all the time... I figure a hefty processor and lots of RAM and maybe a SSD will help…
    I should get a Mac Pro right? Which processor?
    • Two 2.40GHz 6-Core Intel Xeon processors (12 cores)
    • Two 2.66GHz 6-Core Intel Xeon processor (12 cores)
    • Two 3.06GHz 6-Core Intel Xeon (12 cores)
    Should I get 24GB RAM?? Or is that overkill?
    I'll get a 2TB serial hard drive…
    I should get a 512 GB solid state drive offered by Apple right?
    Or is it possible to get a larger better 3rd party SSD?
    And then maybe two 21" Displays… Two 27s seems a little much… or does it?
    Thanks in advance.

    Oh and what about video cards? Or is Apple's default ok? (I'm not doing hard core PhotoShop retouching or anything).

  • Add file config for hole application?

    Hi everyone,
    Is there any one worked with build file config for hole fusion adf application? It is similar with web.config in .NET ASP web site. I think in jdeveloper, we can use web.xml for add some parameter but don't know how to read this parameter?
    Any help is appreciate!
    Thank.

    User, please tell us your jdeveloper version!
    In general you can read context or innit parameters from web.xml.
    You get to them via the servlet context
    String databaseHost =getServletContext().getInitParameter("database.host");
    And to get to the servlet context use
    FacesContext ctx = FacesContext.getCurrentInstance(); ServletContext servletContext = (ServletContext) ctx.getExternalContext().getContext();
    Timo

  • Clarification on RFC connections for MM-SUS set up in SRM

    Hi All,
    I am stuck with replication of vendor from R/3 to SUS. I have made the RFC connections as mentioned below
    R/3 Side: R/3 to XI - Type 3
    SUS Side: SUS to R/3 - Type 3
                    SUS to XI (LCRSAPRFC) - Type T
                    SUS to XI (SAPSLDAPI) - Type T
                    SUS to XI - Type H
    XI Side: XI to R/3 - Type 3
                XI to SUS (LCRSAPRFC) - Type T
                XI to SUS (SAPSLDAPI)  -  Type T
    Can you please confirm whether these connections are sufficient for MM-SUS set up.
    Thanks in advance!
    Regards,
    Ram
    Edited by: Ram K on Sep 21, 2008 10:16 AM

    Hi Ram,
    Vendor Master data R/3 to SRM
    1.Find the vendor group in  SRM
    TC= PPOMV_BBP
    Ex:- VG Id= 50000041
    2.TC= BBPGETVD     in  SRM
    Give the following parameters
    System(R/3), Vendor no in R/3, Pur. Org, Object ID:50000041
    Then  click on start transfer.
    3.TC= SLG1   Check the Q if have strucked
    4.Check the vendor no in SRM System use TC= PPOMV_BBP
    Note:-
    R/3 & SRM number range shoul be same
    R/3 internal/External No. range equal to SRM External number, Then only replicated
    If u need more details pls contact to my Id bvnvrao yahoo.com.
    I will forward screen shot document.
    I think it will help.
    WR
    Rao

  • Hal config for Elantech/Eee 1000h touchpad?

    I've tried using the one that's in the 901-install Wiki page, and find it massively flakey (sorry no offense to anyone), compared to using xorg.conf.. It doesn't allow precise control at all, and for some reason (I'm sure it's the way I move my finger), seems to really jump up or down when I move side to side..
    So does anyone have a config for this that works real good, that cares to share?
    Thanks in advance.

    I know this problem occurs when I compile the elantech driver in the PS2/trackpoint driver:
    CONFIG_MOUSE_PS2_TRACKPOINT=y
    CONFIG_MOUSE_PS2_ELANTECH=y
    I was told you need the latest xf86-input-synaptics but Arch has the latest...
    My workaround was to disable elantech:
    CONFIG_MOUSE_PS2_TRACKPOINT=y
    # CONFIG_MOUSE_PS2_ELANTECH is not set

  • Cisco ISE configs for switch

    I suppose Cisco ISE sends a URL redirect to the switch and the switch presents it to the client in case of guest Access getting a URL redirect with User Acceptance Page (Wired Guests and not wireless).
    My question here is, Do we need to configure http and https server on the switches (both supplicant and authenticator)?
    I am sure it will need but just wanted a confirmation..
    I have checked the configuration for supplicant and Authenticator switches for ISE and it has no where mentioned that part of the config.
    http://www.cisco.com/en/US/docs/security/ise/1.0/user_guide/ise10_troubleshooting.html (a problem of URL redirection and possible cause is mentioned) ------- makes me sure that the config is needed.
    http://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst2960x/software/15-0_2_EX/security/configuration_guide/b_sec_152ex_2960-x_cg/b_sec_152ex_2960-x_cg_chapter_010000.html
    (config of supplicant and authenticator switch)---- nowhere mentioned of the http/https config for both switches.

    Yes, its needed.  The http/s server within the swtich is used to grab the http user traffic and redirect the traffic to the CWA portal, or a device registration portal, or even to the Mobile Device Management (MDM) onboarding portal.  .
    ip http server
    ip http secure-server
    The info below I grabbed from Cisco ISE for BYOD and secure unified access book.
    "Many organization want to ensure that this redirection process using the switch's internal HTTP server is decoupled from the management of the switch itself, in order to limit the chances of an end user interacting with the management intervace and control plane of a switch.  this may be accomplished by running the following two commands from global configuration mode:
    ip http active-session-modules none
    ip http secure-active-session-modules none"

  • Working eMTA config for a Metaswitch for Cisco DPQ3925

    I need a working emta config for a DPQ3295 cable modem that will work with a Metaswitch AGC using NCS

    Thanks for the reply but it still doesn't work.  I have tried those commands a few times and I always get the same error...access violation.
    I am using TFTPserver for Mac.  My Server Status, Working path permissions and Parent folder permission are all green.
    I have tried it with a pre-made file and without a pre-made file and I get the same result.
    I can create and modify any files in my working directory.
    This the message in the log file...Mar 25 13:12:41 MacBook-Pro-Retina.local TftpServer[1295]: 10.4-style NSDateFormatter method called on a 10.0-style formatter, which doesn't work. Break on _NSDateFormatter_Log_New_Methods_On_Old_Formatters to debug. This message will only be logged once.
    I am not sure what that means, but I will research it after I post this.
    I have tried both the CLI and the GUI and neither will work.

  • Error download when trying to download config for music [ios 7 beta 6]

    I recieve an error when i try to download the music/video config for ios 7 beta 6. Any ideas?

    We can't help you here as you are not allowed to talk about beta software in this forum. Ask this question in the Developer forum > http://devforums.apple.com

Maybe you are looking for

  • Where is the hdmi port in a touchsmart 600-1360

    where is the hdmi port in a touchsmart 600-1360

  • Problem with LSMW ?

    Hi all, i have a dought regarding can we use <b>Batch session</b> and <b>call transaction</b> methods in LSMW ?

  • Redirect to another web page

    I need to redirect visitors to another an alternate web page if they have less than Flash Player 7. I have javascript that lets me display a link the the page, but I want it to happen automatically. I'm guessing I need some kind of onLoad javascript

  • How to remove mouseover help in WDA?

    Hello Guys, I am getting mouse over kind of help whenever I am taking mouse cursor over inputfield or button. we are on ERP 6.0 EhP4 system. for e.g. button with name Process, the text is "Process - Button -  Process - To activate, press spacebar" In

  • Multiple LabVIEW Test Eng Positions-​Contract and Direct: NJ with Clearance (Need is IMMEDIATE)

    Symtx Inc, a custom system company is looking to fill multiple roles on site in NJ. Requirements: Current Security Clearance (active or inactive) 3-10 years LabVIEW experience Strong HW background as well-debug, integration Strong Communication skill