Smartforms xsf 46c -- 620

Hallo,
i programmed an xml-output with smartforms  under 46c. Now under 620 it doesn't work anymore because the structure SSFCRESCL in which the xsf output is stored changed. Know the output is in raw data under 46c it was string-type. Does anyone know a solution for this problem, I need the raw data converted to string.
Thanks
Tobias

Hy,
I solved the Problem by myself. There is a Report "SF_XSF_DEMO" which demonstrates every aspect of xml-output under 6.20.
Tobias

Similar Messages

  • Smartform XSF validation gives error

    Hi,
    we are printing smartforms to XSF. When we try to validate the xml output in XMLSpy using the DTD file posted on SDN (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b5d2d190-0201-0010-95b3-a3ff828477ef) we get the error message:
    "Element 'smartxsf' has no declaration for an attribute named 'xmlns'".
    When we try the example XSF file that is included in the above DTD file we get the same error.
    Can anyone point me in the right direction here?
    Will we have to modify the standard DTD and add the xmlns attribute to the smartxsf element? This does not seem right since the attribute is included in the example attached to the standard DTD (which makes the error from the example XSF very strange?).
    Thanks

    You can not fix on a dimension and do subsequent calculations on that dimension. For example you can not say :
    Fix(Jan)
    Jan = Feb + March;
    EndFix
    You need to limit the scope in the fix statment to other dimensions not the one you are trying to calculate

  • Smartform XSF output error

    I want XSF output for a smartform. I have made the necessary changes in the output type and output device. Also made changes in SPRO.
    When I produce normal (standard) PDF for the smartform it executes with no error and the pdf is properly generated.
    But when I do the same for XSF output it gives an error that "table XYZ does not fit the main window". I tried changing the size of the table as well but the error still remains.
    If the same smartform works properly for standard PDF output why should it have size issues with XSF output?
    help would be appreciated. Am I missing out on something?

    Hello again,
    I am able to get the XSF output in the spool. Now my problem is that I am having that XML file in the spool, but I need to redirect this XML File (spool) to my middleware (seebeyond in this case ) .
    Now how to configure it in SAP so that it is redirected to seebeyond automatically the moment spool gets created.
    At the moment I am not looking to write an ABAP to run in background to pick up the spools and drop to middleware.
    Any ideas gurus? am I on the right track ?
    Cheers,

  • XSF format in smartforms

    How to convert smartforms output to XSF format? please send the sample code.

    Hi,
    Please go through this document ...
    http://esnips.com/doc/2276d194-dc47-4b1e-9c14-7af0ffe923ca/smartforms-xsf-output
    regards,
    Omkar.

  • Background for smartforms

    Hi,
       Please explain me the steps for creating background in smartforms.
    Regards,
    Sreeja

    Displaying a Background Picture for Copy Purposes
    Use
    In your business procedures, you may often want to use existing forms as patterns for creating new ones. You can easily do this by scanning the exising form into the computer, displaying it as background picture, and copying it over. In the Form Painter, you can use windows to copy over the output areas of a form; in the Table Painter, you can use cells to copy over templates. This section describes how to do it.
    Prerequisites
    You must import any graphics into the SAP System using Administering Form Graphics (transaction SE78 ):
    Double-click a graphic format in the tree structure in the folder Document Server ® GRAPHICS ® General graphics.
    Choose Graphic ® Import.
    The transaction imports the graphic and stores it on the Business Document Server (BDS). Now you can display it in a form.
    See also: Graphic Administration.
    Procedure
    Insert your graphic as background picture of a page (see: Creating Pages). The graphic appears in the Form Painter as soon as you update your entries by pressing ENTER .
    Use the Form Painter to overlay the graphic with a window. To make this easier, select the option Transparent Window on the General tab of the Form Builder settings ().
    Create a template in this window. To position the template, set the Vertical Alignment to Absolute (from top). You find this option on the Template tab in the Details view.
    Without this setting, SAP Smart Forms cannot display a background picture in the Table Painter, because then the vertical position of the template in the window depends on previous, possibly dynamic, output.
    If you encounter problems when trying to set the vertical alignment, save your Smart Form, exit SAP Smart Forms completely, and call the form again. See also Note 375087 in the SAPNet.
    When you switch to the Table Painter after making these settings, an additional checkbox Display Background Picture appears. Mark this checkbox.
    Result
    The background graphic appears in the Table Painter. The right and left margins in the Table Painter, as usual, correspond to the right and left window borders. Copy over the lines of the pattern. To draw lines more exact, deactivate the Align With Grid attribute in the Table Painter.
    With complex patterns, divide the page into several windows. This makes it easier to copy over the individual smaller patterns.
    Step wise
    SMART FORM Creation
    uSING TABLE IN Smart Form
    1) Tcode --> SmartForms
    2) Form name --> Z_SF_TEST Create
    3) Under Global settings
    a) Form Interface
    Table Tab
    ITAB LIKE EKPO
    b) GLOBAL Definitions
    WA_NETPR LIKE EKPO-NETPR
    In smart forms if we want to display quantity and currency fields. We can't directly display currency field and quantity fields
    For that we have to create an extra variable in global definitions
    Ex: netpr FIELD of EKPO
    CREATE program lines and specify WA_NETWR = itab-netpr.
    4) RT CLick on main Window
    CREATE --> TABLE
    Click Table painter
    DEFAULT %LTYPE will be Created
    a) If you want more like Header footer etc add by rt click on %LTYPE1
    Table (Tab)
    %LTYPE Radio(SELECT) 5 CM 5 CM 6 CM
    CLICK on DATA (Tab)
    INTERNAL TABLE ITAB LIKE ITAB
    5)RT click on table control and create --> program lines
    General attribute (Tab)
    INPUT PARAMETER OUTPUT PARAMETER
    itab WA_NETPR
    Code Area
    WA_NETWR = ITAB-NETPR.
    6) RT CLcick on table ctl and create 3 text to display the fields
    a) % text1 +button(insert field)
    FIELD name &itab-ebeln&
    Output options (tab)
    Check New line LINETYPE %Ltype1
    check new cell
    b) % text2
    & itab-ebelp&
    output options
    check new cell
    c) % text2
    & wa_netpr&
    output options
    check new cell
    Report ac
    Tables ekpo.
    Data: itab1 like ekpo occurs 0 with header line.
    select * into table itab1 from ekpo.
    Call function module
    Smartforms are same as sapscripts. The transaction code to create the smart forms is SMARTFORMS. Check out these sites for step by step procedure.
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    http://help.sap.com/saphelp_nw04/helpdata/en/9b/e3b0d9c2a711d3b558006094192fe3/frameset.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sapgenie.com/abap/smartforms_detail.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%0samples/smartforms/smartform%20in%20abap.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/smartforms/subroutine%20and%20select-option%20in%20smartform.pdf
    http://www.sap-basis-abap.com/sapsf001.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9b/e3b0d9c2a711d3b558006094192fe3/frameset.htm
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    http://esnips.com/doc/7e67af5c-6188-4252-8613-41816756d560/from-sappres.pdf
    http://esnips.com/doc/58566115-54a4-4405-8872-8de952e245e5/smartform.pdf
    http://esnips.com/doc/2276d194-dc47-4b1e-9c14-7af0ffe923ca/smartforms-xsf-output.pdf
    http://esnips.com/doc/13b7ae7a-b32c-4b96-b588-881859d4ac99/Template,Table,Loop,Command-in-Smartforms.doc
    http://esnips.com/doc/97acb00a-e513-4611-91f0-c626f460bfc5/Smart_Form_Overview.pdf
    http://esnips.com/doc/77a981b9-8fe3-4fbb-8101-67745c1fe60c/SMART-FORMS_shail.ppt
    http://help.sap.com/saphelp_nw04/helpdata/en/9b/e3b0d9c2a711d3b558006094192fe3/frameset.htm
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    I suggest you to use the Unit CH(CHARACTERS) for the Left Margin and Width and
    LN(LINES) for Upper margin and Height
    SMARTFORMS STEPS.
    1. In Tcode se11 Create a structure(struct) same like the Internal table that you are going to use in your report.
    2. Create Table type(t_struct) of stracture in se11.
    3. In your program declare Internal table(Itab) type table of structure(struct).
    4. Define work area(wa) like line of internal table.
    5. Open Tcode Smartforms
    6. In form Global setting , forminterface Import parameter define Internal table(Itab) like table type of stracture(t_struct).
    7. In form Global setting , Global definitions , in Global data define Work area(wa) like type stracture(struct).
    8. In form pages and window, create Page node by default Page1 is available.
    9. In page node you can create numbers of secondary window. But in form there is only one Main window.
    10. By right click on page you can create windows or Go to Edit, Node, Create.
    11. After creating the window right click on window create table for displaying the data that you are passing through internal table.
    12. In the table Data parameter, loop internal internal table (Itab) into work area(wa).
    13. In table there are three areas Header, Main Area, Footer.
    14. Right click on the Main area create table line by default line type1 is there select it.
    15. Divide line into cells according to your need then for each cell create Text node.
    16. In text node general attribute. Write down fields of your work area(wa) or write any thing you want to display.
    17. Save form and activate it.
    18. Then go to Environment, function module name, there you get the name of function module copy it.
    19. In your program call the function module that you have copied from your form.
    20. In your program in exporting parameter of function pass the internal table(itab).
    SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms.
    SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can
    configure forms with data from an SAP System for the relevant business processes.
    To print a form, you need a program for data retrieval and a Smart Form that contains the entire from logic. As data retrieval and form logic are separated, you must only adapt the Smart Form if changes to the form logic are necessary. The application program passes the data via a function module interface to the Smart Form. When activating the Smart Form, the system automatically generates a function module. At runtime, the system processes this function module.
    You can insert static and dynamic tables. This includes line feeds in individual table cells, triggering events for table headings and subtotals, and sorting data before output.
    You can check individual nodes as well as the entire form and find any existing errors in the tree structure. The data flow analysis checks whether all fields (variables) have a defined value at the moment they are displayed.
    SAP Smart Forms allow you to include graphics, which you can display either as part of the form or as background graphics. You use background graphics to copy the layout of an existing (scanned) form or to lend forms a company-specific look. During printout, you can suppress the background graphic, if desired.
    SAP Smart Forms also support postage optimizing.
    Also read SAP Note No. 168368 - Smart Forms: New form tool in Release 4.6C
    What Transaction to start SAP Smart Forms?
    Execute transaction SMARTFORMS to start SAP Smart Forms.
    Key Benefits of SAP Smart Forms:
    SAP Smart Forms allows you to reduce considerably the implementation costs of mySAP.com solutions since forms can be adjusted in minimum time.
    You design a form using the graphical Form Painter and the graphical Table Painter. The form logic is represented by a hierarchy structure (tree structure) that consists of individual nodes, such as nodes for global settings, nodes for texts, nodes for output tables, or nodes for graphics.
    To make changes, use Drag & Drop, Copy & Paste, and select different attributes.
    These actions do not include writing of coding lines or using a Script language.
    Using your form description maintained in the Form Builder, Smart Forms generates a function module that encapsulates layout, content and form logic. So you do not need a group of function modules to print a form, but only one.
    For Web publishing, the system provides a generated XML output of the processed form.
    Smart Forms provides a data stream called XML for Smart Forms (XSF) to allow the use of 3rd party printing tools. XSF passes form content from R/3 to an external product without passing any layout information about the Smart Form.
    SmartForms System Fields
    Within a form you can use the field string SFSY with its system fields. During form processing the system replaces these fields with the corresponding values. The field values come from the SAP System or are results of the processing.
    System fields of Smart Forms
    &SFSY-DATE&
    Displays the date. You determine the display format in the user master record.
    &SFSY-TIME&
    Displays the time of day in the form HH:MM:SS.
    &SFSY-PAGE&
    Inserts the number of the current print page into the text. You determine the format of the page number (for example, Arabic, numeric) in the page node.
    &SFSY-FORMPAGES&
    Displays the total number of pages for the currently processed form. This allows you to include texts such as'Page x of y' into your output.
    &SFSY-JOBPAGES&
    Contains the total page number of all forms in the currently processed print request.
    &SFSY-WINDOWNAME&
    Contains the name of the current window (string in the Window field)
    &SFSY-PAGENAME&
    Contains the name of the current page (string in the Page field)
    &SFSY-PAGEBREAK&
    Is set to 'X' after a page break (either automatic or command-controlled )
    &SFSY-MAINEND&
    Is set as soon as processing of the main window on the current page ends
    &SFSY-EXCEPTION&
    Contains the name of the raised exception. You must trigger your own exceptions, which you defined in the form interface, using the user_exception macro (syntax: user_exception ).
    Example Forms Available in Standard SAP R/3
    SF_EXAMPLE_01
    Simple example; invoice with table output of flight booking for one customer
    SF_EXAMPLE_02
    Similar to SF_EXAMPLE_01 but with subtotals
    SF_EXAMPLE_03
    Similar to SF_EXAMPLE_02, whereby several customers are selected in the application program; the form is called for each customer and all form outputs are included in an output request
    Advantages of SAP Smart Forms
    SAP Smart Forms have the following advantages:
    1. The adaption of forms is supported to a large extent by graphic tools for layout and logic, so that no programming knowledge is necessary (at least 90% of all adjustments). Therefore, power user forms can also make configurations for your business processes with data from an SAP system. Consultants are only required in special cases.
    2. Displaying table structures (dynamic framing of texts)
    3. Output of background graphics, for form design in particular the use of templates which were scanned.
    4. Colored output of texts
    5. User-friendly and integrated Form Painter for the graphical design of forms
    6. Graphical Table Painter for drawing tables
    7. Reusing Font and paragraph formats in forms (Smart Styles)
    8. Data interface in XML format (XML for Smart Forms, in short XSF)
    9. Form translation is supported by standard translation tools
    10. Flexible reuse of text modules
    11. HTML output of forms (Basis release 6.10)
    12. Interactive Web forms with input fields, pushbuttons, radio buttons, etc. (Basis-Release 6.10)
    You can search www.help.sap.com for more details.
    The following wesites provide details about ABAP and smartforms
    http://cma.zdnet.com/book/abap/index.htm
    http://www.sapgenie.com
    http://www.sappoint.com
    http://abap4.0catch.com/SAP_and_ABAP_Links.html#SAP_Hints_and_Tips
    http://www.sapgenie.com/abap/smartforms.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://help.sap.com/saphelp_46c/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm
    http://www.sap-img.com/smartforms/smart-001.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sap-img.com/smartforms/smart-002.htm
    http://www.sapgenie.com/abap/smartforms.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-basis-abap.com/smartforms/smartforms-in-details.htm
    http://www.erpgenie.com/abap/smartforms_detail.htm

  • ST-PI update need functional retest

    Hi,
    The EWA report, shows the need to update the ST-A/PI "Service Tools for Applications Plug-In" and the Add-On ST-PI (Solution Tools Plug-In).
    In the first case, the note is clear about this question, but in the other case it the note  539977 doesn´t say anything about this.
    The question is, if we have to retest any Business Functionality to upgrade ST-PI.
    Thanks in advance.
    Regards.

    Hello
    ST-PI does not have any impact on business component / process, thus you can upgrade it safely without needing regression testing.
    Regards
    Solution Tools Plug-In (ST-PI)
    Tool for Service Delivery and System Monitoring
    The add-on Solution Tools Plug-In (ST-PI) provides Basis and Trace Tools required for service delivery and system monitoring.
    The Solution Tools Plug-In contains the latest version of:
    Function modules for data collection
    Transaction SDCCN (Service Data Control Center)
    Application Specific Upgrade: ASU-Toolbox (Implementation as of ST-PI 2005_1_[46C,620,640] SP08, ST-PI 2005_1_[700] SP06 and ST-PI 2005_1_[710] SP04). See Notes 1132617 & 1175408.
    Custom Development Management Cockpit (CDMC). (Implementation as of ST-PI 2008_1_[46C,620,640,700,710] SP00). See SAP Notes 1243233 and 1244713.

  • URGENT: REGARDING SMART FORM CALLING FROM REPORT

    HI,
    I had made a report in which i have to display the output in smart form ,the problem is this i had delclared only 1 INTERNAL TABLE and i dont know how to display it in the smart form as i am new to it .
    if help me out with solution ,he or she will be definately rewarded.
    regards,
    ric.s
    Edited by: ric .s on Dec 21, 2007 10:22 AM

    Hi,
    You need to craete a SMARTFORM using transaction SMARTFORMS. In this trasaction under FORM INTERFACE give the variable which would be passed from your program.
    Then use these variables and pass the information in Windows which you will create in your smartforms.
    When you activate your SMART form it will create a Fucntion Module whihc you need to call from your report program.
    Please go through the information given in thread :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/16/a369b1800e4bdda978ee0fe3b7bd2c/frameset.htm
    /community [original link is broken] hreadID=187587&messageID=2096976#2096976
    /community [original link is broken]threadID=187587&messageID=2096976#2096976
    Refer to the following:
    http://esnips.com/doc/7e67af5c-6188-4252-8613-41816756d560/from-sappres.pdf
    http://esnips.com/doc/58566115-54a4-4405-8872-8de952e245e5/smartform.pdf
    http://esnips.com/doc/2276d194-dc47-4b1e-9c14-7af0ffe923ca/smartforms-xsf-output.pdf
    http://esnips.com/doc/13b7ae7a-b32c-4b96-b588-881859d4ac99/Template,Table,Loop,Command-in-Smartforms.doc
    http://esnips.com/doc/97acb00a-e513-4611-91f0-c626f460bfc5/Smart_Form_Overview.pdf
    http://esnips.com/doc/77a981b9-8fe3-4fbb-8101-67745c1fe60c/SMART-FORMS_shail.ppt
    Smartforms Step by Step...links
    Smartforms Step by Step...
    http://www.sapgenie.com/abap/smartforms_detail.htm
    Smartforms
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    This would give you information about smartform.
    Though the info is bit extensive but will surely help you.
    Reward if u find this useful.
    Regards,
    Lalit

  • Update DFKKOP in during FPCOPARA

    Hi experts,
    1) I am printing an Invoice thru FPCOPARA and needs to update some custome fields in DFKKOP table. can you please let me know which event or BAPI in need to call for updating the custom fields.
    2) After creating the invoice - thru application form (smartform), i need to covert it into XML and send it to legacy system. Can you please tell me the steps for this too.
    Thanks,
    Govind Parmar

    Hi Govind,
    As mentioned, you are using SMARTFORMS, for the application form type. So, there is an output option provided for the smartform, XSF (XML for Smartforms), that would give the XML format output.
    So, when you are running the FPCOPARA tcode, for the print parameter select the output type as XSF format, and for the spool that are generate you should be able to get the XSF format output.
    Also, for updating the DFKKOP table during printing, you need to handle the same in the User Exit for the application form. For DFKKOP, you can use FM 'BAPI_CTRACDOCUMENT_CHANGE' to change the document as already mentioned above.
    Hope this helps!!
    Regards,
    Rajesh Popat

  • Avoid Email address check while creating or changes functional location PM

    Hi Experts,
       We have upgraded 4.6C system to ECC 6.0 with EHP4.
    We are tring to change the existing functional location created in 4.6c through tcode IL02 -> location tab -> Email address.
    and tring to maintain value as 'CAP 20/20/97' in email address field but it pop-ups with the error message as
    'Email address 'CAP 20/20/97' is invalid'.
    We know this is a SAP standard check but as part of the AS IS functionality, end user is able to maintain the same value in 4.6c and expecting same in ECC 6.0.
    NOte : End user is using this field SMTP_ADDR (Email address) for multiple purposes.
    When we reached SAP, following is the SAP responce.
    This validity check is in compliance with RFC 2822.
    This behaviour is standard since note 799902. If you would like to see
    this functionality changed then please proceed as outlined in the
    attached note 11.
    Can any one provide work around solution to avoid the Email address validity check ?
    Regards,
    Suresh Goud.

    Hi Pete,
    I just want to find out the reason for occuring this issue in ECC 6.0. Is because of any incomplete validation / missing configuration / implementation of any other SAP Note ? PFA the SAP note details for your easy reference.
    SAP Note No. 1546997 
    Number 1546997
    Version 1
    Processor
    Processing Status New
    Implement. Status Cannot be implemented
    Language EN
    Short Text Correction of translation of '<Email address & invalid>'
    Component XX-TRANSL-NL
    Long Text
    Symptom
    Wrong translation /
    Reason and Prerequisites
    Solution
    Translation of objects using transaction SE63 (see further below)
    Transport Object(s):
    PgID Object Name
    LIMU MESS XS138
    Package: SCON
    Software Component: SAP_BASIS
    Application Component: BC-SRV-COM
    Translation Guideline:
    English Text: Email address
    Other terms
    SE63, SE91
    Valid Releases
    SAP Basis component
    SAP Note No. 1546997 11/11/2013 Page 2
    46C
    620
    640
    700
    710
    711
    701
    702
    720
    730
    Links to Support Packages
    Software Component Release Package Name
    Thanks & Regards,
    Lakshmi S

  • Error in smartform converting into xsf file

    Hi all,
    I have modified the standard purchase order and created a Zsmartform.The output is working fine in SAP.My requirement is that it should be sent to streamserve (which is a 3rd party tool ).
    For this in the Form Attributes I have changed the output format   : XSF Output
                                                                             & tput mode   :  SPOOL 
    and generate a xsf formatted xml file by printing it to my local PC.
    I followed the same procedure for my previous smartforms like invoice list , order confirmation,etc.
    But for this PO I'm getting the following error.
    <b>The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End tag 'v' does not match the start tag 'version'. Error processing resource 'file:///C:/TMP/PO2.xml'. Line 2, Position 85
    <smartxsf xmlns="urn:sap-com:SmartForms:2000:xsf"><header><general><version>1.14.2</v</b>
    Could anyone tell me how to resolve this error ?
    Regards.

    Hi,
    Can You Please tell me how you solve this problem?
    I am also facing the same.
    Thanks in Advance
    Swapnil

  • Https access to Sap Content Server 620 with R/3 46C

    We are trying to access the Sap Content Server 620 via Https.
    We do not want to administer it via HTTPS, (as we know CSADMIN doesn't support Https in rel. 46C as for note 712332). We want to do in way that the users when do check-in/out of originals these go across the
    network using Https instead Http.
    According note 712330 it should be possible.
    Anyone already did it ?
    Any suggestions ?
    NOte 506314 is not clear. We are in doubt how we applyed it.
    What we did:
    0)activate the SSL on the Sap COntent Server Web Site, requiring and installing a CA certificate.
    1)On the R/3 server in tx OAC0 with %HTTPS filled up the
    two boxes with "%HHTPS
    required"                                           
    1)unpacked the Sap criptolibrary and copied all the files (including those in ntintel subdirectory created during the unpacking) under c:\Programmi\Sap\Frontend\Sapgui on a frontend PC.                                                                               
    2)set the env. variable SAPHTTP=c:\Programmi\Sap\Frontend\Sapgui on 
    Frontend PC                                                                               
    3) from c:\Programmi\Sap\Frontend\Sapgui we created both the SAPSSLC.pse and the SAPSSLS.pse file with the command  :            
    3) from c:\Programmi\Sap\Frontend\Sapgui we created both the          
    SAPSSLC.pse and the SAPSSLS.pse file with the command  :              
    sapgenpse get_pse -noreq -p C:\Programmi\SAP\FrontEnd\SAPgui\<PSE-NAME>
    CN=localhost                                                                               
    4) we run the test: saphttp https://itmif069
    from the frontend to the server where the Content Server is (itmif069). We recive the error:
    trc file: "dev_http", trc level: 2, release: "620"
    Fri Oct 08 12:26:46 2004
    [2256] sccsid: @(#) $Id: //bas/620/src/krn/ftp/http.c#26 $ SAP
    [2256] HTTP Start : argc - 2 a0 - saphttp
    [2256] https//itmif069
    [2256] SECUDIR=C:\Programmi\SAP\FrontEnd\SAPgui
    <<- SapSSLSetTraceFile()==SAP_O_K
    =================================================
    = SSL Initialization
      SapISSLComposeFilename(ssl_lib): using default "sapcrypto.dll"
      SapISSLComposeFilename(server_pse): using default "SAPSSLS.pse"
      SapISSLComposeFilename(client_pse): using default "SAPSSLC.pse"
      SapISSLComposeFilename(anon_pse): using default "SAPSSLA.pse"
    = found SAPCRYPTOLIB  5.5.5C pl16  (Jun 10 2004) MT-safe
    = found SECUDIR environment variable
    = using SECUDIR=C:\Programmi\SAP\FrontEnd\SAPgui
    =  secudessl_Create_SSL_CTX():  PSE "SAPSSLA.pse" not found,
    =      using PSE "SAPSSLC.pse" as fallback
    = The Server SSL_CTX
    =    provides this ordered list of 9 ciphersuites:
    =       1.  SSL_RSA_WITH_RC4_128_SHA
    =       2.  SSL_RSA_WITH_RC4_128_MD5
    =       3.  SSL_RSA_WITH_3DES_EDE_CBC_SHA
    =       4.  SSL_RSA_WITH_DES_CBC_SHA
    =       5.  SSL_RSA_EXPORT_WITH_DES40_CBC_SHA
    =       6.  SSL_RSA_EXPORT_WITH_RC2_CBC_40_MD5
    =       7.  SSL_RSA_EXPORT_WITH_RC4_40_MD5
    =       8.  SSL_RSA_WITH_NULL_SHA
    =       9.  SSL_RSA_WITH_NULL_MD5
    = Success -- SapCryptoLib SSL ready!
    =================================================
    <<- SapSSLInit(, read_profile=0)==SAP_O_K
    ERROR => [2256] URI https//itmif069 [http.c       774]
    ERROR => [2256] Connect to Host  Port 443 error: NIECONN_REFUSED
    [http.c       777]
    We do not know if the criptolibrary ha to be instyalled to the R/3 server to.
    We do not know if the CA certificate instalelled on the Sap COntent Server web site has to be installed on the R/3 server too.
    Any suggestion ?
    Regards

    Caro Mauro,
    I'm more or less in the same situation right now.
    Taking into account that you ask for help on this subject last 2004 Oct. I suppose that you have probably solved the problem.
    Please can you help me with the solution implemented.
    Find below my current work e-mail adress
    [email protected]
    Thanks in advance,
    Best regards, Xavier Grau.

  • Urgent : Display logo in Smartform with XSF+ HTML as Output Format

    Hi,
    Through the Portal we are displaying ESS Salary Statement of a Employee for last 24 monthys in the iView using the Customized Smartform  “ZHR_ESS_PAYSLIP_TO_PDF”  which is copy of Standard Smartform  “HR_ESS_PAYSLIP_TO_PDF” .
    Requirement is that we have to change the Output Option to "XSF+HTML" and Display a logo at Top-Middle of the form.
    But the problem is that Logo is only visible only when Output Option is "Standard Output". and not visible when Output Option is "XSF+HTML".
    Please tell me how to display the Logo in the Smartform so that it is visible in "XSF+HTML" or "XSF" as Output Option.
    Asnwers will be suitably rewarded.
    Thanks,
    Ajay Jangid

    Hi Ajay,
    Following threads may help you
    Smartforms to Xsf & Html format
    /message/1484753#1484753 [original link is broken]
    Regards,
    Manoj

  • Line Color and color shadow in smartform with release 46c

    Hi, we have a sap system release 46c.
    We are developing a smartform, the smartform have a template with multiple box,lines and columns.
    We want that the lines will be in one color and some of the box will be filled with a color.
    Is possible have color lines in smartforms in release 46c ?
    Is possible to fill a box with a color in a smartform in release 46c?
    Thanks in advanced.
    MANUEL
    PS. We are using a template to draw the box.

    When you Creating Lines in Tables OR when you creating Templates in SMART FORMS,
    You can specify FILL COLOR for each CELL/ROW/COLUMN of Table or Template.
    For that you must choose Item(table/template) in Tree in smartforms.
    Then you must choose Cell(s) which you want to color-fill, and then choose color from "Shadowing" OR "Shading" ("&#1054;&#1090;&#1090;&#1077;&#1085;&#1086;&#1082;" on Russina) color-menu.

  • Smartforms to Xsf & Html format

    Hi all,
    Can any one tell me how to get XSF output or XSF+html output from a smartform.

    Hi  Vasuki,
    check these below links u can get some info on the same ....
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=1906037
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=2250901
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=2894726
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=2389768
    https://forums.sdn.sap.com/click.jspa?searchID=1742392&messageID=3090195
    ~~Guduri

  • XSF Output from the Smartform

    Hi,
    How do I create XSF output from the Smartform(PO).
    Appreciate your reply.
    Thanks,
    Ramesh

    hi ramesh,
    below is the link i found some information about XSF output.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a5/28d3b6d26211d4b646006094192fe3/content.htm
    reward me if useful.......
    thanks,
    gupta pullipudi

Maybe you are looking for

  • Attribute not showing up in Transfer Rule.

    This is my first posting on the forum. I am running into issue with the Transfer Rule. I have extended the existing BC extractor (0BEN_PLAN_TEXT) to include a field (ZZVENDOR) in R/3. I also replicated into BW. Then in BW I created a infoobject (ZZVE

  • Help me style buttons & forms in InDesign

    Hi there, I am using Buttons & Forms in the Interactive for PDF workspace for the first time, and am having trouble with a few things: -  I can't seem to change the style of the text in a text field. It reverts to 12pt black Times in the PDF, even wh

  • Add Find & Replace Buttons

    Dear Mi_D, I got your reply. But couldn't reply you on my previous ID due to loss of my password. I forgot my password for my ID. I created new account. I have tried your code but it is not working. It doesn't show any dialog box. Could you please ch

  • Fundamental BI questions

    I'm a consultant that has just started a new job/project. Please correct me if I'm wrong, but I've always understood BI to be a tool for producing meta-data-- in other words, it is used to provide summary reports, queries, high-level statistics/views

  • HT201272 Music Album not in libraby or cloud??

    Help Please! I puchased christmas albums last year, but they are not showing in my library.  They show purchased in itunes but not no cloud to downloan and I don't even have the option to repurchase??????  Where did they go and can someone help me fi