Issues on Messages

Hi,
1. I have one message holding in adapter engine for longer time, even when try to resend the message, it is still showing holding status, but other messages of same interface are successful.
2. I have one message in adapter engine in Delivering status for longer time and unable to resend or cancel the message.
What could be the reason for the above cases.
Thanks,
Ram Narender.S

Hi,
Channels are working fine.
Thanks,
Ram Narender.S

Similar Messages

  • HT1926 Installing iTunes 11.1.4 on windows XP issues warning message: Service "Apple Mobile Device' failed to start. starting iTunes shows MSVCR80.dll not found.

    Normal update of iTunes to 11.1.4 fails. Suggests installing from web site
    I install from iTunes.com. Install issues the messages:
    Service "Apple Mobile Device' failed to start.
    Verify that you have sufficient privileges to start system services
    I do have necessary privilegs. I hit ignore. See window with successful install come up and finish with launch. I get the messages:
    iTunes was not installed correctly.
    Please reinstall iTunes
    Error 7 (Windows error 126)
    Tring to start iTunes from desktop gives:
    This application failed to start because MSVCR80.dll was not found
    Re-installing the application may fix the problem.
    Further repair or remove/reinstall does not fix the problem (including after reboot)
    Thie is the first time this has happened. I'm not sure where to go from here
    Thanks for any help.

    Earlier suggestion worked. That is, Use software add/remove to delete all 5 iTunes applications:
    Apple Application Support
    Apple Mobile Device Support
    Aple Sortware Update
    Bonjour
    iTunes
    Reboot and install/

  • Issue error message in a pop-up window

    Hii experts,
    How do I issue a message in a pop-up window in a normal report programming? For eg if i click on particular box in SAP graphic, a message window should come up with some information about that box.
    Thanx in advance

    Hi ,
    First track the event let say at line selection(in case of reports)
      then use 
    CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
          EXPORTING
            endpos_col         = 80
            endpos_row         = 25
            startpos_col       = 1
            startpos_row       = 1
            titletext          = text-300
      IMPORTING
        CHOISE             =
          TABLES
            valuetab           = l_return
         EXCEPTIONS
           break_off          = 1
           OTHERS             = 2
    Append the errors in l_return.
    l_return is of type below:
    DATA: l_return LIKE bapireturn OCCURS 0 WITH HEADER LINE.
    Thanks & Regards
    Ruchi Tiwari

  • Foreign Character Issue in Messages sent to MQ Series Queue

    Hi Experts,
    We are having a IDOC to JMS Scenario.We receive the IDOC and Convert it into a Single Line Flat File using a JAVA Mapping.We send the flat file message to MQ series 6.0 Queue using a JMS adapter.
    We are facing issues when message contains foreign character like Chinese , German and Greek.
    The Input\Output payload looks fine in SXMB_MONI and in the JMS Channel payload. when the message is put in the MQ Series Queue. When we open the messages in the JMS Q, the Foreign Character looks as "?????".
    PFB some details on the Java Code and other Config Settings.
    1. We read the messages from the Input Stream as UTF-8 and do the Transformation and Write the Output as UTF-8
    we use writer class to write the output after conversion (shown below).
    Writer osw = new OutputStreamWriter (osOutput,"UTF-8");
    2. The MQ series is in UNIX box and CCSID of the Queue Manager is 819.
    we have set the CCSID of the JMS channel 819.
    can you please clarify in case any transformation is happening before placing the message in the queue and how to we handle this case from the channel or in the Java code.
    Some Sample Character are u0395u03A3u03A4u0399u0391u03A4u039Fu03A1u0399u0391-u03A4u0391u0392u0395u03A1u039Du0395u03A3-u039Au0391u03A6 , u039Au039Fu039Du0399u039Fu03A1u0394u039Fu03A5 u03A7u03A1u03A5u03A3u0391 , and some Chinese Characters too

    Hi All,
    Thank you all . My problem is not resolved yet
    I have one more useful info.
    I set the Transport Protocol as TCP\IP and Kept the JMS Compliant as WebsphereMQ (Non-JMS) in JMS Channel Parameters TAB. In additional Parameters TAB i have set  "JMS.TextMessage.charset"     as ISO-8859-1.In this Setting, The Characters looks perfectly fine when i browse and view the messages in MQ Series Q. Messages are sent in MQSTR format, where the message has no header value.
    Intially i had set JMS Compliant Field as "JMS Compliant" with additional param TAB set as ISO-8859-1, where the message is sent in MQHRF2 format containing header details. i also configure dynamic header values using AF_Modules to this header. Special Chars didnt work.
    Now in MQSTR due to missing Header values the messages are not being identified and routed properly by the end system from the MQ series. 
    Now i need to find the missing loop, what happens when message is sent using WebSp MQ API's (MQSTR) and Java API (MQHRF2). I need to have MQHRF2 format with Messages body sent exactly as it is in MQSTR. Is there any parameter, which i need to set.
    can anyone help me in this  regard.

  • How to issue warning message in BADI ME_PROCESS_PO_CUST

    Hi Guys,
    I have already checked the forum regarding this. There are lots of threads. Unfortunately none of them helped me. I must be missing some thing in my code.
    I tried issuing warning message in BADI ME_PROCESS_PO_CUST and method PROCESS_ITEM.
    First i tried with normal message statement
    MESSAGE w001(00) WITH text-001 text-002.
    Didn't worked.
    Next tried calling standard macros
      DATA:mmmfd_cust_01 TYPE mmpur_metafield VALUE 90000000.
      call method cl_contextfield_mm=>set_current_field
                                      exporting im_field = mmmfd_cust_01.
      mmpur_metafield mmmfd_cust_01.
    mmpur_message_config 'W' 'X' ' '.      "Tried all permutations here
    mmpur_message_forced 'W' '00' '001' text-001 text-002 '' ''.
    Still no solution
    Tried with macro mmpur_message also
    Can some one helpme out to solve this issue.
    Thanks,
    Vinod.

    Hi all,
    Thanks for the responce.
    Not sure whether you have looked into BADI documentation or not. Please check below.
    "Further notes
    The above-mentioned macros are defined in the program MM_MESSAGES_MAC. Please include this program in your own application.
    Never issue messages in BAdI ME_GUI_PO_CUST! This is the task of the business logic and must therefore be done via the BAdI ME_PROCESS_PO_CUST.
    "Never use the ABAP statement MESSAGE in the BAdI ME_PROCESS_PO_CUST. Please use the macro mmpur_message_forced only. This macro only writes a message in the message collector.
    If you wish to mark the business object as invalid in order to prevent posting, you must additionally use the INVALIDATE ( ) method of the relevant interface. In this connection, see also the code example in the PROCESS_ITEM method of the BAdI ME_PROCESS_PO_CUST.
    I have tried almost all macros including mmpur_message_forced 'E' 'ME' '083' l_text ' '  ' '  ' '.
    Not sure where i am missing:(
    If i give error using MESSAGE statement it is working perfectly i.e. give error and save the PO. Only wanted to know if there are any implications.
    Thanks,
    Vinod

  • Issue with Message Type Triggering during Inbound Delivery Creation

    Hi Experts,
    Hi Experts, 
    Currently we are facing issue with message type triggering during inbound delivery creation:
    In NACE transaction for Inbound delivery we have 3 custom output types:
    Pricing Procedure Used is standard one -> E10001
    Z140  Inbound Delivery Create  (This should get triggered when IB delivery is created)
    Z141  Inbound Delivery Change (This should get triggered when IB Delivery is changed)
    Z142  Inbound Delivery Delete(This should get triggered when IB Delivery is deleted).
    At present if i check delivery in  VL33 -> Extras -> Delivery Output
    Both  Z140 and Z141 are being triggered during IB delivery creation. While it should be only Z140.
    Could you please suggest that are we missing any configuration in SPRO or we need to create any custom routine (requirement) to handle this?
    Thanks

    Hi,
    There is no fine-tuned control for inbound delivery messages as for Purchase order. Hence I guess to meet your above requirement, you have to go for a custom solution similar to the PO fine tune control settings.
    Thanks,

  • Issues with Messaging Manager in ATG 10

    Hi,
    We are facing an issue with messaging manager. In weblogic we have configured datasource as 'coreDataSource', somehow MessagingManager is looking for coreDataSource_shop and throwing error that Datasource is not available?
    How to resolve this? I am using ATG 10.3 and Weblogic 10.3.5.
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager     limbo : error querying for messages     CONTAINER:atg.repository.RepositoryException; SOURCE:java.sql.SQLException: Unexpected exception while enlisting XAConnection java.sql.SQLException: XA error: XAResource.XAER_RMFAIL start() failed on resource 'coreDataSource_shop': XAER_RMFAIL : Resource manager is unavailable
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager     oracle.jdbc.xa.OracleXAException
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at oracle.jdbc.xa.OracleXAResource.checkError(OracleXAResource.java:1110)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at oracle.jdbc.xa.client.OracleXAResource.start(OracleXAResource.java:240)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.jdbc.wrapper.VendorXAResource.start(VendorXAResource.java:50)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.jdbc.jta.DataSource.start(DataSource.java:729)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.transaction.internal.XAServerResourceInfo.start(XAServerResourceInfo.java:1231)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.transaction.internal.XAServerResourceInfo.xaStart(XAServerResourceInfo.java:1164)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.transaction.internal.XAServerResourceInfo.enlist(XAServerResourceInfo.java:285)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.transaction.internal.ServerTransactionImpl.enlistResource(ServerTransactionImpl.java:522)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.transaction.internal.ServerTransactionImpl.enlistResource(ServerTransactionImpl.java:449)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.jdbc.jta.DataSource.enlist(DataSource.java:1599)
    **** Error     Tue Nov 29 04:28:20 IST 2011     1322521100638     /atg/dynamo/messaging/MessagingManager          at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1503)
    Thanks
    Gopi

    still the issue is exist.
    At one point of time, Database is not able to provide connection for coreDataSource. After that shop is trying to get connection from JNDI coreDataSource_shop, which is not available in weblogic.

  • Planned quantiti is lower than issued QTY [ Message 3702-19]

    Hi all
    Have a red message error that say  Planned quantiti is lower than issued QTY [ Message 3702-19]  this is SAP V 8.8 SP0 PL17, if some body know which is the source of this error.
    Thank a lot.
    Ricardo Castro

    Hi,
    Can you check whether the Item for which the error is received is entered in negative quantity in the Production Order?
    Can you check whether the item for the error is a item Managed by Serial/batch Number?
    If the answer to both question is yes, then I would request you to kindly check the same settings in the Demo and check whether the error is displayed or not.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • OIM 9102 Issued Audit Message null pointer

    Hi All,
    I have a 9102 system with an empty upa_ud_formfields table. We tried running the Issue Audit Message job (which was disabled for some reason) and got a NPE.
    I found the same thing here but never answered.
    Re: Audit reports in OIM 9102
    any help would be appreciated.
    Thanx
    Fred

    1. XL.EnableExceptionReports needs to be set to TRUE and XL.UserProfileAuditDataCollection needs to be set to Resource Form.
    2. In the Audit Report Developers Guide, section 5.3.1 Using the UPA Form Data Upgrade Utility, you need to perform the steps to enable the usable of these fields (http://download.oracle.com/docs/cd/E14049_01/doc.9101/e14045/reporting.htm#CEGFCIAD).
    3. Restart Server.
    -Kevin

  • Differences between Issue and Message?

    Hi all,
    Can anyone know the exact difference between issue and message? 
    In testing perspective, which one should we post?
    Regards,
    Vijaya Bhaskar

    Hi Vijaya,
    The difference starts in the concept.
    Issues are meant to handle project problems, like lack of human resources, lack of expertise, go-live strategy decision, that is all problems that are mainly linked to a managerial decision/order and can have impact on business.
    Messages are meant to handle system problems, like printer not working, message error when saving a purchase order, lack of authorizations,etc.
    Because of these differences, also the funcions available for each one and the workflow will be different.
    Hope this could make this more clear to you.
    Regards,
    Val

  • Poor connection issue sends message "Verizon customer is not available" to callers rather than to VM!

    My phone is my business.  It's the only way I have for clients to reach me to schedule appointments.  Most of my clients are new at this point.  While my latest of 5 replacement phones don't drive me AS crazy with connection issues, it's driving my husband crazy as he daily gets told I'm not available and can't even leave a voicemail (which is usually yelling at me to dump this piece of crap phone).  If he gets that message daily, I wonder how many clients I'm losing from getting the message as well!!  With corporate discounts of 25%, I have still spent over $450 on this phone, all but the screen saver at the Verizon store.  I was given the option of "upgrading" to a Razr last time.  PLEASE!  The CR tried telling me it was newer (don't think so, pretty sure it was on the display right next to my Nexus in Dec), better camera (very debatable, and with much lesser quality screen, who cares about more mp?!), and that I bought my phone 8-9 months ago but it had been available much longer.  Umm, I bought it the week it was released.  I don't think 2 days can be considered "much longer".
    I'm going to try the switch to straight CDMA that seems to work for some with connection dropping, because I can't afford clients getting that message (they understand being sent to voicemail if I'm in a session), but... I bought this phone with a price tag of $299, paid another 99 for insurance, screen saver, gel case, extra battery and charger when my first phone port was shot after 7 months waiting for replacement, and luckily haven't bothered w/ screen savers for the weekly replacements or I'd have to add another $100 to the cost.  This is a flagship phone with a flagship starting contract cost, and the best they can do is send out refurbs that have the same issue over and over.  My guess is the turnover is so great they don't go through the normal testing and repairs of typical refurbs.  Take these refurbs off the market when they're returned with bad radio!  I'd consider a GS3, Razr Maxx, or maybe even the upcoming RazrM (though that would def be a downgrade considering the starting cost and we don't know yet of what issues it will have, but I like the size and battery life), though it sucks that I'd be spending another $50 just on case and screen saver.
    Anyone else experience the unavailable issue and get it resolved? I'm so tired of calling tech support.  And why can't they just put the phone number right on the "contact us" page like normal companies??

        I certainly understand the need to have an operable device!  Please DM me your name and mobile number, so I may further assist you.  Thank you!
    TominqueB_VZW
    Please follow us on Twitter @VZWSupport

  • HT3529 Issue with messaging and icloud after ios7.1 update. Need Help!!!

    My husband and I have been having problems with our iphone 5c since the ios7.1 update. We can't seem to send messages to each other now without incurring data charges, because our icloud messaging seems to have both phones synced to my itunes account. I have tried logging into itunes under each of our user id and syncing our respective phones to them, but it is not working. Any Ideas on what to do to fix this?
    When we updated last week on Friday, we had other problems with loss of ringtones, no calls coming through do to the do not disturb feature being fully enabled and no alert to incoming calls while phone is locked. Spent a good hour on the phone with support and didn't resolve, tried resetting, rebooting etc. We ended up in an apple store on Saturday, where the guy got the ringtones, etc. working, but disabled our messaging and when tryng to sign back in, we found both phones linked to my itunes account. Since then, having problems with messaging... At a loss as to what to do now.

    Thanks. We did do all of that, and still kept having problems. I finally figured it out about 5 minutes after I posted. After signing each phone into respective itunes accounts and setting up all of the messaging features to sign into the same, I had to disable the "send as sms" feature inside messaging. Once I was able to force routing text messages addressed to his phone back through imessage from turning this off, my phone finally recognized his imessage seperate account and let the message go through properly. After a couple of tests, then I enabled the "send as sms" again, and it seems to be working fine.
    This update has really been a pain, caused us several issues this go around.

  • Adobe Acrobat Reader 9.1.3 issuing error messages in Windows 7

    Acrobat Reader 9.1.3 is issuing the following error in the event log viewer for Windows 7 (64 bits):
    Activation context generation failed for "c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll".Error in manifest or policy file "c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll" on line 3. The value "MAJOR_VERSION.MINOR_VERSION.BUILD_NUMBER_MAJOR.BUILD_NUMBER_MINOR" of attribute "version" in element "assemblyIdentity" is invalid.
    No reply to this message is required. This message is provided to aid the Adobe Acrobat Reader developers in finding a solution. Thank you.
    Detailed XML message:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="SideBySide" />
    <EventID Qualifiers="49409">63</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2009-08-17T11:08:36.000000000Z" />
    <EventRecordID>6516</EventRecordID>
    <Channel>Application</Channel>
    <Computer>ALPHA_TAURI</Computer>
    <Security />
    </System>
    <EventData>
    <Data>assemblyIdentity</Data>
    <Data>version</Data>
    <Data>MAJOR_VERSION.MINOR_VERSION.BUILD_NUMBER_MAJOR.BUILD_NUMBER_MINOR</Data>
    <Data />
    <Data />
    <Data />
    <Data />
    <Data />
    <Data />
    <Data />
    <Data>c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll</Data>
    <Data>c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll</Data>
    <Data>3</Data>
    <Data />
    <Data />
    <Data />
    <Data />
    <Data />
    <Data />
    <Data />
    </EventData>
    </Event>

    function(){return A.apply(null,[this].concat($A(arguments)))}
    pwillener wrote:
    Flying_Kiwi wrote:
     Dear Adobe people ...
    This is a user-to-user forum; you do not address Adobe staff here.
    The original post was about an installation on a beta version of Windows 7, which was not supported at the time.
    If you have a problem with a different version of Adobe Reader on a different version of Windows 7, please open a new topic.
    I'd gladly address Adobe staff directly about it if they didn't make it so difficult to do so but there are notices galore on their website restricting the ways of doing so for this particular product. That said, I accept that they may not review these posts and act on bugs found (although why is beyond me, I know if I was a developer of software and I wanted it to be top quality, I'd be looking everywhere I can for sources of bugs having been found and I certainly wouldn't make it any more difficult than an ordinary bug submission on any other software to report it).
    It's clear to me that the problem originally posted about that shows up in Win 7 RC, is still present in the latest software and popping its ugly head up under Win 7 RTM. If they'd nipped it in the bud back then it should be fixed by now - that's annoying. I've been using online forums for a long time and I know it's always a good idea to search for a solution or similar thread and post in that if present, rather than opening an entirely new thread. As the bug is the same, the Adobe software version is very similar and the OS is just an earlier non-RTM version and there are no set forums for bugs within specific RTM vs RC/Beta OS's I posted here.
    I'm not going to start a new thread because if, as you say there's no addressing of Adobe Staff here (and you haven't mentioned you have inside connections and will pass it on) what's the point? I will make one phonecall to Abobe in an effort to report this but there needs to be more open ways of bug reporting, even if it is a free product.

  • Standalone (J2SE) adapter - axis SOAP adapter - issue duplicate messages

    All,
    Perhaps you can help me. I've setup a scenario where an standalone (J2SE) adapter sends a file to SAP XI channel, configured on the central adapter engine, of type SOAP configured to use Axis servlet.
    The connection is setup and the standalone adapter channel logs thre response from the SOAP channel which reads HTTP error 500, indicating a duplicate message.
    SAP has identified this problem and proposes in the FAQ for Axis (note 1039369) to set on the SOAP channel module CallSapAdapter property ignoreDuplicate to true in the module processor.
    I've implemented this as suggested however found the problem persists. I'm still receiving an HTTP 500 error.
    Your help is much appreciated solving this problem.
    Thanks
    Harald

    As there was a bugfix recently, make sure that you have installed the latest patch.
    If this does not work, open an OSS ticket for this issue.
    Stefan

  • Samsung Continuum Issues - Picture messages NOT displaying embedded images + Android 2.2?

    I recently purchased the samsung continuum a few months ago and have had a difficult time with the following two issues:
    The phone is NOT rooted.
    (1) Picture Messages are not displaying as embedded images in my message notifications. All i see is "Message Size and the word downloading.  The picture is only 10K, so it should download relatively fast.  The image does not appear in my gallery either.  Please help?  Where is the image and why can't i see it in my message.According to the notes in SCH-I400.DL17, this issue should have been resolved.     
    (2) How come the Contiuum has not received an update to Android 2.2?  The Fascinate and Continuum were both released at the same time and the Fascinate received the update.
    Here is my phone specs:
    Phone information:    
    Hardware version:  i400.0.6 
    Firmware version:  2.1-update1 
    Baseband version:  S:i400.0.6V.DL17 
    Kernel version 2.6.29 
    Build number:  SCH-I400.DL17    

    I don't understand how the Fascinate has Android 2.2, but is discontinued and the Continuum is still being sold new. What is up with that Verizon? I like the Continuum but would like to see it upgraded.  I still have over a year till I can get a new phone too. Very confusing.
    Sorry I can't help you with the picture messages as I don't have a solution.

  • Purchase Order Outbound Idoc issue. Message Type ORDER

    Hi Experts,
    I am having issue with outbound IDoc generated from Purchase Order.(Message Type ORDER and Basic Type ORDERS05)
    Issue is when i create PO idoc Segment  E1EDP01 and field ACTION populates as 001 this works fine.
    Now when made any changes to the purchase order.* PO trigers one more EDI - Idoc. but the ACTION field is stil as 002.*
    Could any tell me how to fix this.
    Cheers...Gopinath.

    Hi,
    Thank you.
    I have found the issue and fixed.
    Below three setting was missing same has been done in Partner Profile now ok.
    Message type u2013 ORDCHG, Processing Code u2013 ME11 and Change flag On.
    Cheers..Gopinath
    Edited by: Gopinath A.R on Oct 8, 2009 3:14 PM

Maybe you are looking for

  • Help. am lost trying to set up an email account.

    after almost 20 years of using the mac for artwork and a pc for office stuff, I've made the total switch to mac only. problem is setting up an email account. I had microsoft entourage working pretty good but just discovered that there is no hyperlink

  • Message app, any way I can back it up and read messages on other than my iPod Touch (4g)

    Yeaaaaaaaaaaaah. So I want to get my messages onto my computer (as in transfer convo's), but not willing to pay anything. Because the messages are sent to my Apple ID (my email) is there some sort of way of accessing them ? Frankly i think it's quite

  • How do you get your iPad 1 music to a newly purchase iPod touch?

    I would like to know how to get my music from my iPad 1 to a new iPod Touch? I don't have a computer that I can use to do this. I plan to buy some more music from iTunes and would like the music to be on my iPod so that I can play in my car. Thanks T

  • Queries on cluster installation with win2k3 & Oracle 10.2.0.4.0 for 640 rel

    Dear All, We are in a process installing sap clustered system for 640 basis release o win 2k3 with Oracle 10.2.0.4.0 However i have followed this steps as below.. Install windows on NODE-A & NODE- B, Update windows, Install required hotfixes which co

  • PAS and SSM 10.1 Connection

    Hi SSM Experts, I have already installed PAS and Strategy in the server, I also have PAS locally in a virtual machine, I have already configured de lsserver.ini document in the server: [192.168.2.212] tcp_protocol=winsock username=pipadmin Password=?