How to Rename A custom Smartform

Hello Experts,
I have a custom smartform downloaded from legacy ex: YTEST, i need to rename it as ZTEST and upload to the current R3 system.
Thanks
Rajasekhar
Moderator message: please search for available information first.
Edited by: Thomas Zloch on Mar 6, 2012

Hi Rajasekharnr,
You can upload the smartform using  "Utilities->Upload Form"  from  the SMARTFORMS inital screen.

Similar Messages

  • Renaming the Custom tab name incorporated by  EEWB

    Dear All
        How to rename the Custom tab name incorporated by EEWB in a txn ?
        Please guide me .
    Thanks
    Moni

    Hi Monirujjaman,
    As far as I know you can not rename the custom tab once you have created it using EEWB. Alternatively, you can do one thing. Copy all the code written for the enhancement somewhere. Run the wizard again, it asks you for the Extension Title. Give the required title and specify the fields that you want. In effect you will have to create the project again.
    After creating the project, paste the code again at the desired place.
    <b>Reward points if it helps.</b>

  • How to customize purchase order smartform BBP_PO in SAP SRM 7.0?

    Hi friends,
    I am new to SAP, as well as to SRM world. Currently I have a object with me from purchase order smartform in SRM. My job is to copy the standard PO form named BBP_PO into "Z" form and to make customizations in the copied one. I don't have idea about how to proceed with it. Please give me some idea about required processing classes, methods, BADI's, FM's etc,.. Can anyone please tell me how to do this job? I am a fresher so if you help me in this means, it would be very helpful for me and for my future.
    Thanks and regards,
    Siva

    Hello Siva,
    I searched and found the below steps ...
    why dont you try the same !
    How to customize an existing Standard Smart form in SRM - Overview.
    1. Copy existing Standard smart form in SRM, let us say, BBP_PO into "Z'' Smart form in Transaction SMARTFORMS.
    2. Do changes in Z Smart form add Desired Logos in Smart form using SE78 and SMARTFORMS transactions.
    3. Change in Jargon: Unlike ECC we will not have Driver program (in SE38), you will find Processing class and Processing method ( in SE24) for SRM Smart forms, where we write extraction logic.
    4. So, In case of SRM we should replace the (word) "Driver Program" with (the word) "Processing Class" and Perform as "Processing Method".
    5.Where to Link: Processing Class, Processing Method and Smart form? In SPRO, SRM Server -> Cross Apps -> Set Output Actions and Output Format -> Define Actions for Purchase Order Output -> Action definition -> Processing types, then select standard PO.
    6. If we are using (Completely- New) Custom Smart Form instead of Changing Standard Smartform, then Do change any settings in Step5, Otherwise, if you are planned to modify existing Smartform, with Small logic changes, format changes and Logo Changes then, Just Implement BADI - BBP_OUTPUT_CHANGE_SF in SE19 transaction.
    7. Put a simple code  in BADI as... CASE IV_OBJECT_TYPE.
    When  'BUS2201' .
       CV_SMARTFORM = 'Z_CustomSF'.
    ENDCASE
    8. Don't forget, you already copied Std Smartform into Custom Smartform say Z_CustomSF.
    9. I am using BUS2201 only becuase I was trying to change BBP_PO Smartform which is a Purchase Order Smartform.
    Hope this helps!
    - Vikas

  • How to send multiple customer statements by email using RFKORD11

    Hi All,
    How to send multiple customer statements by email using RFKORD11 program.
    As of now we copied the stanadard program and sending the customer statements by email, one by one.
    if  i execute the z program it will show the customer statement and send mail option.
    if i click send mail it will send that customer statement to the corresponding customer.
    then again i need to click back, it will show next customer statement and click on send mail.
    Pl guide me, if any one worked on this program.
    Regards,
    Mahesh

    Hi .
    You first need to copy that program to Z and make the changes in it. Can you convert sapscript to smartform?
    then you can write a logic to send mail in the loop.
    to send the pdf file
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/mailsendthroughoutputcontrols
    Regards,
    Madhuri
    Edited by: madhuri sonawane on Jun 10, 2009 4:20 PM

  • Custom SmartForm for Purchase Order Printing

    Hi,
    I need a customized smartform for purchase order, which is called after the standard transaction ME9F.
    I adjusted "Conditions for Output Control" by using transaction NACE  ( Erased the name of the form MEDRUCK, Entered my customized smartform's name under smartform Form part and chose the type as smartform )
    However, I couldn't success to see my printview whereas I continued to see the printview of Medruck.
    I'd searched for the problem through here and the net,  I found some names of smartforms such as: /SMB40/MMPO_L  and /SMB40/MMPO_A and their driver programs like: /SMB40/FM06P . The package which consists of these elements was mentioned as " /SMB40/ "... but despite I downloaded it, my system still doesn't have the elements.
    So, how can I use my own purchase order smartform or if i need the forms mentioned,  in which best practice package i can find them?
    SAP ECC 6.0
    SAP_APPL 604
    SAP_BASIS 701
    Thanks in advance,

    Hi,
    If your SAP doesnt have a standard smartform for PO, it is quite complicated to use smarform rather than sapscript.
    I guess that you will need to modify the program SAPFM06P that calls the sapscript and make it call the smartform.
    I will take a few time to adapt the sapscript.
    Regards
    Miguel

  • Passing data to custom smartform from a custom program...

    Hello Gurus,
    Since, the function module gets generated dynamically at runtime when smartform is activated, I know that first I should use  "SSF_FUNCTION_MODULE_NAME" and pass custom smartform name to it to get the name of function module. Then I have to use call function '/XXXXXXXXX'.
    Now, I am writing a custom code and I want the data from my select program in custom program to be passed to smartform ? How can I pass the data from my custom program to smartform ? Do I pass it before using function module "SSF_FUNCTION_MODULE_NAME" ? If yes, how ?
    Regards,
    Rajesh.

    hi,
    u have to declare ur structures in form interface and can retrive the data from custom program.
    check this sample code.
    declare structure in interface.
    WA_MKPF TYPE MKPF.
    write ur custom code lik this.
    DATA: wahz TYPE zmemigo_form_header,
          wa_mkpf  TYPE mkpf.
    DATA: t_itemz LIKE zmemigo_form_item OCCURS 0,
          t_mseg   TYPE mseg OCCURS 0,
          waitemz TYPE zmemigo_form_item,
          waitem TYPE mseg.
    DATA : form_name TYPE tdsfname VALUE 'ZPS_STN'.
      DATA : fnc_module TYPE rs38l_fnam.
    SELECT SINGLE mblnr INTO wa_mkpf-mblnr FROM mseg
                CLIENT SPECIFIED WHERE  mandt EQ sy-mandt
                                   AND  mblnr EQ p_mblnr
                                   AND  mjahr EQ p_mjahr
                                   AND  bwart EQ '351'
                                   AND  shkzg EQ 'H'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = form_name
        VARIANT                  = ' '
        DIRECT_CALL              = ' '
        IMPORTING
         fm_name                  = fnc_module
        EXCEPTIONS
         no_form                  = 1
         no_function_module       = 2
         OTHERS                   = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION fnc_module
        EXPORTING
          wa_headz         = wahz
          wa_mkpf          = wa_mkpf
        TABLES
          it_itemz         = t_itemz
          it_mseg          = t_mseg
        EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 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.
      ENDIF.

  • Configure HRFORMS to call a custom Smartform.

    Hello All-
    We have a custom Payroll Form created in PE51 and we have a custom smartform which uses this custom payroll form.
    By using TCode HRFORMS can we configure to call a custom smartform. If so can you please let me know how? Or do you have a document of how to use HRFORMS please let me know.
    Thanks-
    Chakri.
    Edited by: chakri somisetti on Jul 1, 2008 4:54 PM

    Hi Chakri,
    I think PE51 forms are different from what you do from HRFORMS...
    PE51 uses a intermediate config table which can be maintained via PE51_CHECKTAB tcode. It allows you
    to configure what data to print at waht position and other formatting options. You can enhance std. print program behind the form class (CEDT etc ) to select any custom data and print it on the form.
    HRFORMS - you create a form here and choose the pre-prepared data strctures - here the front form can be a smart from or form builder (PDF forms - tcode SFP). IF you create a form from HRFORMS it will generate the underlying form and print program for you. You can then modify this form as per your requirements...
    I dont have much knowledge on how to use that Infostars/info dimensions of HRFORMS. may be you can look at a standard from or search in the forums. I am sure you will find some useful info...
    hope this helps
    thanks

  • Display custom SMARTFORM(PDF) not Adobe Interactive on Portal.

    Hi All,
         I appreciate any direction that you are able to provide.
    The scenario is as follows:
    The client is currently running SAP R/3 ECC 6.0
    The client is implementing ESS/MSS.
    A custom SMARTFORM was created in SAP
    The question is:
    What is the necessary code required in the Model/Application to Display this form?
    I have searched the web and found some documentation, but it is incomplete and I receive errors in the NWDS.
    Thanks is advance!
    The following code was placed in the Init method.
    public void wdDoInit()
        //@@begin wdDoInit()    
        Ynag_Test_Pdf_1_Input input = new Ynag_Test_Pdf_Input();
        wdContext.nodeYnag_Test_Pdf_Input().bind(input);      
        try {                       
                wdContext.currentYnag_Test_Pdf_InputElement().modelObject().execute();
                } catch (WDDynamicRFCExecuteException e) {
                            e.printStackTrace();
                            wdContext.currentContextElement().setSdfgdsfsd(e.getMessage());
                }            wdContext.currentInternalElement().setUrl(convertXStringToUrl(wdContext.currentOutputElement().getBin_File()));          
        //@@end
      //@@begin others
      public String convertXStringToUrl(byte[] doc_content){
                String url = "";
                WDWebResourceType webResType = WDWebResourceType.PDF;
                IWDWebResource webResource = WDWebResource.getWebResource(doc_content, webResType);
                try {
                            url = webResource.getURL();
                } catch (WDURLException e) {
                            e.printStackTrace();
                return url;
      //@@end

    Hi Chintan,
         Good morning. Thank you for your time and advice. While I have been programming in ABAP for over 15 years, I have not had to write SAP style JAVA before. I have written JAVA programs, but not using the NWDS. So that would lead me to ask the next question.
    How would I do something like that?
    Please advise.
    Kind Regards,
    Daniel A. La Mendola

  • How Do I Display Custom Document Properties On the Info - Properties Page

    Hi,
    I want to create a template using Microsoft Word 2010 that has fields similar to the Standard Document Property "Title" that can be used as a fillable form that repeats data throughout the document.  I need a custom document property field
    that you can fill out on the title page and will simultaneously change the same field that is in the header, footer, and file -> info -> properties page. 
    For example, I want to create a document property field called "Product ID #" that shows the title of the property on the file -> info -> properties page as "Product ID #" and the content to show up as the information
    a user entered into the field on the first page.
    Right now I have a standard document property that I am using as a field on the front page for the Title which has user defined content on the front page.  This field has default content I set up to be "Product Specification Template". 
    I inserted this field by using quick parts.  I want to be able to create a field that behaves like this called "Product ID #".  I understand you can create custom form fields that repeat using legacy fields, but I need a way for them
    to show changes instantly after you click away from the field, without having to "update field" where necessary.
    Anyone have any idea how to create custom document properties like this? Or even how to rename standard properties such as "Status" or "Subject"?
    Thanks

    What you're asking can't all be done without a macro. You can easily enough get body content to show in the header & footer via the judicious use of Styles and STYLEREF fields (and the changes are dynamic), but getting that info into the custom
    document property would require a macro. To that end, you might use a content control with a unique Style applied to it for the data input and a ContentControlOnExit macro to update the custom document property.
    Cheers
    Paul Edstein
    [MS MVP - Word]

  • How can I find Custom Sapscirpts

    How can I find custom Sapscripts in my existing system
    regards
    AJ

    AJ,
    Z* in SE71 and SMARTFORMS.You can also check the table TNAPR as well as TTXFP to know the print programs of the respective forms.
    K.Kiran.

  • Help Renaming Workflow Custom Task Forms

    I've got a custom workflow which has a few "Start Custom Task Process" actions. When I created them, the default names were Task (1), Task (2), etc. But I have renamed the Task within the Workflow. When I look at the Form's section of my Workflow in SharePoint
    Designer, the File Names for those forms are Task_x0028_1_x0029_.xsn, Task_x0028_2_x0029_.xsn, etc. I can open the Form's in InfoPath and do the editing I want to, but I cannot get them renamed on the SharePoint server.
    I've tried going to the Task Lists from within the Workflow via Customization>Open Task List, and then renaming them from there but that doesn't work. I've also tried renaming the actual file via Navigation>All Files>Workflows>Workflow Name but
    that just breaks the link to the form when the task is executed.
    Does anyone have any suggestions on how to rename these and have them show up with the proper name within the "Forms" section when working on the workflow?

    I've found that when creating a "Start Custom Task Process" action -- the task is given a name, which by default will be "Task n" ... Even after renaming it --
    prior to saving/publishing -- the name of the XSN file will be "Task_x0028_n_x0029_.xsn" and the name of the content type is still "Task _x0028_n_x0029_" -- which isn't ideal ....  in large organizations with multiple workflow taks, this can get
    really hairy, really quick. 
    While there are no errors or conflicts -- if these can't be renamed, they might as well be referenced by GUIDs and not have human-readable names!
    Fortunately, the tip from Dennis at the bottom of this post describes perfectly how to rename the file by the back end .... it likely isn't for the feint of heart, changing the XML file [doing so inproperly can break the workflow] -- but it does work. 
    In addition to that tip, I'd recommend revising the name of the content type from Site Content Types -- this can be done from the UI and there's no need to edit the wfconfig.xml with the changes.
    EDIT:
    One more thing, the  "Copy & Modify" function within SharePoint Designer which can be used to make copies of workflows -- when using this function, the custom task will be created as  "Task (n) copy" and will need to be renamed.

  • Attach customized smartform in IW32

    Dear Experts,
    I need to copy the standard smartform to a customized one and make some changes and attach it. The already attached form is a PM_COMMON which is a script.
    1. Is there any smarform, if yes then what?
    2. How can I attach standard driver program with the customized form? Will it get attached automatically if the write customized smartform name in the form below?   
    Regards
    Mani

    Hi Mani,
    you can copy driver program  RIPRCT00 to zRIPRCT00 something. and  comment
    PERFORM main_print. from this driver program. once you comment this Perform then your SAP script part will be  disconnect from this.
    you can add new  perform  after PERFORM order_data_import and  add your SSF code here  like below reference code.
    -tdcopies         = wworkpaper-tdcopies.    " copies
      lwa_outputop-tdnewid          = wworkpaper-tdnewid.     " new spool entry
      lwa_outputop-tdimmed          = wworkpaper-tdimmed.     " immediately
      lwa_outputop-tddelete         = wworkpaper-tddelete.    " delete after
      lwa_outputop-tdcover          = wworkpaper-tdcover.     " cover page
      lwa_outputop-tdcovtitle       = wworkpaper-tdcovtitle.  " title for cover
      lwa_outputop-tdreceiver       = wworkpaper-tdreceiver.  " report to ->
      lwa_outputop-tdarmod          = wworkpaper-tdarmod.     " Archive mode
      lwa_outputop-tdtelenum        = wworkpaper-tdtelenum.
      lwa_outputop-tdteleland       = wworkpaper-tdteleland.
      IF NOT wworkpaper-print_lang IS INITIAL.
    *... reset the default print_language with a specific language
    *... if it was set in t390_u or set on the paper selection screen
        print_language =  wworkpaper-print_lang.
      ELSE.
        print_language =  original_print_language.
      ENDIF.
    *... should a print record be written later.
      IF device = c_screen
      OR device = c_preview.
        dont_log = yes.
      ELSE.
        dont_log = space.
      ENDIF.
      IF device = c_preview.               " special print preview option
    *    itcpo-tdpreview = yes.
    *    itcpo-tdnoprint = yes.             " no sneaky printing from SAPSCRIPT
        lwa_outputop-tdnoprev = ''.
        lwa_outputop-tdnoprint = 'X'.
      ELSE.
    * itcpo-tdpreview = space. " make sure preview is off otherwise
        lwa_outputop-tdnoprev = 'X'.
      ENDIF.
    *$*$ ARCHIVE LINK
      g_toa_dara_tab-function   = c_dara.  "archive function
      g_toa_dara_tab-sap_object = archive_type. "Order or Notification
      g_toa_dara_tab-ar_object  = t390-ar_object.  "arch object
      g_toa_dara_tab-object_id  = object_id.    " order or notif number
      g_toa_dara_tab-mandant = t390-mandt.
      g_arc_params_tab-sap_object  = archive_type. "Order or Notification
      g_arc_params_tab-ar_object   = t390-ar_object.
      g_arc_params_tab-mandant = t390-mandt.
      g_arc_params_tab-report = t390-abapname.
    *-> SY fields not available in update task
      g_arc_params_tab-arcuser = sy_uname.
      g_arc_params_tab-datum   = sy_datum.
      lwa_ssfctrlop-no_dialog = 'X'.
      lwa_ssfctrlop-preview = 'X'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = lc_fname "'ZPMEU_MAINTN_JOB'
        IMPORTING
          fm_name            = lw_fmname
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION lw_fmname
        EXPORTING
          archive_index      = g_toa_dara_tab
          archive_parameters = g_arc_params_tab
          control_parameters = lwa_ssfctrlop
          output_options     = lwa_outputop
    *     USER_SETTINGS      = 'X' "space'
          caufvd             = caufvd
          riwo1              = riwo1
          iloa               = iloa
          iviqmel            = iviqmel    "FSTS1628
        TABLES
          iaffhd             = iaffhd
          op_print_tab       = op_print_tab
          kbedp_tab          = kbedp_tab
          ihpad_tab          = ihpad_tab
          ihsg_tab           = ihsg_tab
          ihgns_tab          = ihgns_tab
          iafvgd             = iafvgd
          iripw0             = iripw0
          iresbd             = iresbd.
    same reference code you can call in your samrtform.
    Please try to this way for your development. It may be helpful for you.
    Regards,
    Prasenjit

  • How to Create the Custom print Quote Report ?

    Hi All,
    I want to create the custom Print Quote report . I know the below details and referred the below metalinks .
    Note: 780722.1 - How to Create a Custom Print Quote Template in Oracle Quoting ?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=780722.1
    Note: 392728.1 - How to Modify the data source for the XML version of the Print Quote report
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=392728.1
    Note: 468982.1 - How To Customize The Asoprint.Xsl
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=468982.1.
    Oracle Metalink:
    Note: To add a column to the print quote report, following files need to be updated:
    LinesVO.xml --- xml files containing the sql query and attribute definition
    LinesVORowImpl.class - public class extending the framework class OAViewRowImpl.
    This class contains the set and get for the attributes defined in xml file.
    ASOPRINT.xsl - this is the xsl stylesheet file used to describe the report layout.
    This file needs to be modified to include the new column being added to the report
    QUESTION :
    My question is,
    1. wether my approach (below iare the details)of trying to extend the PromptVO is the right way or is there any other way to add the new columns.
    I want to add new fields on to the report . When i looked into the it says the below
    Here we find that to add a new column, oracle says to update the LINESVO.xml, do they really mean to update the base files.
    This report uses following VO's
    PROMPTVO
    HEADERVO,
    LINESVO.
    To create new Headers & Prompts, i tried extending the PROMPTVO. Once the extended VO is substitued , i dont even get the data for standard oracle Prompts. is this the right way to add columns?
    Thanks

    Hi All,
    I want to create the custom Print Quote report . I know the below details and referred the below metalinks .
    Note: 780722.1 - How to Create a Custom Print Quote Template in Oracle Quoting ?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=780722.1
    Note: 392728.1 - How to Modify the data source for the XML version of the Print Quote report
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=392728.1
    Note: 468982.1 - How To Customize The Asoprint.Xsl
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=468982.1.
    Oracle Metalink:
    Note: To add a column to the print quote report, following files need to be updated:
    LinesVO.xml --- xml files containing the sql query and attribute definition
    LinesVORowImpl.class - public class extending the framework class OAViewRowImpl.
    This class contains the set and get for the attributes defined in xml file.
    ASOPRINT.xsl - this is the xsl stylesheet file used to describe the report layout.
    This file needs to be modified to include the new column being added to the report
    QUESTION :
    My question is,
    1. wether my approach (below iare the details)of trying to extend the PromptVO is the right way or is there any other way to add the new columns.
    I want to add new fields on to the report . When i looked into the it says the below
    Here we find that to add a new column, oracle says to update the LINESVO.xml, do they really mean to update the base files.
    This report uses following VO's
    PROMPTVO
    HEADERVO,
    LINESVO.
    To create new Headers & Prompts, i tried extending the PROMPTVO. Once the extended VO is substitued , i dont even get the data for standard oracle Prompts. is this the right way to add columns?
    Thanks

  • How to populate a custom field of a Std. SAP Tx with BAPI usage 2 Load data

    Hi Experts,
    For instance, I created a custom field (say, custom_field_1) on a screen of standard SAP tx(say, ME21N) by using screen exit. And in order to populate the data into it (custom_field_1), will use the Function user exits of this Tx(ME23N).
    1) In next step, Where Where I have to add this field, apart from appending the same custom field in EKKO/EKPO table or any other related table; Extending the corresponding IDOC or creating a new Custom ÍDOC type? like What about BAPI?
    2) If I got a text file with the data (including the data for this custom_field_1 too) and I have been asked to load it into SAP, then, I decided to use BAPI (say, BAPI_PO_CREATE or CREATE1) to create the data, So, How to handle this custom field, I mean, In which BAPI structure I have to pass this custom_field_1 data? ( Iguess, for some BAPIs EXTENSIONIN structures are provided, sorry if am wrong!)
    Thank you.
    Edited by: SAP ABAPer on Feb 21, 2009 7:40 PM

    for example if you added field in the  VBAP table  then you can pass the custome field values like below
         move 'BAPE_VBAP' to lwa_extension-structure.
          lwa_bape_vbap-vbeln = lwa_final-vbeln.
          lwa_bape_vbap-posnr = lv_posnr.
          move lwa_final-yyslotid to  lwa_bape_vbap-new custome field.
          move lwa_bape_vbap to lwa_extension-valuepart1.
          append  lwa_extension to  lt_extension.
          clear  lwa_extension.
          move 'BAPE_VBAPX' to lwa_extension-structure.
          lwa_bape_vbapx-vbeln = lwa_final-vbeln.
          lwa_bape_vbapx-posnr = lv_posnr.
          move 'X' to lwa_bape_vbapx--new custome field.
          move lwa_bape_vbapx to lwa_extension-valuepart1.
          append  lwa_extension to  lt_extension.
          clear  lwa_extension.
    call function 'BAPI_SALESORDER_CHANGE'
            exporting
              salesdocument    = strcture
              order_header_inx = strcture
            tables
              order_item_in    =strcture
              order_item_inx   = strcture
              schedule_lines   = strcture
              schedule_linesx  = strcture
              extensionin      = lt_extension.

  • How can we define custom error page in protal application

    How can we define custom error page in protal application, like we define "jsp Error page " in JSPs

    Hi,
    Check these:
    Customization of Portal Runtime Errors and portal standard error codes
    http://help.sap.com/saphelp_nw04/helpdata/en/9a/e74d426332bd30e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ec/1273b2c413b2449e554eb7b910bce7/frameset.htm
    Regards,
    Praveen Gudapati

Maybe you are looking for

  • How can you print 1-3 pages of a web document?

    I have an Ipad with a HP6500A Plus and can print. I have the eprint app loaded on the ipad. I need to be able to select the pages to print from a web page. This question was solved. View Solution.

  • Help with error please!

    Hi everyone, I have downloaded a piece of code for a javaMail program so that I may be able to see how it works, the problem is that when I compile the program I get the following error message: Exception in thread "main" java.lang.NoSuchMethodError:

  • Can't start Xorg server using "startx"[SOLVED]

    Hi, I've just reinstalled arch on my netbook...And I get this weird problems... 1. I cant start the Xorg server, it only shows this: /usr/bin/startx: line 196: xauth: command not found 2. Also when I install packages, it shows this for example: /tmp/

  • Same project on two Macs - Peak-show

    Hi, I want to work with a project on my MacBook pro (4,1, early 2008. 2x2,5), that project was started on a macpro (4,1; 2x4x2,66). After solving problems concerning the re-Connection, which is really something, Adobe has to work on! Take a Look at f

  • Portal Errors

    I installed Oracle 9i (9.0.2) in a stand alone PC with a p4 chip and win 2k. No problems during install but I occasionally get the following errors at the top of the page: Error: The listener returned the following Message: 302 FoundHTTP/1.1 200 OK D