Issue: Flash radio buttons & Php form

I have a flash form which all of the fields are sending
correctly
through the php code. The flash radio buttons I added with
the
groupname == topic, doesnt send with the rest of the
information that is being sent to the email. My question is
how do I get
the flash radio button info to submit with the rest of the
form.
The code for the send button on my flash file:
on (release) {
// send variables in form movieclip (the textfields)
// to email PHP page which will send the mail
form.loadVariables("form.php", "POST");
===============================================
===============================================
Form.php:
<?php
$to = "[email protected]";
$subject = "Contact Page Information for Today";
$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">\r\n";
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Return-Path: " . $_POST["email"];
$message .= "\n\n";
$message .= "Subject: " . $_POST["topic"] . "\r\n";
$message .= "Email: " . $_POST["email"] . "\r\n";
$message .= "Name: " . $_POST["name"] . "\r\n";
$message .= "Address: " . $_POST["address"] . "\r\n";
$message .= "City: " . $_POST["city"] . "\r\n";
$message .= "State: " . $_POST["state"] . "\r\n";
$message .= "Zip Code: " . $_POST["zip"] . "\r\n";
$message .= "Phone: " . $_POST["phone"] . "\r\n\n";
$message .= "Message: " . $_POST["message"] . "\r\n";
mail($to, $subject, $message, $headers);
?>
Text

Do you mean like this:
<?php
var topic;
var listenerObject:Object = new Object();
listenerObject.click = function(eventObj:Object) {
topic = eventObj.target.data;
trace(topic)
groupTopic1_rb.addEventListener("click", listenerObject);
groupTopic2_rb.addEventListener("click", listenerObject);
groupTopic3_rb.addEventListener("click", listenerObject);
groupTopic4_rb.addEventListener("click", listenerObject);
groupTopic5_rb.addEventListener("click", listenerObject);
groupTopic6_rb.addEventListener("click", listenerObject);
groupTopic7_rb.addEventListener("click", listenerObject);
groupTopic8_rb.addEventListener("click", listenerObject);
groupTopic9_rb.addEventListener("click", listenerObject);
groupTopic10_rb.addEventListener("click", listenerObject);
groupTopic11_rb.addEventListener("click", listenerObject);
groupTopic12_rb.addEventListener("click", listenerObject);
groupTopic13_rb.addEventListener("click", listenerObject);
groupTopic14_rb.addEventListener("click", listenerObject);
$to = "[email protected]";
$subject = "Contact Page Information for Hope Today";
$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">\r\n";
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Return-Path: " . $_POST["email"];
$message .= "\n\n";
$message .= "Subject: " . $_POST["topic"] . "\r\n";
$message .= "Email: " . $_POST["email"] . "\r\n";
$message .= "Name: " . $_POST["name"] . "\r\n";
$message .= "Address: " . $_POST["address"] . "\r\n";
$message .= "City: " . $_POST["city"] . "\r\n";
$message .= "State: " . $_POST["state"] . "\r\n";
$message .= "Zip Code: " . $_POST["zip"] . "\r\n";
$message .= "Phone: " . $_POST["phone"] . "\r\n\n";
$message .= "Message: " . $_POST["message"] . "\r\n";
mail($to, $subject, $message, $headers);
?>

Similar Messages

  • Form from hell (Flash Radio Buttons)

    Does anyone have a bead out there on a behavior that you can
    use with the native Flash radio button groups in Director MX 2004.
    I am going freakin' bonkers trying to write a behavior for
    these things.

    The Flash Components are not documented in Director, though
    they are
    documented in Flash. If you can parse the dense and difficult
    to
    understand Flash Help file (and yes, you would need to have
    Flash to get
    it), then you can see all the docs for those components.
    Before I go much further, I should say that in my experience,
    using
    #flashComponents is a painful and tedious business. I do not
    recommend
    it. It will probably be MUCH easier on you in the long run if
    you write
    your own script from scratch.
    But, for the sake or archival completeness, this is a script
    that will
    do what you want with the checkbox/radio button
    #flashComponents:
    1) Go into the Property Inspector and on the FlashComponent
    tab for each
    member, make sure that the eventPassMode is set to
    #passAlways
    2) Put this code onto the buttons:
    on mouseUp me
    if sprite(me.spriteNum).selected then
    sendAllSprites(#deselect,me.spriteNum)
    end if
    end
    on deselect me, vExcept
    if me.spriteNum<>vExcept then
    sprite(me.spriteNum).selected=0
    end if
    end

  • Default Radio button when form opens

    Is there a way to make a radio button when form opens?
    for e.g. when we open key flexfield value sets form, key flexfield radio button is default. i want to do when i open the form value set button is defaultly checked.
    thanking you in advance.

    User personalization.
    Find the name of the field for that radio button.
    Write a when-new-form-instance personalization.
    Make the action type =property
    And make the action as default value/initial value = the value corresponding to the default you want.
    Also check http://it.toolbox.com/blogs/apps-traction-blog/oracle-form-personalization-basic-example-11936
    Hope this answers your question,
    Sandeep Gandhi
    Edited by: Sandeep Gandhi, Independent Consultant on Feb 4, 2011 11:43 AM

  • Issue in radio button group in module pool in infotype creation

    Hi,
    I have a custom infotype,where there are six radio buttons belonging to same group for different mode of payment.Issue is when user clicks a radiobutton,a subscreen opens .there are six different subscreens when user clicks on each of the six radio buttons.
    Requirement is when user clicks one button ,one subscreen opens but the other radio buttons(whcih are eligible to be open) gets disabled .I have tried to handle the issue manually through coding ,but i think the issue is with the radiobutton grouping.
    How to make the other radio buttons open for input even when the user has clicked on one button and the subscreen opens corresponding to the screen so that the imemediately ther user clicks on another radio button and get the corresponding subscreen opened for him.Pls advise.

    I have written a custom module in PBO section of my custom infotype.There i have written this code:-
    LOOP AT SCREEN.
        READ TABLE  fp_it_payment_opt_open INTO wa_payment_opt_open WITH KEY scrname = screen-name.
        IF sy-subrc = 0.
          screen-input = c_input_on.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    The internal table it_payment_opt contains all the radio buttons and checkboxes and is populated when the radio buttons and checkboxes are turned input on while modifying the screen depending upon course of my price and personnel subarea.
    While calling subscreen area in PBO,the radiobuttons get into a state of input-off automatically.so i have written a z-module after
    the module hidden_data .
    PROCESS BEFORE OUTPUT.
            general infotype-independent operations
      MODULE before_output.
      CALL SUBSCREEN subscreen_empl   INCLUDING empl_prog empl_dynnr.
      CALL SUBSCREEN subscreen_header INCLUDING header_prog header_dynnr.
            infotype specific operations
      MODULE p9300.
      CALL SUBSCREEN subscreen_area INCLUDING subscr_prog subscr_dynnr.
      MODULE hidden_data.
      module z_open_paymnt_optns.
    My problem has been solved ,hence am closing the thread.Thanks to all of you.

  • Help with Radio Buttons in Form

    Hi. I have inherited a website that has a simple form. I have
    been asked to edit the form adding 4 radio buttons to collect the
    consumer's satisfaction with the content of the website. I have
    added the radio buttons using Dreamweaver MX, however, they do not
    work as I expected them to. I was under the impression that radio
    buttons did not allow the user to select more than one option
    because when the user selected a different option, the first option
    was unselected. My form is currently allowing all four options to
    be selected at the same time. The code for the form is below. I
    have changed the @ in the email address of the form to prevent
    possible spam. Any help would be greatly appreciated.

    It looks like you need to change the name= to the same on
    each radio button, if they all have the same name then you can only
    check one. Then click the form in the behaviors panel and be sure
    the radio button name is inserting into the proper db
    column.

  • Flash Radio Buttons

    Okay, I give up, I've searched online and in several forums,
    pored through
    the Director documentation, and can't find a single tutorial
    explaining how
    exactly to use the Flash component Radio Buttons in Director.
    And
    apparently I'm not alone, about all I could find was another
    post in this
    group from over a month ago asking the same question without
    getting a
    single response. (Also found a few other questions regarding
    them in other
    forums, but one thing I didn't find anywhere was anyone
    actually *answering*
    these questions.) Do I have to actually use Flash to get
    these to work?
    Assume for a moment that I know exactly nothing about Flash
    (not far from
    the truth). What exactly do you have to do to make the other
    buttons
    automatically deselect when you click one? According to what
    little
    documentation there is in the Director help files, this
    should happen
    automatically, but apparently I'm missing something, because
    it doesn't.
    This was relatively simple with the old classic Radio
    Buttons, and I'm
    seriously considering just going back to using those (never
    mind the
    primitive graphics), or maybe just scripting my own from
    scratch. (It's not
    really that complicated a behavior, and at this point it
    seems like it would
    be easier than trying to use what seems to be an almost
    completely
    undocumented feature...)

    The Flash Components are not documented in Director, though
    they are
    documented in Flash. If you can parse the dense and difficult
    to
    understand Flash Help file (and yes, you would need to have
    Flash to get
    it), then you can see all the docs for those components.
    Before I go much further, I should say that in my experience,
    using
    #flashComponents is a painful and tedious business. I do not
    recommend
    it. It will probably be MUCH easier on you in the long run if
    you write
    your own script from scratch.
    But, for the sake or archival completeness, this is a script
    that will
    do what you want with the checkbox/radio button
    #flashComponents:
    1) Go into the Property Inspector and on the FlashComponent
    tab for each
    member, make sure that the eventPassMode is set to
    #passAlways
    2) Put this code onto the buttons:
    on mouseUp me
    if sprite(me.spriteNum).selected then
    sendAllSprites(#deselect,me.spriteNum)
    end if
    end
    on deselect me, vExcept
    if me.spriteNum<>vExcept then
    sprite(me.spriteNum).selected=0
    end if
    end

  • Radio buttons on form are not always Re-enabling when i Tell them to re-ena

    I have a game setup where there is 1 server and 2 clients. The 2 clients each have a gui where they have 3 radio buttons to select from. Once they make their choice then their buttons are re-enabled when the server sends the message "#newround" to the 2 clients.
    this.sendToAllClients("#NewRound");
    when the clients receive this message:
    else if(copyMessage.startsWith("#NewRound")){
    //Re-enable the radio button choices and the play button.
    jButtonPlay.setEnabled(true);
    jRadioRock.setEnabled(true);
    jRadioPaper.setEnabled(true);
    jRadioScissors.setEnabled(true);
    newRound();
    It works 90% of the time but sometimes it doesn't re-enable any of the radio buttons on 1 of the 2 forms and sometimes it only re-enables 2 of the 3 radio buttons on the forms.
    Anyone know why this would be?

    Are you executing this code in a separate thread? If so, Try enabling them from the event dispatch thread. Refer to SwingUtilities.invokeLater() and SwingUtilities.invokeAndWait() for more info.

  • Using Back button issue for radio button

    Dear All,
    My initial screen has 2 radio buttons, on selecting will take to a selection screen with few fields, i have enabled the back button using MODULE user_command AT EXIT-COMMAND.
      when i select a Radio Button 1 which takes to the Selection Screen 1, if the user clicks back button it works fine, even thou we got a mandatory field, it goes back,
    however when i click Radio Button 2 it still takes me to Selection Screen 1, its the same vice versa.
    Is there anyway i can change the screen based on radio button entry

    Hi Krishan,
    You can call your desire selection screen based on the button click.
    if you are working on report program (SE38), then say you have two radio button p1 and p2 and also you have created two selection screen block B1 and B2 and each block has some selection screen elements i.e fields.
    Now if you want that after radio button click b1, you want the only selection screen block B1 and while clicking radio button b2 click ,you want only selection screen block B2.
    Two acheive this in report programming, use the event AT SELECTION-SCREEN OUTPUT.
    so a demo code for the same,
    SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME TITLE text-049.
    PARAMETERS: p_header RADIOBUTTON GROUP asim USER-COMMAND s DEFAULT 'X',
                                p_item RADIOBUTTON GROUP asim.
    SELECTION-SCREEN END OF BLOCK lim.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-051.
    PARAMETERS : p_vbeln TYPE vbak-vbeln MODIF ID sc1,
                  p_audat TYPE vbak-audat MODIF ID sc1.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-050.
    PARAMETERS : p_vbeln1 TYPE vbap-vbeln MODIF ID sc2,
                                 p_posnr TYPE vbap-posnr MODIF ID sc2.
    SELECTION-SCREEN END OF BLOCK b2.
    AT SELECTION-SCREEN OUTPUT.
       IF p_header EQ 'X'.
         LOOP AT SCREEN.
           IF screen-group1 = 'SC1'.
             screen-active = '1'.
           ELSEIF screen-group1 = 'SC2'.
             screen-active = '0'.
           ENDIF.
           MODIFY SCREEN.
         ENDLOOP.
       ELSEIF p_item EQ 'X'.
         LOOP AT SCREEN.
           IF screen-group1 = 'SC2'.
             screen-active = '1'.
           ELSEIF screen-group1 = 'SC1'.
             screen-active = '0'.
           ENDIF.
           MODIFY SCREEN.
         ENDLOOP.
       ENDIF.
    If you are working with Module POOL, then code in the PAI of the screen, and call your respective screen while respective button click.
    code:
    MODULE user_command_900 INPUT.
         IF p1 EQ 'X'.
              CALL SCREEN 9001.
         ELSEIF p2 EQ 'X'.
              CALL SCREEN 9002.
         ENDIF.
    NOTE: your screen 9001 have some screen input fields and 9002 have some screen input fields.
    Thanks & Regards
    Syed

  • ALV grid display issue from radio buttons

    Hello,
    I have a radio button group in a selection screen. On select of the first radio button, I display an ALV grid below the radio button group.
    On selecting the next one, I want the grid to disappear which isn't happening currently.
    Please help.
    Thanks and Regards,
    Abhijnan

    Please check if this is what you needed or something else
    DATA: obj TYPE REF TO cl_gui_alv_grid,
          repid TYPE sy-repid,
          entered TYPE c,
          lv_structure TYPE tabname,
          dock TYPE REF TO cl_gui_docking_container,
          i_mara TYPE TABLE OF mara,
          i_marc TYPE TABLE OF marc.
    FIELD-SYMBOLS:<fs_tab> TYPE table.
    PARAMETERS: p_matnr TYPE matnr.
    PARAMETERS: p_mara RADIOBUTTON GROUP a USER-COMMAND abc.
    PARAMETERS: p_marc RADIOBUTTON GROUP a.
    AT SELECTION-SCREEN OUTPUT.
      CHECK NOT p_matnr IS INITIAL.
      IMPORT entered from memory id 'E'.
      CHECK NOT entered IS INITIAL.
      CHECK dock IS INITIAL.
      repid = sy-repid.
      CREATE OBJECT dock
           EXPORTING
             repid = repid
             dynnr = sy-dynnr
             ratio = 80
             side  = cl_gui_docking_container=>dock_at_bottom
             name  = 'DOCK_CONT'.
      CHECK  obj IS INITIAL.
      CREATE OBJECT obj
      EXPORTING
      i_parent          =  dock.
      IF p_mara = 'X'.
        IMPORT i_mara FROM MEMORY ID 'IMARA'.
        FREE MEMORY ID 'IMARA'.
        lv_structure = 'MARA'.
        ASSIGN i_mara TO <fs_tab>.
      ELSE.
        IMPORT i_marc FROM MEMORY ID 'IMARC'.
        FREE MEMORY ID 'IMARC'.
        lv_structure = 'MARC'.
        ASSIGN i_marc TO <fs_tab>.
      ENDIF.
      CALL METHOD obj->set_table_for_first_display
      EXPORTING
      i_structure_name = lv_structure
      CHANGING
      it_outtab = <fs_tab>.
    START-OF-SELECTION.
      entered = 'X'.
      EXPORT entered TO memory ID 'E'.
      IF p_mara = 'X'.
        SELECT * FROM mara UP TO 100 ROWS INTO TABLE i_mara
                 WHERE matnr = p_matnr.
        EXPORT i_mara TO MEMORY ID 'IMARA'.
      ELSE.
        SELECT * FROM marc UP TO 100 ROWS INTO TABLE i_marc
               WHERE matnr = p_matnr.
        EXPORT i_marc TO MEMORY ID 'IMARC'.
      ENDIF.

  • Authorization restriction for Goods issue . others radio button in migo tcode

    Hello All,
    We have a situation wherein the user is able to issue goods using tcode MIGO by choosing Goods issue --> Others and  the movement type 201
    the above mentioning details i need to block the others tab only for specific user ids i have checked the MIGO objects But its not worked
    please give me solution for block the others button on the drop down box
    please find the attachment of screen shot its helpful to sort out the issue
    Best Regards
    suresh

    Dear Anandan,
    Please use trace t.code ST01 to fix the issue.
    You can restrict the movement type using the authorization object M_MSEG_BWA.
    If you can provide the step by step screens where you want to exactly restrict we can fix it.
    Regards,
    Venkatesh

  • Radio Button/Input Form Problem

    Hi folks,
    I have created a form which sends the inputted values as an email. The file takes a name, delivery address etc and also should allow a quantity to be input. There is also an option where a different delivery address can be specified like so:
    The code looks okay, with no compiling errors, but the 'user input quantity' does not work and when changing different address, the original invoice address is showing up
    Any help or pointers would be gratefully appreciated
    My code looks like this:
    stop();
    // The display function
    System.useCodepage = true;
    send_btn.onRelease = function() {
         my_vars = new LoadVars();
         my_vars.designName = designName.text;
         my_vars.designPosition = designPosition.text;
         my_vars.designAddress = designAddress.text;
         my_vars.designTel = designTel.text;
         my_vars.designFax = designFax.text;
         my_vars.designMob = designMob.text;
         my_vars.designEmail = designEmail.text;
         my_vars.invoiceName = invoiceName.text;
         my_vars.invoicePosition = invoicePosition.text;
         my_vars.invoiceAddress = invoiceAddress.text;
         my_vars.invoiceTel = invoiceTel.text;
         my_vars.invoiceFax = invoiceFax.text;
         my_vars.invoiceEmail = invoiceEmail.text;
         my_vars.invoiceDate = invoiceDate.text;
         my_vars.jobNumber = jobNumber.text;
         if ("same" eq delivery.getValue) {
              my_vars.deliveryName = invoiceName.text;
              my_vars.deliveryPosition = invoicePosition.text;
              my_vars.deliveryAddress = invoiceAddress.text;
              my_vars.deliveryTel = invoiceTel.text;
              my_vars.deliveryFax = invoiceFax.text;
              my_vars.deliveryEmail = invoiceEmail.text;
         } else  {
              my_vars.deliveryName = deliveryName.text;
              my_vars.deliveryPosition = deliveryPosition.text;
              my_vars.deliveryAddress = deliveryAddress.text;
              my_vars.deliveryTel = deliveryTel.text;
              my_vars.deliveryFax = deliveryFax.text;
              my_vars.deliveryEmail = deliveryEmail.text;
         if ("other" eq quantity.getValue) {
              my_vars.quantity = quantityOther.text;
         } else {
              my_vars.quantity = quantity.getValue();
         if (my_vars.designName != "" and my_vars.designPosition != "" and my_vars.designAddress != "" and my_vars.designTel != "" and my_vars.designFax != "" and my_vars.designMob != "" and my_vars.designEmail != "" and my_vars.invoiceName != "" and my_vars.invoicePosition != "" and my_vars.invoiceAddress != "" and my_vars.invoiceTel != "" and my_vars.invoiceFax != "" and my_vars.invoiceEmail != "" and my_vars.invoiceDate != "" and my_vars.jobNumber != "" and my_vars.deliveryName != "" and my_vars.deliveryPosition != "" and my_vars.deliveryAddress != "" and my_vars.deliveryTel != "" and my_vars.deliveryFax != "" and my_vars.deliveryEmail != "" and my_vars.quantity != "") {
              my_vars.sendAndLoad("mailer.php", my_vars, "POST");
              gotoAndStop(2);
         } else {
              error_clip.gotoAndPlay(2);
         my_vars.onLoad = function() {
              gotoAndStop(3);
    name1.onSetFocus = Position.onSetFocus = address.onSetFocus = telephone.onSetFocus=fax.onSetFocus=Mob.onSetFocus = email.onSetFocus = invoiceName.onSetFocus = invoicePosition.onSetFocus=invoiceAddress.onSetFocus =  invoiceTel.onSetFocus = invoiceFax.onSetFocus = invoiceEmail.onSetFocus = invoiceDate.onSetFocus = jobNumber.onSetFocus = quantity.onSetFocus=function () {
         if (error_clip._currentframe != 1) {
              error_clip.gotoAndPlay(6);
    Many thanks !

    if ("same" eq delivery.getValue()) {
    and
    if ("other" eq quantity.getValue()) {
    If that doesn't fix the problem, then you may have more that I didn't notice, or the error isn't related to that.  In any case, if the error persists, provide the error message you are getting

  • Hi I'm trying to make a radio button web form using edge animate.

    www.smpcanada.com/1.5/infinite_app
    Hi,
    Basically I'm working on this app, the only thing I need is, I want every option that the user click will be recorded and summarize, and will emailed to my email. Much like a web form, can I do that in edge animate? Please help... 

    www.smpcanada.com/1.5/infinite_app
    Hi,
    Basically I'm working on this app, the only thing I need is, I want every option that the user click will be recorded and summarize, and will emailed to my email. Much like a web form, can I do that in edge animate? Please help... 

  • Why do 200 radio buttons in a form cause 8 second rendering delay

    We have an online questionnaire containing 36 questions, each with 6 radio buttons (216 in total) in a single form. Although the page appears to render quickly, there is then a delay in Firefox of up to 8 seconds before it will register a radio button click. This problem does not occur in Chrome or Safari, and there is slight (sub-second) delay in IE. The delay is reduced pro-rata by reducing the number of radio buttons. The delay can also be reduced to about 4 or 5 seconds by removing all elements from the page apart from the radio buttons and form.

    Thanks again for your reply.
    The delay doesn't occur in safe mode. After disabling all add-ons and extensions individually, it appears the culprit is Norton Toolbar. I haven't tested this on the other computers where the problem occurred, but they may well have had Norton Toolbar installed as well.
    Norton Toolbar is installed on IE but the problem there is sub-second, not 8 seconds. Is this a Firefox-Norton compatibility issue? Is there anything we can do about it, in our page design, without radically altering its usability?

  • Pls tell me how I can convert a PDF form to a Word doc, and have radio buttons etc work?

    Pls tell me how I can convert a PDF form to a Word doc, and have radio buttons etc work?  My PDF form did convert using Adobe PDF Export.... but the formatting is a schamozzle if I try to do anything with it.  Most importantly, I need the check boxes and radio buttons to work in Word!

    Checkboxes and radio buttons are form objects from Acrobat.  There is no equivalent for these objects, with the way they were constructed, within Word.
    I'm sorry for the inconvenience.
    David

  • Radio button selection showing panel form

    Hi
    I am using ADf
    using jdev 10.1.3.
    I am having table with radio button aside to that.My requirment is - when i am selecting radio button , panel form should be displayed.
    I changed autosubmit property of radio button to true.
    i have written ontableSelectionChanged method. and put this in selection listener of table.
    please let me know what else i needed to done.
    thanks in advance

    Hi,
    I assume that the radio buttons you mean is the singleTableSelect component. If you set this component to autosubmit=true then the table ets a selection notification for each row selection change. This can be listened for in a selection listener. In this listener you can then choose the panelForm component (that you set up to have its binding attribute pointing to a reference property in teh managed bean the listener is defined in) and set its rendered property to true. In a last step, you get access to teh parent container, the layout component that is the parent of the panelForm, - also through a binding reference - and call
    AdfFacesContext.getCurrentInstance().addPartialTarget(<parent component reference>);
    Frank

Maybe you are looking for

  • Apple TV + HDTV Problem

    Hello all, I'm having an issue w/ our Apple TV and I'd like to see if anyone else can help. We have a 40GB Apple TV w/ the current firmware 2.4. We had a Samsung 42" Plasma 1080i/720p HDTV for a little over two years. We bought the Apple TV 6 months

  • Excise Details are not maintanied for Vendor: GRN error

    Dear All, We have upgraded our Ecc 6.0 system to latest  application SAPKH60016 ( SAP_APPL ). WHile testing the system, for import GR's we are getting error saying Excise Details are not maintanied for Vendor. J1ID is also maintained & previously we

  • Java.lang.NullPointerException in xRPM iView Preview from Portal Content

    Hi all, When I am trying to Preview the xRPM iViews from Content Administration>Portal Content> Portal Content> Content Provided by SAP> End User Content> Project Portfolio and Design Collaboration> iViews>Portfolio Manaagement> Item  Dashboard I am

  • Unable to set up video for editing

    I am a novice and am using the trial version of Premiere Elements 8.  I have gone through the Using Adobe Premiere Elements 8 product support quite a few times over the past several days and am not able to figure out how to set up videos for editing.

  • Partial string replacement

    Let's say I have an XML variable like the following: <AWARDS d-type="String">Booklist 2002 - Twenty Best Bets for Student Researchers | IHOP Best Reads While Consuming Far Too Much Coffee 2002</AWARDS> and I want to replace the | with <br> when the v