What should be the Server Port No??

Hi All,
          While Configuring SSO between EP 7.0 & ECC 6.0,in one step we need to create a System object for ECC in EP.There we need to give some details like these
SAP SYSTEM ID (SID):
SAP SYSTEM NO.
Server Port No:3201??
SYSTEM Name:
System Type:
Web AS Host Name:
I am in doubt with the server Port no??One of my associates is saying that it is 3201 but he cannot explain it.our ECC CI number is 01 & SCS is 00.Why it is 3201??

Ashley,
Pleae find the link below.
[https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4e515a43-0e01-0010-2da1-9bcc452c280b]
Manoj

Similar Messages

  • I dropped my iphone 5 in the water, its dead and when I try to charge it the apple logo comes and goes, thats my only sign of life, I've done many after market repairs but what I want to know is if I should replace the ligntning port or the battery

    I dropped my iphone 5 in the water, its dead and when I try to charge it the apple logo comes and goes, thats my only sign of life, I've done many after market repairs but what I want to know is if I should replace the ligntning port or the battery... or just buy a galaxy s5?

    If you dropped it in water, and then plugged it in, you may very well have destroyed the battery and/or the logic board.  Charging/plugging in to a power source is very damaging to wet electronic devices.  There is not much you can do but replace the entire iPhone...and since you did repairs yourself Apple will not do an out-of-warranty replacement.
    You can try replacing the battery, the lightning port is another issue, but I would not expect that iPhone to work again.

  • What should be the Swap size....?

    Hi All,
    We are working on:
    EBS : R12.1.3
    OS :OEL 5.4
    RAM: 32 GB
    Current Swap : *34 GB*
    Above is my Environment, could some one suggest what should be my Server Swap partition size..?
    below is the output for the TOP command.
    top - 15:54:16 up 92 days,  9:12,  2 users,  load average: 0.01, 0.08, 0.08
    Tasks: 512 total,   1 running, 511 sleeping,   0 stopped,   0 zombie
    Cpu(s):  1.7%us,  0.4%sy,  0.0%ni, 97.8%id,  0.0%wa,  0.0%hi,  0.1%si,  0.0%st
    Mem:  32940908k total, 20679504k used, 12261404k free,   350320k buffers
    Swap: 34996216k total,    36972k used, 34959244k free, 16785144k cachedThanks
    Raghu

    You may find the following link intersting:
    http://www.cyberciti.biz/tips/linux-swap-space.html
    Recommendations for Redhat 5 (same applies to oracle linux):
    Systems with 4GB of ram or less require a minimum of 2GB of swap space
    Systems with 4GB to 16GB of ram require a minimum of 4GB of swap space
    Systems with 16GB to 64GB of ram require a minimum of 8GB of swap space
    Systems with 64GB to 256GB of ram require a minimum of 16GB of swap space
    In a worse case scenario you can also use a swap file instead of a swap partition.
    http://www.cyberciti.biz/faq/linux-add-a-swap-file-howto
    Btw, the questions might better be placed in the Oracle Linux forum:
    Oracle Linux

  • What should be the host mailserver

    Hi everyone,
    I am testing the odisendmail. It throws an error
    avax.mail.SendFailedException: Sending failed;
    nested exception is:
         javax.mail.MessagingException: Unknown SMTP host: smtp.mail.xx.com;
    nested exception is:
         java.net.UnknownHostException: smtp.mail.xx.com
         at javax.mail.Transport.send0(Transport.java:218)
         at javax.mail.Transport.send(Transport.java:80)
         at com.sunopsis.dwg.tools.SendMail.actionExecute(SendMail.java)
         at com.sunopsis.dwg.function.SnpsFunctionBase.execute(SnpsFunctionBase.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execIntegratedFunction(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlS.treatTaskTrt(SnpSessTaskSqlS.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    I know that there is a problem with my host server. My question is if i need to test this thru my laptop what should be the values for host: from and to:
    Please suggest.
    Regards
    Babul

    host : mail.yourcompany.com
    to : [email protected]
    from : [email protected]
    The above assumes that your mail server allows unauthenticated emails.
    Also read this article to test if a mail server is reachable using any computer:
    http://asktom.oracle.com/pls/asktom/f/f?p=100:11:0::::P11_QUESTION_ID:2118740358226

  • How to get the server port and id from the Initialcontext

    hi
    i know that i can get the server port and id where the jndi service is listening from the InitialContext ( when i create InitialContext ic = new InitialContext(); from within a EJB. ). Does this work on any application server and where (at what position is for example the port) in the Enumeration at the ic are the different things put?

    I would usually just get the PROVIDER_URL property from the InitialContext and use that to determine the location of the naming service:
    String providerURL = (String)ic.getEnvironment().get(Context.PROVIDER_URL);You'll then need to parse that string to obtain the port and the server name. For example:
    // Assume that the provider URL is of form "protocol://server:port"
    int serverStartIndex = providerURL.indexOf("://" + 3);
    int serverEndIndex = providerURL.indexOf(:, serverStartIndex);
    String server = providerURL.substring(serverStartIndex, serverEndIndex);
    String port = providerURL.substring(serverEndIndex + 1);It's a fairly universal approach but there'll doubtlessly be some special cases (for example, the provider URL could be null and the InitialContextFactory class defaults it).
    You might have to adjust the server/port parsing stuff a bit as I just made that up and your URL might not conform to the pattern I described.
    Hope this helps.

  • I am trying to set an open DNS using the MacAir. But when I tried to flush the existing one at utilities/terminal, it will not work.  I am using Yosemite.  May I know what should be the command line so that I can shift to an open DNS?  Thanks

    I am trying to set an open DNS using the MacAir. But when I tried to flush the existing one at utilities/terminal, it will not work.  I am using Yosemite.  May I know what should be the command line so that I can shift to an open DNS?  Thanks

    >SystemPreferences>Network>DNS

  • How do I add a movie from my laptop to iTunes, what should be the file extension.

    How do I add a movie from my laptop to iTunes, what should be the file extension.

    The extension is usually .mov, .m4v, or .mp4.   But you can't just change the extension.  The movies have to be encoded in a particular fomat.  Anything downloaded from iTunes or plays in Quicktime player will be fine.

  • How can I find out the server port for a secured FTP site and creating a FTP Connection Manager

    I have to create a FTP Task to go out and get the files that our 3rd party vendor will be dropping on a secured FTP site. I have all the credentials to access that Secured FTP Site and have successfully done so through FileZilla.
    Now I need to set-up a FTP Task to go out and get their files and in so doing create a FTP Connection Manager. Is there any way I can determine the
    Server Port number from the Secured FTP site? I let it default to 21 and tried the Test Connect and it failed.
    Thanks for your review and am hopeful for a reply.

    Hi ITBobbyP,
    SSIS has a built in FTP task, while this only works for the FTP protocol, it doesn’t support SFTP. But there are some free clients like WinSCP and
    SSIS SFTP Task Control Flow Component
    available in the CodePlex which can invoked from SSIS.
    References:
    SSIS SFTP Task Control Flow Component approach
    WinSCP approach
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • What should be the quality of video and audio for bandwidth 768KB

    Hello Friends
    We are provoding 768kB bandwidth for our connection. Can any body tell us what should be the quality of video and audio we can set that does not effect frame rate which is 24 FPS.
    thanks in advance.

    Hi Samir
    You could try out the bitrate calculator at http://www.adobe.com/devnet/flash/apps/flv_bitrate_calculator/ . It lets you try various encoding settings to see what fits best for the bandwidth available to you.
    Regards
    Mamata

  • What should be the data type for a field in ztable?

    i am desing a ztable , wht should be the datatype for a field if i want to enter values like -1.5 and -2.5 , negative values with decimals what should be the data type???

    declare as P type. TYPE P DECIMALS 1
    Type P data allows digits after the decimal point. The number of decimal places is generic, and is determined in the program. The value range of type P data depends on its size and the number of digits after the decimal point. The valid size can be any value from 1 to 16 bytes. Two decimal digits are packed into one byte, while the last byte contains one digit and the sign. Up to 14 digits are allowed after the decimal point. The initial value is zero. When working with type P data, it is a good idea to set the program attribute Fixed point arithmetic.Otherwise, type P numbers are treated as integers.
    You can use type P data for such values as distances, weights, amounts of money, and so on.
    Also check this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/content.htm
    Regards,
    Maha

  • What should be the approach to perform these tasks?

    I am working on an AIR Desktop application (With Flex) which reads data from some XML Feeds, this data is feed for a Discussion Forum.
    1. I need to store the records from XML Feed into local Database.
    2. Need to check periodically (every 15 minutes) for updates in XML Feed.
    3. Compare XML with Database, and:
         1. Add new forum Threads (Items) to database,
         2. Mark closed on the threads (Items) removed from XML.
         3. Update database if Threads has been updated/modified.
    I hope my requirement is clear, now my question is: What should be the approch to perform these tasks?
    Best Regards,
    Alok Jain

    Echo
    Any Help Please...

  • What should be the procedure for  export parameter in CATT

    Hello Everybody,
    I am working with CATT, and the transactions are <b>ME21N</b> and <b>MIGO</b>.
    when i am executing the transaction <b>ME21N</b> i will get the <b>Pur Ord No</b>in the message, and i would like to export <b>Pur Ord No</b> to the transaction <b>MIGO</b> as thr is one field named Purch.ord no in Migo.
    what should be the Procedure for exporting a parameter?
    Thanks,
    Regards Afroz

    Hello Afroz,
    If you are using eCATT then following is the procedure of capturing messages in the two recording methods - TCD & SAPGUI.
    => TCD Recording Mode:
    In TCD recording mode, after dobleclicking on Interface name from the TCD command in the editor on left side, just before the MSG folder DYNPRO folder will appear on right side.
    -This DYNRPO folder contains the screen sequences contain the screen occurred during recording time. The last Dynpro of this folder contains the messages occurred during recording.
    -Select this last folder & click on Simulate Screen icon of the same Interface editor. It will redirect to the screen where the message values exist. There select the Purchase Order Number and click on Read Field Value icon. Give the name of Export Variable.
    The export variable will contain the value of the purchase order number, which can be passed to MIGO.
    => SAPGUI Recording Mode:
    In the SAPGUI recording mode, the screen on which the message appeared will be used to capture the variable name, which is Purchase Order Number in this case.
    If the Purchase Order Number is second variable of the message displayed(e.g. Purchase Number 2122323 Is Created)
    then use the following code -
    e.g.
    MESSAGE ( MSG_1 ).
    SAPGUI ( ME21N_4001_STEP_5 ).
    ENDMESSAGE ( E_MSG_1 ).
    Assing the value from the message to the export
    parameter
    P_EC_PurOrdNo = E_MSG_1-[1]-MSGV2.
    There are total four MSGV1-MSGV4 variables. Dobule click on MSG_1 of the MESSAGE statement above. Putting the value in the export variable from the right message variable will give the purchase order number.This can be passed as MIGO.
    Regards

  • What should be the strategy to going to Windows 10?

    Dear Win10 community,
    Next year could be a great year for my client, we are involving an important transition that will affect systems and devices. One important strategy is move to Windows 10 from PC, Tablet, Mobile to Mobile rugged devices. My client is now on Windows 7 and
    applications are designed for Windows 7. My questions are:
    What should be the best strategy for my client to move to Windows 10, I should recommend to update to Windows 8.1 and after windows 10?
    All the application designed for Windows Store, Windows Universal will be valid for Windows 10 or will need rebuild it?
    What device providers are working for windows mobile 10 rugged, in terms of barcode scanner, printers, RFID readers?
    What will happen with the windows 8.1 embedded industry program, how will impact to windows 10?
    Thanks
    Microsoft Digital Enterprise Solution Lead Altran

    your question is too early for an appropriate answer. 
    1. i think you should move from windows 7 to windows 10 directly. 
    2. windows universal app is recommended by Microsoft for building windows 10 app.
    3. windows 10 for mobile has not yet been introduce, as of now, their's no information on your question.
    4. i believe windows 10 will have embedded edition, also not yet introduce. moving from windows 8.1 embedded to windows 10 embedded should not have a large impact. we just have to wait for their announcement for embedded.
    my suggestion is to wait for their announcement for embedded and mobile by next year, maybe on CES or later date.

  • HT1296 I have the original iPhone and I can't sync the address book from my Mac to the iPhone. What should be the problem and can I sync?

    I have the original iPhone and I can't sync the address book from my Mac to the iPhone. What should be the problem and can I sync?

    Thanks a lot for the answer. I'm so upset, have no even one contact on my phone. I has to do with the moving to iCloud from MobileMe.
    I did exactly what you wrote, and when trying to click the vcf file on the iPhone the screen freezing, and then after few long seconds it goes alon to home.
    So I tried less contacts in a Vcard, and i'm dividing my address book, doing little by little and it work.
    Thank you so much.
    I still dont get why the sync with my computer address book is not working.
    And why when I moved to icloud all the photos I had next to the contacts are disappered.
    I had my iPad, which it still, I did not move from MobileMe to iCloud and all the photos are there!
    Anything I can do to use the iCloud on the iPad as well and update the iCloud with the photos?

  • What should be the MSS version ????

    Hi,
    Hi I have installed my ESS 6.0 business package SP 11 on my development Enterprise portal 7.0 SP 11.
    The XSS file I used for this installation was :-
    PCUIGP of SP11
    ESS of SP 10_10 (bacause SP11 SCA's was giving errors at the time of installation,so as per the recommendations we installed its SP 10)
    Going further,I installed the NWDI of SP11 on the same host of my EP SP11 as another SAP instance.
    In this developers have already started building their tracks and source codes/configurations and did import & all.
    Now in our landscape,request for MSS installation on the same dev EP7.0 has come.So my questions are:-
    1) What should be the version of Business package MSS. should it be 10 or 11 ?
    2) If,I am installing the business package of MSS of SP11 then what should be the version of XSS files for MSS..should it be 10 or 11.
    3) For MSS of 11 version.will there be any compatibility issue with ESS,as my XSS for ESS is at 10 ?
    4) If require,is it possible to upgrade my ESS now from 10 to 11? will it be safe now?
    Kindly please reply to me as early as possible.
    Regards
    Saurabh Sharma

    Hi Abhishek,
    1.As i said,we have already started customizing the webdynpro source code on xss-ess 10 in nwdi track,so would it be advisable to upgrade to xss-ess to SP11and then do the fresh installation of MSS SP11,as all our changes will be lost?
    Yes, if you upgrade, all your customization will be lost.
    can we go for repair connection between 10 & 11 in this case?
    I dont know whether I understand your query or not. Refer sap note 872892. Refer the pdf which is attached to this note and then create the required tracks. Then you can find out all your changes in SP10 that you had done and can apply same in SP11 or SP13 whichever you will upgrade to.
    2.As I told you that my WAS(EP) is at SP11,so I have one question,moving forward if we upgrade our ESS and MSS to SP13,will I have to upgrade my EP also to SP13?
    Yes, it is fine to have ess, mss at SP13 even though EP is at SP11.So no need to upgrade EP.

Maybe you are looking for

  • Advice for a desktop replacement.

    I have a 2008 Intel iMac with 500 GB hard drive, running updated Snow Leopard and a 2008 MacBook, also running Snow Leopard. I want to buy a MacBook Pro w/ retina display to replace both computers: Will the MacBook Pro w/ retina display + NVIDA do th

  • BADI WORKORDER_UPDATE - creation of PO

    Hi, I am trying to create a purchase order using the method IN_UPDATE in BADI WORKORDER_UPDATE. I am using the BAPI BAPI_PO_CREATE to create the purchase order. However transaction IW32 abends when the BAPI is called with either of the following mess

  • UDF fields missing in Deployment Manager User Metadata export wizzard

    Hi, When I try to export UDF-s using Deployment Manager, not all UDF-s appear in the Deployment Manager wizard step1 Search list for User Metadata type. It seems that UDF Lookup type-s are not included. Also, some text type UDF-s are missing as well,

  • Tomcat 4  +  Apache 1.3.2  + mod_jk.dll?

    Ok, I've installed Apache and Tomcat both, and I'm able to get them running separately fine, Now i'm trying to get them to run together. My problem lies in that Tomcat 4 doesn't generate the .conf files that you generally modify and include in apache

  • ITunes top songs differnet on hope page than when you go to it

    On iTunes store's home page it shows these songs but when I click on the little arrow pointing to the right to see the full list of songs, it has a completely different list. See, So anyway is there a way to report the error because when I clicked on