Multiple SAProuters in line to OSS

Hi all,
I have an interesting situation that might work but at the moment doesn't...
The connection from the SAP-system to OSS is as follows:
1. SAPserver --> unencrypted to
2. Local SAProuter --> with password to
3. Remote SAProuter --> with SNC to
4. SAProuter at SAP
The link between 1. SAPserver and 2. Local SAProuter works.
The link between 2. Local SAProuter and 3. Remote SAProuter gives an error when testing the connection in SM59:
"timeout, return code -93", "timeout occured / LB: Unexpected error in LG layer".
The link between 3. Remote SAProuter and 4. SAProuter at SAP using SNC works (yes, it's been tested).
For those interested in helping me with this problem the setting in the RFC destination:
/H/192.168.16.5/S/sapdp99/W/
/H/{public IP of 3.Remote SAProuter}/S/sapdp99
/H/147.39.131.34/S/sapdp99
/H/oss001
Ideas anyone?
Please?
Kind regards,
Martin

OK, with the help of SAP-support (Vielen Dank, Birgit!) I got it to work:
The routing between the SAProuters must be OK.
The first SAProuter in the chain as seen from SAP is registered at the General Tab of the System Data at SAP Service Marketplace.
The second SAProuter as seen from SAP is registered at the Database Tab under Additional SAProuter !
When using application servers you must also register the Second SAProuter under Additional SAProuter.
The routerstring used when opening the Service Connection must include BOTH SAProuters in the correct order as seen from SAP .
Quite simple really.

Similar Messages

  • MRP creating multiple delivery schedule lines in PR

    Hi,
    We have activated MRP (type PD) where Purchase requiesition is auto created by system for requirement quantity. We require to optimize delivery schedule in such a way that entire PR quantity is broken into various delivery schedule based on planned delivery time and requirement.  Scenario can be further explained with following example.
    Material Requirement for a month is say 1,25,000 units
    Closing Stock say 25,000 units
    PR Generated by system for 1,00,000 units. The entire quantity is schdulled with only one delivery schedule line as per planned delivery time. 
    The requirement is to generate multiple delivery schedule lines automatically in Purchase requisition based on planned delivery time so that Purchase orders can be placed with system generated delivery schedule lines.
    How can it be achieved ?
    Regards,
    Nirav Kinkhabwala

    Dear
    Are you dealing with Single vendor  where you want Multiple Schedule Line item through single PR  which should be generated through MRP run ??
    What you will have to do is to set up the Outline Agreement or Info Record for your vendor and material and then create the source record for this vendor- material relationship and make sure that this source record is set as MRP relevant. Once MRP is run, the vendor is automatically defaulted to your PRs. If in your material master, you have defined the same purchasing group for various material numbers, then with Transaction ME59, it is feasible that you can combine various PRs of the same purchasing group by flagging onto the 'Per Purchasing Group' indicator checkbox. Make a trial test and let me know how it goes.
    Or you can use Qouta arrabgement in that case for different vendor .Please refer : Multiple Requisition  line itme for Quota arrangement
    Just check and revert
    regards
    JH
    Edited by: Jiaul Haque on Dec 25, 2010 1:52 PM

  • In COGI error text "Multiple assignment of line item"

    Hi Guru,
    In COGI error text "Multiple assignment of line item"
    Description:
    ultiple assignment of a line ID
       Message no. M7357
    iagnosis
       An item table, in which the line ID (LINE_ID)
       was transferred to the function module MB_CRE
    ystem Response
       Processing is terminated.
    rocedure
       Contact the system administration.
    rocedure for System Administration
       There is an error in the calling application.
    Please help me to resolved this issue.
    Thanks and regards
    PNU

    Hi,
    Thanks for reply,
    It is possible to remove material from COGI list. We need to stop creation of this error.
    Is there other solution to control creation of error  "Multiple assignment of line item"
    Thanx & regd.
    PNU

  • PCO 2.1 Error : there are multiple root elements Line 6, position 2

    HI all,
    I am getting an error while adding Destination for Notification.
    On the Destination Tab, I am able to create MII System as Destination. And expanding the newly created Destination, i can see a child node 'Destination'. While clicking on this child node, i am getting an error as "there are multiple root elements Line 6, position 2"
    Can anybody please help.
    Regards
    Muzammil

    Hi,
    While configuring MII Server details, instead of IP address of MII server, we gave domain name and it started working.
    Regards
    Muzammil

  • Converting multiple points to line

    Hi All
    I have table consist of point data.. how to convert multiple points to line data.. if anyknows pls tell me ..
    Thak you

    user13340372,
    . . . .Are you trying to draw a line between 2 points or draw a line connecting N points?
    How to Create a Line From 2 Points_
    . . . .You could use the SDO_Geometry constructor. For example, if you have a table POINTS defined as (ID NUMBER, FromPt SDO_GEOMETRY, ToPt SDO_GEOMETRY), then you could:
    SELECT 
        SDO_GEOMETRY(
        'LINESTRING ('||
        -- concatenate coordinates from FromPt
        REPLACE(REPLACE(p.FromPt.Get_WKT(), 'POINT (', NULL), ')', NULL)||','||
        -- concatenate coordinates from ToPt
        REPLACE(REPLACE(p.ToPt.Get_WKT(), 'POINT (', NULL), ')', NULL)||')'
        ---  SRID
        , 4326)
    FROM
        POINTS p;              
    How to Create a Line From N Points_
    . . . .In a "connect-the-dots" puzzle, you draw lines from one numbered point to the next numbered point. There, the numbers define how points are related. If you dont have that information, then you need to decide how you want your points connected. Here are a few options - your requirements should indicate which (if any) is suitable:
    . . . .(a) Draw Arbitrary Linestring Through Points: user10278189 already posted that PL/SQL solution (above).
    . . . .(b) Connect Nearest Neigbors: set CURRENT_POINT to a point (e.g., bottom-left). Then identify its nearest-neighbor (hereinafter, "NextPoint") using SDO_NN. Flag NextPoint as "visited" and set CURRENT_POINT to NextPoint. Repeat until all points in the point-set are flagged as "visited." The result ( which depends on the starting point ) is a linestring connecting all points (a "line" is only between 2 points; a linestring is between 2 or more points). This requires PL/SQL.
    . . . .(c) Draw Along Shortest Distances: Create a table containing: FromPt_ID, toPt_ID and distances between each pair of points. (If you do this via a cross product, remove rows where FromPt_ID = ToPt_ID.) Begin connecting the points with the minimum distance from the last "visited" point (as before, flag the points that have been used as "visited"). The result of this operation is the shortest linestring connecting your point-set. This requires PL/SQL.
    . . . .(d) Outline Set of Points: You could also use the SDO_GEOM.Sdo_ConvexHull function to create polygon that encloses your point set, and then use SDO_UTIL.PolygonToLine to turn that area-geometry into a line-geometry. This can probably be done in a single statement.
    . . . .(e) Others (TSP, spanning tree, etc).
    Regards,
    Noel

  • Multiple MM schedule lines for the same date

    Hello All Gurus,
    I am facing a problem where the MM schedule lines are divided into various quantites for the same date. For example on 02/11/2010 the total quantity is 120, it is appearing in the below form in ME38:
    02/11/2010 - 40
    02/11/2010 - 40
    02/11/2010 - 40
    Although this is not an error, but my client is not happy with this. Can someone tell me why I am getting this error? Is it because of the rounding value that we maintain in MRP 1 view of material master record? Or is there any other setting that I am missing?
    Please let me  know. I would be very much thankful to you.
    Thanks and Regards,
    Umakanth

    Hi,
    Before changing the setup, note that sometimes it is beneficial to split one demand into multiple delivery schedules. Especially if the demand is bigger than equipment type (container/truck etc.). If you want to manage inbound transportation for such delivery schedules, it is much simpler to do this when each delivery schedule is not bigger than one equipment.
    Regards,
    Dominik Modrzejewski

  • One pr for multiple materials with line items while running mrp

    Hi SAP gurus,
                  I am config the system for MRP as per my client requerement.
                     We use CBP for different RAW materialsfor example they having a 10 materials for planning,were,
             MRP type is VB,
              LOT size is FX,with Different Reorder points and fix order quantity for all materials,
             My client whant run MRP for all these materials in single time that means they whant multiple item at single levels,
            i soles these requirement with the help of Product Group(sop) and its working but when we running md02 for product group all materials have planed and they give different purchase requistion numbers for all these materials but my client Wants single purchase requistion with line items for all these materials.
         Pls give me the solution for that requirement.
    thanks and Regards,
    abhi

    this is not the way SAPs MRP run works.
    Where is the benefit for this?
    the requisitions are not even split into header and item table, it is just one table EBAN, and either way you would get exact the same number of records in EBAN.

  • PO with hundreds of multiple account assignment lines on service line level

    Hi, experts,
    I want to create a external service PO with multiple account assignment.
    However, in the service line item level, when I click on the multiple account assignment, I could only enter 97 lines. But I need to create around 1000 account assignment lines for a single service line.
    Is it possible to extend the no. of account assignment lines inside the service line level? May I know how to do so?
    Thanks & regards,
    James

    I'm facing a similar error. 
    What I think it's happening is that for technical reasons the program involved only delivers 99 line items... To make things worse, When you try to create an invoice for that full item you are going to get an error bc the invoice reserves line 99 for unplanned account assignments.
    The suggestion from SAP is to create further items with 98 account assignment items or less.
    Have a look at these notes: 486808, 651784
    Regards,
    Nelson
    PS: Please rewards points for helpful answers

  • PO item with Multiple Goods receipt line items

    Hi Experts,
    When we create PO for specific vendor with one PO line item then at the time of Good receipt there are multiple GR line items. How to control those multiple GR line items as one GR item.
    Appreciated your help
    Regards
    Krishna

    Hi,
    If you did GR from PO with underdelivery qty in line items, SAP recognize it as partial delivery.
    Basically, in the standard system the underdelivery qty scenario is allowed, but not for overdelivery qty.
    If you intended to force the system to allow one line item in PO with only one line item in GR, therefor you could create program checking with development team.
    please check the link for your reference.
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/63344643a211d189410000e829fbbd/frameset.htm
    regards,
    rob

  • ALV Report for multiple headers with Line Items

    Hi Sap All.
    here i have got a requirement to change the exisiting Zprogram which writes all the header information with line items in a normal simple report,now i have got to change the program in order to display in an ALV Format .
    in the exisiting program they are using EXTRACT ,INSERT Statement and multiple select statements for getting the values into each field ofheader and line items for writing in a simple report.
    so ijust want to know how i can populate all the data into alv grid.
    can any one help me in this.
    regards.
    Varma

    you have to store all header records in an internal table and all item records in a second table
    then you call function module REUSE_ALV_HIERSEQ_LIST_DISPLAY with both parameters T_OUTTAB_HEADER and T_OUTTAB_ITEM

  • Multiple Selection multi-line per choice

    I have a bunch of multiple selection items which are all the same, so I copied and pasted them where I wanted them. The pasted ones are taking up two to three lines per choice (one word per line) even though they are very short and the original that I copied from only takes one line each. Does this mean I have to do each one manually? Why are the copied ones different from the original? Thanks!

    Hi,
    It sounds like a bug, since this shouldn't be happening.  However I tried to reproduce the problem, but couldn't.  It's probably a bug, that specific to your choices labels.  Could you share your form to me ([email protected]), so I can take a look at the specifics?  Once I can see it, I can provide some guidance about the issue and how to work around it (if posisble) until we've fixed it.  You can share a form by clicking the share button, and then clicking add collaborators.
    Thanks,
    Todd

  • Multiple entries per line on MTRs

    Hello,
    Can anyone tell me what the multiple line items are when running an MTR?  I previously though that the "extra" line entries were the various paths that an ICMP packet may take to the destination, but I have observed that the last hop will occassionally contain multiple entries, as well. This is confusing me in my newbness.  Can anyone help provide some insight into this?
    Thanks,
    Kevin
    Sample MTR (IPs have been changed to protect the innocent).
    1. 10.16.224.1                                                                                                                            0.0%    69    0.3   0.3  
    2. 10.7.255.8                                                                                                                              0.0%    69    0.3   0.4  
    3. 10.7.127.135                                                                                                                            0.0%    69    0.4   0.7  
    4. 10.11.62.2                                                                                                                             0.0%    69    0.7   2.2  
    5. 10.15.107.128                                                                                                                          0.0%    69    1.4   8.1  
    6. 10.15.96.113                                                                                                                           0.0%    68   46.4  37.2  
        10.15.101.150
        10.15.105.18
    7. 10.15.101.154                                                                                                                          0.0%    68   90.4  66.9 
        10.15.96.120
        10.15.96.54
        10.15.100.67
    8. 10.15.100.136                                                                                                                          0.0%    68   84.5  94.4 
        10.15.108.119
        10.15.101.152
        10.15.108.2
        10.15.96.110
        10.15.108.117
        10.15.101.144
        10.15.96.80
    9. 10.15.102.114                                                                                                                          0.0%    68   78.8  88.7 
        10.15.96.217
        10.15.108.117
        10.15.96.219
        10.15.108.115
        10.15.96.223
        10.15.96.221
        10.15.108.0
    10. 10.73.188.43                                                                                                                            0.0%    68   85.0  86.4 
        10.15.96.217
        10.15.96.221

    Hello,Can
    anyone tell me what the multiple line items are when running an MTR?  I
    previously though that the "extra" line entries were the various paths
    that an ICMP packet may take to the destination, but I have observed
    that the last hop will occassionally contain multiple entries, as well.
    This is confusing me in my newbness.  Can anyone help provide some
    insight into this?Thanks,KevinSample MTR (IPs have been changed to protect the innocent).
    1.
    10.16.224.1                                                                                                                          
    0.0%    69    0.3   0.3  
    2.
    10.7.255.8                                                                                                                            
    0.0%    69    0.3   0.4  
    3.
    10.7.127.135                                                                                                                          
    0.0%    69    0.4   0.7  
    4.
    10.11.62.2                                                                                                                           
    0.0%    69    0.7   2.2  
    5.
    10.15.107.128                                                                                                                        
    0.0%    69    1.4   8.1  
    6.
    10.15.96.113                                                                                                                         
    0.0%    68   46.4  37.2  
        10.15.101.150
        10.15.105.18
    7.
    10.15.101.154                                                                                                                        
    0.0%    68   90.4  66.9 
        10.15.96.120
        10.15.96.54
        10.15.100.67
    8.
    10.15.100.136                                                                                                                        
    0.0%    68   84.5  94.4 
        10.15.108.119
        10.15.101.152
        10.15.108.2
        10.15.96.110
        10.15.108.117
        10.15.101.144
        10.15.96.80
    9.
    10.15.102.114                                                                                                                        
    0.0%    68   78.8  88.7 
        10.15.96.217
        10.15.108.117
        10.15.96.219
        10.15.108.115
        10.15.96.223
        10.15.96.221
        10.15.108.0
    10.
    10.73.188.43                                                                                                                          
    0.0%    68   85.0  86.4 
        10.15.96.217
        10.15.96.221
    Hi Kevin,
    If you see how to read MTR output just check the below example which has the heading
              ACME (0.0.0.0)                                                Sun May  4 20:08:00 2008
    Keys:  Help   Display mode   Restart statistics   Order of fields   quit
                                                            Packets                                                                        Pings
      Host                                              Loss%                                                     Snt   Last   Avg  Best  Wrst StDev
      1. 192.168.2.1                              0.0%                                                        24    1.9   2.1   1.1  13.8   2.6
      2. 192.168.1.1                              0.0%                                                        24    2.8   2.4   1.9   3.2   0.4
      3. 194.19.98.129                          95.7%                                                     24   22.4  22.4  22.4  22.4   0.0
      4. 195.204.200.13                        4.2%                                                       24   29.4  24.3  16.6  36.2   5.2
      5. 194.19.81.37                             0.0%                                                       24   36.5  32.1  19.3  48.7   6.7
    The above output shows the packet loss occured while the device coming in between to destination with ping responce of last,latest and avg fromwhere we can come to conclusion where is the problematic area like if you see the above output router at 194.19.98.129 is having haigh packet loss,it can be problem with routing protocol, if the lag is a bad route, cached arp, or bad routing tables.
    Hope to Help !!
    Ganesh.H
    Remember to rate the helpful post

  • Reconciling Multiple Bank Statment Lines

    Hi Colleagues,
    A receipt has been raised & banked for multiple mode of payments. For example customer pays $10000.00 as below
    $ 75000 In Credit Card
    $ 20000 In Cash
    $ 5000 In Cheques
    When u take the bank statement , there will be three statement lines in three different days for the above. And when it comes to reconciling u have three statement lines with a single AR receipt. How can we reconcile it. Is there a work around. And what does recalculate button does??
    Appreciate ur prompt response,
    Thanks,

    Dear John;
    You may create your LSMW with a vendor which has n banks (say 5). You will write 5 rows of bank info. LSMW will create new field names for these areas. 01-02...
    LFBK-BANKS(01)                 TR
    LFBK-BANKS(02)                 tr
    LFBK-BANKL(01)                 0067-00002
    LFBK-BANKL(02)                 0067-00003
    LFBK-BANKN(01)                 1234
    LFBK-BANKN(02)                 1235
    you will prepare your excel for this purposes after then.
    I hope it will help.
    BR.
    Aydın

  • Multiple 3 D lines in one plot

    Hi!
    I want to rotate 3D lines in one picture.
    For this i want to draw about 1000 lines which i can rotate speratly.
    How can i draw sperate lines in one picture?
    For rotation I change the start end the end values from the lines.
    but how can i change the line from solid tho piont and backwards?
    or is there an other way`?
    thany you
    hannes

    I am wondering why you don´t use the 3D-Graph? The 3D Graph has a rotation-functionality built in, and you can plot multiple 3D-lines in it.
    Here you can find some examples:
    http://zone.ni.com/devzone/cda/epd/p/id/1028
    Hope this helps!

  • How to create multiple report header line?

    Dear Experts!
    I am creating a report, which needs multiple lines for report header e.g. First row should have Report Name in bold. Then next line should have the month for which the report was executed and last line should have the person, who executed it.
    I know that I can get the text of these values by text variable but the problem is to format it and to put the text in different report header lines.
    Please help!
    Thank you,
    Tyagi

    Dear Tyagi,
    Are you using BEx Report Designer?
    You can use drag-and-drop for moving the fields. Just click on the cell and as the buttons appear, move it to your destination cell.
    Regards, Karol - SAP BI Development

Maybe you are looking for

  • 20" ACD Color Shifting?

    I have a question about my new 20" Apple Cinema Display. I'm looking at this screen and one side has a slight cyan tint to it and the other side has a slight red tint to it. It really makes grays and whites look odd. Is this a defect or is this accep

  • Query on #h-navbar in Dreamweaver

    I have created a horizontal menu bar with 5 items.  The text is white for all of them, but when I hover over them I want the text to change to a different colour for each of the 5 items.  I have got this to work in Safari and Firefox by setting up a

  • Recon. Changed

    HI, We are using 5.0 Version. We have facing one problem in payable and receivable accounts,i.e., We have changed the Recon accounts in Master data. That effect showing in reports.The problem is when I was see the Payable reports(S_ALR_87012082 - Ven

  • How to Cast objects in Process Business Language??

    Hi all How can i do Casting in (Process Business Language ) "PBL" (e.g: from Object to Customer) ???? Thanks

  • Zen stone plus no longer wo

    Hello all! I've been very happy with my Zen Stone Plus (2GB) until suddenly it doesn't work. It seems to charge ok but turning it on, the "CREATIVE" starting logo just stays on the screen forever (until the battery runs out I presume). When connected