EXIT_SAPLVEDA_001 address mapped for STRS2

Even though the structure dxvbadr is filled with desired values, these values are not reflecting on the sales orders.
The initial values before triggering user exit, are only being reflected on the sales order. I wondering why.
Why the sales order header data is not showing modified address values.
Any guesses, suggestions ??
I tried using EXIT_SAPLEDA_002 in addition to this and add the strs2 as a field to bdc data but it dit work.
can somebody pls tell me how to achieve this.... <Priority normalized by moderator>.
Edited by: Vinod Kumar on Aug 11, 2011 2:07 PM

Sorry wrong post!!.
BR
Dep
Edited by: DeepakNandikanti on Aug 11, 2011 11:16 AM

Similar Messages

  • Address mapping / mail forwarding (equivalent to virtusertable in sendmail)

    Is there an equivalent setting somewhere with Snow Leopard Server, to do address mapping, as you would under sendmail on Linux? (with /etc/mail/virtusertable)
    i.e. create address maps, for mail forwarding. if mail comes to this email address on the server, forward it to this address (even outside the server on another domain).

    look into here or elsewhere in the postfix docs:
    http://www.postfix.org/rewrite.html

  • Issue with xsd Data type mapping for collection of user defined data type

    Hi,
    I am facing a issue with wsdl for xsd mapping for collection of user defined data type.
    Here is the code snippet.
    sample.java
    @WebMethod
    public QueryPageOutput AccountQue(QueryPageInput qpInput)
    public class QueryPageInput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class QueryPageOutput implements Serializable, Cloneable
    protected Account_IO fMessage = null;
    public class Account_IO implements Serializable, Cloneable {
    protected ArrayList <AccountIC> fintObjInst = null;
    public ArrayList<AccountIC>getfintObjInst()
    return (ArrayList<AccountIC>)fintObjInst.clone();
    public void setfintObjInst(AccountIC val)
    fintObjInst = new ArrayList<AccountIC>();
    fintObjInst.add(val);
    Public class AccountIC
    protected String Name;
    protected String Desc;
    public String getName()
    return Name;
    public void setName(String name)
    Name = name;
    For the sample.java code, the wsdl generated is as below:
    <?xml version="1.0" encoding="UTF-8" ?>
    <wsdl:definitions
    name="SimpleService"
    targetNamespace="http://example.org"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    >
    <wsdl:types>
    <xs:schema version="1.0" targetNamespace="http://examples.org" xmlns:ns1="http://example.org/types"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://example.org/types"/>
    <xs:element name="AccountWSService" type="ns1:accountEMRIO"/>
    </xs:schema>
    <xs:schema version="1.0" targetNamespace="http://example.org/types" xmlns:ns1="http://examples.org"
    xmlns:tns="http://example.org/types" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import namespace="http://examples.org"/>
    <xs:complexType name="queryPageOutput">
    <xs:sequence>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fintObjInst" type="xs:anyType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="queryPageInput">
    <xs:sequence>
    <xs:element name="fPageSize" type="xs:string" minOccurs="0"/>
    <xs:element name="fSiebelMessage" type="tns:accountEMRIO" minOccurs="0"/>
    <xs:element name="fStartRowNum" type="xs:string" minOccurs="0"/>
    <xs:element name="fViewMode" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://example.org"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.org" xmlns:ns1="http://example.org/types">
    <import namespace="http://example.org/types"/>
    <xsd:complexType name="AccountQue">
    <xsd:sequence>
    <xsd:element name="arg0" type="ns1:queryPageInput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQue" type="tns:AccountQue"/>
    <xsd:complexType name="AccountQueResponse">
    <xsd:sequence>
    <xsd:element name="return" type="ns1:queryPageOutput"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="AccountQueResponse" type="tns:AccountQueResponse"/>
    </schema>
    </wsdl:types>
    <wsdl:message name="AccountQueInput">
    <wsdl:part name="parameters" element="tns:AccountQue"/>
    </wsdl:message>
    <wsdl:message name="AccountQueOutput">
    <wsdl:part name="parameters" element="tns:AccountQueResponse"/>
    </wsdl:message>
    <wsdl:portType name="SimpleService">
    <wsdl:operation name="AccountQue">
    <wsdl:input message="tns:AccountQueInput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    <wsdl:output message="tns:AccountQueOutput" xmlns:ns1="http://www.w3.org/2006/05/addressing/wsdl"
    ns1:Action=""/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="SimpleServiceSoapHttp" type="tns:SimpleService">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="AccountQue">
    <soap:operation soapAction=""/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="SimpleService">
    <wsdl:port name="SimpleServicePort" binding="tns:SimpleServiceSoapHttp">
    <soap:address location="http://localhost:7101/WS-Project1-context-root/SimpleServicePort"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    In the above wsdl the collection of fintObjInst if of type xs:anytype. From the wsdl, I do not see the xsd mapping for AccountIC which includes Name and Desc. Due to which, when invoking the web service from a different client like c#(by creating proxy business service), I am unable to set the parameters for AccountIC. I am using JAX-WS stack and WLS 10.3. I have already looked at blog http://weblogs.java.net/blog/kohlert/archive/2006/10/jaxws_and_type.html but unable to solve this issue. However, at run time using a tool like SoapUI, when this wsdl is imported, I am able to see all the params related to AccountIC class.
    Can some one help me with this.
    Thanks,
    Sudha.

    Did you try adding the the XmlSeeAlso annotation to the webservice
    @XmlSeeAlso({<package.name>.AccountIC.class})
    This will add the schema for the data type (AccountIC) to the WSDL.
    Hope this helps.
    -Ajay

  • IPhone 6 Plus 16GB blue screen crashes: Read, error type:Address map hole or size mis-match

    Hi folks,
    Some time ago I had a 16GB 6+ and it crashed with the blue screen, so I returned it. I now have a brand new one that I got from Tmobile ($75 return fee) and although it has mostly worked just fine, I have gotten 2 blue screen crashes. Below are the details from the phone's log.
    What strikes me is the message "Read, error type:Address map hole or size mis-match".
    Does anyone know if this could be caused by a hardware defect?
    I've gotten one of these crashes running iOS 8.1.2 and another in 8.1.3.
    Thanks.
    Incident Identifier: 20304759-E90B-453F-BDC5-176AF4E30041
    CrashReporter Key:   fcf18d230005749957728546dea3221a0c588330
    Hardware Model:      iPhone7,1
    Date/Time:           2015-01-25 19:43:44.913 -0800
    OS Version:          iOS 8.1.2 (12B440)
    panic(cpu 0 caller 0xffffff8008cd45d0): L2C PIO error (src:core0-AF snoop, address:0x1202030208, access:Read, error type:Address map hole or size mis-match, L2C_ERR_STS:100003fc00000202, L2C_ERR_ADR:0x1108e1202030208, L2C_ERR_INF:0x2107)
    Debugger message: panic
    OS version: 12B440
    Kernel version: Darwin Kernel Version 14.0.0: Mon Nov  3 22:27:30 PST 2014; root:xnu-2783.3.22~1/RELEASE_ARM64_T7000
    iBoot version: iBoot-2261.3.33
    secure boot?: YES
    Paniclog version: 3
    Kernel slide:     0x0000000006000000
    Kernel text base: 0xffffff8008002000
    Epoch Time:        sec       usec
      Boot    : 0x54bc22ef 0x00000000
      Sleep   : 0x54c58398 0x0002abb4
      Wake    : 0x54c583ae 0x000f08df
      Calendar: 0x54c5b7e3 0x00025045

    same with my iPhone 4s 16gb
    {"os_version":"iOS 8.1.3 (12B466)","bug_type":"110"}
    Incident Identifier: 582496DB-6999-468C-9504-3D1C191B9F4B
    CrashReporter Key: 623a577555e51ed110b937358adfa66fba3ea447
    Hardware Model: iPhone4,1
    Date/Time: 2015-02-20 04:17:50.830 +0300
    OS Version: iOS 8.1.3 (12B466)
    panic(cpu 0 caller 0x83dc8347): "i2c1::_checkBusStatus Bus is still in a bad state; last write status 00010110 xfer 00000000 fifo 00000000 for device als"
    Debugger message: panic
    OS version: 12B466
    Kernel version: Darwin Kernel Version 14.0.0: Mon Jan 12 21:30:11 PST 2015; root:xnu-2783.3.26~3/RELEASE_ARM_S5L8940X
    Kernel slide: 0x0000000003400000
    Kernel text base: 0x83401000
    Boot : 0x54e68884 0x00000000
    Sleep : 0x54e68a7e 0x000dd6ac
    Wake : 0x54e68b19 0x00035c02
    Calendar: 0x54e68b1d 0x00040927
    Panicked task 0x84a87c60: 13773 pages, 122 threads: pid 0: kernel_task
    panicked thread: 0xc5066e80, backtrace: 0x81a33ca0
    0x834ad94d
    0x834adcb1
    0x8341d5bd
    0x83dc8347
    0x83dc8059
    0x83dc7e35
    0x8389c601
    0x8389c513
    0x836f6f65
    0x8389cc6d
    0x8389ccc5
    0x83a9f18d
    0x83a9c27f
    0x83a9c73f
    0x83a9c90d
    0x836f6f65
    0x83a9c8e5
    0x836e91e7
    0x8343ed9b
    0x834ab59c
    Task 0x84a87c60: 13773 pages, 122 threads: pid 0: kernel_task
    Task 0x84a87948: 771 pages, 3 threads: pid 1: launchd
    Task 0x84a87000: 2016 pages, 13 threads: pid 17: UserEventAgent
    Task 0x84a87630: 481 pages, 4 threads: pid 18: misd
    Task 0x84a87318: 4114 pages, 22 threads: pid 19: CommCenter
    Task 0x87a62948: 349 pages, 2 threads: pid 21: keybagd
    Task 0x87a62318: 574 pages, 4 threads: pid 23: iaptransportd
    Task 0x87a62000: 868 pages, 9 threads: pid 24: configd
    Task 0x87a7ac60: 793 pages, 4 threads: pid 25: lockdownd
    Task 0x87a7a948: 1218 pages, 6 threads: pid 26: imagent
    Task 0x87a7a630: 2771 pages, 4 threads: pid 27: atc
    Task 0x87a7a318: 792 pages, 2 threads: pid 28: fairplayd.H1
    Task 0x87a7a000: 1571 pages, 14 threads: pid 29: aggregated
    Task 0x87c4ac60: 1069 pages, 4 threads: pid 30: routined
    Task 0x87c4a318: 707 pages, 5 threads: pid 33: timed
    Task 0x87d23c60: 646 pages, 2 threads: pid 35: installd
    Task 0x87d23948: 2383 pages, 11 threads: pid 36: mediaserverd
    Task 0x87d23318: 1279 pages, 11 threads: pid 38: ubd
    Task 0x87d23000: 249 pages, 7 threads: pid 39: syslogd
    Task 0x87d6ac60: 410 pages, 2 threads: pid 40: softwareupdated
    Task 0x87d6a948: 851 pages, 5 threads: pid 41: mediaremoted
    Task 0x87d6a630: 1877 pages, 7 threads: pid 42: identityservices
    Task 0x87d6a318: 9938 pages, 16 threads: pid 43: SpringBoard
    Task 0x87d6a000: 453 pages, 2 threads: pid 44: fileproviderd
    Task 0x87e25c60: 609 pages, 4 threads: p

  • How can I add an address map to each contact?

    Hello:
    When tapping a contact address in the Address application, the map view pops up and I can add a pin for the specific address. However, when I close the application the map disappears. I also notice that if I click on the lower right corner of the map screen, I see an option labeled "list."
    I've got two questions:
    1. What function does the list provide? (I've tried looking in the user's guide and there is no mention of this feature.)
    2. Can I permanently store the map for each contact on my iPod, or does it need to reload each time using wi-fi?
    Thanks.

    its going to have to reload the map each time, it can't save it.

  • Nokia Map for Nepal

    I couldnt find Nokia map for nepal, can anybody help me with this that when nokia map will be avialable for nepal. Or it not gona ever be avialable.?????????

    If it is asking for internet connection, it wants to download the map. To stop this from happening download Nokia Map Loader here: http://europe.nokia.com/explore-services/maps/download/nokia-map-loader Use Nokia Map Loader to upload maps to your phone, then there is no need to go on the internet the whole time.Don't click on the link. Copy it and paste in in the address bar of a new tab or window. 
    Message Edited by quinton55 on 19-Mar-2009 09:35 AM
    Nokia N95 8GB V30.0.018 **Kudos are very welcome**

  • Cannot load map for Japan into Lumia 800

    Hi,
    I am shortly travelling to Japan I wanted to pre-load Japan map into my Lumia 800. However, it seems that it is impossible. When trying to load Japa map via Nokia navigation there is no Japan under Asia. There is China and many other Asian country, but Japan is missing ...
    Is this known feature or what ???

    To date Nokia has avoided getting involved in providing mapping for Japan as the Japanese banchi address system is not based on the street number system like the US or Europe.
    Users of Nokia Symbian devices had to utilise Garmin Mobile Xt for navigation in Japan.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • 6210 Navigator out of date maps for South Africa

    I have downloaded the newest maps for my 6210 navigator but it's out of date. There's streets that has changed names more than a year ago that still reflects as the old names. Also… If I search for street names or addresses it shows addresses for Europe not SA. Is there any way of getting the newest maps and search capabilities for SA? I contacted Nashua SA and they gave me a link for amAzeGps (no explanation or message – just a link – very unprofessional guys). This app is a misery to use and has hidden costs. I want my standard GPS maps to work the way it should for SA.

    @4F
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • Maps for Macedonia

    Dear Sir or Madam,
    I just bought my new Nokia E71 mobile device, but I am not new user of Nokia mobile phones. Before I have used Nokia N95. When I bought my N95 (December 2007) I had Nokia Maps version 1.1, and in that version of Nokia Maps the maps for my country (Republic of Macedonia), especially for the capital Skopje, were perfect. Almost every street was findable and the maps worked perfect. When I install the latest firmware of my old N95 phone I got it Nokia Maps 2.0 and starting from that time everything is bad. The maps for Skopje and for whole country don't work. I can find only the main highroad (I think the name of the highroad is E-75). Now, it's same with my new mobile device E71. I have tried to install older version of Nokia Maps, but it's impossible because the newer version is installed on my device and I can't uninstall the newest version. Can somebody help with this? It will be very usefull if someone could tell me how to uninstall the preinstalled Nokia maps.
    Thank you for helping.
    Best regards,
    Nikola Todorovski
    Message Edited by celandine on 02-Feb-2009 03:35 PM
    Nikola Todorovski

    Greetings from your friendly neighbourhood moderator.
    This topic continues to draw users who post their personal email address openly. Please note that this is NOT ALLOWED.
    Do not post your email address.
    The reason it is not allowed is to protect your privacy. This is a public support forum, viewable by any interested party, including email spam bots and potentially malicious individuals.
    If you feel it is absolutely necessary, you can send a Private Message (PM) to the user to share this information.
    Regards,
    Concordia
    Message Edited by concordia on 21-Sep-2009 11:53 AM
    ~*~ New to Nokia Support Discussions? ~*~
    You may want to have a look at the guidelines!

  • Offline maps for Asha 501

    Hi,
    I lost my Nokia 6303, that allowed me to browse offline maps without any problems.
    I bought an Asha 501 Dual SIM, but unfortunately I'm having a lot of problems: 
    - First of all, the phone is not supported by Nokia Ovi (because the phone is too new), nor by Nokia PC Suite (too old). I installed the driver for the USB cable, but PC Suite tells me that the phone is not supported.
    - I could not get my address book from a backup of my previous Nokia. Is it impossible because it is a backup of a different phone, or should it be possible?
    - I was unable to upload some maps to browse them offline. From the PC, I can't because the phone is not recognized, and I don't understand how to do it via wireless.
    Can someone help me? Would it be possible to use this "new" phone at least like my old 6303, or it's just useless?
    Thanks

    There are no offline maps for c3-00,you can use google maps but they need an internet connection.
    If you find this post helpful please click the white star,Thanks.

  • DNS server returns IP addresses even for domain na...

    Like a number of other people I have been looking at the BT Broadband service and have found that there is an issue with the current DNS server. What I / we have found is that the DNS server returns IP addresses even for domain names which should not resolve. See following -
    DNS results wildcarding (?): Warning
    Your ISP's DNS server returns IP addresses even for domain names which should not resolve. Instead of an error, the DNS server returns an address of 92.242.132.15, which resolves to unallocated.barefruit.co.uk.
    There are several possible explanations for this behavior. The most likely cause is that the ISP is attempting to profit from customer's typos by presenting advertisements in response to bad requests, but it could also be due to an error or misconfiguration in the DNS server.
    The big problem with this behavior is that it can potentially break any network application which relies on DNS properly returning an error when a name does not exist.
    The following lists your DNS server's behavior in more detail.
    www.{random}.com is mapped to 92.242.132.15.
    www.{random}.org is mapped to 92.242.132.15.
    fubar.{random}.com is mapped to 92.242.132.15.
    www.yahoo.cmo [sic] is mapped to 92.242.132.15.
    nxdomain.{random}.netalyzr.icsi.berkeley.edu is mapped to 92.242.132.15.
    Moderators could you please investigate this for us.
    Infinidim
    Megadodo Publications
    Ursa Minor Beta
    If you want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side
    If the the reply answers your question then please mark as ’Mark as Accepted Solution’
    Solved!
    Go to Solution.

    RedAmberGreen wrote:
    BT use a Barefruit (which your post seems to suggest) service called 'Error Resolution'.
    http://www.barefruit.com/background/error_resoluti​on.php
    Any DNS that can not get resolved goes via this service and returns a page showing paid adverts and/or links related to what they think you were looking for.
    BT refer to this as 'BT Web Address Help' and can be turned off on an opt-out basis via this link: http://preferences.webaddresshelp.bt.com/selfcare/
    I assume BT's view is this helps improve the user experience and provides some directed help instead of a blank error page.
    Further details: http://www.bt.com/help/webaddresshelp
    Thanks for this RedAmberGreen.
    Infinidim
    Megadodo Publications
    Ursa Minor Beta
    If you want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side
    If the the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Tracing TCP Source/Destination Addresses/Ports for ongoing connections

    On Solaris 10 U4 through U7, I'm trying the following just to perform basic tracking of TCP source/destination addresses and ports, using code similar to what is available in tcpsnoop_snv and tcptop_snv.
    The odd thing is that the addresses/ports appear to be zeroed out - are they being cached outside of the conn_t data structure?
    #!/usr/sbin/dtrace -Cs
    #pragma D option switchrate=10hz
    #pragma D option bufsize=512k
    #pragma D option aggsize=512k
    #include <sys/file.h>
    #include <inet/common.h>
    #include <sys/byteorder.h>
    #include <sys/socket.h>
    #include <sys/socketvar.h>
    /* First pass, for all TCP Read/Write actions, collect source/destination
       IP + Port - after a few secs, print them all out */
    fbt:ip:tcp_send_data:entry
      /* Outgoing TCP */
      self->connp = (conn_t *)args[0]->tcp_connp;
    fbt:ip:tcp_rput_data:entry
      /* Incoming TCP */
      self->connp = (conn_t *)arg0;
    fbt:ip:tcp_send_data:entry,
    fbt:ip:tcp_rput_data:entry
    /self->connp/
      /* fetch ports */
    #if defined(_BIG_ENDIAN)
      self->lport = self->connp->u_port.tcpu_ports.tcpu_lport;
      self->fport = self->connp->u_port.tcpu_ports.tcpu_fport;
    #else
      self->lport = BSWAP_16(self->connp->u_port.tcpu_ports.tcpu_lport);
      self->fport = BSWAP_16(self->connp->u_port.tcpu_ports.tcpu_fport);
    #endif
      /* fetch IPv4 addresses */
      this->fad12 =
        (int)self->connp->connua_v6addr.connua_faddr._S6_un._S6_u8[12];
      this->fad13 =
        (int)self->connp->connua_v6addr.connua_faddr._S6_un._S6_u8[13];
      this->fad14 =
        (int)self->connp->connua_v6addr.connua_faddr._S6_un._S6_u8[14];
      this->fad15 =
        (int)self->connp->connua_v6addr.connua_faddr._S6_un._S6_u8[15];
      this->lad12 =
        (int)self->connp->connua_v6addr.connua_laddr._S6_un._S6_u8[12];
      this->lad13 =
        (int)self->connp->connua_v6addr.connua_laddr._S6_un._S6_u8[13];
      this->lad14 =
        (int)self->connp->connua_v6addr.connua_laddr._S6_un._S6_u8[14];
      this->lad15 =
        (int)self->connp->connua_v6addr.connua_laddr._S6_un._S6_u8[15];
    /* At this point, this->{f|l}ad1{2345}->connua_v6addr.connua_{f|l}addr._S6_un.S6_u8
        are empty - where is this data? */
    }

    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/css11500series/v7.50/command/reference/CmdGrpC.html#wp1139667
    portmap [base-port base_number|disable|enable|number-of-ports number|vip-address-range number]
    disable
    Instructs the CSS to perform Network Address Translation (NAT) only on the source IP addresses and not on the source ports of UDP traffic hitting a particular source group. This option does not affect TCP flows.
    For applications with high-numbered assigned ports (for example, SIP and WAP), we recommend that you preserve those port numbers by configuring destination services in source groups. Destination services cause the CSS to NAT the client source ports, but not the destination ports.
    Note If you disable flows for a UDP port using the flow-state table and configure the portmap disable command in a source group, traffic for that port that matches on the source group does not successfully traverse the CSS.
    The CSS maintains but ignores any base-port or number-of ports (see the options above) values configured in the source group. If you later reenable port mapping for that source group, any configured base-port or number-of ports values will take effect. The default behavior for a configured source group is to NAT both the source IP address and the source port for port numbers greater than 1023.
    There is no possibility to disable it for TCP.
    We need to source nat the port to guarantee that the server response comes back on the same module/CPU and the internal packet allocation algorithm is based on src and dst ports.µ
    Gilles:

  • Setup Airport Extreme Port Mapping for Swann DVR16-2600

    Have a Swann video surv system and want to use iPhone 4 and Web to view camera displays remotely.  It requires setting up port mapping for the DVR so it can serve ports 80 and 9000 to the remote display app and web screens.
    Have signed up for a static public ip address from ISP since they do not allow port mapping using DHCP.  Trying to setup so I can use the SwannView application on iPhone 4 and use Webview in browser to access/see security camera displays on/through the DVR.  Not working correctly - only partial success.
    Reconfigured Airport Extreme for the new ip address and tried to setup port mapping for dvr which needs a web port 84 and another port 9000.  Can connect to DVR on internal network using the public static ip:84 and the internal static ip:84 but it only shows a SWANN splash page and an error about not able to load ipaddress:84/65536. Seems like something is preventing the Web display from completely launching - should see a login page but not getting it.
    Airport is set to use static ips in the 10.0.1.2 to 10.0.1.10 range with the DVR assigned 10.0.1.5.  Tried to set the port mapping for 84 and 9000 but not sure those are working correctly.  Swann support tried accessing the DVR over the public ip address and they cannot get through.  So suspect problem is with configuring the Airport Port Mapping settings and services, etc. on the Airport Extreme.  I can get to the DVR internally using the public ip address:84 and the internal static ip address of the DVR:84 but support cannot get to it from external web.
    Tried both Safari and IE 5 and both show same problem trying to launch the Swann login page, etc.  iPhone Swannview app doesn't work either.
    Any ideas about proper port mapping settings for those ports in the Airport Extreme?   Is this correct setting for the Service Type:   _http._tcp   and do you need to add settings for the public and private udp ports.  The udp port fields are empty.  Only have entries in the Private IP Address and Public and Private TCP port fields.
    Is there a way in Safari or IE5 to set security to see the public ip address as a friendly site and not block anything from loading?

    Set port mapping for 85 (not 84) and 9000
    Also, if you haven't, be sure to go into the Swann DVR setup and disable the "enable UPnP" option.    The UPnP protocol will not work with Port mapping feature of the Apple Airport Extreme.

  • [10.4.2] Unable to Remove Static Address Maps

    As the title says, I am unable to delete certain (pesky) static address maps using Server Admin (and I'm not sure where to delete them using the command line). Basically, here is what happens...select the static map to delete, delete it, hit save, and the record comes right back.
    Looking at the system.log reveals this...
    Dec 21 12:42:25 stusrv02 servermgrd: servermgr_dhcp:bootpd config:Error:Bad machine identifer 'BBS1 - A/V/2B21
    4565-871C-40A4-A180-BCE3296A6877', cannot remove
    ...so is anyone aware of a fix for this? Or a way to delete the offending entries from the command line?
    Dual G5 Xserve   Mac OS X (10.4.2)  
    15" PowerBook G4   Mac OS X (10.4.3)  

    Once again, I have resolved my issue on my own. Although this one took a bit longer, as documentation as to where Mac OS X Server stores information on DHCP static maps is not exactly abundant.
    The bottom line, when adding a DHCP static map using Server Admin, OS X Server stores it in NetInfo. Using the command line utility, dscl, you can easily navigate to the entries in NetInfo and delete them. dscl allows you to navigate exactly as you would in UNIX, using cd, ls, etc...
    From a command prompt, this is what you'd do...
    # dscl [return]
    cd NetInfo/Machines/ [return]
    ls [return]
    You will then see a listing of your static dhcp maps.
    delete "nameof_static_maprecord" [return]
    The above will delete your offending static map. Then simply typing, "quit" at the prompt and hitting return will quit you out of dscl.
    15" PowerBook G4   Mac OS X (10.4.3)  

  • Error While Saving Mapping For A Dimension

    I am getting The Error While Saving The mapping For a Dimension
    Any Clue?
    An error occurred creating DimensionMapGroup BROKERS.MAPGROUP1.DIMENSIONMAPGROUP : ***Error Occured in
    DELETE_MAPPING_GROUP: Analytic workspace object __XML_STARTUP_CALCMMBRS does
    not exist.
    Thanks
    Raghu

    Check the OSS note 550760 regarding the issue.

Maybe you are looking for