About SRM web survey form submit

Hi, Expert
     I meet a requirtment, and I need to collect the questions from the third part web, then I need to submit the survey with ABAP code, could you give me some useful help? and I am using SRM7.0 .
    I found the class method 'On_input_processing', but I don't know how to use it and if it is useful.
thanks.

Hi Palaniappan
Thanks for your reply.
Now my old flow is: 1. The supplier fill his info by SUS(It is developed by BSP), then the system automaticlly send a mail(The mail contain a URL that lead the user to the survey form).
                                2. After the supplier receive the mail, and click the URL to open the survey form, when he fill all needed fields, then he click the button "SUBMIT".
my new new flow is 1. The supplier fill his info( include the survey info) in the third part web page and save the data.
                                 2. when he click "SAVE", my interface need to create a vendor with "ROS_BUPA_CREATE_PROSP".
                                 3. when I get the vendor's GUID, I need to submit the survey data.
My question is how to submit the survey data with ABAP code without web form environment.
Could you give me some suggestions or example!
Thanks.

Similar Messages

  • PLSQL Web Toolkit Form:Submit

    I have a web page with a submit form. The Action = a web app server on my machine. I want to be able to call this web app server from a plsql procedure instead of through conventional ways. Now the web app server is called when the form is submitted. ie. using javascript ThisForm.submit(); .
    Is there a way to call the web app server?
    Any Help is Greatly Appreciated.
    Joe

    For WebDB / Oracle Portal users
    Please now move from the iAS WE / Portal-to-Go forum and use the following one:
    http://technet.oracle.com:89/cgi-bin/forumdisplay.cgi?action=topics&number=66&SUBMIT=Go
    Thanks.
    null

  • Is there any code example for "Web Survey"?

    Hi buddies,
    In the standard SRM Web Survey scenario, the experts submit questionnaire online. But our custmer want it offline.
    So we use offline Adobe Forms, the problem is after we get the data by uploading the offline PDF, how we put the data into the standard Web Survey. Is there any function moudle , BAPI, class for this purpose?  Is there any code example?
    Thanks!
    Hao

    I have tried to write some report using pch logical database and successed.
    在报表自身中,从 GET OBJEC 点,作为规定,数据库驱动程序将文件 PLOG 中的选定的选择恢复为规定的并检查权限。
    指令 TABLES 中结构声明是前提。若除了结构 OBJEC,还定义结构 GDSTR,则将结构评估的参数添加到标准选择屏幕。这可以通过评估路径进行结构评估。
    REPORT  ZPHC_TEST.
    TABLES : objec.
    infotypes: 1000.
    INITIALIZATION.
    START-OF-SELECTION.
    get objec.
    WRITE : p1000-objid.
    end-of-SELECTION.

  • Many of our form submissions do not generate an email notification.

    Any ideas why about 30% of our form submissions do not generate an email notification?  We use FormsCentral for a rental reservation form and we have lost several rentals recently because we never knew about the reservations.  We hate to abandon all of the work we put into making this form work so any help is appreciated. Otherwise, we will leave Adobe very soon.

    Hi,
    The E-mail template is actually works as an HTML or CSS page. You need to use the HTML/CSS formats to send these values in the format as you want. Use <tags> to do the formating of Email template. 
    Use function to store multiple values and thn use them into Email 
    I hope this will help. 
    Thanks~ Giriraj Singh Bhamu

  • Problems about deploying Oracle web application (Forms, Reports)

    I am going to deploy Oracle web applications (Forms and Reports) and plan to use the same server machine for both Application web server and Database server.
    1. How can I enable SSL (for data encryption) on Application web server for Oracle Forms ?
    2. Since both Application web server and Database server will use the same machine, do I still need Oracle Advanced Security for data transmission between Application web server and Database server if data encryption for transmission is required ?
    3. Can I user Oracle Forms to call Oracle Report on web as I did in Client/Server in the past ?
    Experts like you may have come across such problems. Would you please give me some opinions/ideas ?
    Regards,
    Richard

    1. check the paper about the Forms servlet architecture on otn forms section for SSL tips.
    3. Check the reports and forms integration paper on otn too.

  • Increase in SPAM web form submissions

    Hi,
    I'm noticing a trend of increased SPAM web form submissions across most  of our BC sites. This has got particularly bad in the past week or so. All SPAM submissions follow a very similar theme. The text is complete 'gobbledygook' basically! The forms being used don't have any description fields where long descriptions or links can be entered so I struggle to see why this is happening.
    What I want to know is:
    - is this something other BC partners are noticing, particularly recently
    - are your SPAM submissions similar to what I have shown below
    - what can we do to reduce these other than using CAPTCHA on all forms?
    - we exclusively use BC but I would be interested to know if the BC platform is particularly bad for SPAM submissions or is this something all sites are suffering from nowadays?
    - any other light you could shed on this issue or advice you could impart would be much appreciated
    Real submission example:
    First name: tjlavseb
    Surname: tjlavseb
    Email: [email protected]
    Date: hgnhQMmssGynJLb
    Time: 11am
    House Name: LHkJxazHGUYClEZJQd
    Street address: nvOaQumEsbBGsA
    Postcode: lJEODtxlXj

    Hi there,
    We are experiencing a high volume of spam since changing our web forms on our newly redesigned site. The objective of the site design was to make it quick and easy for clients to get a quick quote thus asking for only a few fields to be completed. Adding a captcha form would actually detract from the purpose of the form.
    We have implemented the honey pot field which seems to have made little to no difference in volume (this seems to be the case for this fix across many other users of BC). The problem is with our spam is quite unusual whereby we are not getting any specific info from them really making it hard to detect if it is spam or real. See example;
    Have you seen this type before? 
    Your Name
    David
    Email Address
    [email protected]
    Case Number
    4257685
    Company
    casterick
    Date
    18-Apr-2013
    Location
    Victoria
    Type
    Meeting
    Your Requirements

  • Submit Web Dynpro form to external URL

    Is there a way to submit a Web Dynpro form to an external url using the POST method?
    I am able to use the onExit plug to pass a URL and submit query string parameters to the external url.  My concern with this solution though is that the query string has length limits in different browsers (IE 2048 chars, etc.).
    Any help/direction would be great.

    Hi
    You can create a html page as a web resource and write an active script in it so that it submits itself.
    I am not sure if it will work. But give it a try.
         StringBuffer sb = new StringBuffer();
         sb.append("<html>");
         sb.append("<head>");
         sb.append("<SCRIPT LANGUAGE="JavaScript">");
         sb.append("function submitForm(){");
         sb.append("document.form.submit();");
         sb.append("}");
         sb.append("</script>");
         sb.append("</head>");
         sb.append("<body onload="submitForm()">");
         sb.append("<form method=post action="Your_Active_Script" name="form">");
          Similarly append body of the form
             Which might include hidden parameters
         sb.append("</form>");
         sb.append("</html>");
         IWDCachedWebResource webResource = WDWebResource.getWebResource(sb.toString().getBytes(),WDWebResourceType.HTML);
         try {
              wdComponentAPI.getWindowManager().createExternalWindow(webResource.getURL(),"Some Title",false).open();
         } catch (WDURLException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    Regards
    KK

  • Web form submit to external email address

    I am trying to submit web form to email on external email server.
    I have followed the following: however - I get email message as the Administrator that this email address does not exist in the system.  Is it even possible to route to external email server?? Am I missing something?
    &Email=[email protected] - The email adddress to which the submission is sent. Replace “[email protected]” with your email address.
    Note: The email address that will be receiving the form submission must exist in either your sites CRM (customer database) or be a admin/email user of the site.
    If the email address being used to receive these form submissions does not exist as a site user or in the CRM, then the email will not be sent. A notification will be sent to the partner of the site advising them of this requirement.
    &Subject=This+is+email+subject - The subject of the email. Make sure you separate each word in the subject with the + (plus) sign.
    &EmailFrom=[email protected] - The from email address. Replace [email protected] with the email address you want to use for the submission.
    &PageID=/DestinationPage.html -  The URL of the landing page presented to the visitor after the web form has been submitted.

    Hi there.
    To not use the Form to CRM/Case form in BC you need to update a forms action as outlined in the guide here:
    http://kb.worldsecuresystems.com/kb/setting-form-email-using-web.html
    You pasted some of it But your post is a bit messed up I think. have ou updated the action? Got a link to the form?

  • SRM ROS - SAP Web survey tool

    Hi,
    Is it possible to analyze the answers of the suppliers on the web survey tool to keep statistics. For example, what percentage of the suppliers that register as potential suppliers of the company have ISO 9000 implented?
    Thanks
    Ezequiel

    There were no comments.

  • Where is the PDF file generated by the form submit?

    I am designing a form with Adobe Acrobat Pro X that will be filled in on the web. So I've got a Submit button on it set to Submit a form, being sent to a URL (an html file), and I have checked (under Export Format) PDF The complete document.
    So where is this exported PDF file once a user has submitted the filled-in form?
    How can my html file find this PDF file?
    I don't see where you define the location for these PDF files to go. I haven't been able to find a repository with these PDF files in them. And I can't find any info on the web.

    Thanks - yes, that's right.
    I've been working on php code to get the data sent by the form, save it to a file and send an email with the file as an attachment.
    If I set the form submit button in the AA form to send the data in fdf format, the php file only seems to get header info. If I send using pdf format, it gets pages and pages of code and symbols. Nothing I can parse.
    Can't figure out how to save these pages and pages of code and symbols to a file and not very confident that if I did manage to and send them as an email attachment that they would ever reformat themselves to become a readable PDF.
    All I want to do is send the filled-out form as a PDF attachment to an email. I don't care about the fields or the data - I just want the PDF.
    And, no, I don't want to use the submit form to email feature because it is clunky.

  • PHP/MySQL: Get value from one field, subtract 2, multiply by 20,   and insert value into another column on form submit

    Hello all,
    I'm pulling my hair out--thank you for any help you can give
    me.
    I have a form that a person fills out that has a field that
    asks "How
    many visitors including you" and I'd like them to type in a
    number, and
    on submit of the form, have that value -2 multiplied by 20
    and inserted
    into a "total cost" column.
    I'm using the standard DW server behaviors and I've searched
    the
    internet. How do I perform basic math on that value and
    insert it into
    the database?
    If you have any pointers, that would be great.
    Thank you!
    -John

    John R. Lenz wrote:
    > Your code below works great, and I just noticed links to
    your book were
    > available on your web site, and it's in the mail to me.
    Looking forward
    > to it.
    Thanks, hope you find it useful.
    > After the form is posted, I'd like to address the person
    who posted it
    > by their first name and last name, as well as some of
    the details. How
    > would you go about doing this in the best way? Would you
    set a variable
    > and echo it on the 'Thank you' page, or are there better
    ways of doing
    > it with a recordset and filtering it on form submit?
    To pass the details to a thank you page, you would need to
    store the
    information in $_SESSION variables. You could amend the
    earlier script
    like this:
    <?php
    session_start();
    if (isset($_POST['visitors'])) {
    if ($_POST['visitors'] < 3) {
    $num = 0;
    } else {
    $num = $_POST['visitors'] - 2;
    $_POST['total_cost'] = $num * 20;
    $_SESSION['total_cost'] = $_POST['total_cost'];
    $_SESSION['first_name'] = $_POST['first_name'];
    $_SESSION['last_name'] = $_POST['last_name'];
    ?>
    In the thank you page, put the following at the top of the
    page:
    <?php session_start(); ?>
    It must go before anything is output to the browser, so put
    it above the
    DOCTYPE declaration, and make sure there's no space before
    it.
    You can then use the $_SESSION variables in the thank you
    page.
    At the end of the page, add this to clear up the session
    variables:
    <?php
    $_SESSION = array();
    destroy_session();
    ?>
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • How to call an ABAP based web service from a web page (form)

    Hi,
    I am trying to figure out how I can call my own developed ABAP based web service. I was able to successfully test it in the WS navigator and am now wondering what I need to do to embed the service call in a plain simply web page (form). Basically I'd like to create a web form allowing to specify the parameters and with a 'Submit' button pass the parameters to the web service and launch it.
    Is this possible or do I need some kind of SDK to accomplish this?
    Thanks for any hints and tips.
    Wolfgang

    Hi,
    refer the following link and this is for cosuming the web service form Web dynpro Java
    https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/50d70a19-45a3-2b10-bba0-807d819daf46&overridelayout=true
    and please go throught the following link if you want to cosume it through web dynpro abap and find the answer given by the Moderator Thomas Jung
    regards
    Manohar

  • Calling a Report Program In Web Dynpro Using Submit statment

    Hi all,
             Can any one suggest how can i call a report program form Web Dynpro using Submit statment. I tried to call it its showing Field symbols not defined error. Is their any other ways to call Report in a Web Dynpro?. I have posted the error message when i tried using SUBMIT ZRR AND RETURN CONTROL
    Field symbol has not yet been assigned.
    The error occurred on the application server mnghcmsap_HRS_00 and in the work process 1 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Form: CHECKBOX_OUT of program SAPLKKBL
    Form: GEN_LINE_OUT of program SAPLKKBL
    Form: DATA_OUT_SIMPLE of program SAPLKKBL
    Form: LIST_OUTPUT_NEW of program SAPLKKBL
    Form: FIRST_LIST_DISPLAY of program SAPLKKBL
    Module: LIST_DISPLAY of program SAPLKKBL
    Function: K_KKB_LIST_DISPLAY of program SAPLKKBL
    Method: PRINT_BACKEND of program CL_GUI_ALV_GRID===============CP
    Method: SET_TABLE_FOR_FIRST_DISPLAY of program CL_GUI_ALV_GRID===============CP
    Form: PBO of program SAPLSLVC_FULLSCREEN
    Edited by: VINMANO on Jul 22, 2009 2:54 PM

    HI,
    Its possible to call report program from Web dunpro...
    chk out dis link,
    calling report(se38) in webdynpro abap
    By the way are using field symbol anywhere and left it unassigned?
    Thanks,
    Divya.S

  • How do I a form submit without losing page parametes on other portlets?

    I have a page with several portlets. How can I make one of the portlets do a form submit without losing page parameters in other portlets?
    If I do a submit only the controls in the form I have submitted are passed which means I loose parameters that where passed earlier.
    I looked at the code the portal uses for the next button and I see that it does a POST with the action being the complete current URL with existing parameters. When I do this I cannot access the form variables in my dynamic page.

    There are 3 steps to the balancing act of image weight (file size) vs image quality
    1) image dimensions (on screen height x width measured in pixels is all that counts). Smaller dimensions = smaller file size.
    2) compressed file type (JPEG for photos, PNG or GIF for everything else). Choose the right file type for your image.
    3) quality of the final compressed image - visually comparing the final image for "acceptableness" (less artifacts) vs final file size
    There are plenty of tutorials online
    http://inobscuro.com/tutorials/read/35/
    http://sixrevisions.com/web_design/comprehensive-guide-saving-images-for-web/

  • CRM Survey Suite and Web Survey

    Hi everyone,
    I am new in CRM and have been assigned to investigate the possible ways to send surveyes to the customers/users.
    In my investigations and readings, I have found that we coud use CRM Survy Suite or Web Survey.
    Could any one please tell me what the difference is between the two?

    Hello,
    AFAIK only the CRM Survey Suite is fully integrated into the CRM Campaign management. I think the easiest way to send surveys to customers and users is a mail form which sends out a personalized link to the survey.To make the survey available in the internet your basis admins have to configure the SAP Web Dispatcher as I've described in my Blog <a href="/people/gregor.wolf3/blog/2005/11/07/setup-sap-web-dispatcher-with-url-filter-on-suse-linux-90">Setup SAP Web Dispatcher with URL Filter on SuSE Linux 9.0</a>.
    Regards
    Gregor

Maybe you are looking for