Send the fields of a form with POST method

I have a form based on a table, used to insert news. The problem is that I have to send the fields of the form to another aplication when I push the INSERT button, but I have to send them using the POST method.
I tried to insert code in the event of the INSERT button to do that, but I think it uses the GET method and the other application doesn't receive anything.
Thank's.

FWIW, the usual explanations in regards to this are wrong more often that they are right.
For example, the Acrobat License Agreement says nothing about emailing extended documents or posting extended documents on a web site, but rather simply deploying them.
Also, it only mentions instances of an extended document in relation to how many the licensee may extract information from if the document was deployed to more than 500 recipients and returned to the licensee.
If there are 500 or fewer recipients, the licensee may extract information from an unlimited number of instances of an extended document.
George

Similar Messages

  • Geting values in a form with post method

    heloo all
    hi
    i am creating a website, in my website i am developing a discussion forum
    now i am stucked ....
    in the discussion forum there is a reply option for all discussions
    exatly the way it has for this java technology forum and when one clicks the reply ,a html form comes (same as in this case) with a topic text box and a message text area
    now my problem is i want the topic text box to be filled with the topic of the discussion
    but since the method of the form is post it cannot take any values
    can any one give a solution
    thanks 4 ur time

    Hi,
    As the user clicks on the reply link, associate the topic parameter or the topic name with it in the hyperlink.
    Like :
    http:\\localhost:8080\jspdemo.jsp?topic_no=<<topic_no>>&any_other_parameter=<<parameter>>
    Now, according to your coding perspectives, you can make jspdemo.jsp as a jsp to access the topic name from the database given the topic no. Or, the topic name can directly be associated as a parameter, which can be send to the form jsp page. But using jsp is necessary.
    Hope this helps.
    Regards,
    Deepa

  • On Firefox 3.6.10 on MacOS X 10.5.8, I cannot navigate all fields in all forms with keyboard.

    On Firefox 3.6.10 on MacOS X 10.5.8, I cannot navigate some or all fields in some forms with my keyboard.
    - In the worst case, the TAB key doesn't work at all: TAB simply toggles between address bar and tab bar, instead of moving from field to field.
    - On this form (Firefox Support Forum, Ask a New Question), TAB works on some fields, but not on other fields: TAB just skips over the drop-down select list for the "This happened" field and the submit button ("Post Question") . I cannot find any way to navigate to these fields with the keyboard.
    I feel that filling in a form is most efficient when I don't have to keep moving my right hand from keyboard to mouse and back again.

    See http://kb.mozillazine.org/accessibility.tabfocus
    Note: In OS X (as of 2005-01), if this preference is not explicitly set, the “Full Keyboard Access” setting in System Preferences will be honored. All builds before that date (e.g., Firefox 1.0.x) will ignore that setting.

  • Problem in increasing the size of the fields in predifined forms.

    Hello All,
                      I am facing aproblem while increasing the size of a field in predefined forms.I want to increase the size of remark field from 254 character to like 400 characters in A/R Invoice form of sales A/R module.
                                    I tried to update the related field (OINV- Comments) directly from sqlserver but its not reflecting in sSAP form and still remark field is taking 254 characters only.
                        Please help to how to Increase the size of the fields in predifined forms.
    Please reply ASAP, its very urgent.
    Regards,
    Nagababu.

    First of all you loose support as soon as you modify any table directly from SQL Server.  You should NOT change any fields since this may affect how SBO works.  Just by resizing a field doesn't mean that it will get resize in the form since you still have the programming part of it.
    If you have new functionality or changes of that type I would suggest to post a message to support on the partner portal and/or post a comment in the SAP B1 forum here at SDN on the forum that handles new functionalities request.
    Regards,
    WB
    PS.- Do a search at the SDK forum and there is a post where there is a list of what you can and CAN NOT do to tables beloging to SAP B1.

  • Apparently I have 2 apple IDs. The first is my former email address. I want consolidate them using my current email. I can't remember my old password. I can't do a reset bcz. it sends the link to my former email. Security Qs like d.o.b. don't "match." SoS

    Apparently I have 2 apple IDs, but not on purpose. The first is my former email address used for my iPod Touch. When I later purchased an iPad2, I thought I updated my Apple ID using my new email and new married name. Apparently I created a second. I want to consolidate them using my current email, etc. But I can't remember my old password. I can't do a password reset bcz. it sends the link to my former/deactivated email. Security Qs like d.o.b. don't "match." So, when I use my iPod & it requires my password to carry out certain functions, I'm stuck. Please help! Thx

    No.
    I have multiple Apple IDs. Is there a way for me to merge them into a single Apple ID?
    Apple IDs cannot be merged. You should use your preferred Apple ID from now on, but you can still access your purchased items such as music, movies, or software using your other Apple IDs.
    Recover use of the account:
    Forgotten Security Questions/Answers
    You need to contact Apple by:
    1 - Use the Express lane and start here:
    https://expresslane.apple.com
    then click More Products and Services>Apple ID>Other Apple ID Topics>Forgotten Apple ID security questions.
    or
    Apple - Support -form iTunes Store - Contact Us
    2 - Call Apple in your country by getting the number from here:
    http://support.apple.com/kb/HE57
    or           
    Apple ID: Contacting Apple for help with Apple ID account security
    3 - Use your rescue email address if you set one up
    Rescue email address and how to reset Apple ID security questions
    For general  information see:
    Apple ID: All about Apple ID security questions

  • I need to align the margins of my forms with those of my website, I have looked at all the options and unfortunately I am unable to do it with access to the Adobe.form.min.CSS file which I can't access as a consumer, how else can I fix my problem

    I need to align the margins of my forms with those of my website, I have looked at all the options and unfortunately I am unable to do it with access to the Adobe.form.min.CSS file which I can't access as a consumer, how else can I fix my problem

    I need to align the margins of my forms with those of my website, I have looked at all the options and unfortunately I am unable to do it with access to the Adobe.form.min.CSS file which I can't access as a consumer, how else can I fix my problem

  • How to keep the field open for input with error message in report program

    Hi,
      Need a help in solving the below issue.
    "How to keep the field open for input with error message in report program"
    Regards,
    C.Shasiraj.

    Hi...
    you have to use the event:
    <b>AT SELECTION-SCREEN ON <FIELD> EVENT.</b>
    u have to give an error message in this event.
    Consider the following <b>Example:</b>
    <b>PARAMETERS : NUMBER TYPE I.
    AT SELECTION-SCREEN ON NUMBER.
      IF NUMBER = 10.
        MESSAGE 'Number vakue is 10' TYPE 'E'.
      ENDIF.
    START-OF-SELECTION.
      WRITE NUMBER.
    </b>
    in this if u give the value of number = 10, it will not proceed further, if u give some other value other than 10 you will proceed further...
    Execute this program once u will understand....
    also Consider the following links :
    <b>Regarding events:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a237d9b511d1950e0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/34a23ad9b511d1950e0000e8353423/frameset.htm
    <b>Regarding messages:</b>
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/aa575426ad11d2954d0000e8353423/frameset.htm
    This is very useful.......
    Reward points if useful....
    Suresh....

  • Using MS Access Web App, can you set the tab order of the fields on a form?

    Using MS Access Web App, can you set the tab order of the fields on a form?  Doesn't appear to be a property.  I don't see a programmatic method.  I saw someone suggest using goto control on the after update event trigger but what if the person
    doesn't edit the field?  No event would be fired.
    Jim

    Hi Jim,
    >>Using MS Access Web App, can you set the tab order of the fields on a form?
    I am afraid you could not. In Web applications, the tab order is set automatically and cannot be changed.
    (From
    https://support.office.com/en-au/article/Set-the-tab-order-for-controls-3d7f749c-5a53-42b2-bb0e-2323fa044e2e)
    >> I saw someone suggest using goto control on the after update event trigger but what if the person doesn't edit the field?  No event would be fired.
    The goto method is a workaround, but it should be triggered by a specific event. What I can figure out is changing the order of the fields.
    If this is a feature you want to include in future versions of Access Web app, please submit a feedback as the picture below:
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Needs help to know the different versions of forms with their compatibility

    Needs help to know the different versions of forms with their compatibility with different databases and operating systems.
    Kindly give the details or any suitable link for the same.
    please consider it as on urgent basis.
    regards,
    rajesh

    Rajesh,
    the certification matrix is available on metalink.oracle.com. You need a support contract to access this information.
    Frank

  • As I can send data since a done form with applets to page html?

    A question.
    As I can send data since a done form with applets to page html?
    I thank beforehand its aid.

    Please re-write your English.

  • Redirect page with POST method in JSTL

    how to redirect page with POST method in JSTL.
    below is the code that i make, but the page redirected with GET method,
    so, the URL shown as http://localhost:8080/tes2/coba2.jsp?nama=saya
    how to hide the parameter, so it didn't show at the URL..??
    anybody help me..??
    server1 -> coba1.jsp
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <html>
    <head>
    <title>coba1</title>
    </head>
    <body>
    <c:url value="http://localhost:8080/tes2/coba2.jsp" var="displayURL">
      <c:param name="nama" value="saya"/>
    </c:url>
    <c:redirect url="${displayURL}"/>
    </body>
    </html>server2->coba2.jsp
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    <html>
    <head>
    <title>coba2</title>
    </head>
    <body>
    <c:forEach items="${param}" var="currentParam">
            <li><c:out value="${currentParam.key}" />
                = <c:out value="${currentParam.value}" /></li>
          </c:forEach>
    </body>
    </html>

    There are other two way communications methods as well. One such would be:
    Server1Page1: Take response with parameters.  Use HttpURLConnection to make a request to DataInputServlet
                  on Server2 and send the parameters there with a POST operation
    Server2DataInputServer: Takes request with data in it and starts a new session.  Puts the data into the session and
                  returns the session id to the requester
    Server1Page1: Reads the response from the DataInputServer (the session id) and generates a sendRedirect to
                  Server2's display page using the session id.  Server1Page1 is now done.
    Server2Page1: Gets a request from the client with the session id, and pulls the parameters out of the session.  Then
                  can continue as normal.Server2Page1 can also do a quick refresh to itself not using the session id as well, which will keep the URL visible by the client relatively clean.

  • What would cause a single user not to be able to edit the fields in a form? All other users are able to edit the form.

    I have a user who is unable to edit his time sheet in Adobe Reader XI. It worked fine in Adobe Reader 9.6. I recently upgraded his reader to version XI and he lost the ability to edit the fields. I re-imaged his machine and re-did his profile. He was able to edit his time sheet. A week later he's back to where he was. He was able to go to another machine with Adobe XI and edit his time sheet but he can't do it on his normal workstation. His time sheet shows the purple bar at the top telling him to fill out the form and that he can save data typed into the form. We're running XP SP3. How can I troubleshoot this?

    My guess would be keyboard related.  I'm guessing the field you're trying to fill has a keystroke event allowing only certain types of character.  If the keyboard is faulty OR if the keyboard's layout (English, french, numLock, capLock) have been changed, allowed character could be someplace else.
    I would first verify the presence of a particular format or a keystroke event in the format tab.  I would then test my layout by typing charaters in another application such as notepad.  Any chance the maximum character allowed would have mistaken be set to 0?
    Also, I see you mentionned:
    He was able to go to another machine with Adobe XI and edit his time sheet but he can't do it on his normal workstation
    By Adobe, I'm guessing you mean Reader.  Is it possible the default application on this other machine is Acrobat instead?  If it is the case, the problem would probably be the way the file was created and maybe it would require to enable Extended features.......

  • I am trying to map the fields in R3 system  with the infoobjects in BW.

    I am mapping the fields with in R3 with the infoobjects in BW.
    Can any please let me know the relavent mapping infoobjects and the procedure to find for the following fields.
    Description                          Type          Length
    Purchase Order     VARCHAR2     10
    PO Line Number     NUMBER     10
    Line Item Description     VARCHAR2     60
    Order Quantity          
    Unit of Measure     VARCHAR2     3
    Performance Start Date     DATE     7
    Performance End Date     DATE     7
    Order Date                           DATE      7
    PO Line Extended Amount     NUMBER     14
    PO Line Total Amount     NUMBER     14
    Project                         VARCHAR2     30
    Account ID                         VARCHAR2     15
    Cost Amount                             NUMBER      14
    Prime Contract ID     VARCHAR2     20
    Requisition ID     VARCHAR2     10
    Vendor ID                            VARCHAR2     12
    Vendor Name     VARCHAR2     25
    Entry Date/Time      DATE     7
    Address Descriptive Code     VARCHAR2     10
    Address Line 1     VARCHAR2     40
    City Name                         VARCHAR2     25
    Mail State                          VARCHAR2     15
    Postal Code                         VARCHAR2     10
    Country Code     VARCHAR2     8
    Phone Number     VARCHAR2     25
    Fax Number ID     VARCHAR2     25
    Other Phone Number ID     VARCHAR2     25

    Hi,
    You can find the fields and related infoobject for the datasource as follows
    Step1
    log on to the BW system
    Step2
    Go to SE11 ---> give the table name as RSOSFIELDMAP and execute
    Step3
    give the data source name for OLTPSOURCE field and execute
    Step4
    you will find the mapping between fields and relevent infoobjects
    Hope this helps
    Santosh

  • How to set the fields invisible/visible dynamically with screen-exits

    <b>Goal:</b> I am changing the subscreen from standard screen for mobile device interface, i.e. function group LMOB. With a scanner I am to read a material number and have it confirmed by the SAP system. For this I need an input field which is already supplied by the standard program. The users require the screen to be dynamic, i.e. I can not do the settings in the screen-painter.
    <b>Problem occurred:</b> After I have changed to use the customized subscreen 1202 in function group XLRF, not all the fields are displayed. It seems that the values for setting the screen elements are lost when calling the subscreen (3202, copy of screen 2202). For instance, it does not show my input field. Somewhere there need to be a list that contains all these parameter switches? I know how “Loop at screen” works but can’t find the values that are supposed to be passed over to the subscreen.
    Would be grateful for some help.

    Hi Niklas!
    Unfortunately I don't know the transaction you're working on, but I had a similar problem once.
    You have to use the commands <b>LOOP AT SCREEN</b> and <b>MODIFY SCREEN</b>. I found some online help here: <a href="http://help.sap.com/saphelp_470/helpdata/en/9f/dba70535c111d1829f0000e829fbfe/frameset.htm">SAP Online Help</a>. The fields of the pseudo-table <b>SCREEN</b> can be found here: <a href="http://help.sap.com/saphelp_470/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/frameset.htm">SAP Online Help</a>. I think you have to set <b>INVISIBLE</b> to 'X' - but you may have to experiment.
    Another thing to look out for is that you have to call this method in the <b>PBO</b> section of the dynpro. Take care no SAP logic is executed after your modification that changes your settings...
    Hope this helps (please reward me if it does),
    Joerg

  • I tried sending the Adobe pdf file of a poster via email and it said the file was too large to send.  How do I remedy this?

    I tried sending an Adobe pdf file of a poster via email and it wouldn't go through because it said the file was too large.  How do I remedy this?

    Lots of free file hosters out there. Mediafire.com as an example. Upload a file there, copy and paste the download link you are given into your email to the client, then delete it as soon as the client successfully downloads it. Mediafire has 10 gb storage for free accounts.
    Email is limited to 10 MB on attachments. So that's where file hosting comes in.

Maybe you are looking for

  • New Intel driver brings substantial performance improvements.

    Has anyone else noticed that the new X.org Intel driver (2.16.0) is significantly better than what preceded? Before this most recent upgrade, I couldn't even turn on 3D Compiz effects without the framerate being compromised (unless I disabled Sync to

  • We need a new version of DualCore center to support the 975x PowerUp edition!

    Hi, As of know, when I start up the DualCore center, it doesn't work 100 percent. For example, I can't adjust my cpu fan speed and that application beeps about me not having connected a cpu fan. Which is not true of course. Correct me if i'm wrong, b

  • Consolidation operators for GEN and LEV build method

    I have taken a very simple example over here: Hierarchy: GENERATION Profit (1) Revenue (2) Net sales (3) COGS (3) Expenses (2) LEVEL: Profit (2) Revenue(1) Net sales (0) COGS (0) Expenses (0) Question -> I am not able to provide operators in the data

  • Regarding SOA certifications

    Hi All, Can anybody guide me on the heirarchy of Oracle SOA certifications(what is the basic certification and other following certifications) and study material for them? Is packt publishing material is good to attain the SOA fundation certification

  • Deactivate menu option in cj02

    Hi , I need to deactivate the highlighted menu option from the tcode CJ02 , is it doable by Configuration   or any MENU exits available for this ? pls help Thanks, Chinnaiya