Announcement

Collapse
No announcement yet.

Modify the Results screen of contacts

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Modify the Results screen of contacts

    How to delete the view, edit, view log, create another, modify another buttons in results screen. the requried thing is only the test ( "You successfully created the following records:" ). this results screen is accessed via Business Process Automation > Communication Management > Contacts>finished

    Thanks,
    Pradeep

  • #2
    Re: Modify the Results screen of contacts

    The results page that you see now is the common glog results page GlogResultsPage.xsl. The framework redirects you to this page after successfully saving the record. If you want to remove the the buttons here, you will have to do it in the GlogResultsPage.xsl. But as this xsl is a common xsl, You should not touch this. Only way is to create your own results xsl and show this custom results xsl on successfully saving the record.

    You can do this in the ContactSaveServlet.

    eg: From glog/webserver/sku/SkuEventSaveServlet.java

    d.appendChild(d.createProcessingInstruction("xml-stylesheet", "href=\"status/SkuEvents.xsl\" type=\"text/xsl\""));

    Let me know if you need any help

    Comment


    • #3
      Re: Modify the Results screen of contacts

      Please tell me how to find the ContactSaveServlet path, I find the GlogResultsPage.xsl.file.

      Comment


      • #4
        Re: Modify the Results screen of contacts

        glog/webserver/contact

        Comment


        • #5
          Re: Modify the Results screen of contacts

          Iam working with OTM 5.5 , in this we have the contact xsl file but ,in this file we don't have glog/webserver/sku/SkuEventSaveServlet.java path. so, please tell me this path in OTM 5.5.

          Comment


          • #6
            Re: Modify the Results screen of contacts

            The SKUSaveServlet is an example i have. You will have to do it the same way its done in the above servlet.

            Under your root path there will be two folders 'glog' and 'glog_deploy'. this servlet you will find it under glog/webserver/sku.

            also send me your mail id.

            Comment


            • #7
              Re: Modify the Results screen of contacts

              Iam able to find the below code
              d.appendChild(d.createProcessingInstruction("xml-stylesheet", "href=\"status/SkuEvents.xsl\" type=\"text/xsl\""));
              From glog/webserver/sku/SkuEventSaveServlet.java
              But, iam not able to find the same code in the ContactSaveServelt. So please tell me the java file which is having the same code Inorder to to delete the view, edit, view log, create another, modify another buttons in results screen. the requried thing is only the test ( "You successfully created the following records:" ). this results screen is accessed via Business Process Automation > Communication Management > Contacts>finished

              Thanks & Regards,
              Pradeep
              Last edited by sn1405; August 10, 2007, 13:31.

              Comment

              Working...
              X