CCME test call FXO without line

hi All,
We have an ISR2911 CCME10 with 2x FXO port.
We are currently staging it, however we do not have FXO lines to test in house if our dial-peer plans is actually routed correct to our voice port 0/0/0 and voice port 0/0/1.
Is there a way,cmd i can test call from my ip phone and see if the call is routed out to the intended voice FXO port
please advise

Hi.
You have different ways to test it.
debugging ccapi inout it will show you the matched outgoing dialpeer .
With debug vpm signal the output should show the port status progress.
Without a phone, from telnet or console session (not ssh) you can use the hidden command csim start followed by the number to dial.
HTH
Regards
Carlo
Sent from Cisco Technical Support iPhone App

Similar Messages

  • Incorrect Caller ID on calls from outside line via FXO port.

       Have a public phone line connected to my CUCME 2801 router VIC2-2FXO card. All inbound calls are passed to DN-5001 (group number). Can receive and send calls without a problem, but incoming calls all show "911" for caller ID. Think this is simply an issue with the out bound dial-peer, of which the lowest numbered out bound dial-peer is for 911 services. Not sure how to correct this so inbound calls show the proper caller ID?
        Below is a copy of my CUCME show run output from the FXO port config thru all the dial-peers. Any pointers is greatly appreciated.
        Thanks.
               Kirk E.
    voice-port 0/0/0
    connection plar opx immediate 5001
    voice-port 0/0/1
    voice-port 0/2/0
    station-id name POTS
    station-id number 7000
    voice-port 0/2/1
    ccm-manager config
    dial-peer voice 7000 pots
    destination-pattern 5006
    port 0/2/0
    dial-peer voice 90 pots
    description Emergency Services
    destination-pattern 911
    port 0/0/0
    forward-digits 3
    dial-peer voice 91 pots
    description 10 Digit local dialing
    destination-pattern [234].........
    port 0/0/0
    forward-digits 10
    dial-peer voice 92 pots
    description 11 Digit local/long distance dialing
    destination-pattern 1[2348].........
    port 0/0/0
    forward-digits 11
    dial-peer voice 93 pots
    description Long Distance
    destination-pattern 011T
    port 0/0/0
    prefix 011
    dial-peer voice 94 pots
    description Backup bench POTS phone
    destination-pattern 7000
    port 0/2/0
    dial-peer voice 2 voip
    destination-pattern 51..
    session protocol sipv2
    session target ipv4:172.16.2.155
    dtmf-relay sip-notify
    codec g711ulaw
    no vad

    Hi
    Can you find the below:-
    Hi
    1- Please find the below table  as the following link  http://www.cisco.com/en/US/products/hw/routers/ps274/products_tech_note09186a00800b53c7.shtml
    Caller ID          Requires VIC-2FXO-M1, VIC-2FXO-M2, VIC-4FXO-M1, VIC2-2FXO, VIC2-4FXO, or MRP3-8FXOM1
    under voice-port
    caller-id enable
    2-If above configure and still have no caller id , please add the below commannds to the voice-port
    caller-id alerting line-reversal
    cptone ?               "based on your"
    caller-id alerting ring 2    "the default is 1" maximum number of rings to be detected before a call is answered over an FXO voice port.
    4-Do debug to make sure all ok
    "debug vpm signal "
    [0/3/0] get_fxo_caller_id:Caller ID received. Message type=128 length=31 checksum=74
    Thank you
    please rate all useful information

  • Is the MASTER_IDOC_DISTRIBUTE FM called even without a Custo Distri. Model.

    Hi all
    In have a question dealing with ALE.
    I am trying to send a BOM Change and create IDoc to a XI system.
    My question is :
    Is the MASTER_IDOC_DISTRIBUTE FM called even without a Customer Distribution Model?
    Or to test my scenario do I HAVE to create a CDM, using BD64.
    Please advise.
    specific answers will be appriciated.

    Hi,
    It is required to create a model view..otherwise who is distributing the message to whom can't be rocognised..Hence it is required..
    check the sample code ..
    *& Report ZZ_Program_To_Create_Idoc
    report zz_program_to_create_idoc .
    tables: ekko,ekpo.
    selection-screen skip 3.
    selection-screen begin of block b1 with frame title titl.
    selection-screen skip.
    select-options s_ebeln for ekko-ebeln.
    selection-screen skip.
    selection-screen end of block b1.
    data: header_segment_name like edidd-segnam value 'Z1EKKO',
    item_segment_name like edidd-segnam value 'Z1EKPO',
    idoc_name like edidc-idoctp value 'Z19838IDOC1'.
    data: header_segment_data like z1ekko,
    item_segment_data like z1ekpo.
    data: control_record like edidc.
    data: messagetyp like edmsg-msgtyp value 'ZZ9838MESG1'.
    data: i_communication like edidc occurs 0 with header line,
    i_data like edidd occurs 0 with header line.
    data: begin of i_ekko occurs 0,
    ebeln like ekko-ebeln,
    aedat like ekko-aedat,
    bukrs like ekko-bukrs,
    bsart like ekko-bsart,
    lifnr like ekko-lifnr,
    end of i_ekko.
    data: begin of i_ekpo occurs 0,
    ebelp like ekpo-ebelp,
    matnr like ekpo-matnr,
    menge like ekpo-menge,
    meins like ekpo-meins,
    netpr like ekpo-netpr,
    end of i_ekpo.
    start-of-selection.
    select ebeln aedat bukrs bsart lifnr from ekko
    into table i_ekko where ebeln in s_ebeln.
    select ebelp
    matnr
    menge
    meins
    netpr
    from ekpo
    into table i_ekpo
    where ebeln in s_ebeln.
    control_record-mestyp = messagetyp.
    control_record-rcvprt = 'LS'.
    control_record-idoctp = idoc_name.
    control_record-rcvprn = '0MART800'.
    loop at i_ekko.
    header_segment_data-ebeln = i_ekko-ebeln.
    header_segment_data-aedat = i_ekko-aedat.
    header_segment_data-bukrs = i_ekko-bukrs.
    header_segment_data-bsart = i_ekko-bsart.
    header_segment_data-lifnr = i_ekko-lifnr.
    i_data-segnam = header_segment_name.
    i_data-sdata = header_segment_data.
    append i_data.
    select ebelp
    matnr
    menge
    meins
    netpr
    from ekpo
    into table i_ekpo
    where ebeln = i_ekko-ebeln.
    loop at i_ekpo.
    item_segment_data-ebelp = i_ekpo-ebelp.
    item_segment_data-matnr = i_ekpo-matnr.
    item_segment_data-menge = i_ekpo-menge.
    item_segment_data-meins = i_ekpo-meins.
    item_segment_data-netpr = i_ekpo-netpr.
    i_data-segnam = item_segment_name.
    i_data-sdata = item_segment_data.
    append i_data.
    endloop.
    clear i_ekpo.
    refresh i_ekpo.
    endloop.
    call function 'MASTER_IDOC_DISTRIBUTE'
    exporting
    master_idoc_control = control_record
    OBJ_TYPE = ''
    CHNUM = ''
    tables
    communication_idoc_control = i_communication
    master_idoc_data = i_data
    exceptions
    error_in_idoc_control = 1
    error_writing_idoc_status = 2
    error_in_idoc_data = 3
    sending_logical_system_unknown = 4
    others = 5
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    else.
    loop at i_communication.
    write: 'IDOC GENERATED', i_communication-docnum.
    endloop.
    commit work.
    endif.
    initialization.
    titl = 'ENTER THE PURCHASE ORDER NUMBER'.
    reward  if helpful
    Regards,
    Nagaraj

  • Spa3102 would not forward a voip call to pstn line

    Good morning.
    I've done the implementation provided here http://community.linksys.com/t5/VoIP-Adapters/SPA-3102-and-softphone-to-
    make-calls-via-pstn-line/td-p/326390 .
    It is a way to use for outgoing calls a given pstn line from anywhere I have internet (voip to pstn).
    The spa3102 is connected to a router (with an active DHCP server and ip 192.168.1.1) from where it takes the internal
    ip (192.168.1.3).On the same network is also a computer , connected to the router ( with ip 192.168.1.2). The spa3102
    is set to bridge mode and thus inactivates the function of the router (on SPA3102), and it functions as a  simple
    network device . I have  done port forwarding (from the router) to 192.168.1.3 (SPA3102) for the port 5061 (PSTN
    LINE) ( but for 5060 for the LINE 1 also). I want to make calls from a voip softphone (x-lite 4) to the SPA 3102 and
    this to forward the voip calls to PSTN line to which it is connected. In x-lite the SPA3102 is set as a proxy so that
    i can type the phone number I want to call without being followed by the SPA3102's ip each time ( eg on  x-lite I
    give call number 2101111111 instead of 2101111111 @ wanip: 5061 where wanip is the external ip of the router).
    When x-lite is running on the computer that is on the same network with the SPA3102 everything works as expected. A
    voip call is made from x-lite ( using as a proxy the wanip everytime, or even for test purposes the dyndns domain
    that i set up for this reason), this call is passese PSTN line and the phone of the called party rings . At x-lite
    COMES indication "call established ".
    The problem occurs when I do the same procedure from x-lite installed on a computer belonging to another network (
    e.g. in another building with its own internet connection , own router, own computer , etc. ) . Always using the
    wanip the x-lite makes the voip call to the SPA3102, writes "call established" ( meaning it connected to SPA3102) but
    never routed the call to the called party ( the SPA3102 did not forward voip calls it receives to the PSTN line ) .
    Trying to find what 's wrong I've tried to disable all firewalls (soft and hard from all involved machines ) . The
    behavior is the same either the computer that makes the successful calls is connected to the network directly to the
    router  or through the port "ethernet" on the SPA3102.
    What is the difference in these two voip calls to the SPA3102 and the one  " triggers "  it to forward the call to
    PSTN line and the other does not ?
    Thanks now for any ideas you give .

    The audio sound problem is more than likely also associated with the overall addressing problem initially encountered.  As you may know, using the sip protocol the sip signalling exchanges ip addresses to be used for both the sip signalling and the exchange of rtp sound packets.  In addition there is an exchange of port numbers to be used for the exchange of rtp sound packets.  The sound is exchanged by two separate streams of packets, one stream in each direction.  The result is an ip address and port number for the rtp packets flowing from the SPA3102 to the softphone and a different ip address and port number for the rtp packets flowing from the softphone to the SPA3102.
    In your previous posting you mentioned that you "set the minimum  EXTernal rtp port at the sip tab".  Changing the "EXT RTP Port Min:" is an unusual change to make and in my opinion would only be made in special circumstances. Actually, I ran some tests and I'm not sure exactly what that setting does.  In my tests it didn't appear to affect the rtp port number used in a predictable manner.
    The common changes to make for audio problems typically would be to setup a STUN server.  A STUN server is an external server that echos back to the initial sender the external ip address and port number that the STUN server received with the message received by the server.  This allows the sender (SPA3102 or softphone) to determine its external ip address and external port numbers for both the sip signalling and rtp packets.
    A STUN server is commonly recommended to be setup with the following settings in the SPA3102:
    PSTN Line Tab:
    NAT Mapping Enable: Yes
    Sip Tab:
    Handle VIA received: yes
    Handle VIA rport: yes
    Insert VIA received: yes
    Insert VIA rport: yes
    Substitute VIA Addr: yes
    Send Resp To Src Port: yes
    STUN Enable: yes
    STUN Server:
    The following web page has a list of "Public STUN Servers"
    http://www.voip-info.org/wiki/view/STUN
    You are using CounterPath's XLite softphone.  stun.counterpath.net  is a STUN server on the list.
    I see XLite also has a setting to use a STUN server on the "Topology" tab.

  • How to execute Coded UI automated test case remotely without installing Visual studio?

    We are using visual studio 2013 premium. my object is to run the Coded ui automated test case remotely without installing visual studio. can you guide me how to approach it successfully ?
    Thanks in Advance..  

    Hi Divakar,
    According to your description,
    as far as I know that if we want to run the automation test remotely without vs using mstest, we will need to install and configure the test controller and the test agent machine.
    Please refer to the following steps configure the test controller on locally machine and install a test agent on the remotely machine.
    Note: If you an
    automation test on locally machine, we must make sure the test agent be installed on remotely
    machine.
    Step1: you can try to
    configure test controller and agent, for more information:
    http://msdn.microsoft.com/en-us/library/hh546459.aspx
    Step2: you will need to
    assign roles to a Test Controller and Test Agent for Automated Testing in Visual Studio, please see:
    http://msdn.microsoft.com/en-us/library/ff469838.aspx
    Note: you will need to add a testsetting file before you assign roles to a Test Controller and Test Agent for Automated
    Testing in Visual Studio.
    Reference:
    http://msdn.microsoft.com/en-us/library/ee256991.aspx
    Step3: After you configure and install the test controller and test agent successfully, we can
    executed coded UI test remotely using  mstest.exe on test agent machine, we would call the testsetting file in command line.
    Reference:
    How
    to use MSTest.exe command-line options
    In addition, I find an article about
    Running tests in mstest without installing the VS IDE, please see:
    http://blogs.msdn.com/b/anutthara/archive/2009/12/16/running-tests-in-mstest-without-installing-the-vs-ide.aspx
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Skype - Getting Started, Test Call

    I've successfully downloaded v. 1.5 of Skype (I'm using a 733 MHz G4, OS 10.3.9 and understand that the latest version - 2.5 - of Skype requires more CPU power).
    I can start Skype up but when I attempt to make the so-called test call (echo123), I drop into an endless "Connecting.." mode without the connection ever being made. The icon to the left of "Test call" is grayed out with a question mark in it as is the one contact I established.
    I've repaired permissions several times; even deleted Skype, and downloaded again. Someone on the Skyp forums suggested that this could be a Firewall problem. I haven't attempted to change any of the Firewall settings; I haven't had problems with Internet connections.
    Ideas anyone? I have not yet installed a camera/microphone but assumed that this is not connected to the problem I'm having.
    Thanks in advance for any input.
    G4   Mac OS X (10.3.9)  

    If you get no answer here, try the *Dedicated Skype for iPhone Forum*: http://tinyurl.com/6c2qdxh
    The Skype app also works on iPad, so should be able to search or post your problem there where Skype app users post.
    EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.6); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.6)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.2.1

  • OSB Service Call Out without soap envelope

    Can we do a service call out without any soap envelope wrapped.
    Example if my message is <Test>test</Test>
    it should not wrap it like
    <soapEnv:Body xmlns:soapEnv="http://schemas.xmlsoap.org/soap/envelope/"><Test>test</Test></soapEnv:Body>in request part of service call out.
    My calling service is WSDL based proxy and called service is ANY XML Proxy Service

    indeed, I have done my tests and it proved the same: whatever you post to a AnyXML service, OSB will first wrap it into a SOAP Envelope / Body and then pass it to the Message Flow.
    After all it makes sense, the Interface of a Proxy Service has nothing to do with its Implementation....
    a SOAP proxy service is implemented exactly like a AnyXML proxy service as far as the $body is concerned (maybe I have said an enormous BS!)
    Only $operation would not be populated - I would expect. Correct me if I am wrong.

  • [svn] 4741: Fix to RTE problem when calling captureEndValues() without having first called captureStartValues().

    Revision: 4741
    Author: [email protected]
    Date: 2009-01-29 13:43:53 -0800 (Thu, 29 Jan 2009)
    Log Message:
    Fix to RTE problem when calling captureEndValues() without having first called captureStartValues(). outcome of a patch submission, although this fix is different than the one suggested in the patch.
    QE Notes: None
    Doc Notes: None
    Bugs: patch sdk-17060, bug sdk-16452
    Reviewer: Jason
    tests: checkintests, Mustella: tests/Effects tests/ListDataEffects
    Ticket Links:
    http://bugs.adobe.com/jira/browse/sdk-17060
    http://bugs.adobe.com/jira/browse/sdk-16452
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/effects/Effect.as

    Look for the "contact us" on the verizon pages.  http://www22.verizon.com/content/contactus/
    Almost all of the forums here are peer to peer.  Some verizon admins will occasionaly step in and try to get you help.  These admins are usually not able to solve problems for you themselves, but can sometimes give advise or get you in contact with someone who can.

  • Feature "Show All Calls on Primary Line"

    Hi Community,
    we're facing some curiosity with the feature - show all calls on primary line.
    Just for troubleshooting I recreate an issue - I tested with an CallManager in Version
    8.5.1.14900-5. In this Version there was the feature under phones - SIP8961 - Product Specific Configuration Layout available.
    Customer is using 8.6.2a -> there is the feature not available.
    Can everybody tell me why ? I need this feature.
    Thanks for help,
    Stefan

    Hi Stefan,
    Installing the latest device pack for 8.6.2 version should fix it. This is related to the following defect
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtt96205
    Although the defect status says release pending but the latest device pack should fix this.
    HTH
    Manish

  • Test call of TP ended with return  0212

    while releasing a transport request, getting the following error message-
    test call of TP ended with return  0212
    your transport request cannot be exported , since all the requirements are not fulfilled
    calling transport control (tp) program "TP EXE CHK DEVK908291  pf=usr/sap/trans/bin/tp_domain_PRD.pfl -Dtransdir=usr/sap/tr"
    which checks the export requirement , returned the following information
    returned code from tp :0212
    further processing is terminated
    Please help if anyone has any clue
    Regards
    Al Mamun

    Hi Eric,
    Thanks for your reply,
    I have checked the configuration, looks ok. The path is ok, I missed the / before usr while typing this message.
    one thing I checked that there is no cofile or datafile corresponding to that transport. Same thing is happening while releasing  other transports.
    Is it mount problem?
    Al Mamun

  • Test call of transport control program (tp) ended with return code 0200 Message no. TK094

    Hello Expert,
    My SAP System environment as follow
    SAP Product : SAP NetWeaver 04
    Operating System : Windows 2003 32 bit
    SAP Database : MS SQL 2005 32 bit
    I have installed SAP NetWeaver 04 system with system copy option. I have installed Application server & Database server on different physical server. App server : SSC2PAS3SFWBW and Database Server : SSC2PAS3SFSQW1.
    After SAP NetWeaver 04 installation with system copy I have done TMS configuration with virtual system for a test, It is working fine but while releasing request form SFD system (Development system) it get error  “Test call of transport control program (tp) ended with return code 0200. Message no. TK094”
    I have reconfigured the TMS and check but it can’t help. TR gets release and import with OS level but at SAP level it gets error.
    Trans --> Log
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP182 CHECK WRITEABILITY OF BUFFERS
    1 ETP101 transport order     : "SFDK905838"
    1 ETP102 system              : "SFD"
    1 ETP108 tp path             : "tp"
    1 ETP109 version and release : "340.16.72" "640"
    1 ETP198
    2EETP128 No target system defined. "SFDK905838" is not a transport request.
    1 ETP182 CHECK WRITEABILITY OF BUFFERS
    1 ETP110 end date and time   : "20140602150208"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    Steps for Reconstruction                                            
    # Upgraded latest SAP Kernel Non-Unicode 640_Rel Patch level 404
    # Reconfigured the TMS
    # Full User Permission has been set to all SAP Directory.        
    Rgds,
    Ashok      

    Hi Ashish,
    I have removed virtual system form TMS and configured with Development & Production system, but the same error. Not able to release TR.
    SLOG as below.
    ERROR SFDK905832           SFD f 0012 20140602090930 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602093923 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602094059 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602102854 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602103633 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602104142 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602111140 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602112723 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113109 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113704 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113722 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113753 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905832           SFD f 0012 20140602113809 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905834           SFD f 0012 20140602125959 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905834           SFD f 0012 20140602130035 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    START EXPORT PREPARATION   SFD e      20140602132917              sfdadm       SSC2PAS3SFWBW 20140602132916001358
    START tp_getprots          SFD E      20140602132917              sfdadm       SSC2PAS3SFWBW 20140602132916001358
    STOP  tp_getprots          SFD E      20140602132920              sfdadm       SSC2PAS3SFWBW 20140602132916001358
    STOP  EXPORT PREPARATION   SFD e      20140602132920              sfdadm       SSC2PAS3SFWBW 20140602132916001358
    ERROR SFDK905836           SFD f 0012 20140602133526 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905836           SFD f 0012 20140602133540 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602144313 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602144350 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602144430 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602150202 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140602150208 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140603080634 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140603081006 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140603083952 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905838           SFD f 0012 20140603084005 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603091608 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603091617 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905842           SFD f 0012 20140603091826 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603093805 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603101944 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603102709 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603114753 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603121948 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603122039 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603123438 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603135937 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603140114 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603140233 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603140339 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603141743 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905840           SFD f 0012 20140603150924 default_user BASIS@ORIGIN SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603152403 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603152753 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603153518 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603162013 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603162544 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603162639 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603162755 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603163347 default_user A559420      SSC2PAS3SFWBW                    
    ERROR SFDK905844           SFD f 0012 20140603163740 default_user A559420      SSC2PAS3SFWBW                    
    Rgds,
    Ashok

  • Error:        Test call of transport control program (tp) ended with return

    Hi Experts,
    When we are trying to transport Request.
    Error:        Test call of transport control program (tp) ended with return code 0208
    in STMS what are the steps to fallow to just back up the code.
    Any Solutions is Greatly Appreciable...
    Thanks in Advance,
    Ram,

    RAM,
    check these links
    http://www.sapfans.com/forums/viewtopic.php?f=12&t=326264
    Re: tp ended with error code 0208
    Please post the question in relevant forums
    Thanks
    Bala Duvvuri

  • Error: Test call of transport control program (tp) ended with return code 0

    Hi Experts,
    When we are trying to transport Request.
    Error: Test call of transport control program (tp) ended with return code 0208
    in STMS what are the steps to fallow to just back up the code.
    Any Solutions is Greatly Appreciable...
    Thanks in Advance,
    Ram,

    Hi,
    a)If your system is UNIX check /usr/sap/trans is mounted or not?
    b)After configuring TMS did you save and activate?that can be one reason.
    c)tp might be corrupted.u need to upgrade your tp. (or you can upgrade to the latest kernel)
    Please check the below link
    could not start transport control program tp
    However as suggested by NIbu, you should restart the server once before doing any other checks
    Thanks
    Debdeep
    Edited by: Debdeep  Ray on Jul 13, 2009 4:28 PM

  • Test call of transport control program (tp) ended with return code 0249

    Hi,
    When i release a TR i get the following error
    Pls let me know of what can be the reason for the same
    I did a kernel upgrade 2 days back
    Test call of transport control program (tp) ended with return code 0249
    Message no. TK094
    Diagnosis
    Your transport request could not be exported, since all requirements were not fulfilled.
    Calling the transport control program tp
       "tp EXPCHK BWDK900308 pf=
    WDBSSAPBWD01\sapmnt\trans\bin\TP_DOMAIN_BWD.PFL -Dtransdi"
    which checks the export requirements, returned the following information:
    Return code from tp: 0249
    Error text from tp: ERROR: No connect due to DbSl Load Lib Failure
    System Response
    Further processing is terminated.
    Procedure
    Check the following points:
    u2022     Feasibility of the transport control program tp
    u2022     Parameter settings in the transport profile
    u2022     Availability of the transport directory and the subdirectories (cofiles, data, log, sapnames, bin)
    u2022     Write authorization for the subdirectories
    u2022     Write authorization for the files of the subdirectories cofiles, data, log, sapnames
    Release the request again when the error has been removed

    Hi Balaji,
    End of your question contains the areas to be varified.
    Your SAP seems to be installed in windows environment
    Check transport profile paramater and file permissions.
    Try to browse the directory
    WDBSSAPBWD01\sapmnt\trans\bin\ from start->run
    Check with tp connecting to DB  with tp connect <SID>
    chceck file permission to datafile and cofiles (in case of OS UNIX)
    Regards,
    Ganesh

  • How do I test a scenario without getting the other party involved

    Hi,
    How do I test a scenario without getting the other party involved?
    I have created a scenario to receive information from an external system (Remedy), processing through a SoapAdapter into SAP to create a service order. How can I send a sample of information in order for me to test my scenario without asking the Remedy people to transmit data all the time?
    Thanks in advance,
    Leanne

    hi Leanne,
    have a look at my weblog:
    /people/michal.krawczyk2/blog/2005/08/25/xi-sending-a-message-without-the-use-of-an-adapter-not-possible
    it shows how to use the test tab from RWB
    to send test messages
    Regards,
    michal

Maybe you are looking for

  • I-tunes taking over DVD drive

    Whenever I install or upgrade i-tunes it takes over the DVD driver so that the DVD drive does not show up on my computer. This has happened before and just uninstalling the driver in Device Manager does not work. Dell have fixed it before for me by u

  • Creative Cloud Update Error 205

    Good morning. I have had Creative Cloud Desktop app running smoothly until recently when I started to get the Error 205 while updating through the app. It always stopped at 12%. Additionally, I have uninstalled the app and gotten the same error as I

  • Pages export to ePub and retaining italics

    Is there a method to retain italics when exporting to ePub? Thanks

  • Tint2 opacity with panel_dock

    Hi, i've just installed openbox (again) to play around a little. I'm trying to get transparency working with no success. I'm using pcmanfm to create my desktop and i've set a wallpaper with it - cairo-compmgr is doing the composite stuff right now. N

  • Recovery Manager Asking for 5 Disks! HP G56-118CA

    Hi.  Hopefully someone can help me. To replace a corrupted HD, I did the following: 1) I created the factory installed Win 7 resore disks (4 in total). 2) Wiped my drives (not formatted, but wiped) for disposal security. 3) Replaced old HD with new H