Question of CONF?

Hi Friends
Please let me know:
1. How to do return delivery of goods receipt & service entry sheet between EBP to SUS in ECS,SRM5.0
2. How to cancel confirmation of goods receipt and service entry sheet between EBP to SUS
Regards
Renuka

Hi
To cancel a ses it can be done via ml81n alternatively this can also be done in srm via the cancel confirmation option.
hths
Saj

Similar Messages

  • Question on CONF?

    Hi Friends
    we are on SRM 7.0,EBP-SUS scenario. In std CONF (GR/SES) is created in backend system. But our requirement is to deactivate the GR/SES functionality completely. What kind of development activities are to be done in order to completely disable the CONF and directly creating invoice once PO is created.
    Regards
    Micheal

    Are you saying tha for a PO there shouldn't be any GR either in SRM or in R/3 ? directly it should create invoices?
    PO shouldn't have GR based invoice verification ticked.
    Once PO is created in R/3. In the ECC side write a logic to call BAPI_INCOMINGINVOICE_CREATE to create a invoice.
    Hope this helps If I understand the requirement correctly.

  • Newbie question - httpd.conf modifications

    I have been beating myself up the last couple of days and hope that someone can help me get this figured out.
    I have Oracle 10g Infra and Midtier installed on the same server. I also have an application on that server. The application is available by going to server:8183 (a development port). When we go to production I want the application to be passed all traffic going to port 80.
    Port 80 is being listened to by the midtier Apache server. Can I modify the midtier to not use this port? If I do that I can have the application itself just pick up that port.
    If I can not perform the above I need to use virtual hosts, I assume. I have looked at Virtual host but it does not look like you can have a virtual host point to a new port. For instance I would like to have it when a user types in x.x.com to actually go to x.x.com:8183 without having to open up that port to the outside world. Can the Virtual host be made to point to a different port?
    This is running on a Windows 20003 server. No IIS or anything since it is using Apache.
    Any help appreciated. I am getting frustrated and can find no end.
    Dave

    Just change the middle tier port to use 8080 or something in httpd.conf. You can do this in iAS control. Please read the docs for the knock-on effects of this.

  • ERPi Question (snpsagent.conf)

    Hi,
    I'm looking through the documentation for ERPi and was wondering what the amendment to the snpsagent.conf file faciliates? and how does it fit into the overal workings of ERPi.
    Thanks in advance.
    Mark

    Are you saying tha for a PO there shouldn't be any GR either in SRM or in R/3 ? directly it should create invoices?
    PO shouldn't have GR based invoice verification ticked.
    Once PO is created in R/3. In the ECC side write a logic to call BAPI_INCOMINGINVOICE_CREATE to create a invoice.
    Hope this helps If I understand the requirement correctly.

  • Multi-Mapping and Dynamic Configuration

    Hello,
    Is it possible to use dynamic configuration in mulltip-mapping? (message split?)
    in a  proxy-mail scenario I am using a multi-mapping. The message gets splited by a specif field.
    (Field of source message-SplitByValue(Value Change)-CollapseCOntext->Target Message(1..N)
    WIthin the graphical mapping I have a dynamic configuration for the "Mail Subject"
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey keySubj = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/Mail", "THeaderSUBJECT");
    conf.put(keySubj,  pSubject);
    return pSubject ;
    I have mapped this field to a field in the target message.
    The messages are being splitted as expected and the value of pSubject is also correct.
    BUT when receiving emails the subject field has the same value for all splitted messages.
    My Question is "conf.put(keySubj,  pSubject);" overwitting all splitted outgoing messages?
    Thanks for the Help
    EMW

    As stated in http://help.sap.com/saphelp_nw70/helpdata/EN/43/09b16006526e72e10000000a422035/frameset.htm
    Adapter-Specific Attributes and Multi-Mappings
    In multi-mappings, there are multiple message headers with adapter-specific attributes. The mapping API can only access one message header. This has the following consequences depending on whether there are multiple source or target messages:
    ●     1:n Transformation
    If there are multiple target messages, the header for the adapter-specific attributes is copied for each message. This means that you can only create one header for all adapter-specific attributes, and not individual headers.
    ●     n:1 Transformation
    This variant is only possible for multi-mappings in integration processes. If there is more than one source message, read-access to the adapter-specific attributes of the various message headers is not possible at runtime.
    ●     m:n Transformation
    All afore-mentioned restrictions apply here. Developers can at most write the same adapter-specific attributes for all target messages to the header, without read-access to the attributes of the source messages. m:n transformations are only supported within integration processes.
    Regards,
    Henrique.

  • Confirm() javascript function -  I would like Yes/No instead of OK/Cancel

    Hi All,
    I am using the confirm() javascript function and it works great! BUT, I would like Yes/No instead of OK/Cancel.
    Is there another function or a way to change the names used by the function.
    <pre>
    function SubmitCmd(sCmd) {
    var lpartial = html_GetElement('P44_PARTIAL').value;
    if(lpartial == 'Y'){
    // Go see if this partial exists for this ISD
    var l_DIST = html_GetElement('P44_DDDCCC').value;
    var l_ISBN = html_GetElement('P44_ISBN').value;
    var l_BKTYP = html_GetElement('P44_BK_TYPE_CD').value;
    var lapp=html_GetElement('pFlowId').value;
    var lpg=html_GetElement('pFlowStepId').value;
    var get=new htmldb_Get(null,lapp,'APPLICATION_PROCESS=odpExistingPartial',lpg);
    get.add('G_ITEM1',l_DIST);
    get.add('G_ITEM2',l_ISBN);
    get.add('G_ITEM3',l_BKTYP);
    var lexisting = get.get();
    get=null;
    if(lexisting != 0){
    // Show Alert Question
    var conf= confirm("There was a partial found for this ISBN and ISD."+
         "<BR>Do you want to add this partial to the existing one"+
         " found?");
    if (conf) {
         // Set up to call existing copy in Partial screen.
         html_GetElement("P44_COPY_ID").value = lexisting;
         doSubmit('ADD_PARTIAL');
         return;
    doSubmit('CREATE');
    </pre>

    Hello,
    The confirm() function is a built-in JavaScript function which you can’t alter.
    You can build your own dialog box, with any text and options you need. Search Google for “JavaScript modal dialog” and you’ll get references to a lot of examples. Not all of them are trivial to implement within APEX.
    BTW, if you want your code to maintain its format, you should use the forum internal tags [ code] and [ /code] (without the blanks). This way your code will be readable.
    Regards,
    Arie.

  • What is wrong with my cpufreq now?

    cpufrequtils 008: cpufreq-info (C) Dominik Brodowski 2004-2009
    Report errors and bugs to [email protected], please.
    analyzing CPU 0:
      driver: acpi-cpufreq
      CPUs which run at the same hardware frequency: 0 1
      CPUs which need to have their frequency coordinated by software: 0
      maximum transition latency: 10.0 us.
      hardware limits: 800 MHz - 2.40 GHz
      available frequency steps: 2.40 GHz, 2.40 GHz, 1.60 GHz, 800 MHz
      available cpufreq governors: ondemand, performance
      current policy: frequency should be within 800 MHz and 960 MHz.
                      The governor "ondemand" may decide which speed to use
                      within this range.
    I use laptop-mode-utils. It used to work right. Not sure what happened.
    let me post the answers to the inevitable questions:
    cpufreq.conf
    lsmod | grep cpu
    cpufreq_ondemand 8443 2
    acpi_cpufreq 5697 1
    freq_table 2379 2 cpufreq_ondemand,acpi_cpufreq
    processor 23608 3 acpi_cpufreq
    mperf 1267 1 acpi_cpufreq
    laptop mode conf
    BATT_CPU_MAXFREQ=fastest
    BATT_CPU_MINFREQ=slowest
    BATT_CPU_GOVERNOR=ondemand
    BATT_CPU_IGNORE_NICE_LOAD=1
    LM_AC_CPU_MAXFREQ=fastest
    LM_AC_CPU_MINFREQ=slowest
    LM_AC_CPU_GOVERNOR=ondemand
    LM_AC_CPU_IGNORE_NICE_LOAD=0
    NOLM_AC_CPU_MAXFREQ=fastest
    NOLM_AC_CPU_MINFREQ=slowest
    NOLM_AC_CPU_GOVERNOR=ondemand
    NOLM_AC_CPU_IGNORE_NICE_LOAD=0
    Last edited by tladuke (2011-04-16 00:56:29)

    Since you're asking what it means:
    That's the frequency range your processor is allowed to run at.  I'm not sure about laptop-mode-utils but you (since I see "ondemand" as a the current governor) you can manually set it, depending on what you considered to be "working right" before (e.g. higher frequency, lower, etc).  If laptop-mode-utils is controlling this, it might be using the "ondemand" governor to conserve power by setting it to a lower frequency if you're on battery instead of A/C, or something.
    Anyway, to change it manually (you may want to review your laptop-mode-utils configuration files first, check the Arch Wiki or any manpage associated with it), you can issue:
    cpufreq-set -c0 --min 800Mhz --max 2.40GHz
    That will put the processor back in it's full range, but if it's being controlled by your daemon it should be fixed there first.  I think you have 2 processors so you can issue the same command again but with  -c1   to change the second processor to the same frequency (if it supports the same range, which it usually does).
    Again, if laptop-mode-utils is controlling this, you may want to consult the config files and/or manpages/wiki first.  I don't have it installed, but the above command will change the frequency manually if you want.

  • Xorg.conf question

    I am kind of embarassed to ask this question, but I have to. Where do I find xorg.conf? Do I even have such a file? It is not in /etc/X11.
    When I installed Xorg, I also installed hal and then added it to module list in rc.conf. Does hal just detect my xorg settings everytime I run X, thus eliminating the need for xorg.conf?

    The only solution was to boot from a live distro and edit the xorg.conf from there. I think the problem was the missing hal daemon - im not sure.
    There's a much easier way - boot into single user mode (either add "single" or "init=3" to the kernel line in grub) and edit your xorg.conf using nano or any other text editor.
    Now, hal is *required*  as long as you don't have Option "AutoAddDevices" "False" in your xorg.conf. If you try to start X without having hal running, you will not be able to use your mouse/keyboard (again, if this happens, boot into single user mode and edit your xorg.conf). If you disable hotplugging (AutoAddDevices false), hal is optional (correct me if i'm wrong), but many features of KDE/Gnome depend on hal and won't work without it.
    Personally, I'd recommend going with hotplugging and hal. First, try starting X without an xorg.conf. If everything looks good, you're done (on my notebooks I don't have xorg.conf). You might need xorg.conf to set stuff like your screen resolution - generate it (if you have an nvidia gfx card, use nvidia-xconfig), but make sure there are no lines concerning your mouse/keyboard in xorg.conf.
    And, like paulez posted, you will need xf86-input-evdev.

  • S2disk mkinitcpio.conf question

    Hi there,
    I wasted some hours today to get hibernation working properly.
    My setup is an unencrypted /boot partition and an encrypted lvm volume group which contains swap and root partitions.
    Using uswsusp (because of the s2both feature) I followed this ("poorly written") guide: https://wiki.archlinux.org/index.php/S2 … e_intramfs
    Putting the uresume hook before filesystems as mentions in the article, it always complaint it couldn't read the snapshot file.
    Then I tried to put the uresume - hook _after_ (on the right side of) the filesystems hook in /etc/mkinitcpio.conf and it worked.
    The snapshot file comes with the root filesystem which you have to mount first, so thats logical anyway.
    My question here is: Am I doing the right thing here? If yes, why is this part of the article completely wrong? Not very helpful ...
    greetings
    rd

    My configuration is the same as yours, and my hooks look like this:
    HOOKS="base udev autodetect pata lvm2 uresume filesystems"
    More generally - It's a wiki, which means it can be wrong. Correct it, and enjoy the warm glow that contributing creates.

  • [SOLVED] Question about resolv.conf

    I successfully configured my Arch box with a static IP by following the instructions on the Arch wiki page here but had a couple of questions about configuring /etc/resolv.conf:
    1) What is the proper way to obtain the domain name that should be inserted into resolv.conf?
    2) What exactly is this domain name used for?  I read the man page but still don't really understand it.  Why do I need a domain name if I already have a working set of nameservers to resolve IP addresses?
    EDIT: @ewaller Yes I edited the OP because I realized that my original problem was that I just hadn't added a domain name in my resolv.conf file.  I edited my original post because 1) the instructions are already posted clearly on Arch Wiki so my post really wouldn't be beneficial and 2) so I could ask my real question without making other people waste their time reading through my other nonsense
    Last edited by choogi (2010-09-09 04:06:45)

    yejun wrote:You can just use public dns like 8.8.8.8 or 4.2.2.1. There's no other way to get dnsserver besides dhcp.
    Yes, I know how to get a nameserver, but I'm asking about the domain name that goes in resolv.conf.  The Arch wiki tutorial for setting up static IP uses the following resolv.conf as an example:
    nameserver 61.23.173.5
    nameserver 61.95.849.8
    search example.com
    My question has to do with what the "search example.com" does.  I don't have a domain name associated with my machine, but if I remove that line, then I get "web page unavailable" when I try to load any web site, which suggests that I'm not connecting to any nameservers right?

  • Rc.conf deamons array - question

    i have a question about the deamon array in rc.conf, this is mine:
    DAEMONS=(preload syslog-ng dbus acpid netfs alsa crond hal acpi-support fam stbd wicd gpm cups samba asusoled-clockd bluetooth transmissiond sshd)
    i know there is an order for some things, i just dont know what, so my question, is my order ok? if not what do i need to switch?
    thanks

    adamruss wrote:
    Inxsible wrote:
    adamruss wrote:
    i have a question about the deamon array in rc.conf, this is mine:
    DAEMONS=(preload syslog-ng dbus acpid netfs alsa crond hal acpi-support fam stbd wicd gpm cups samba asusoled-clockd bluetooth transmissiond sshd)
    i know there is an order for some things, i just dont know what, so my question, is my order ok? if not what do i need to switch?
    thanks
    As long as the daemons are independent of each other, it hardly matters what order they are started in. The only thing is that the syslog-ng is used for logging...so you always want to start that before anything else so that in case there are errors in starting any daemon, they will logged and you can see them later.
    I am not sure what 'preload' daemon is. Also you might want to start the unimportant ones in the background by prefixing them with an '@' sign so that your boot up would be quicker.
    what do you mean unimportant?
    You could bacground "alsa gpm cups samba bluetooth".
    Oh, and if you don't use any network filesystems remove netfs. Don't have any cronjobs remove crond.

  • No loopback interface in the default rc.conf + gateway question SOLVED

    I finally got around to updating my rc.conf to the current version and two questions occur to me.  I should probably have noticed them before now, but I didn't. My bad.
    (1) There is no "lo" in the model interfaces staza.  I have never run a system on which ifconfig did not show a "lo".  Do we omit it now for a reason which it would be helpful for me to understand?
    (2) In the model we also have :
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    Why would one declare default gateway, only to disable it?  Putting it more generally, why declare any route, only to disable it, except perhaps as a temporary measure?
    TIA
    Last edited by perseus (2010-04-25 15:39:47)

    Many thanks.
    Two answers within 5 minutes of posting. I love Arch.
    Have you noticed how googling almost linux problem (not distro-specific), will have first page answers to be found in these forums?

  • Silly makepkg.conf question

    Does makepkg.conf dictate "make" behavior as well as "makepkg" behavior ?
    For instance if I use MAKEFLAGS="-j3" will I be able to benefit from it using regular "make" ?

    Cerebral wrote:
    Well, if you want default CFLAGS and CXXFLAGS you can just set them before the alias:
    export CFLAGS="-march=k8 -O2 -pipe -fomit-frame-pointer"
    export CXXFLAGS=${CFLAGS}
    alias make='make -j3'
    That would work as well.
    Ah, brilliant, thank you. There's what I was looking for. I am assuming that this should work whether I put it in /etc/profile or ~/.bashrc. (I only have 1 user and root.)

  • /etc/pacman.conf question..

    This may have been asked before, but I could not find it...
    <yes, I did use the search on the forums...  >
    I was wondering if the NoUpgrade option in pacman.conf uses shell-like wildcard expansion...
    Does the following work?
    NoUpgrade = etc/host*
    shell expansion should expand this to
    /etc/host.conf
    /etc/hosts
    /etc/hosts.allow
    /ec/hosts.deny
    will pacman do the same?

    No, but it would be nice to have something like that (or perhaps better with regexp)
    BTW, regexp support for targets was already in pacman wishlist.
    I've added noupgrade/ignorepkg options to it.
    To be continued...

  • Question about optimizing packages int Makepkg.conf

    I edited my Makepkg.conf file so that it knows that I have a Intel Core 2 Duo. Do I need to rebuild any packages? How do I go about it if I do?

    Ranguvar wrote:
    SkonesMickLoud wrote:
    slughappy1 wrote:Isn't prescott the right config for an Intel Centrino Core 2 Duo? That's what the guide says. Although, I once tried to install Gentoo. I think I remember that someone told me that prescott is just the current form, and that for the core 2 duo it was going to change. Or something like that
    Prescott is for the i686 version, Nocona is for x86_64.
    Note that this is, I'm pretty sure, independent of what architecture your OS is running (32-bit vs 64-bit).
    Yeah.  What I meant was that if you're running i686 on your Core2Duo it's a Prescott.  If you're running x86_64, it's a Nocona.

Maybe you are looking for