How to use Visual Administrator !!!!

Can some one tell me how to use visual administrator to view console out(System.out.println), I am trying to debug my application so if anyone can suggest some good debugging techniques

Hi Emmanuel,
Here some links - hope it will help you:
http://help.sap.com/saphelp_webas630/helpdata/en/b9/545e902c894a0cadf2ef3f888fcd59/content.htm
http://help.sap.com/saphelp_webas630/helpdata/en/d8/533251e56b584cbcf4a873c3bc8b39/content.htm
Could you be more specify and write your WAS version?
I suggest you use System.err.println instead System.out.println
Regards,
Roman.

Similar Messages

  • Warning while deploying using Visual Administrator

    Hi,
    I am using SAP MDM 5.5 and XI 7.0 and deploying MDM components using Visual Administrator.
    I have deployed the file MDMMatrixServer_1.0.ear successfully.
    Now when i am trying to deploy other 2 files i.e. MDMMatrixApp_1.0.ear and Attrib_Import_1.0.ear i get the warning:
    "<i>This application hasn't J2EE modules, so it cannot be loaded. Proceeding with deploy</i>."
    I tried deploying the files by using both the Server and Application options, but facing the same warning.
    Someone plz help me on how should i go with this warning.
    Regards,
    Chintan Sheth

    Continued with the warning and successfully deployed.

  • How to use HR Administrative Service sample (HCM prossess and form)?

    Hi Expert,
    How do we use HR Administrative Service sample( HCM prossess and form)? I already configured the ADS, now when i click HCM Process and From in the MSS (start process) a new screen pop up with nothing on it, just a header without content. Can somebody help me with this? Thanks
    Edited by: Hendri Salim on Jul 29, 2010 10:43 AM

    Hendri,
    check this link http://help.sap.com/saphelp_erp60/helpdata/EN/ea/b6b94278560c31e10000000a1550b0/frameset.htm
    Thanks
    Bala Duvvuri

  • How to use Visual Studio IDE in IAR compiler?

    Hi
    I want to use visual studio IDE in IAR like external editor. but I do not know how do that?

    Hi,
    Thank you for posting in MSDN forum.
    As you said the IAR, it seems that it is a third-party tool and we are not support it. So I suggest you can post this issue directly to the IAR official website:
    https://www.iar.com/Support/technical-support/ , maybe you will get better support.
    Thanks for your understanding.
    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.

  • How to use ODBC Administrator

    Hi,
    I want to use access database(.accdb) file on netbeans. So, i have to use ODBC Administrator. But when i click the system DSN tab, i couldn't see any driver format on the open menu. What can i do for add access driver to driver menu?

    I have done this, but the Driver (Oracle Rdb Driver, Version 3.00.02.04) do not understand the "DB"-Parameter correctly. The databasename is transferred to the server without the attach-command. So I can only make the connect to a preattached service. This is a known problem by Oracle.

  • How to use visual attribute property for the tab canvas

    Hi all,
    i wanted to use set_tab_page_property ,and a visual attribute property for that
    respective tab page .
    but is saying to many declarations to match up . how will i able to do that.
    can any one helip me out ...
    example....
    i wanted to set the page name (just name of the tab page) red color when i query the form under some conditions .
    can anyone help me out in this.
    thanks in advance
    vardhi

    Hi all,
    i wanted to use set_tab_page_property ,and a visual attribute property for that
    respective tab page .
    but is saying to many declarations to match up . how will i able to do that.
    can any one helip me out ...
    example....
    i wanted to set the page name (just name of the tab page) red color when i query the form under some conditions .
    can anyone help me out in this.
    thanks in advance
    vardhi

  • How To: Use Visual Studio, IIS Express, and Adobe Edge Inspect to view local projects

    You CAN view a Visual Studio project with Adobe Inspect. The work around takes a little bit of time.
    This involves using IIS Express to run your Visual Studio project, which is mainly a setting in Visual Studio, a Firewall change, a few command line and IIS Express config change.  It isn't actually all that bad, but will make your life A LOT easier.
    Here are the steps. (Note these are steps I used for Visual Studio 2012 and your project is part of a solution project.  Windows 7 or Windows 8)
    1. If IIS in not turned on, turn it on.How to: Enable Internet Information Services (IIS) - this should install IIS Express as well.
    2. In Visual Studio, find the port that Visual Studio will be using for your project by Running your web project (Debug), and note/write down/save the port number that shows up in the browser when the project launches. (ex.  http://localhost:12345)
    3. Add a NetShare Reservation (process for this will be different for Windows XP)
    Go to your Command Line (CMD) in Windows and in c:\Windows\system32> type in
    netsh http add urlacl url=http://yourIPaddress:yourPortNumber user=everyone
    (ex. netsh add urlacl url=http://12.34.56.78:12345 user=everyone)
    Hit Enter key. You should be a successful add reservation message
    3. Go to your Windows Explorer (File system) and go to c:/Users/YourName/MyDocuments (or Documents)/IISExpress/config/ and open 'applicationhost.config'
    In the 'applicationhost.config' file find your site in the <sites> section.
    Example:
    <sites>
    <site name="WebSite1" id="1" serverAutoStart="true">
                    <application path="/">
                        <virtualDirectory path="/" physicalPath="C:\MyProjects\TestSite" />
                    </application>
                    <bindings>
                        <binding protocol="http" bindingInformation=":12345:localhost" />
                    </bindings>
                </site>
    </sites>
    In this section ADD 2 new lines to the <bindings> section. Note add your own IP address and your own Computer Name
    <binding protocol="http" bindingInformation="*:12345:12.34.56.78" />
    <binding protocol="http" bindingInformation=":12345:MyComputerName" />
    Save the config file.
    4. Open up your Windows Firewall and go to 'Advanced Settings'. Here you want to create an Inbound Rule.
    Right click on Inbound Rule and select New Rule
    - Rule Type select 'Custom'
    - Program leave this
    - Protocol and Ports > Protocol Type select 'TCP' then Local Port select 'Specific Port' and fill in the port number you got from VS.  Leave Remote Port alone.
    - Scope
    There are a few ways of doing this. Typically you would go the the Remote IP address and select 'These IP addresses: and select ADD > select 'Predefined set of computers' and choose Local Subnet.  IF this does not work leave Remote IP addresses > Any IP address option selected instead.
    - Action leave this
    - Profile select Domain and Private
    - Name put IISExpressWeb for the name
    Select 'Finish'
    5. Go to Visual Studio. (Note if you have multiple projects in your solution, choose your start up project. Right click on your project in Solution Explorer in VS and select 'Set as Start Up Project' )
    Right click on your start up project again and you should see an option to 'Use IISExpress'
    In the DEBUG dropdown (from the main menu bar at the top) select 'YourProjectName Properties'. Mine was the last one in the list with a wrench icon next to it.
    This should open an new tab in your project, You should see a left hand list of option and a right hand column of options.
    In the left column select 'Web' and in this tab select Use Local IIS Web server and select 'Use IIS Express' and type in your IP Address and port number (same as before) in the Project Url text box.
    Save.
    NOW, you should be able to run your project in Visual Studio and use Adobe Edge Inspect on your device and view new results in Chrome. You can develop from there.
    If you still can not see it working, please be sure your device is on the same SubNet or Wireless network as your computer.  If you are in a large network but the domains can still see each other, the Firewall Setting detailed above to allow Any IP Address in your Scope section.

    Hi CMosqueda,
    Thank you for taking time to share this information with other users.
    Thanks,
    Preran

  • JDAPI: How to use visual attributes.

    I want to attache an olb-file to my forms by using jdapi (java).
    The reason: I want to automatically change the property visual-attribute at all of my buttons in the forms.
    How can I attache the visual attribute to the forms?
    (It is AttachedLibrary lib1 = new AttachedLibrary(fmd,"esw_std_1");
    for .pll librarys)
    How it works for visual attributes in .olb-files?)
    I want to subclass the visual attribute.
    It is a migration issue (6i to 10g).
    Best regards,
    Wolfgang

    Wolfgang,
    You would be better posting this question to the Forms. This forum is for database migration issues from 3rd party databases to Oracle.
    </p />
    Donal

  • How to use Visual C++

    Hello,
    I am new to Visual C++ can someone help me learn C++ or direct me to a website that teaches C++ for beginners? 

    If anyone's interested you can also practice by
    coding out these C++ programming tests.
    I belive it is somewhat more interesting approach, doing things rather than reading about them ;)

  • Error in Starting Visual Administration - SSO Configuration

    We have installed EP 7 SP 14 on Enterprise Linux 5.0
    Initially, i.e. after installation, only the following login module stack was used under sap j2ee engine
    BasicPasswordLoginModule - SUFFICIENT
    To check the SSO with other nw 7 java system in our landscape, I have changed it to the following using Visual Administration
    EvaluateTicketLoginModule - SUFFICIENT
    BasicPasswordLoginModule - OPTIONAL
    CreateTicketLoginModule - REQUISITE
    I have restarted ep
    Now, I am able to login to the system using Administrator login from the browser. 
    I checked the SSO.  It was not working.
    I tried to log in to Visual Administrator to make changes, its giving me the following error
    Error while connecting
    com.sap.engine.services.security.exceptions.BaseLoginException: Access Denied.
    How do I proceed ?
    Rgds,
    Santosh

    Given below is the output from the log file security.0.log available at
    /usr/sap/DEP/JC00/j2ee/cluster/server0/log/system
    #1.#00505696557D00650000002A0000779100045465B00B0CB5#1218695628786
    #/System/Security/Authentication
    #sap.com/irj
    #com.sap.engine.services.security.authentication.logincontext
    #P00101959#920##n/a##f3ef9d2069ca11ddcff800505696557d
    #SAPEngine_Application_Thread[impl:3]_37##0#0#Info#1
    #com.sap.engine.services.security.authentication.logincontext#Plain###LOGIN.OK
    User: P00101959
    Authentication Stack: ticket
    Login Module                                                               Flag        Initialize  Login      Commit     Abort      Details
    1. com.sap.security.core.server.jaas.EvaluateTicketLoginModule             SUFFICIENT  ok          false      false
    2. com.sap.engine.services.security.server.jaas.BasicPasswordLoginModule   REQUISITE   ok          true       true
    3. com.sap.security.core.server.jaas.CreateTicketLoginModule               OPTIONAL    ok          true       true
    Central Checks                                                                                true                  #
    #1.#00505696557D00650000002B0000779100045465B00B1048#1218695628787
    #/System/Security/Audit#sap.com/irj
    #com.sap.security.core.util.SecurityAudit
    #P00101959#920##n/a##f3ef9d2069ca11ddcff800505696557d#SAPEngine_Application_Thread[impl:3]_37##0#0#Info#1
    #com.sap.security.core.util.SecurityAudit#Plain###P00101959    
    | LOGIN.OK     
    | USER.CORP_LDAP.p00101959    
    |     
    | IP Address=[172.18.40.68]#
    Rgds,
    Santosh

  • How to use Logger !!!!

    Hi guys I am trying to view my console output I so new to EP I am having a lot issues poping up everywhere, can some on tell me how I can use the Console output like how view the output on Tomcat or on webshpere is there a way by which we can do it in Portals.
    Thanks,
    Emmanuel.

    Hi Emmanuel,
    You can use Visual Administrator to view the log files.
    You can find it in the admin directory under your j2ee folder (\usr\sap\[system]\jc00\j2ee\admin)
    start it by launching go.bat.
    Or you can view the trace files in:
    \usr\sap\[system]\jc00\j2ee\cluster\serverx\log
    This is the same as in Websphere (via filesystem).
    cheers,
    Noel

  • How to use wsus api samples

    hi
    i want to use ComplianceReport from wsus api. what shall i do?
    please guide me
    best regards

    I'm confused... are you looking for instruction on how to use Visual Basic?
    Have you read the
    API Samples and Tools Readme?
    Having asked that, a couple of items of significant note:
    You've apparently downloaded the *WSUS v2* Samples and Tools (not sure why it's still linked, but it is). What you'll need to download is the
    *WSUS v3* Samples and Tools.
    The "Compliance Report" you are trying to use is no longer included in the Samples and Tools package because it's now incorporated into the product itself. Have you reviewed the IN-CONSOLE reports yet? Specifically the "...For Approved Updates"
    reports.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • J2ee visual administrator is stopping at 99% while connecting to server.

    Hi,
       I am trying to use visual administrator to change some settings but its stopping at 99% while connecting to XI server. Also because of this iam not getting required services.
    server->global configuration->services is empty. please help me out.
    peter

    Hello Praveen,
    thanks for your hint. I checked the note which is very old and only for release 6.20 (I'm on 6.40). I found a similar error in my logs but this error was produced by a failed login and was not releted to my problem. I checked again my logs after but could not find any helpful entry here.
    Some more ideas? Looks like a candidate for a OSS message to SAP again.
    Regards
    Alex

  • Starting Visual Administrator

    Can any one please let me know how to start visual administrator.
    Regards,
    Thomas

    Hi Thomas,
    You can find more information about Visual Administrator on help.sap.com, refer to the following link which explains about how to start Visual Administrator.
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/39/83682615cd4f8197d0612529f2165f/frameset.htm">Visual Administrator</a>
    Regards,
    Jhansi

  • Where to find patches for Visual administrator

    Hello,
    Can anybody suggest me where can i get patches for visual administartor ?
    How to upgrade Visual administrator?
    our current Visual administartor patch level is SP9( NW2004s)
    We wnat to upgrade it to SP12
    Can anybody help
    Sumanth

    Hello Ranjith,
    Our colleagues had updated the complete java stack
    i am not able to see any update for Visual administrator
    all the components are at SP12 in system info but for visual admin engine it is
    sap.com  com.sap.engine.visualadmin  null (7.0009.20060817110540.0000)  SAP AG  SAP AG  20060921104138  null/null 
    is there a need to patch Visual admin if so how ?
    Sumanth

Maybe you are looking for

  • Crystal Report parameter problem

    Dear experts, I created a crystal report to display a bill of material. To select the bill of material I created a paremeter ItemCode @SELECT * FROM OITM INNER JOIN OITT ON ItemCode = Code. Unfortunatly SAP shows ALL Items from The Item Master instea

  • How do i transfer my address book from one computer to another

    Old computer is XP new compiuter is 7. Mozilla Thunderbird is the email program. Both are installed on separate computers.

  • How can i change "image_size" for pm-utils?

    Hey, I'd like to change the image_size file for pm-utils (used for hibernation), if i try to open the file with VI and save it afterwards i get a strange errorcode (E667), the errormessage is in german ("image_size" E667: Fsync fehlgeschlagen) and sh

  • How to change Content-Transfer-Encoding for mail sending

    Hello Experts, I need to send some documents through mail which i am doing with the help of cl_output_service=>document_output method. Mail is been send succesfully. But in the payload content which got from Exchange server:    X-Mailer: SAP Web Appl

  • MRP looking past planning horizon?

    Dear Experts, We have a material that exists on a purchase order.  The material is a HALB, with MRP Type = PD and Procurement Type = F (purchased).  The Planning Horizon for the plant is 180 days and there is no planning horizon defined for MRP Group