Logical address WEL1

We want to customize Inter Company billing - Automatic posting to vendor Account (SAP-EDI).
The only case is that we want to create the logical address (transaction WEL1).
The logical address is made of the supplying company code and the receiving customer.
We also have in place the plant abroad functionality.
this means that the logical address as build up above should be duplicated.
because we have two plants, belonging to the same supplying company code and those are deliverying to the same receiving customer (customer representing the receiving company code/receiving plant). We now are having a problem with WEL1.
It says that Target key must be different from source key. How can we solve our problem?
Regards,
Maarten Pronk
Edited by: L. Foree on Aug 4, 2010 12:38 PM

In the outbound function module (idoc-output_invoic_iv_mm)
you have the customer function 001
(EXIT_SAPLVEDF_001) for changing the IDOC control record.
This is called after selecting the logical adress.
SELECT SINGLE * FROM EDILOGADR WHERE LOGADR = BUKKRED.
  KNVV-EIKTO  = EDILOGADR-DESTIN+4(10).
*-Partnerart - Sender
  CONTROL_RECORD_OUT-SNDPRT = 'LI'.
*- füllen Partnernummer des Absenders
  CONTROL_RECORD_OUT-SNDPRN = KNVV-EIKTO.
*- Aufruf User_Exit zur Ergänzung des Kontrollsatzes
  CALL CUSTOMER-FUNCTION '001'                   !!!!!!!!!!!!!!!!!!!!!!!
       EXPORTING
            CONTROL_RECORD_OUT = CONTROL_RECORD_OUT
            DVBDKR             = VBDKR
            DOBJECT            = OBJECT
       IMPORTING
            CONTROL_RECORD_OUT = CONTROL_RECORD_OUT
       TABLES
            DXVBPA             = XVBPA
            DTVBDPR            = TVBDPR
       EXCEPTIONS
              ERROR_MESSAGE_RECEIVED        = 1
              DATA_NOT_RELEVANT_FOR_SENDING = 2.
  CASE SY-SUBRC.
Above is only the suggestion if you need further information please
check with your local consulting

Similar Messages

  • Configure Logical Address for Web Applications-Hyperion 11.1.2

    Hello,
    I have f5 load balancer infront of two foundation servers and I have not yet configured the Logical address for web applications with Loadbalancer DNS name/hostnmae. I can access all of web applications through Load Balanced URL. Do I Still need to configure Logical Web Address for web applications ?
    Thank you so much !

    To add to this part of the reason for load balancing is usually to support high availability (in addition to scalability). Without that logic address being setup you will find certain configuration items are pointed to one server or another and if that one server is brought down it impacts key functionality of the whole environment.
    You should consider a test of the infrastructure by purposely bringing down services and/or servers to ensure you still have a fully working environment with the other redundant components. This test may take half a day to several days to really go through a full regression test of key features while taking key pieces down.
    Regards,
    John A. Booth
    http://www.metavero.com

  • Server logical address space is running low

    Hi, I have server with NetWare 6.5 SP08.
    I get the message:
    Server logical address space is running low. Increase the available logical space by restarting the Server with the-u788197376 switch.
    What I can do?
    Thank you.

    Jjfbravo,
    > Server logical address space is running low. Increase the available
    > logical space by restarting the Server with the-u788197376 switch.
    > What I can do?
    That switch should not normally be needed. What are you running on this
    server? Please run
    load config /jumba1se
    Post results here
    - Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Novell has a new enhancement request system,
    or what is now known as the requirement portal.
    If customers would like to give input in the upcoming
    releases of Novell products then they should go to
    http://www.novell.com/rms

  • PCIe/AXI to user logic addressing

    Hi,
    I’m using a Spartan-6 XC6SLX45T-FGG484-2 FPGA and I’m using the Xilinx Platform Studio.
    I want a PCIe host pc to communicate with two instances of a third party IP core via AXI4 memory mapped.
    The host PC performs PCIe write and read transactions. The AXI slave responds to these transactions:
    The AXI slave receives the data the host pc sent, and forwards it to the third party IP core, for a write request. For a read request, the AXI slave reads the data from the third party IP core, and sends it via AXI to the PCIe host pc.
    My design looks like this:
    PCIe/AXI MM bridge <> AXI Interconnect <> AXI_to_User_Logic <> 3rd_party_IP_core_0
                                                                                                                        <> 3rd_party_IP_core_1
    AXI_to_User_Logic is an AXI4 memory mapped slave with two address spaces, that was created with the Create & Import Peripheral Wizard.
    My first question is:
    I think the PCIe/AXI bridge should be the AXI Master, so do I need to connect only the M_AXI to the AXI bus, or do I have to connect S_AXI and/or S_AXI_CTL as well?
    The next question is: how to set the addresses?
    I’m not sure whether I understood how to do the addressing, so I’d like someone to verify that the addressing I made is right. If it’s wrong, please show me how it has to be done.
    I want to send 32 bytes to each AXI address space of the AXI slave and read 32 bytes from each AXI address space of the Slave.
    Addresses of PCIe/AXI bridge IP core:
    PCIe/AXI bridge: AXI Device Base Address (C_Baseaddr) = ?
    PCIe/AXI bridge: AXI Device High Address (C_Highaddr) = ?
    These Addresses can only be set in the PCIe/AXI bridge, not in the Slave. What do they mean? How should they be set?
    Write and Read 32 Bytes to/from two AXI address spaces means: PCIe BAR size = 32 Bytes *2*2 = 128 Bytes (?).
    128 = 2^7 --> PCIe BAR needs the lower 7 Bits to be 0 --> The bridge’s parameter C_PCIEBAR _LEN_0 = 7
    The PCIe BAR gets determined by the configuration software.
    Do I need an AXI BAR in the bridge? I don’t think so, as I only want to use the AXI Master Interface, right?
    PCIe/AXI bridge: AXI Base Address 0 (C_AXIBAR_0) = ?
    PCIe/AXI bridge: AXI High Address 0 (C_AXIBAR_HIGHADDR_0) = ?
    PCIe BAR 0 mapped from AXI BAR 0 (C_AXIBAR2PCIEBAR_0) = ?
    This BAR is only needed, if the endpoint (AXI/PCIe bridge) wants to initiate a transaction to the root port (that’s what I read about it, in the Xilinx support forum). So I don’t need this, right?
    AXI BAR 0 mapped from PCIe BAR 0 (C_PCIEBAR2AXIBAR_0) = 0000 0000
    Addresses of the User Logic IP core:
    AXI_to_User_Logic_0:Mem0    Base Address = 0000 0000
    AXI_to_User_Logic_0:Mem0    High Address = 0000 001F
    AXI_to_User_Logic_0:Mem1    Base Address = 0000 0020
    AXI_to_User_Logic_0:Mem1    High Address = 0000 003F
    --> Both address spaces are 32 Bytes.
    Let’s say the configuration software set the PCIe BAR0 to 0x0100 0000.
    If the User_logic’s BARs and the PCIEBAR2AXIBARs are configured like above, I can access the second axi address space by performing a PCIe transaction with PCIe Baseaddress = 0100 0020 which will result in an AXI request with address = 0x00000020. Is this right?
    I appreciate any help,
    Fabian

    interconnect is when you have one master, multiple slaves or multiple masters, single slave or any combination of NxM connectivity. If you have a single master and a single slave then there is no need for an interconnect and you can connect your master to the slave directly.
    If you want a master example, you can do "tools|create&package ip|create new ip" and create an ip with master interface. Then you can add your master state machine/controller inside.
    Also keep in mind that if you want your master to talk to your own slave and DDR you need to either have two master interface in your IP block or add an interconnect to demux your master to two separate slaves.

  • Mapping Logical address in AD to a physical address in SAP Portal

    Dear All,
    We have a Logical field named "empcode" in Active Directory.
    I need to map it with a physical field in SAP Portal.
    Kindly assist me in the same.
    Thank you,
    Regards,
    Disha.

    Hi Disha,
    The following example would help you understand the process
    http://help.sap.com/saphelp_nw70/helpdata/en/44/7d188751626fb5e10000000a155369/content.htm
    Case 1:
    If you want to map the attribute to the existing logical attribute in SAP. Then simply change under the section  <attributeMapping>
    Case 2:
    You can create a new logical attribute and then do the mapping. This is clearly shown in the example itself.
    Regards,
    Mahesh

  • One IP Address to create a IPMP and logical hostname?

    Hi,
    Is this possible to have a network failover in sun cluster with one IP address ( requirement is in two node cluster, each system having one NIC port. IPMP group will have only one IP address which is also use as logical address also)?
    Thanks

    Hmmmmm?!?
    I doubt it. In your cluster setup, one of the nodes would always have no(!) IP address. Actually, before you would configure your logical IP address, none of your cluster nodes would have a valid IP address, as the logicalhostname resource would want to plumb the address.
    Re-reading your post, the answer is no. This setup will have all sorts of problems.
    Regards
    Hartmut

  • How is Maximum ram that Logic can address?

    I have 7 Gig RAM on my 8 core, and I'm wondering if it makes sense to increase it to i.e. 12 or 16 Gig. Can Logic address so much ram to itself?

    I have never been able to get Logic to use more than about 2100MB of RAM, according to menumeters. It starts disabling plugins, telling me that I don't have enough RAM and behaving erratically once the amount of RAM used reaches this level.
    Considering Leopard by itself uses anywhere from 300-600MB of RAM, that's a lot less than 2.7GB being used explicitly by logic. This means that the 2.7GB limit might just be a hypothetical limit that actually isn't possible. Or menumeters isn't as accurate as I thought it was.
    I'm going to try opening virtual instruments in a separate application and see if this helps let me access more RAM at all.

  • SOLARIS 2.6 logical IP limit

    good day! i hope you guys can help me out with my problem... i need it coz i next week is my deadline... i'm researching about the maximum number of logical IPs can Solaris 2.6 (SunOS 5.2) support... in Solaris 2.5.1 i can only add 255 logical IPs using the "ifconfig" command but i need 2,000 of it and even more... is there a way to modify these system parameter? pls show me how if there is any... thanks in advance and more power...

    Solaris 2.4, 2.5 and 2.5.1 is limited to 255 logical addresses per interface.
    Solaris 2.6 is can go as high as 8191, depending on the value of ip_addrs_per_if.
    eq. ndd -set /dev/ip ip_addrs_per_if <1-8192>

  • Zone Cluster: Creating a logical host resource fails

    Hi All,
    I am trybing to create a logical host resource with two logical addresses to be part of the resource, however, the command is failing. Here is what I run to create the resource:
    clrslh create -Z pgsql-production -g pgsql-rg -h pgprddb-prod,pgprddb-voip pgsql-halh-rs
    And I am presented with this failure:
    clrslh: specified hostname(s) cannot be hosted by any adapter on bfieprddb01
    clrslh: Hostname(s): pgprddb-prod pgprddb-voip
    I have pgprddb-prod and pgprddb-voip defined in the /etc/hosts files on the 2 global cluster nodes and also within the two zones in the zone cluster.
    I have also modified the zone cluster configuration as described in the following thread:
    http://forums.sun.com/thread.jspa?threadID=5420128
    This is what I have done to the zone cluster:
    clzc configure pgsql-production
    clzc:pgsql-production> add net
    clzc:pgsql-production:net> set address=pgprddb-prod
    clzc:pgsql-production:net> end
    clzc:pgsql-production> add net
    clzc:pgsql-production:net> set address=pgprddb-voip
    clzc:pgsql-production:net> end
    clzc:pgsql-production> verify
    clzc:pgsql-production> commit
    clzc:pgsql-production> quit
    Am I missing something here, help please :)
    I did read a blog post mentioning that the logical host resource is not supported with exclusive-ip zones at the moment, but I have checked my configuration and I am running with ip-type=shared.
    Any suggestions would be greatly appreciated.
    Thanks

    I managed to fix the issue, I got the hint from the following thread:
    http://72.5.124.102/thread.jspa?threadID=5432115&tstart=15
    Turns out that you can only define more than one logical host if they all reside on the same subnet. I therefor had to create 2 logical host resources for each subnet by doing the following in the global zone:
    clrslh create -g pgsql-rg -Z pgsql-production -h pgprddb-prod pgsql-halh-prod-rs
    clrslh create -g pgsql-rg -Z pgsql-production -h pgprddb-voip pgsql-halh-voip-rs
    Thanks for reading :)

  • SNMP Trap and logical hostname

    Consider a case in which a cluster node has two public network interface in a IPMP group and a logical hostname (ip addr) is also assigned to one of the interfaces.
    If an SNMP trap is generated from this cluster node, what would be the source IP address in the IP header of the trap?
    Is there a way to restrict the source IP addr to one of the interfaces?

    There is only IPMP group so I'm not sure what you mean by active/standby groups. If your question meant to ask whether the interfaces within the group are in active/standby, the answer is no.
    Even if they were active/standby and the trap always travels over the active interface, the question still remains whether the source IP address would be the physical address or the logical address, assuming the logical address is also assigned to the same interface.

  • How to view logical port error log

    can anybody tell me how to view the logicalport error  log

    Usually in a distributed environment you would point the logical addresses to the http web server and port or to the load balancer, if you are just using a web server like OHS you can set all the logical addresses by running configure web server and select "Set the logical web address for the web applications to the web server"
    If you want to see all the configuration in the Shared services registry then you can run <MIDDLEWARE_HOME>\user_projects\epmsystem1\bin\epmsys_registry.bat to generate a report and the web app configurations will be under LOGICAL_WEB_APP
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How can I configure a third party VME board with A24 address space using a VME-MXI-2?

    Hi!
    We are trying to establish communications to a Galil Motion controller with a VME interface. Galil states that they are using a A24 address scheme with A16 data space for their board.
    I am confused how to configure that board in the VME chassis properly.
    The base address provided by Galil is 91Fxxx, I am assuming that the lower three nibbles are the registers that I can talk to?!
    How do I set the address range under the resource setting for that board?
    Also, I noticed in MAX that one board shows up with a slot number unknown, one with slot #0 and this board I have set to slot #1. I assume that the unknown part is for the PCI card that makes up for the 1/2 of the PCI to VME bridge?
    The VISA VIs (Register based access) returns either a bus error, an invalid offset specified or data. However, we are completely in the dark when it does return data, since the expected offset we are typing in causes one of the two errors.
    Our assumption of the problem is that we do not understand how to properly configure that third party board as a resource. It has also happened that the resource manager is hanging up the PC completely. Not even CTRL-ALT-DEL works and the MXI activity LED on the NI-VME-MXI-2 board stays on during the hand up.
    We would appreciate, if somebody could walk us through the configuration process, step-by-step. Specifically, please explain how to setup the base address and how the offsets relate to this on a A24 address scheme. We are completely new to the VME bus interface, so even trivial things may be unkown to us.
    We have browsed NI's page and manuals for explanations, however, we could not find any answers to our questions.
    We noticed a formula for an A16 board that takes the base address and adds the logical address to it plus 40hex. Do we have to do the same or something similar to the A24 board????
    We also came accross an option that would allow the board (NI VME controller) to share its memory with A24 or A32 space? Do we need to enable that? What is the purpose for that?
    Best,
    Markus Tarin
    www.movimed.com - Custom Imaging Solutions
    www.movitherm.com - Advanced Thermography Solutions

    When I did not get a response here, I had to open a ticket with support.  The short answer is that you cannot customize the SAML response when using Azure AD as an IdP.
    Response from support:
    I discussed the issue with senior engineers to get action plan for this issue. After doing research Senior engineers updated me that we cannot add a custom attribute to the default
    SAML response of Azure AD.
    Below is the link to get the list of available attributes
    https://msdn.microsoft.com/en-us/library/azure/dn195587.aspx
    As default SAML response from Azure AD , we have email address of the user sent out as attribute value for the Attribute " NAME ".
    They suggested me to configure the application we are trying to integrate with Azure AD in such a way that it transforms the Attribute  " NAME " into " EMAIL
    This was not particularly helpful in my case as I did not have any control over the 3rd party which specifically documented that they would not extract the email address from the name attribute.
    Cheers,
    Jeff

  • How to setup logical IP/hostname

    Hi,
    I need some help on setting up public IP and logical IP on sun cluster. I know that for public IP I need to setup IPMP for both custer nodes. But for logical address do I need to add entry to /etc/hosts for both nodes? Or sun cluster will do it automatically assigning logical hostname to your logical IP address during swithover?
    Any help is greatly appreciated.
    Thanks.

    put an entry in /etc/hosts on all cluster nodes for your logical address name and the associated IP Address.
    then
    scrgadm -a -L -l <logical hostname> -g <resource group>

  • Transition to Logic Pro X from Protools

    I've been running PT8  HD 3/TDM for some time on a MacPro 2 x 2.4 Quad, Xeon, 8 GB RAM and have an ICON controller.   I just upgraded my Mac to Mountain Lion to optimize other software I am running.   PT crashed and I discovered that I now need to upgrade PT to 11.   This is going to be at least 6K and a headache.   I saw the news that Logic Pro X just went to market.  I am seriously considering transitioning to Logic and getting out of Protools.
    The following are critical issues for me and I wonder how Logic address them:
    1.   Delay compensation..  When I am overdubbing, mixing with plugins on some channels and outboard gear on other channels how does Logic handle this.    If I recall from years ago you had to manually adjust delay compensation when overdubbing, i.e. determine the number of samples that new tracks were off.
    2.   Setting up new tracks.     I recall using Logic previously and it was challenging and not very intuitive to set up new tracks or channels.    Had this improved.    I know that this issue is also personal preference and was perhaps my personal shortcoming.  
    3.   What about my 10s of thousands of dollars of plugins that I have already paid for.   I know that the TDM versons are out the window.  What about RTAS?   What type of plugins can I use with Logic Pro.
    4.   I like using an ICON controller.   I imagine that there are a bunch of good controllers out there that are specific to Logic Pro.    What are your preferences?

    Any personal experiences would be greatly appreciated.

  • EDI Settings

    Hi All
    can anyone tell me how EDI settings are done for Purchase orders and intercompany billing docs.
    Transaction codes would be of much help step by step.i think i know there are four Tcodes. WEL1 for logical address , WE20 for partner profiles and OBCA for assigning invoice to company code.
    Can anyone correct me if i am wrong..

    Hi,
    For configuring of EDI for Invoice, you have to do following things :
    1. Use Outbound IDOC type u2013 INVOIC01 (Message type u2013 INVOIC)
    2. Maintain Condition Record for Billing Output (EDI)
    Transaction Code : VV31 / VV32 / VV33
    Output Type : RD00
    3. Port in IDOC processing
    Transaction Code : WE21
    Port Type - > File Port : For eg . - EDIFACT
    Maintain all the relevant field like physical path for directory, Functional module for file name.
    4. Create Partner Profile
    Transaction Code u2013 WE20
    Select Partner type KU (Customer) and maintain outbound parameters for Outbound IDoc - INCOIC01
    Some Important Transaction Codes for EDI Configuration which you have to know.
    WE63 - Documentation IDOC Type
    WE46 - IDOC Administration
    WE16 - Trigger Inbound processing
    WE19 - Test Tools for IDOC Processing
    WE02 u2013 IDOC Status
    WE05 u2013 IDOC Status
    We07 u2013 IDOC Statistic
    Hope you can configure now.
    Cheers.....
    Imran

Maybe you are looking for

  • Invalid key length on hard drive. Can this be fixed?

    Hello, I have a question about an error I am receiving with a hard drive I have been using for a few months on an imac G3 (the slot loading version). I bought this used 80 GIG hard drive on ebay for a friend of mine and I helped him transfer all his

  • Assassin's Creed: Unity Spin to Win Codes

    One of the great offers for pre-ordering Assassin’s Creed: Unity at Best Buy is to receive a code to enter and receive chances to win prizes with the Spin to Win game. You’ll find all the details below on how we are sending these codes to customers t

  • Virtual Key Figures using RSR_OLAP_BADI

    Hi gurus, We have been using the RSR_OLAP_BADI to generate some virtual key figures for our queries, now we have a problem creating a virtual key figure... We have got 4 key figures in the query, 1 is a normal KF and the last 3 are virtuals, one of t

  • After upgrading to 6.0.2 from 6.0.1, Firefox has become laggier in terms of response time.

    For example, new tabs open/close after about a half-second pause. I notice when I do this, the CPU activity spikes to about 25% and dies down. Sometimes typing text will pause as well. Its behavior is as if it was bogged down with a memory leak.

  • How to post calendars to Family account

    Hope this isn't too stupid a question, but we have 3 or 4 people at work who did have individual iCal accounts they'd published successfully. The company recently insituted a family account for them, as it was less costly and, it was assumed, more us