How to setup a basic VPN

Hi,
I just bought a Linksys BEFSX41 VPN router, I wanted to make a basic VPN.  I tried more than a week, I followed the guide.  But it never work and really made me headache. 
I hope any body can help me to make it work.
I setup the router as the guide, the local IP is 192.168.1.1, I disabled the firewall, I set a statci IP, 10.254.5.92 for the router's WAN IP.  I also enable a tunnel. give name to it. setup the local secure group, remote secure group. 
The VPN client is a XP computer, I also give a static IP to it, it's 10.254.5.7.  I also create a IP Security Policy on the Local Computer.  The VPN connection is a L2TP coonection, the pre-shared key is same as that in the IP Security policy and the tunnel.
The client can ping the router, but never can login the the VPN.
Here is the router log, any body find any thing wrong there:
12:22:12 IKE[1] **Check your PFS setting !
12:22:12 IKE[1] Tx >> Notify : PAYLOAD-MALFORMED
12:23:14 IKE[1] Rx << Delete ISAKMP_SA : cookie 113dfda3 8f0c2714 | 8dfe132b b0eb4152
12:23:14 IKE[1] Tx >> Delete ISAKMP_SA : cookie 113dfda3 8f0c2714 | 8dfe132b b0eb4152
12:23:14 IKE[1] Rx << MM_I1 : 10.254.5.7 SA, VID, VID, VID
12:23:14 IKE[1] Tx >> MM_R1 : 10.254.5.7 SA
12:23:14 IKE[1] ISAKMP SA CKI=[28996738 20e85b24] CKR=[1f879b2d 26c7485]
12:23:14 IKE[1] ISAKMP SA 3DES / SHA / PreShared / MODP_1024 / 28800 sec (*3600 sec)
12:23:15 IKE[1] Rx << MM_I2 : 10.254.5.7 KE, NONCE
12:23:15 IKE[1] Tx >> MM_R2 : 10.254.5.7 KE, NONCE
12:23:16 IKE[1] Rx << MM_I3 : 10.254.5.7 ID, HASH
12:23:16 IKE[1] Tx >> MM_R3 : 10.254.5.7 ID, HASH
12:23:16 IKE[1] **Check your PFS setting !
12:23:16 IKE[1] Tx >> Notify : PAYLOAD-MALFORMED
12:23:24 IKE[1] **Check your PFS setting !
12:23:24 IKE[1] Tx >> Notify : PAYLOAD-MALFORMED
12:23:31 IKE[1] **Check your PFS setting !
12:23:31 IKE[1] Tx >> Notify : PAYLOAD-MALFORMED
12:23:38 IKE[1] **Check your PFS setting !
12:23:38 IKE[1] Tx >> Notify : PAYLOAD-MALFORMED
12:23:47 IKE[1] **Check your PFS setting !
12:23:47 IKE[1] Tx >> Notify : PAYLOAD-MALFORMED
12:23:54 IKE[1] **Check your PFS setting !
12:23:54 IKE[1] Tx >> Notify : PAYLOAD-MALFORMED
12:24:26 IKE[1] Rx << Delete ISAKMP_SA : cookie 28996738 20e85b24 | 1f879b2d 26c7485
12:24:26 IKE[1] Tx >> Delete ISAKMP_SA : cookie 28996738 20e85b24 | 1f879b2d 26c7485
12:24:26 IKE[1] Rx << MM_I1 : 10.254.5.7 SA, VID, VID, VID
12:24:26 IKE[1] Tx >> MM_R1 : 10.254.5.7 SA
12:24:26 IKE[1] ISAKMP SA CKI=[e41e0bac f6514198] CKR=[49b5d338 43497875]
12:24:26 IKE[1] ISAKMP SA 3DES / SHA / PreShared / MODP_1024 / 28800 sec (*3600 sec)
12:24:27 IKE[1] Rx << MM_I2 : 10.254.5.7 KE, NONCE
12:24:27 IKE[1] Tx >> MM_R2 : 10.254.5.7 KE, NONCE
12:24:28 IKE[1] Rx << MM_I3 : 10.254.5.7 ID, HASH
12:24:28 IKE[1] Tx >> MM_R3 : 10.254.5.7 ID, HASH
12:24:35 IKE[1] **Check your ISAKMP Pre-share Key setting !
12:24:35 IKE[1] Tx >> Notify : INVALID-PAYLOAD-TYPE
Thanks
Wei Luo

Hi Yu Yu,
If I have understood you requirement correctly then please have a loom of the below URL. It may help you.
Login Modules - User Authentication and Single Sign-On - SAP Library
Thanks,
Hamendra

Similar Messages

  • How to setup an ikev2 VPN with public key authentica​tion with your BB10 device

    This setup will allow you to run a VPN between your BB10.2 (and probably BB10.1) device and a debian linux computer (I am running the testing stream).  You will need to tweak this config (and possibly install strongswan server on your LAN's gateway) to get access to network resources, or access the internet via the VPN.  I have created this setup with the intention of accessing files/services on the debian computer only.
    1.  Install strongswan on your debian machine(I have v4.6.4 installed, I think the current testing version is v5.1.  If you install v5+, some lines in the config may be obsolete), and install any other extra packages you are prompted to install: 
    apt-get install strongswan strongswan-ikev1 strongswan-ikev2 strongswan-starter openssl ipsec-tools
    2.  Generate certificates on your debian server in any, starting with a certificate authority.  Edit the C= O= CN= fields to whatever you want:
    ipsec pki --gen --outform pem > caKey.pem
    ipsec pki --self --in caKey.pem --dn "C=CA, O=none, CN=Certificate-Auth" --san="Certificate-Auth" --ca --outform pem > caCert.pem
    Generate a server keypair (again, editing the same fields as I indicated above.  The CN= field should be lan ip address of your strongswan server.  I would also put this as the address in --san=, or you can specify your hostname(if you have one, i.e. mydomainname.com):
    ipsec pki --gen --outform pem > serverKey.pem
    ipsec pki --pub --in serverKey.pem | ipsec pki --issue --cacert caCert.pem --cakey caKey.pem --dn "C=CA, O=none, CN=192.168.1.100" --san="192.168.1.100" --flag serverAuth --outform pem > serverCert.pem
    Generate a keypair for your BB10 device (choose a CN=, and use it in the --san field @your server lan ip or hostname:
    ipsec pki --gen --outform pem > userKey.pem
    ipsec pki --pub --in userKey.pem | ipsec pki --issue --cacert caCert.pem --cakey caKey.pem --dn "C=CA, O=none, CN=bb10" --san "[email protected]"  --flag serverAuth --outform pem > userCert.pem
    3.  After generating your keys, package the client keys for your BB10 device(you will be asked to create a password): openssl pkcs12 -export -in userCert.pem -inkey userKey.pem -out bb10.pfx
    Copy the bb10.pfx file, and serverCert.pem to your BB10 device and import the certificates into the certificate store(Open Settings --> Security and Privacy --> Certificates --> Import)
    4. Move the certificates into the appropriate folders on your debian server: 
    mv caKey.pem /etc/ipsec.d/private
    mv caCert.pem /etc/ipsec.d/cacerts
    mv serverKey.pem /etc/ipsec.d/private
    mv serverCert.pem /etc/ipsec.d/certs
    5. Enable ip forwarding on your debian machine:
    edit /etc/sysctl.conf - change the following value as follows:
    net.ipv4.ip_forward=1
    Close the file and save changes.  To enable changes, type:  sysctl -p /etc/sysctl.conf
    6.  Edit config files:
              ipsec.secrets:
    : RSA serverKey.pem
            ipsec.conf:
    config setup
            strictcrlpolicy=no
            uniqueids=yes
    conn %default
            ikelifetime=60m
            keylife=20m
            rekeymargin=3m
            keyingtries=1
            keyexchange=ikev2
            leftfirewall=yes
            dpddelay=30
            dpdtimeout=120
            dpdaction=clear
    conn bb10
            mobike=yes
            ike=aes256-sha1-sha1-modp1024!
            esp=aes256-sha1!
            left=%defaultroute
            leftid="C=CA, O=none, CN=192.168.1.100"
            leftcert=serverCert.pem
            right=%any
            rightsourceip=10.10.0.1
            rightid="C=CA, O=none, CN=bb10"
            rightauth=pubkey
            leftauth=pubkey
            pfs=yes
            auto=add
    7. Start the ipsec service on your debian machine: service ipsec stop; service ipsec start
    8. Set up the VPN connection on your blackberry: Settings -->Network Connections --> VPN --> Add.
    a) Profile Name:  Give your VPN a name
    b) Server Address:  Enter your server's address
    c) Gateway Type: Generic IKEv2 VPN Server
    d) Authentication Type: PKI
    e) Authentication ID Type:  Identity Certificate Distinguished Name
    f) Client Certificate: The client certificate you imported should show up in the dropdown
    g) Gateway Auth Type: PKI
    h) Gateway Auth ID Type: Identity Certificate Distinguished Name
    i) Gateway CA Certificate:  Find the certificate authority you imported.  If you used the same name as I did above when creating the certificate, if will be called "Certificate-Auth".
    j) Perfect forward secrecy : ON
    k) Change IKE Lifetime to 3600
    l) Change IPSEC lifetime to 1200
    You can leave everything else on default settings.  Save your VPN profile.
    9. Connect to your VPN.  You should now be able to ping both ways between your blackberry and debian host.  Using the above configuration, your blackberry device will have the ip address of 10.10.0.1.

    There have been numerous bb10 updates (now 10.2.1.2977) since I first posted this mini how-to-I am not sure if it was the bb10 updates, or updates to strongswan (now v5.2.0) or my linux kernel (v3.15.3), though I am now able to use stronger hash and elliptic curve key exchange.  I am using sha384 in my example, though have also got it working with sha512.  Give it a try:
    Simply use the same process I detailed before, though change the following lines in ipsec.conf:
    ike=aes256-sha1-sha1-modp1024!
    esp=aes256-sha1!
    to
    ike=aes256-sha384-ecp521
    esp=aes256-sha384-ecp521
    Be sure to restart strongswan after you change these lines in the config.
    After this is done, change 'Automatically determine algorithm' to off in the VPN profile settings of your VPN connection profile on your blackberry.  I'm not sure why it doesn't work automatically.  State the following in this section:
    IKE DH Group:  21
    IKE CIpher: AES (256-bit key)
    IKE Hash: SHA384
    IKE PRF: HMAC-SHA384
    IPSec DH Group: 21
    IPSec Cipher: AES (256-bit key)
    IPSec Hash: SHA384

  • How to setup built-in VPN server on Mountain Lion

    Anyone have information on configuring the built-in VPN server in OS X Mountain Lion ?

    Update - it works ! At least I can connect to Mountain Lion (not server) from my iPhone using the VPN Server Configurator app.
    Here's what I did :
    1) download the app and install
    2) setup using the help files on the web page : http://www.greenworldsoft.com/product-vpn-server-help.html
    3) at the last stage you need to setup port forwardin on your router
    4) under Airport Utility 6.0 you cannot setup ports 500 or 4500 due to BTTM conflicts but setup the other 2 ports (1723 TCP and 1701 UDP), update airport extreme
    5) download Airport Utility 5.6 from here : download already extracted utility  it is in it's extracted form as is necessary under Mtn Lion (thanks to NetUse Monitor for the download - great app by the way)
    6) run 5.6 and setup port forwarding (Advanced-Port Mapping) for the other 2 ports (500 and 4500 UDP), update airport extreme
    7) that's it, I was able to connect to the VPN from my iPhone !

  • How to setup an IPSec VPN Tunnel Cisco 2320 Vs RVS4000

    Hello all.
    This forum has always helped me in all my investigations about VPN and now I'm gonna help everyone with this post.
    I have succesfully config an IPSec VPN Tunnel by using a Router Scientific Atlanta Cisco 2320 and a RVS4000 4-Port Gigabit Security Router with  VPN.
    On the site of Router Scientific Atlanta Cisco 2320 this is some info:
    WAN IP: A.A.A.A
    Router Local IP: 192.168.5.1
    Subnet: 192.168.5.X
    Subnet Mask: 255.255.255.0
    On the site of RVS4000 4-Port Gigabit Security Router with  VPN this is some info:
    WAN IP: B.B.B.B
    Router Local IP: 192.168.0.10
    Subnet: 192.168.0.X
    Subnet Mask: 255.255.255.0
    Remember that you can not be on the same range of IP, I mean, you can not have 192.168.0.X if the remote network is on 192.168.0.X, you have to change some of the Routers.
    I show the configuration on Router Scientific Atlanta Cisco 2320:
    I show the configuration on RVS4000 4-Port Gigabit Security Router with  VPN:
    If all is correctly configured, you should see on Router Scientific Atlanta Cisco 2320 the Status Connected:
    If all is correctly configured, you should see on RVS4000 4-Port Gigabit Security Router with  VPN the Status Up:
    As you can see, I'm connected to the remote Router (RVS4000 4-Port Gigabit Security Router with  VPN) by my own web browser accesing by the local IP 192.168.0.10
    I have used Authentication MD5, maybe is not the best one but I had no time to test SHA1, I will when I will have time.
    I wish that this help to anyone that need to do this.
    Best regards!

    Hey,
    Thanks a ton for posting this out here. I am sure it will be helpful for people trying this out.
    Regards,
    Prapanch

  • Set up basic vpn on optimus zone2

    How to set up basic vpn on zone 2? Who do you advise as a vpn service? Any suggestions would be appreciated

    http://wiki.hidemyass.com/Windows_RT
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • How to setup a vpn over the internet

    Hi ,
    how to setup a vpn over the internet ? Just  I have using window server 2012 r2, I already install 'remote access service' also ready enable VPN service but I can't connect to vpn server over Internet(Other network), when I connect from LAN , vpn service
    is enable I can connected. My ADSL router also Enable VPN access(PPTP, L2TP, IPsec). But I can't access my server over Internet :'( . What I need to do? Help me please.
    Thanks,

    Hiya,
    Did you have a look at this guide? - It gives you all the steps.
    http://www.howtogeek.com/135996/how-to-create-a-vpn-server-on-your-windows-computer-without-installing-any-software/

  • How to setup WRTSL54GS VPN?

    I'm fairly network literate but I need a walk through for setting up a VPN on WRTSL54GS router and how to confirm settings are working.
    I talked with Support (in the Phillipines)and advised me to set my DSL modem to bridge mode, done that and Internet connectivity is OK. But the documentation on configuring the VPN is very weak. For testing I am dropping the wireless on this router and connecting to a neighbors open wireless router and unable to connect to the VPN I setup. My router does have the latest version of the firmware.
    I plan on using the VPN to connect to the network storage connected to the router when offsite.
    Thank you for your help.
    Dave K.

    That was the point of buying this router. I really don't want to leave my workstation on 24/7 but, prefer to have a low cost storage online dedicated to the purpose.
    Is there a home based router with firewall, wireless, wired capability, with attached storage accessable from both inside and outside securely that does not do pass-through VPN but instead can act as a termination for the VPN?
    I have configured the FTP server and have connected that way but that leaves the password and username transmitted in clear text. Any sniffer could pick up on that. I want to make this a secure connection even better if I could restrict the MAC address to my laptop only connecting.
    I'm open to ideas. What have others done low cost?
    What if I purchased low cost network storage with its own IP and placed it inside my home network, of course it would have a NAT'd non public IP. I suspect since the router is pass through VPN the storage would have to have VPN capability?
    And I think I read something in the forum that if the VPN is setup only the VPN is allowed through and I would not be able to surf the net? Not quite sure of the details how this works. Might be another road block to using this router.
    Thanks in advance.
    Dave K.

  • HT1424 how to setup a vpn

    can u walk me thru how to setup a vpn on my iphone 4

    Did you read the article you posted from? All the answers are contained therein.

  • Help! Confusion over how to setup intel3945 wireless and rc.conf

    Hi,
    I'm very confused.  I've already read through all the wikis and searched many forum posts.  I can't get my wireless intel3945 to work on my dell vostro 1400.
    Iwconfig says the wireless card is at wlan0 and dmesg | grep iwl says it has detected it.  However, when I try a iwlist wlan0 scan it returns :
    wlan0 Interface doesn't support scanning : Network is down
    I think the problem is that I don't know how to setup rc.conf correctly or use the command line to test the wireless.  Forum posts say many different things on how this is done.
    These are the steps I have taken:
    uninstalled the ipw3945 and ipw3945-ucode and ipw3945d.
    installed iwlwifi and iwlwifi-3945-ucode
    in my rc.conf modules, added iwl3945.
    I'm not sure how to setup the networking section, this what I have now:
    lo="lo 127.0.01"
    eth0="dhcp"
    wlan0="dhcp"
    INTERFACES=(lo etho)
    gateway="default gw 192.168.1.1"
    ROUTES=(!gateway)
    And in my dameons I have 'network'.
    How can I scan for networks and connect to them on the commandline?  I'd prefer not to use a gui tool because they never work and never tell me why they're not working.
    Any help is greatly appreciated!
    Cheers!
    kilolima

    iphitus wrote:
    broch wrote:I have ipw3945 and iwl3945 working with wpa2 (or vpn)
    (less complicatd than the above)
    don't use netcfg2
    Why?
    no particular reason.
    Simply when I configured wireless, netcfg2 wasn't available. Since then it (wireless) works, so not having any problems, I did not modify network setup. Next week or so I am going to install Arch on my daughter's laptop (per her request ) so I will try netcfg2.
    So this is what I have for ipw3945 wpa2 or iwl3945 with wpa2
    Below you will find a lot of words so read slowly but there is not much actual work
    ipw3945 setup
    kernel 2.6.23.x (Arch or vanilla)
    or
    kernel 2.6.24/2.6.24-gitX (patched with ipw3945 patch from gentoo -> compiling separate module for 2.6.24 may fail. if you want kernel patch I can post a link)
    for default kernel install Arch packages for ipw3945, ipw3945d, ipw3945-ucode
    or
    if you want to compile modules, you will also need ieee80211 (first uninstall kernel's default, then install from sources otherwise ieee80211 from sources may refuse to install)
    modify /etc/rc.conf
    DAEMONS=(.... @ipw3945d @network ....)
    that is all you don't need to add ipw3945 to MODULES=(.....)
    because ipw3945d will automatically start ipw3945 module
    do not list eth1 in network config section:
    lo="lo 127.0.0.1"
    eth0="dhcp"
    INTERFACES=(eth0)
    as you see, in my case only eth0 (wired) is listed and eth1 (wireless) is not listed
    now you are done with basic network configuration for ipw3945, restart network/computer to bring up ipw3945d/ipw3945
    check if modules are up and basic network is set:
    #lsmod | grep ipw
    #ifconfig -a
    or
    #iwconfig
    if all is o.k. configure
    WPA2:
    configure router for wpa2
    client: basically follow Arch wiki:
    configure wpa_supplicant (installed already of course)
    #wpa_passphrase your_ssid your_psk
    keep terminal window open with created encrypted wpa passphrase  and in the second terminal window edit /etc/wpa_supplicant.conf
    ctrl_interface=/var/run/wpa_supplicant
    network={
            ssid="your_ssid"
            scan_ssid=1
            proto=WPA RSN
            key_mgmt=WPA-PSK
            pairwise=CCMP TKIP
            group=CCMP TKIP
                    psk=whatever_output_from_wpa_passphrase
    Above pairwise and group setup will depend on your router (network capabilities)
    almost done:
    run
    #wpa_supplicant -Bw -Dwext -i eth1 -c/etc/wpa_supplicant.conf
    the above assumes that your ipw3945 is set as eth1 (from iwconfig output)
    to connect to the network I am using "wireless assistant" http://www.kde-apps.org/content/show.ph … tent=21832
    that is all for ipw3945. You may automate network starting/connecting to wpa2 by writing simple script.
    iwl3945
    --kernel 2.6.23.x
    install iwlwifi and iwlwifi-3945-ucode
    --kernel 2.6.24.x
    install only iwlwifi-3945-ucode as kernel has iwlwifi module incorporated
    default iwlwifi does not support LED so I suggest to install something like knemo for kde to show active network icon. The latest iwlwifi does support LED but it is not yet incorporated into 2.6.24 vanilla kernel.
    if you have kernel 2.6.23.x with external iwlwifi module
    modify /etc/rc.conf
    and add iwlwifi to
    MODULES=(.....)
    nothing else is required.
    if you have kernel 2.6.24 with integrated iwlwifi module you don't have to edit /etc/rc.conf
    As in the case of ipw3945, I do not list wireless interface (wlan0) in /etc/rc.conf
    for kernel 2.6.23.x
    load module/restart network or simply restart computer
    check if module is up
    #lsmod | grep iwl
    #iwconfig
    or
    #ifconfig -a
    WPA2
    same wpa_supplicant.conf as above, so if you already have it no need for modifications.
    start wpa2
    #wpa_supplicant -Bw -Dwext -i wlan0 -c/etc/wpa_supplicant.conf
    the only difference in the command is wireless interface: wlan0
    connect to the network, again I am using "wireless assistant"
    vpn
    I am using cisco vpn. Client is provided by vpn host, cisco does not provide vpn client for individual download, but you can find it on line.
    vpn host will provide pcf file for you
    - install vpnclient
    - copy your VPN profile (vpn.pcf) to the
    /etc/CiscoSystemsVPNClient/Profiles
    directory
    -- start vpn client
    /opt/cisco-vpnclient/bin/vpnclient connect vpn pcf_file_name
    provide username and password and off you go
    From my experience none of linux gui for vpn works reliably so you will have to resort to the command line.
    That is all, a lot of writing, but actual ipw3945 and iwl3945 configuration is straightforward and very short.
    Hopefully this will work for you.
    forgot to add regarding vpnclient (cisco)
    you will have to modify
    /etc/init.d/vpnclient_init
    line 38 and line 101
    replace
    /sbin/lsmod
    with
    /bin/lsmod
    Last edited by broch (2008-02-07 15:55:45)

  • How to Setup JMS in Siebel Server

    Hi
    Currently we have a Requirement to work with queuing System from JMS Queuing
    How to Setup the JMS Queuing from Siebel Point of view?
    Does JMS Should be Installed in Siebel Server?
    Plz Provide Inputs for How to Set up the JMS Queuing Mechanism and Setting up the Queues for Posting and Receiving the Messages from JMS Queues
    Thanks & Regards
    Rajendra Prasad

    Update - it works ! At least I can connect to Mountain Lion (not server) from my iPhone using the VPN Server Configurator app.
    Here's what I did :
    1) download the app and install
    2) setup using the help files on the web page : http://www.greenworldsoft.com/product-vpn-server-help.html
    3) at the last stage you need to setup port forwardin on your router
    4) under Airport Utility 6.0 you cannot setup ports 500 or 4500 due to BTTM conflicts but setup the other 2 ports (1723 TCP and 1701 UDP), update airport extreme
    5) download Airport Utility 5.6 from here : download already extracted utility  it is in it's extracted form as is necessary under Mtn Lion (thanks to NetUse Monitor for the download - great app by the way)
    6) run 5.6 and setup port forwarding (Advanced-Port Mapping) for the other 2 ports (500 and 4500 UDP), update airport extreme
    7) that's it, I was able to connect to the VPN from my iPhone !

  • How to setup a global artwork for a TV Show

    Hi, I've a TV Show composed by 45 episodes where each one have his artwork but I don't know how to setup a global artwork for the TITLE of the TV Show while retaining the 45s artworks.
    ie. when watching the Tv Shows (library on iTunes) I would like to see the global artwork of the Tv Show that is different of the other 45s episodes contained.
    Bye, Roberto.

    Sorry, I don't believe that you have had a good look at the Foundation framework. I'll now hold your hand while we go through the basics.
    Here is the specific page http://foundation.zurb.com/docs/components/grid.html
    The default values are
    Em-base : 16px
    Row width: 62.5em (62.5em x 16px = 1000px)
    Columns per row: 12
    These and other default values can be changed. The fact of the matter is that if you stipulate a section width of 2 or 3 or 12 columns, the widths will automatically be calculated for you.
    In your case, if you want 7 columns, all you need to do is change the number of columns per row and the rest is done for you.

  • How to setup a release strategy for store generated purchase order

    Hi there,
    Does anybody know how to setup a release strategy for store/plant generated purchase order? I have a request from our client, but I never cross this before. Please help and let me know the step with every single detail.
    Greatly thank for your help.
    Kind Regards,
    2tea

    Please go thru the below Release Procedure and check whether you have maintained all the settings properly.
    PO RELEASE STRATEGY
    The release code is a two-character ID allowing a person to release (clear, or approve) a requisition or an external purchasing document. The release codes is basically controlled via a system of authorizations (authorization object M_EINK_FRG).
    Use SE12, structure CEKKO to check all the fields available for controlling the Purchase Order.
    e.g. If the total value for the Purchase Order exceeds 10,000, release strategy 01 is assigned to the Purchase Order. There is only one characteristic created in this example. For controlling the Purchase Order type, create characteristic for CEKKO-BSTYP and the value NB.
    CT04 - Create Characteristic e.g. NETVALUE
    Click Additional data Table name CEKKO Field name GNETW and press enter
    (for currency dependent field, you are prompt to enter the currency which the system then converts the currency of the Purchasing document into this currency)
    In the Basic data (X refers to tick),
    X Mutliple values
    X Interval values
    In the Value data, in the Char. value column, type >10000 and press enter
    Save your data
    CL02 - Class
    Class - Create REL_PUR
    Class type - 032
    Click Create
    Description - Release Procedure for Purchase Order
    In the Same Classification section, click Check with error
    In the Char. (characteristic) tab, type NETVALUE to assign your characteristics to the class
    OMGS - Define Release Procedure for Purchase Order Type
    Release Group - New entries
    Rel.group Rel. Object Class Description
    02 REL_PUR Rel. Strategy for PO
    Release codes - New entries
    Grp Code
    02 01
    Release indicators
    Release indicators Release Description
    0 Blocked
    1 X Release
    Release Strategy
    Release group 02
    Rel.strategy 01
    Release codes 01
    Release status 01
    Classification Choose your check values
    OMGSCK - Check Release Strategies
    (make sure there are no error messages)
    Once the Purchase Order is not release, buyers will not be able to print the Purchase Order.
    Goods Receipts will be shown with Message no. ME 390 - Purchasing document XXXXXXX not yet released.
    In 4.6c, Purchase Order with Release Strategy have a tabs at the end of the Header. This allowed the buyers to check the release status of the Purchase Order.
    The person with the release authorization have to use ME28 to release the Purchase Order.
    Regards,
    Ashok

  • How to setup a default size for new divs in fluid grid layout in dreamweaver?

    Hi,
    how to setup a default size for a new divs in fluid grid layout in dreamweaver? I don't need the default size for new divs as a 100% width, I need them 13.69% as a one coulmn width only (7 coulmns fluid grids layout for desktop size 1000w).
    This problem I've faced when I intended to insert dozens of fluid grid divs in the layout.

    Sorry, I don't believe that you have had a good look at the Foundation framework. I'll now hold your hand while we go through the basics.
    Here is the specific page http://foundation.zurb.com/docs/components/grid.html
    The default values are
    Em-base : 16px
    Row width: 62.5em (62.5em x 16px = 1000px)
    Columns per row: 12
    These and other default values can be changed. The fact of the matter is that if you stipulate a section width of 2 or 3 or 12 columns, the widths will automatically be calculated for you.
    In your case, if you want 7 columns, all you need to do is change the number of columns per row and the rest is done for you.

  • How to setup the RV120W for quickvpn

    Hello,
    The PPTP client from Windows 7 is not working with this router; therefore I would like to try the quickvpn.
    Is there any paper from Cisco explaining how to setup the RV120W for quickvpn ?
    Thanks for any help

    User Guides for thee rv120W are here:
    http://www.cisco.com/en/US/docs/routers/csbr/rv220w/quick_start/guide/rv220w_qsg.pdf
    http://www.cisco.com/en/US/docs/routers/csbr/rv120w/administration/guide/rv120w_admin.pdf
    and theres some more stuff over on my site:
    http://www.linksysinfo.org/index.php?forums/cisco-small-business-routers-and-vpn-solutions.49/

  • How To Setup A Local Exchange Server Integrated With Office365 For A Single Mailbox

    Hello,
    We recently migrated to Office365 but had an issue since we need more than 16 simultaneous connections to a single mailbox. Because of this, we need to deploy a local Exchange Server that will be used to host a single mailbox that requires up to 500 simultaneous
    connections for a Contact Center application. I'm looking for information on how to setup the local Exchange Server to basically create a local instance of a mailbox hosted on Office 365. So we can have our application open the numerous simultaneous connections
    to our local server which will then connection to Office 365 to send/receive email through the mailbox hosted on Office365.
    Please let me know if you have any information or resources you can direct me toward.
    Thanks,
    Chris

    Hi,
    To deploy local Exchange server integrated with Office 365, we can depend on Exchange Server Deployment Assistant:
    http://technet.microsoft.com/en-us/exdeploy2013/Checklist?state=2419-W-AAAAAAAAQAAAAAEAAAAAAAA%7e
    Please note that there may be 9646 error if there are many simultaneous connections at the same time.
    Thanks,
    Angela Shi
    TechNet Community Support

Maybe you are looking for

  • Safari does not open pages correctly.

    This problem occurs only on one account on my mac. When I try to open a webpage created in iweb the menu bar which contains all links was disappeared from that page. Instead there was a black dot. There is also a google search box on that page. Even

  • Still not able to upgrade to Essentials Extra

    After a week of hours of support calls, promises of call backs, complaints on twitter still no further forward adding the internet channels to my package. The actual channels appeared on my Youview no problem on 1st. Can i watch them, nope! The suppo

  • Get rid of warning box in pages

    now that i've upgraded to yosemite, often when i open a "pages" file, a warning box pops up saying, "this pages '09 document may look different" & then explains why, usually noting that "os x spotlight search information was removed."  how can i get

  • Odd question about sizing...

    I work for an LED message center manufacturer and we have run into a problem. We are using a new product to play DVD quality video on but we're trying to do this without connecting a computer to it, opting instead for a DVD player with HDMI output. P

  • Print all linked documents (was Re: Adobe Reader X Issues)

    Hi Jeff Is there any way to print pdf   via print all linked document  option from  internet exploer? Thanks ahead for your help .