Need to trigger "SAVE" Button in IK12 T-code?

Hi,
Scenario: There is custom screen, which branches out from IK11/IK12.
Here, there is single LUW or "SAVE" Button, which updates IMRG and Z-Custom Table.
Problem: Whenever the client changes the data in IK12, and doesn't change in Standard SAP Screen IK12, The Exit, EXIT_SAPLIMR0_001 is "NOT" Triggered, since there is NO DATA CHANGE.
But We need to explicitly call the "SAVE" Button, to make the changes.
Regards,
Vijayanand.

Hi Chandrasekhar,
Can you explain, in detail.
Inside the EXIT, EXIT_SAPLIMR0_001, I am writing logic to insert or modify the Z-Table for custom screen.
Here, I need to make that SAP Updates ie Triggers the "SAVE" Button, so that the logic gets executed for updating the Z-Table.
Motto: is to have single LUW or SAVE Button.
Thanks.
Vijayanand.
Message was edited by:
        Vijayanand Annamalai

Similar Messages

  • Problem in activating Radio buttons and need to hit save button

    Hi Gurus,
    I added custom fields in CJ06,CJ07,CJ08 T-CODES. As per user requirement ,  I created radio button fields in sub screen  and user selects radio buttons FROM A1 TO A3  fields and also user wants to click "SAVE button"  in that subscreen, that fields data should store in database table.  Is there  any Note to implement for this and suggest me how to proceed further. 
    Thanks,
    Chiru.
    Edited by: chiranjeevi Rao on Apr 1, 2010 2:24 PM

    Hi Chandrasekhar,
    Can you explain, in detail.
    Inside the EXIT, EXIT_SAPLIMR0_001, I am writing logic to insert or modify the Z-Table for custom screen.
    Here, I need to make that SAP Updates ie Triggers the "SAVE" Button, so that the logic gets executed for updating the Z-Table.
    Motto: is to have single LUW or SAVE Button.
    Thanks.
    Vijayanand.
    Message was edited by:
            Vijayanand Annamalai

  • Need to trigger Save in ME22N - ME_PROCESS_PO_CUST

    Hello fellow gurus,
         Riddle me this:  How can I trigger a SAVE in ME22N in the context of BAdI ME_PROCESS_PO_CUST? 
    I have created a custom tab at the Header level so that our users can put data in the fields and populate the fields in the Purchase Order with that data.  The data saves correctly if a field in the PO is changed, but it does not work if only the fields in the tab are populated.
    I am calling the set_changed method and I've tried doing a set_data in the POST method. 
    Thanks for any suggestions,
    Chris Mowl

    Hi Raja,
         Yes, they are saved when we run ME21N and when we use ME22N to add a line to an existing PO.  It is only when we use only the values in the tab that it doesn't work.  I think that since we're not actually touching a field on the screen, it's not triggering the Save functionality.
    Thanks for your response,
    Chris

  • Disable 'SAVE' button on 'FILE' menu on some forms using personalization

    Hi there,
    I need to disable 'SAVE' button on 'FILE' menu on some forms using personalization. Please let me know if you know how to do this. Currently we have done this through custom.pll and we are trying to phase out custom.pll. Any help is appreciated.
    thanks
    Sudeep

    whether i know u cannot disable SAVE toolbar through Personalization. You do it with custom.pll.
    CHECK FOLLOWING LINK
    Disable Save item from Contrl Menu
    Pradhyumn Sharma

  • Hi, I'm in LR changing my picture, and I couldn't find the save button.Does this save a .jpeg somewhere?

    Does this save a .jpeg somewhere?

    The edits you do in LR are non destructive, and are saved automatically to the catalog, so there's no need for a Save button.
    If you need a jpg for a particular purpose, select the image in the Library, and click Export.
    The export dialog lets you fill in size, resolution, color space, sharpening, etc.

  • Need help with folder level javascript to automate "save button" on a fillable form

    I have been racking my brain for the past 6 hours trying to get a simple save button to work.
    Background: I am using Acrobat Pro 11 to create a save button on a fillable form. My intent is for the end users (my team of 3, whos computers I have access to) to be able to fill out the form, click save, and have the filename appended with date and other info and saved to a local folder on their machine.
    I am attempting to take the default form name i.e. Support Call Log.pdf and have three of the feilds within the form generate a new file name. --> Support Call Log_Brad_121_2015
    End users will fill out the form using adobe viwer X.
    Instead of putting the code that I have tried, modified, and tried again and again. I would like to ask for a fresh start and then see if I can locate my error after. I need to know what to put in my folder level script, line for line.
    I also need to know the correct syntax and format to establish a new file name with the extracted feild data, saved to the same exact file path as the original document.
    Any and all help will be greatly appreciated, I am about to go crazy!!!

    Didn't let me do it, invalid. So, here is what I have now changed my button code to:
    //get field value
    var fv1 = getField("Technician:").value;
    var fv2 = getField("Date Received:").value;
    var fv3 = getField("Unit Number:").value;
    // Split Path into an array so it is easy to work with
    var aMyPath = this.path.split("/");
    // Remove old file name
    aMyPath.pop();
    var NewFileName = "Support Call Log" + "_" + fv1 + "_" + fv2 + "_" + fv3 + ".pdf";
    NewFileName = NewFileName.replace(/[\s\!\?\<\>\'\"\*\/\\\=\?\^\`\{\}\|\~]+/g, "_");
    aMyPath.push(NewFileName);
    //save
    mySaveAs(this,aMyPath.join("/"));
    Im still getting the error dialogue box, and nothing shows in my javascript debugger window when I click the button. Seems to be something goofy with my Folder level script:
    var mySaveAs = app.trustedFunction(
         function(oDoc, cPath, cFlName)
              cPath = cPath.replace(/([^/})$/, "$1/");
              try{
                   oDoc.saveas(cPath + cFlName);
                   catch(e){
                                  app.alert("Error During Save");

  • Need some help with button JavaScript for Save As event.

    Hi,
    I'm using Adobe Acrobat X Pro and am completely new to scripting forms in Adobe (completely new to Adobe Acrobat as well!).  On a form there is a save button that opens the Save As dialog by using a trigger (Mouse Up) and action (Execute a menu item - File>Save As...>PDF...) and this works fine, however, I want to now use javascript to modify this button's behavior so that is uses a trigger (Mouse Up) and action (Run a JavaScript), and I want that JavaScript to combine the text values from two form fields (a location Dropdown and a date Text field) and use this concateneated string + ".pdf" as the filename when it opens the Save As dialog.  Make sense?
    This is what I have added to the button as a JavaScript so far I am using a test string at the moment ("NewFile.pdf") and will add the concatenated string to the script after I know the script is working as it should.
    var newFileName = "NewFile.pdf";
    var pathArray = this.path.split("/");
    pathArray.pop();
    pathArray.push(newFileName);
    this.saveAs(pathArray.join("/"));
    Two issues so far:
    1. When I click the button nothing happens, no Save As dialog or anything. 
    2.When I check the button properties under the Actions tab the Select Action property shows "Execute a menu item" even though I previously selected "Execute a JavaScript"
    Thanks for any help!

    Thanks guys, I appreciate the response!  If I can bypass the Save As dialog and save the file to a default location using a file name that is contructed from two form field values then that would be perfect. I definitely think it is feasible to have a script file installed locally on each users workstation. I don't quite understand about folder-level security, etc. yet but am eager to learn how to do this stuff if you can give me gentle push in the right direction!  Thanks!

  • Trigger a process chain when user clicks on save button in web interface

    Hi All,
    This is a issue I'm facing with the BW BPS web interface.
    BPS web interface generates a BSP application so thought posting this question in BSP forum might get some responses.
    The issue is I have to trigger a process chain when the user clicks on the save button on the web interface.
    I have no clue how BSP works. So if anybody has any ideas or suggestions I would greatly appreciate it.
    Thanks,
    Harini

    Hi Dhanya,
    This is the code i have in the ABAP program in the process chain. I just included the API_SEMBPS_POST part, but still it doesn't work. Please give me your email address so that i can send some screenshots.
    REPORT  ZHTEST.
    DATA: l_subrc TYPE sy-subrc.
    DATA: ls_return TYPE bapiret2.
    CALL FUNCTION 'API_SEMBPS_POST'
    IMPORTING
       E_SUBRC         = l_subrc
       ES_RETURN       = ls_return.
    CALL FUNCTION 'RSAPO_CLOSE_TRANS_REQUEST'
      EXPORTING
        I_INFOCUBE               = 'ZMAP_TAB'
    EXCEPTIONS
      ILLEGAL_INPUT            = 1
      REQUEST_NOT_CLOSED       = 2
      INHERITED_ERROR          = 3
      OTHERS                   = 4
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Trigger a workflow from module pool screen at save button

    Hi,
    I am new to workflow.Please help me.My requirement is trigger a custom workflow from module pool screen at save button.
    Scenario is: Create a Z screen for material creation and after pressing save button workflow should trigger to approver and approver emailid should be fetch from Z table and have to provide a link in work flow for Z t-code which displays a report of material pending for approval..
    Please suggest me process how i can acheive this..
    Thanks

    Hi,
    If you're using standard bapi's to save the material, you can then use either the standard events which are already triggered or you coul add a change document for material changes or creation.
    Then this event can be the trigger of your custom workflow.
    Kind regards, Rob Dielemans

  • CS02, On click of SAVE button, need to capture some event related with this

    Hi,
    My requirement is like,
    I change the material BOM using CS02 tcode.
    When, I complete the changes, and click on SAVE button, I dont find any event triggering in the system.
    Can any help in capturing some event related to this?
    The reason why I need this is ..during  the workflow runtime, the user is presented with the workitem to change the Material BOM with CS02 tcode. And, if sometimes, by mistake, the user is unable to complete the changes of the workitem, and comes back of CS02 without change completion, then the workitem is disapperaing from the inbox, with out completing the intended task of the workitem. So I want to make the workitem appear repeatedly in the user's inbox, till the desired action is done.
    Thanks

    Sai,
    You need to use a Loop..While statement by validating the decision step.
    Use a varaiable to store 'Y' or 'N'.
    intially, have the value as 'N' and if the required outcome is taken. Eg: Accept,Reject.. then change the value to 'Y', which will go to the next step of workflow.
    if 'N', it will again create a new workitem with the same content to the same agent.
    Hope this helps.
    bye,
    Sudhir.

  • I made a fillable form using indesign and then acrobat professional but need to have radio buttons trigger different fields showing in the form below them - is that possible and if so how do I do it??

    I made a fillable form using indesign and then acrobat professional but need to have radio buttons trigger different fields showing in the form below them - is that possible and if so how do I do it??

    What version of Reader are they using, exactly? And are you sure they're
    using Reader itself and not opening the file inside a browser window, for
    example?
    On Fri, Feb 6, 2015 at 5:24 PM, jessicao96457206 <[email protected]>

  • How to enable 'SAVE' button and trigger and event on output screen.

    Hello, in the output screen, the save button is disabled .I need to activate the button and when the user clicks on it another process must be triggered. Anyone worked on something similar before.thanks.

    Your problem description is too vague, and the problem itself seems very basic. Please read about [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers] before posting again.
    Thread locked.
    Thomas

  • Adobe Designer 7.0 save button and ID system needed

    Hello, I need help with create save button what works with older version too.
    I have Adobe designer 7.0 pro
    After click save button you can not changes anymore information.
    Then I need ID making system. It would be club ID. ID will be include personal sex, birthday, and filling date.
    EX: 3290580020505 ( 3- male (4-female), 29.05.80 birthday (day,month,year), 02.05.05 means filling date. (day,month,year)
    When person will fill application and she/he choose sex, birthday, then automatically its will create the ID and its possible to see in ID form.
    Then When click Save button then what is ID number then automatically it adds end of the application form name.
    EX: ID is "3290580020505" and pdf application name is "New member". Then After Save name changes "New member- 3290580020505"
    How it is possible to do and when you do not understand what I mean pls let me know.
    I really need something similar system.

    LiveCycle Reader Extensions Server is server product that is used to unlock or activate functionalities in Reader that only otherwise available in Acrobat. By enabling rights to PDF documents, this allows end users who are using Reader to save, fill in, annotate, sign, and submit PDF documents...
    To learn more about LiveCycle Reader Extensions Server, go to
    http://www.adobe.com/products/server/readerextensions/main.html

  • Which trigger fires after pressing 'Save' button on toolbar.

    hi,
    I wanted to know which triggers get fired after pressing 'save' button on toolbar, and in which sequence it get's fired.

    When you press 'save' it tries to do a commit_form.
    Before commiting the form, it checks for any errors which might occur at form level, block level or item level and does the commit only when it doesn't find one.

  • Save button in apps do not trigger business rules but close window does

    In our apps custom form the save button (and F10) generate the normal message that the information is saved in the database, although no business rules are triggered.
    Only when the window is closed by the user the business rules are triggered.
    It is possible to create several records with one orderscreen and save them, though only when the window is closed, the application asks again for the orders to be saved and then the business rules apply.
    What can this be?
    The only reference in the databaselog are several messages like the following:
    Error 2091 trapped in 2PC on transaction 3.68.28343. Cleaning up.
    Error stack returned to user:
    ORA-02091: transaction rolled back
    ORA-02290: check constraint (HST65.QMS_NEED_TO_CLOSE_TRANSACTION) violated
    Fri Jul 4 15:46:42 2003

    Hans,
    I don't have an answer for you, but maybe your problem is related to the one in thread PL/SQL update not working against 9iR2 DB . I hope that the information in that thread can help you solve your problem.
    kind regards,
    Sandra

Maybe you are looking for

  • IPod nano does not charge & is not recognized by computer or iTunes

    I have a 1st generation nano 1 GIG. It appears "dead." It is not recognized by My Computer, iTunes or the Ipod Updater (The updater asks that I connect the iPod, which I do). The iPod diagnostics through iTunes also reports that my iPod is not connec

  • WARNING: My Paralells 5.0 is NOT working with LION!!

    Well yesterday we have checked the Lion (Apple) Webpage and could not find any information that Lion will have problems with Parralels 5.0 Now we have the problem that our virtual windows system on Parallels 5.0 is not working anymore... We have been

  • Profit Center Plans not updated in the reports

    Dear All We have an issue with the COPA Plan allocations.  We have several versions that we use for planning. We have run  the plan allocatins in 0 version and the figures have flowed from Cost cneter to profiot center to copa. for other versions, th

  • Broadcom-wl build error

    Hello together, I recently installed arch on my Dell Vostro 13, and tried to setup wlan. I found out the my chipset needs the broadcom-wl driver (which i already used sucessful under ubuntu). I tried to install the AUR package (http://aur.archlinux.o

  • Changing 'Read Only' permissions....

    Hi i think i need to somehow change the read only permission with flash 9...is there a way to do this?