Unable to view adobe form from portal

Dear All,
We have install SAP Enterprise Portal 7 ehp1 SP 7 standalone jave system on windows 2008 R2 oracle 10g
We have ABAP system as backend system seperately and Single sign on is configured.
when we access the portal with domain name line http://hostname.domain/52000/irj/portal, we are able to access the adobe form which is develope on abap system without any issue.
but our issue started when we are trying to access portal only with hostname as http://hostname:52000/irj/portal
we are able to login to portal but when we are trying to open the adobe form we are getting error
No switch to HTTPS occurred, so it is not secure to send a password
Could you please let me know any setting i have missed
Sincerely
Paresh

Hi,
We have ABAP system as backend system seperately and Single sign on is configured.
when we access the portal with domain name line http://hostname.domain/52000/irj/portal, we are able to access the adobe form which is develope on abap system without any issue.
but our issue started when we are trying to access portal only with hostname as http://hostname:52000/irj/portal
we are able to login to portal but when we are trying to open the adobe form we are getting error
No switch to HTTPS occurred, so it is not secure to send a password
Since you have configured SSL, I assume that this configuration is done with fully qualified hotsname. Hence the certificate is generated based on this hostname.
Now when you access your portal without typing fully qualified hostname, system is unable to locate a relevant certificate. Hence it lands up with a message "No switch to HTTPS occurred, so it is not secure to send a password"
Hope this answers your query
Regards,
Deepak Kori

Similar Messages

  • Getting special character while saving adobe form from portal

    Hi All,
    I am getting Special character while saving adobe form. I am using webdynpro java application, in which I am using download file UI element.We are facing this issue after support packs were implemented in staging system.
    Kindly advise.
    Regards
    Shashwat

    Hi,
    We have ABAP system as backend system seperately and Single sign on is configured.
    when we access the portal with domain name line http://hostname.domain/52000/irj/portal, we are able to access the adobe form which is develope on abap system without any issue.
    but our issue started when we are trying to access portal only with hostname as http://hostname:52000/irj/portal
    we are able to login to portal but when we are trying to open the adobe form we are getting error
    No switch to HTTPS occurred, so it is not secure to send a password
    Since you have configured SSL, I assume that this configuration is done with fully qualified hotsname. Hence the certificate is generated based on this hostname.
    Now when you access your portal without typing fully qualified hostname, system is unable to locate a relevant certificate. Hence it lands up with a message "No switch to HTTPS occurred, so it is not secure to send a password"
    Hope this answers your query
    Regards,
    Deepak Kori

  • Problem during view Adobe Form in Web Request

    Hi All,
    I am facing problem while viewing the adobe form inside the Web Request form.
    Let me describe the issue clearly.
    I need to have a table in Adobe Form.So i created one table type and bind it to the table structure created, in Adobe Form.
    Then i uploaded the form as web request successfully.
    Now when i m trying to view the form from web ui, its unable to assign child node data at runtime.so dump is coming.
    Can anyone show light on this....i have tried all the possibilities.
    Unfortunately there is no standrad scenario available for reference.
    Regards,

    Hi Satish,
    Thanks for your reply.But this is not my requirement.
    If you will go to tcode CRM_UI and log in using business role CRMGRMPRGMAN, then go to Application and open one application.Here there is one assignment block called 'Application Form'. Here i have uploaded my Adobe Form as web request.
    This is working fine when i have simple linear form.
    But when i am using table inside the form and doing binding for it, Application is getting created with that form but while openning it here in the assignment block, dump is coming as below.Its not able to assign the child node.
    The ABAP call stack was:
    Method: NODE_ELEM_2_STRUCT of program CL_WD_ADOBE_SERVICES==========CP
    Method: NODE_2_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: DATASOURCE_2_FM_PARAMS of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Regards...

  • Call standard adobe form from a WD application

    Hi All,
    I have a requirement of displaying a standard adobe form from a click of a button in a WDA portal,
    I am an ECC developer and have no idea of WD. I created a function module which uses submit statement to invoke the driver program and displays the PDF output, but when this function module is invoked from the portal on the click of button it gives and error FP job open error.
    I understand that displaying PDF wont work in this way on portal, so can anyone please guide me the correct procedure on how  to achieve this.
    I came across this thread
    [Regarding adobe form using Webdynpro ABAP|Regarding adobe form using Webdynpro ABAP]
    which mentions of feeding the complete PDF document to the UI element as an XSTRING context node bound to the pdfSource property, but the help link provided in the thread is not opening.
    Thanks in advance.
    Regards,
    Kartik

    Hi karthick , creat a button in the view and assign a action to it .
    inside that action eventhandeler method  call the method for prepare_adobe _form for dislay PDF  .
    method ONACTIONSHOW_ADOBE_FORM .
    data : l_pdfstring type xstring.
    " Select for print
    wd_this->prepare_adobe_forms( importing p_pdf = l_pdfstring ). " coding is given below
    " Call print
    cl_wd_runtime_services=>attach_file_to_response(
    i_filename = 'adobe_form.pdf'
    i_content = l_pdfstring
    i_mime_type = 'application/pdf'
    i_in_new_window = abap_false
    i_inplace = abap_false ).
    endmethod.
    prepare PDF
    method prepare_adobe_forms.
    data: lv_funcname type funcname.
    data: ls_outputparams type sfpoutputparams.
    data: ls_formoutput type fpformoutput.
    call function 'FP_FUNCTION_MODULE_NAME'
    exporting
    i_name = 'FP_TEST_DATE'
    importing
    e_funcname = lv_funcname.
    ls_outputparamsu2010nodialog = 'X'. " suppress printer dialog popup
    ls_outputparamsu2010getpdf = 'X'. " launch print preview
    call function 'FP_JOB_OPEN'
    changing
    ie_outputparams = ls_outputparams
    exceptions
    cancel = 1
    usage_error = 2
    system_error = 3
    internal_error = 4
    others = 5.
    call function lv_funcname
    * exporting
    * /1bcdwb/docparams = fp_docparams
    importing
    /1bcdwb/formoutput = ls_formoutput
    exceptions
    usage_error = 1
    system_error = 2
    internal_error = 3
    others = 4.
    call function 'FP_JOB_CLOSE'
    exceptions
    usage_error = 1
    system_error = 2
    internal_error = 3
    others = 4.
    p_pdf = ls_formoutputu2010pdf.
    endmethod .
    Regards
    Chinnaiya P

  • Call XML Schema based Adobe form from ABAP Program

    Hi,
      I have a scenario where an online Interactive form is designed and its working fine. Now i have a requirement to call the same Adobe form from a report for viewing purpose. Since it is XML Schema based Interface, is it possible to call the same form instead of creating a new one with the same template? Because i tried to call the same Adobe form by passing the values and converting those to XML(By Creating Transformation). Then i converted the XML to XSTRING and passed to the Generated Function Module for Input paramter "/1bcdwb/docxml". This resulted in an error "com.adobe.ProcessingException: com.adobe.Processin".
    Please help me out in solving this and check the attachment for code.
    Thanks,
    Raj

    Hi,
    outputparams-NODIALOG   = 'X'.
    outputparams-PREVIEW     = 'X'.
    outputparams-dest = 'LP01'.  "give ur printer name.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = outputparams
      EXCEPTIONS
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        OTHERS          = 5.
    and Now call the generated function module
    pass the following in docparams
    docparams-langu = 'E'.
    docparams-country = 'US'.
    and finally close the job.
    It should work.
    Please let me know if u need further details.
    Regards,
    sasi

  • Adobe Forms On Portal

    Hi Experts,
    My requirement is i need to create the interactive adobe form and this adobe form is finally accessed through portal and there are some approval process involved in this scenario. Now my doubt is do i need to create the adobe form through webdynpro stack or can i create the form and interface directly in transaction "SFP". If i create the form using SAP GUI is it possible to access such forms through portal. I need your suggestions and comments on this.
    Finally my doubt is can we access the interactive adobe forms  which are developed in transaction "SFP" through portal, and my print program also exists in the ABAP editor which has logic to fetch and display the data into adobe forms.
    or do we need web dynpro application to access the interactive adobe form  through portal.
    Your help will be greatly appreciated.
    Regards,
    Venkat

    Anto,
    Thanks for the info, actual my requirment is when ever user login into portal he will find list of purchase orders then in the object work list(OWL). He will choose one record and click edit button then the adobe form corresponding to that purchase order should open in edit mode, now here my question is how can  my print program in SAP GUI know that the user has choosen particular purchase order, i will fetch the data based on my selection criteria and i can display data according to that, but how can i display the data in edit mode when the user has choosen some record from OWL.
    For example : if user selects purchase order 123  from object work list then the same purchase order 123 header and item details should open in the adobe form in edit mode. If my application is developed in SAP GUI side then how can my application program fetch the data related to pirchase order 123 in portal. When i write an ABAP program i will write the logic to fetch and display the data according to my selection criteria, i am unware of what is happening at protal side how can one map my selection criteria details to the record selected in object work list, is this possible , if not what is the alternative way. kindly suggest
    For such type of requirement, what exactly need to be done either web dynpro interactive form or SAP GUI interactive form.
    Or both scenario's also possible. Kindly suggest.
    How can we achieve this using web dynpro application or SAP GUI application.
    Your help will be greatly appreciated.
    Regards,
    Venkat

  • Adobe Forms in Portal

    <u><i><b>Adobe Forms in Portal</b></i></u>
    <i>Manager Self Service:</i>
    Say suppose i want to integrate "Change Personnel Area and Sub Area" into Portal:
    I can deploy the MSS Business Package in Portal & with the appropriate iviews installed i can access "Change Personnel Area and Sub Area" in Portal.
    The above thing works without any issues.
    I have ads configured, acf & adobe lifecycle designer installed -- config tests are successfull for some sample webdynpro applications.
    <i>
    NEW Requirement:</i>
    Users want to see the same "Change Personnel Area and Sub Area (ISR_FORM_SPPA, ISR_IF_SPPA) " in Portal as adobe interactive forms.
    Can you tell me where i have to start to accomplish the above task?
    Any insight on the below stuff would be higly appreciated and rewarded.
    1)?backend tcode sfp?
    2)?web dynpro java?
    3)?business package Enterprise Portals?
    Thanks in Advance,
    RK.

    Hi RK,
    We had a similar requirement and we used Web Dynpro for Java which contained the Interactive Form that would display the personnel area, personnel sub area, etc.
    We developed a custom application in WD Java which would accept entries from the user on each screen after clicking on the Change Personnel area link in the portal. The user would put in the values and when the user would click on the Submit button, an adobe form would be displyed which would show the existing values as well as the values the user newly entered.
    Hope this helps. Do let me know if you need any further inputs.

  • Adobe forms from scratch - Standard programs?

    Hi,
    I have just begun trying to implement Adobe forms from scratch at my company. Previosly we have used an external printing solution so I can't convert anything. My plan is to create a new output medium and let the users select the new type by themself. But I have a couple of questions:
    1. How do I create a new medium (Examples: Print output/Fax/Telex, as found in t-code NACT - Processing routines)
    2. I guess there are SAP standard printing programs, interfaces and forms, but I can't find them. I need to be able to print all the usual docs from orders, deliveries and invoices. All I have in NACT are old home-made (Z*) programs so if you know what SAP think we should use now, please let me know!
    We have ERP6 ehp4 on netweaver 7 ehp1 and I have created one "Adobe form" myself so I can confirm that it works. but I don't want to invent the wheel twice...
    Thanx in advance!
    Br Linus Hellsing

    Hi Linus,
    I was wondering if you had a moment to comment on an opportunity that I am having regarding Adobe forms development efforts?
    If so, please read on:
    Our offshore team has worked on a development effort to replace Smart Forms PO's and Contracts with Adobe forms. They created new output types for these Adobe forms. In testing I noticed that the only way I can get them to print - is if I go into Print Preview and print -or- use SP01 and click on the .pdf icon and print. In both cases it uses Adobe Acrobat to perform the actually printing.
    We cannot seem to get them to print using the normal SAP message utility. Our users would expect to continue to:
    1. Use the Messages button while in the PO document - and select the new output type along with Meduim= Printed Output...
    2. Then they select Further data button - to specify Send Immediately.
    3. Then they use the Communication Method tab and specify the Logical Destination (as LOCL) and click on the Check box for Print immediately.
    They get what appears to be an rambling of Adobe error lines followed by many blank pages....
    At this point I am not sure if the print program is working correctly - or if the problem is with Adobe Document Services?
    Have you ever encountered a situation like this during your Adobe development efforts?
    Any suggestions would be appreciated.
    Regards,
    Steve

  • Integrating Offline adobe form in Portal

    Hi All,
    I created offline adobe form using SFP tcode.
    This form needs to be integrated in Portal. When user logs in, he/she should be able to open this form.
    Can offline adobe form can be integrate to portal directly? or do we need to create the Webdynpro applications only for poral?
    Please let me know whether we can integarate offline adobe form to portal directly. If not why?.. I don't know about portal.
    Thank you!
    Prasad

    Hi Deepika,
    This discussion thread is all about integrating a WebDynpro application which contains adobe form into portal.
    I assume your requirement is different which needs to upload an offline adobe form into portal.
    There are documents available to explain this functionality in detail. Please note down the following.
    1) For uploading adobe form should be XML schema based.
    2) There should be a webdynpro application with uploader UI element which has been integrated into the portal.
    3) On form upload, you will get all the data associated with the form within webdynpro
    Thanks & Regards,
    Sanoosh

  • Calling adobe form from Web Dynpro ABAP

    Hi Friends,
                        This is the following error, which i got when i tested my application. Calling adobe form from Web Dynpro ABAP.
      WebDynpro Exception: ADS: Request start time: Tue Nov 16 14:00:22 YEKT
      2010(200,101).
                        Can some one tell me how to solve this....
    Regards
    Sankar

    Hi,
    Please refer to this same link in forum
    WebDynpro Exception: ADS: Request start time, start Interactive Form
    WebDynpro Exception: ADS: Request start time
    Thanks
    Pradeep

  • Picking of Adobe forms from application server

    Hi Gurus
    We have SAP ECC 6.0. So far in our system we have text files and CSV excel files which comes from external system and lies in application sever and these are being picked up automatically by system and gets processed in SAP.
    1)The requirement is to "pick the adobe forms from application server and read some fields in the form and update the fields (required) in customer master data in SAP". How can we achieve this?
    Any kind of help is appreciated.
    Thanks
    Aleem

    Hi Aleem,
    I tried to work on a similar scenario couple of months back. But it was not successful. Will you please let me know if you get any solution???
    Thanks in advance
    Poornima

  • I am unable to create adobe file from attached document from email

    I am unable to create adobe file from attached document from email. No 'open in' link is available as given in directions. What to do?

    Because there is no abode on the IOS.  you'll need to do a search in the app store to resolve your issue.

  • Unable to view client logs from sccm console

    Hi
    unable to connect to ccm and unable to view client logs from console. Console installed is on another server that is not site server
    Regards Sushain KApoor

    Hi
    SCCM right click tools adds multiple ‘Client Tools’ entries
    are comming when i right click on the clients. when i check for logs it shows client logs written only. More over when i try to connect to C$ i am able to connect to from console right click tools but when i go for connecting ccm folder it says no directory
    found admin$\system32\ccm, but my machine is of 64 bit OS hence it should go to syswow64. any ideas how to resolve the same.
    i am planning to go with
    http://blog.danovich.com.au/2010/11/16/sccm-right-click-tools-adds-multiple-client-tools-entries/ this option
    Regards Sushain KApoor

  • Calling and manipulating data on an Interactive Adobe form from ABAP report

    Dear All,
    Can you please tell me how to call an interactive adobe from from a custom adobe form?
    If so how can we pass and receive data between the interactive adobe form and the abap report program?
    Thank you.
    Regards,
    Prosenjit.

    Hi,
    It is possible to call an Interactive Adobe form from ABAP report and pass data into the form. If you search the forum, you will get many threads explaining the process. Let me know if you have any specific questions on this.
    Regards,
    Sanoosh

  • Default email subject for Adobe Form from Netweaver Guided Procedure

    Hi everyone.
    When we generate an Adobe form from a Netweaver Guided Procedure, a default subject of "Interactive Form {xxxxxxxx}" is used where xxxxxxxx is the Process ID of the Guided Procedure.  Is this default subject configurable?  Where can I change it?
    If we define a custom email template for the form,  the subject of the email becomes our custom subject concatenated with the Process ID.  Where is it defined that the Process ID must be included in the email subject?
    Thanks,
    .. Craig

    Hello,
    I have no experience regarding the table of pictures, but you could try a workaround if you don´t insist of displaying the images. You could attach the pictures as attachments (you know, the little attachments icon on the left in your Reader). The ABAP coding for this can be found in SE38 FP_* and when you check the descriptions you should be able to find the one working with the attachments.
    Would be better than nothing I guess,
    Otto

Maybe you are looking for

  • How do I set up original windows 8 DVD on a Macbook air when my external drive needs both usb ports?

    got a brand new macbook air and want to set up an original Windows 8 DVD via bootcamp. Probleme: my external DVD needs 2 usb port connection so I want have a chance to plug in an usb drive at the same time. Any other choice to get along?

  • Need to send my PC in

    I need to send my computer in to be repaired and i cant seem to locate a link or anything to register the necessary information. Can someone help me out plz?

  • Powering on is mest up! Need Help!

    When I turn on my Blueberry iBook G3 Clamshell it turns on properly making the chimes noise and everything. Then it just stays on a gray screen and in the center a folder switches from a folder with the "finder: logo on it to a folder with a "?" on i

  • Template removal issues

    I have editable regions that I have removed in my templates but they are still present in the pages that were created  from the templates how can I remove them in the pages??,

  • New image issues.  disk utitily progress resource is busy

    I have a lab of 20 new Imac computers. I want pull an image from one computer that I configured to the other 19 computers I installed leopard on a firewire drive restarted Imac pressed option and booted the firewire drive opened disk utility highligh