Not able to save order after action execution

Hi ,
Im facing a peculiar problem where the order is not saved and it runs for ever. What i did..
i have a requirement to  set the status of order to complete when it reaches the zorder_close_date (i created a date rule for this ). Hence i configured an action profile with action  with method COMPLETE_DOCUMENT and put start condition current date = zorder_close_date.. I have put the processing as immediate.
when i test this, the action is executed successfully , but when i click on save it runs for ever and dont save.
I really have no clue why it happens like this, any inputs?
Thanks,
Shaik

Hi Shaik,
              You are Executing the Method Call via Action Profile and Changing the Status of the Order.
Since when your Action Executes it Goes in a Loop and doesnot allow you to Save the Order as i get..Have you Tried to Manually change the Status of the Order and save without Execution of the Action..This shall justify you weathe their is a Problem in your Order_Save or your Method_Call.
Also try Setting Processign Time as "1.Process using Selection Report" and Select the Checkbox Schedule Automatically in your Action Defination and check it out if their is a Problem with Action Condition then it shall Present with a Failed Action Processing in your Transaction then.
Also Check your Loops in the Method Call System as understood is not allowing to Save..System on the Status Change instance is going in a Loop and is not able to Exit Loop for Execution of Order Save Instance and so its Directly Exiting.
Also You may Check the Links for Some Help in Action:
http://help.sap.com/saphelp_crm50/helpdata/en/83/785141eb54ba5fe10000000a155106/frameset.htm
http://help.sap.com/saphelp_crm50/helpdata/en/43/ce9370010f01b4e10000000a11466f/frameset.htm
http://help.sap.com/saphelp_crm50/helpdata/en/51/0302403D62C442E10000000A1550B0/content.htm
Hope it Answered your Queries...
Revert Back for Further Clarification..
Thanks and Regards,
RK.
Added Help Links for Help

Similar Messages

  • Users are not able to save pdfs after editing - Adobe XI. They do not use the Win7 explorer preview pane.  If they completely close the Win7 explorer window, they can save - Adobe XI thinks the preview pane is open when it is not.

    Users are not able to save pdfs after editing.  Product is Adobe XI, OS is Win7 64-bit.  When saving, an error pops up that the file cannot be saved, it is in use.  If they save as a different name, it works.  Found several forums/blogs/etc that suggest the problem can be solved by closing the Window7 explorer preview pane.  They don't use the preview pane.  I figured out that if they completely close the explorer window, they can save.  But this means they have to open and close explorer for each file.

    Hi, I would like to chime in and say that this problem has not yet been resolved. It is extremely annoying when all I do is highlight a document in the file explorer and I get 5 errors (evenly spaced out about 20 seconds apart telling me that "Microsoft
    Word Cannot Start (24)". These errors persist even after windows explorer and word are closed. And I don't want to start terminating processes just to make them stop every time.
    I'm a little frustrated with this problem and the other problems I've encountered with MS Office 2013 with file corruption, crashing, 2010 compatibility issues, and the whole host of errors when trying to actually do WORK with Word.
    I do work with long, complex reports in Word because that's the best way available for myself (and my coworkers) to use. However, I sincerely regret upgrading to Office 2013 because of it. I love it, all of its features, and its interface, but I simply cannot
    use it without problems.
    Submitting an official complaint whenever the phone reps start up again in the morning.

  • Not able to save data in pa30 action infotype in production

    Hi,
    In my organization users are not able to save data in SAP HR  pa30 action info type in production.
    It is gets hanged and throws run time error after run long time .
    in ST22 it will give below error:
    Runtime Errors   TSV_TNEW_PAGE_ALLOC_FAILED
    Information on where terminated
        Termination occurred in the ABAP program  "SAPLRHAS"   in "FILL_STRU_TURBO"
        The main program was "MP000000 ".
        In the source code you have the terminated point in line 759
        of the (Include) program "LRHASF00".
    Thanks and regards,
    Tarun

    Hi,
         Pls check your relationship of reporting postions and set up relationship A002 and also check organization relationship
        otherwise take help form ABPERs and debug and partiuclar prorgram and where and witch object its throwing
        error found out.
    Regrads,
    Tarun

  • Have a trial version, am not able to save a document after I've made changes.  Why is that?

    Have a trial version, am not able to save a document after I've made changes.  Why is that?

    Hi,
    if you use Adobe Reader to view your PDFs you cannot save any changes by default.
    To do this you need at least Adobe Acrobat to add additional Rights (aka Usage Rights aka Reader Extensions) to your PDF.

  • Not able to save bindings when calling bindings.getOperationBinding("update") in customized method.

    Hi All,
    I'm new to ADF and trying to learn it.
    I'm using JDev version 11.1.1.6.0.
    My use case is mention below :
    1. I've created 2 Bounded task flows and calling one task flow from another task flow using task flow call activity.
    2. In child task flow, i've created view activities with Train component. View activities have text fields, radios buttons, tables etc which can be filled by user.
    3. I want to save the page data to payload if I move to next view activity using Next button or by train bar.
    To accomplish this scenario, I'm calling a customized actionListener on click of Next button/Train Stop Bar in which I'm using below mention code :
    BindingContext bindingContext = BindingContext.getCurrent();
    BindingContainer bindings = bindingContext.getCurrentBindingsEntry();
    OperationBinding obj = bindings.getOperationBinding("update");
    if(obj != null){
         obj.execute();
         if(!obj.getErrors().isEmpty()){
              System.out.println("Not able to save data......");
         else{
              System.out.println("able to save data......");
    But I'm not able to save page data to payload/bindings. If i close the window using browser close button and move back to previous train stop in which i've filled the data, the data get lost and all the text fields/Radio button become empty.
    If I use Save button provided by Oracle BPM, then I'm able to save it. and data reflected even after if i close the window using browser close button.
    So I also try to use the below acode but did not get any success :
    FacesContext fctx = FacesContext.getCurrentInstance();
    Application app = fctx.getApplication();
    ELContext elContext = FacesContext.getCurrentInstance().getELContext();
    InvokeActionBean invokeActionBean = (InvokeActionBean)app.getELResolver().getValue(elContext, null,  "invokeActionBean");
    invokeActionBean.setAction(actionEvent);
    invokeActionBean.action();
    Can somebody please let me know, what am I doing wrong here or if I'm missing anything.
    Any pointers/suggestions for its resolution are welcome.
    Thanks in advance.

    Hi Timo,
    Yes, it is the same binding which is called from BPM Save button.
    I did not use the debugger but i tried to print the OperationBinding object which was showing me proper binding for update.
    Even when i tried to print the return value of invokeActionBean.action(); method, it print the proper string "closeTaskFlow".
    So if I see it logically, then I'm just trying to call the methods of InvokeActionBean from my customized method.
    If methods of InvokeActionBean not being accessed, or if it was not getting called, then it should not print the "closeTaskFlow" as return value.
    I only want to save page data into bindings once I'll move away from page precisely on moving next.
    If there is any other work around for this issue, please let me know.
    I've also tried to use Explicit/Implicit save points provided by ADF but that did not work too.

  • Not able to generate reports after 8.1.1.3 patch installation

    Hi All,
    We are not able to generate reports after 8.1.1.3 patch installtion.
    and we also followed workaround as below
    1) Import the sif files from Siebel\8.1\Tools_1\REPPATCH\12-1VMBCSV.zip
    2) Import the 4 SIF files in the following order:
    S_XMLP_REP_TMPL_02112010.sif
    SBL_XMLP_REPORT_SELECTION_FLG.sif
    Report Template BC.sif
    Report Template Registration Applet.sif
    3)Apply the DDL for table S_XMLP_REP_TMPL and compile repository
    Still not able to generate Reports.
    Below is error message
    Please ask your systems administrator to check your application configuration.
    ObjMgrMiscLog     Error     1     000000064e150fa0:0     2011-07-07 19:45:31     (busobj.cpp (1654)) SBL-DAT-00222: An error has occurred creating business component 'Report Template Position BC' used by business object 'Report Administration'.
    Please ask your systems administrator to check your application configuration.
    ObjMgrBusServiceLog     Error     1     000000064e150fa0:0     2011-07-07 19:45:31     (swemenusvc.cpp (406)) SBL-DAT-00222: An error has occurred creating business component '<?>' used by business object '<?>'.
    Please ask your systems administrator to check your application configuration.
    Thanks
    Sean

    Hi Rajan,
    Thankyou for for your reply.
    Reports were working fine and we are able to generate reports at configured views in 8.1.1.1 version.
    After installing 8.1.1.3 patch, if we click on reports icon below is the error message displayed.
    An error has occurred creating business component '<?>' used by business object '<?>'.
    Please ask your systems administrator to check your application configuration. (SBL-DAT-00222).
    - is it mandatory to configure security model?(in 8.1.1.1 we used default security model)?
    -is it necessary to import BIPDataService and BIPSiebelSecurityWS inbound Web Services?
    - I didn't see below views as mentioned in bookshelf.
    . Reports - Custom Templates
    . Reports - Standard Templates?
    Thanks
    Sean

  • I'm not able to save any files on an none apple external hard drive, what can i do to make it work?

    I bought a omega 320GB external hard drive so a friend could save the files off an old windows laptop i had but now when i try and open the files on my mac, it doesn't let me. i'm also not able to save any file on to this hard drive either! can some one please help me?

    The drive has the NTFS format, which the Mac OS can read but can't write to. Copy the files from the external drive onto your Mac, then reformat the external drive using Disk Utility, creating a Mac OS Extended volume and using the GUID partition scheme. Then you'll be able to write to the drive. Note that reformatting erases everything from the drive, so don't do it until after you've saved the drive's contents to other media.

  • Not able to save file changes on HCP Web IDE

    Hi
    i am not able to save the file changes on my HANA XS Application created on HCP Trail Account using Wed IDE. This problem does not occur always but now it has become frequent. On click of save button waiting icon comes up and then after minutes it shows error message as Error while Saving.
    I normally use HCP Web IDE platform for all development work.
    My Account ID : i314165trial
    Can anybuddy tell me what is the issue as this is will hamper the development process.

    Check the permissons on the folder and drive, not just on the file.

  • Not able to save query

    Not able to save query.
    Error messagae:  An unexpected object variable or with block variable not set error occurred in WDBRLOG.
    1 ERROR(s) are logged.
    This happened when saving the query.

    hi Kunal,
    what this your bw front end version ?
    you may need to apply your bw front end support package,
    check sp level from BEx Analyzer, menu 'business explorer', somewhere 'help'->'about'
    "Execute in browser" button dimmed in WAD after upgrade to 3.5
    hope this helps.

  • Not able to save more than 2000 characters

    Databse - SQL server 2000
    I am using jdbc to save some text in sql server 2000 database. column is of type ntext.
    If text is more than 2000 character, i am getting an error.
    I tried changing the connection setting to sendstringparameterasunicode=false. After setting this property i am able to save more than 2000 characters, but i am not able to save some special characters. eg - . I am not able to save “abc” but i can save "abc". So it is not recongnizing the double quotes in the first scenario.
    Amit
    Edited by: rushtoamit on Feb 22, 2010 8:48 AM

    No idea. But it isn't a java nor jdbc (general problem.)
    Thus if you are seeing something that tells you it is too big it either comes from the driver or the database.
    So your solutions are
    1. Use a different database and driver
    2. Use a different driver
    3. Modify your code

  • CS5 not able to save workspaces or edit preferences

    Hey guys,
    After installing CS5 yesterday I quickly found out that in all of the programs I am not able to save my work space or edit preferences.  Basically what happens is I will say "save workspace" and a blank box pops up which says save workspace, but then that is it... its basically frozen because I can not get past this prompt.
    Now when I try to change my preferences on the clipboard to take off PDF preferences, I see a square that minimizes quickly to the bottom right of the program and then the program is left frozen, (nothing can be clicked on) and the only way to exit is to end the process.
    According to some other people this may be caused due to a flaw in the installer which makes it so I do not have access to read // write preferences.  There seemed to be a solution for some mac users by changing system files so that anyone can update them.  But I can not seem to find the same files they are editing on my windows 7.
    Can some one please try to help me out.
    Thank you so much
    M

    Do you have any custom display setting such as large fonts or resolution? If so, set them back to Windows defaults.
    Bob

  • Not able to save mp4 on FMS 3.5.3 using FMLE3.2

    In my previous question (Not able to save LIVE streaming video on FMS using FMLE 3.2) ,
    now i can save mp4 video files but 0 byte size. i am using the same code which you suggest me in previous question.
    s=Stream.get("mp4:stream_record.mp4")
    s.play(incoming_stream_from_FMLE);
    s.record;
    but things go fine if i remove 's=Stream.get("mp4:stream_record.mp4")' this part. file is saved but only the audio part.
    my live streaming settings were
    video codec settings
    'Format = H.264
    frameRate = 20 fps
    bitrate = 650 kbps
    audio Codec settings
    format  = mp3
    sample rate = 44100 hz
    bitrate = 128 kbps
    Please help.

    Can you try the same code after removing .mp4 extension. I dont see any problem in the code. So this should have worked for f4v file recording. FLV file cannot record H264 packets and hence you are getting Audio only file when you are trying to record without any format and extension.

  • Not able to save a newly created Data Model in BI Publisher.

    Hello everyone,
    I was trying to create a new Report (my very first report) in BI Publisher. I created a new Data Model and a Data Set. But I am not able to save the Data Model and thus not able to proceed to the report. There's no error shown. Same happens with reports too.
    Kindly provide me with a solution.
    Regards
    Ash
    Edited by: 902739 on 28-Dec-2011 01:02

    You should have a group called 'XMLP_ADMIN' in your repository and administrator or the user you are using should be part of that group. Look into paint.rpd for all these.

  • Not able to save report output in a text file and RTF file

    I am using Oracle Developer6.0 . I am facing problem with reports. I am invoking reports from form using run_product.
    1. I could not able to save the report in text file . Whenever i try to save the report output in a text file.It gives dump and application get closed.
    2. In RTF format , it execute the query which i have given at the design time while creating a report . But while running i am passing query either through lexical parameter or passing value of where criteria user parameters. It display the output for the specified value. But when i save this report output in rtf file . It execute design time query and save that in a rtf file.
    If any body is having any idea about it . Please let me ASAP . It is very urgent for me.
    Thanks in advance

    Try the following:
    Do not generate the report to .rep file, but rename/copy the .rdf file to .rep file and execute it.

  • Not able to create a new action

    I am using Photoshop  CS5 Extended Version - Student and Teacher Edition.   I am not able to create a new action.  When I open up the actions menu, the new action option is greyed out. 
    Also, there is no  "new action" icon at the bottom of my action screen like I've seen in tutorials showing how to create a new action (screen shot from a tutorial). 
    How can I get these buttons so I am able to create a new action.  I've already uninstalled photoshop and reinstalled it but have gotten the same screen menus for actions.  I've also reset the photoshop essentials settings menu but that did not help either.  What do I need to do next?
    Thanks,
    Xemena

    .... will it work if you take it off button mode?

Maybe you are looking for

  • Job prints but is then stuck in queue - LaserJet P1102 with JetDirect 175x print server

    Hello, I have an unusual error happening when i try to install my P1102 through a print server. Everything installs ok and allows me to print a test page, the next document i try to print prints ok but the job remains in the queue and stays there. Af

  • Partition of table n Explain plan

    I am a newbie for oracle partititon. Need help!!! I have a created a partition table, range partition by key column datatype is 'timetamp'. Stucture would be :: CREATE TABLE sales   ( prod_id       NUMBER(6)   , cust_id       NUMBER   , time_id      

  • Macbook Pro with retina keeps logging me off randomly

    I went to Apple already and they just told me to re-load Lion.  I re-loaded, didn't have issues for a few days, but it returned.  All I know is I am losing tons of productivity time since all of my Office applications never remember where they were b

  • About the get payroll..

    wt is the get pernr, getpayroll, get late payroll..... copytodata payroll......

  • Firefox not opneing gmail messages

    In the context gmail not igoogle, messages and contacts will not open. Simple says "loading" but the status is done. Works in IE. Possible error below: Warning: Error in parsing value for 'padding'. Declaration dropped. Source File: https://mail.goog