How To Finish a back ground task

Hi
I have created a back ground task which mark attendance of specific type in pa30 .what i do is  created a bapi and submit that bdc report in it  using call transaction. It is working fine . when i see in pa30 after its execution it is marking attendance  but in log it shows that step is under process. how can i finish it so that workflow move to next step
Regards
Ammad

Hi,
when a background task is in process for a long time then probably the method raised a short-dump somewhere.
So investigate this first.
For continuing the flow manually you can use the technical workitem display in the workflow log, put it to change and manually complete that workitem.
Kind regards, Rob Dielemans

Similar Messages

  • Debugg a back ground task in production

    Hi All,
    I would like to know what are the different techniques to debugg a back ground task in production? I heard that changing WF_BATCH to dialog user and then dubugg is not a best option since we have limited authorizations in production.
    Regards
    RK

    Hi Ramakrishna,
    IN general the approach what I follow is I create a copy of the work flow  which I want to debug and transport it to the PROD system. But the difference would be that in the copied work flow I make all the steps as foreground steps. For this work flow I maintain the agent assignment to user I.e. WF_ADMIN.
    Or the person who is holding the role of WF_ADMIN.
    The second point here is how do I start the debug work flow instead of main or original work flow. while starting work flow either by using event or directly I would populate a flag into one of container elements.
    I check for this flag and if it is true then I raise an event to start test work flow.
    This kind of approach can help us in so many ways
    1. Without disturbing the original work flow you can change a the steps associated with work flow which is used just for testing and bug fixing.
    2. You don't' have to change Work flow customizations , as you mentioned that changing WF-BATCH to some dialogue user. This kind of change can be ignored.
    I would recommend that you create a separate package and create a test workflow and move the request to PROD. but make sure you don't trigger test workflow instead of original workflow.
    Regards,
    Pavan

  • Call function inside of call function in back ground task

    Hi Friends,
       I am calling one function in back ground task. that is executing after save of the transaction. And inside of that transaction i am calling one more function but in debugging the cursor is not going inside of that function. What could be the reason. Please help me.
    Thanks a lot in advance.

    Hi,
        Inside of the first function any way i will come after save
    using update task debugging. Once it reach inside of firt function and if i press f5 then second function is coming and if i press f5 there then it is coming out of the function and it is not going inside. The second function is called directly not in back ground.
    Thanks..

  • Call transaction inside of call function in back ground task

    Hi,
        Is it possible to use call transaction statemement inside of call function in back ground task. I am getting error if i use the same. Any help will be highly appreciated.

    Hi,
    I don't think this is possible. The call goes into error in SM58, what you can try to do is after the function is called, you can submit the program RSARFCEX by setting the user name as sy-uname and other parameters as * and set all the checkboxes.
    regards,
    Advait

  • How to suppress the back-ground execution of a query in design mode

    hi guys,
    there is a bahaviour of the system, that I'd like to change. So, when we
    1. start EXCEL
    2. go to the designer mode to create a report
    3. first drop an InfoProvider (e query) into a cell,
    4. second - pull e.g a filter element into another cell, still being in the design mode.
    Just in this moment, the query itself has been already started in the back groud, aiming to fill the cache, I guess.
    Does anyone know how to suppress the back-ground execution? I'd like to control, when to start the reports execution.
    Thanks in advance.
    Neven

    Hello,
    There is no way to do that if you are creating thru BEx Analyzer.
    Instead use the BEx Analyzer, try to create using directly BEx Query Designer.
    In that way, the query will not be executed, until you want to...
    Thank you
    Edward John

  • How to reschedule a Back ground job in Normal ABAP from Web Dyn Pro abap application??

    Hi Experts,
    How to reschedule a Back ground job in Normal ABAP from Web Dyn Pro abap application??

    Can you give us some more information? Background jobs primarily don't have anything to do with Webdynpro.

  • UPDATE and BACK GROUND TASK

    What is the diffarence between call function in back ground task and call function in update task?  Can we do the same functionality by using any one of the above function?

    Calling a FM in background task will call FM in background work process as tRFC while calling in update task will call the FM in update work process. The update task will be executed after COMMIT WORK statement. The tRFC FM are will be no. of times (BASIS Settings) till the process executes correctly.

  • How To Handle With Back Ground JOB From WEBUI When Click On "Appove"

    Hi
    How To Scheduled A Job Through ABAP Report In back end  Of CRM when i click on "Approve" Button in WEBUI  From result list.
    As per My requirement I have a Search View and Result View
    In Search View I have  Below Fields
    ITC Vendor ID    
    Claim Status
    User status (date status changed)
    Model
    Serial Number
    Date completed of Service Completion
    Based on Search Criteria I will get Result In Result View.(Suppose 10 Records I got In Result View)
    In the Result View I need to Add one Button As "Approve"
    When i Click On Approve button One Pop up Message Need to Open And In that popup window I need to Display Below Text
    "Approve  Claim Job Has Started In Background  
    Note: Only Claims Which are in Submitted  Status  Will be  Approved. you May Close This Window"
    In SAP CRM System  Back Ground Job Need To Start When Click On "Approve" Button In WEBUI .
    In the Back Ground ABAP Report which will validate based on Result List Records"
    In the Result List we may have all types of Claims which are status in "Submitted" "Pending" "Rejected" "Approve".
    I need to collect all records from Result list and validate Those Records who's Status in "Submitted
    1)Sort all the claims based on ITC Vendor ID.
    2)Grouped all the submitted claims against each ITC Vendor ID from the search result
    3)Change the status of the selected submitted claims to Approved.
    4)Displays information messages as mentioned whenever a claim is approved, the same message will be captured in the job log.
    ‘Claims <ClaimID 1>,…<ClaimID N> now approved for ITC Vendor ID’.
    5)Sending Email to each IRC.
    6)Capture all the approved claims in the below format (Format Attached "Screen Shot Attachment")
    7)Store the file in the Application Server AL11 in .csv format
    Please Find Attachement For Reference.
    1)ITC Claim Screen Shot
    2)Screen Shot For Attachment
    Thanks
    Raj

    Hi,
    You can add the following code in on approve method to show popup to the user,
    IF req_edit IS NOT BOUND. " gloabl attribute in impl class of the view
        REFRESH lt_buttons.
        lss_button-id  = 'btnyes'.
        lss_button-text = 'YES'.
        lss_button-on_click = 'YES'.
        APPEND lss_button TO lt_buttons.
        CLEAR lss_button.
        lss_button-id  = 'btnno'.
        lss_button-text = 'NO'.
        lss_button-on_click = 'NO'.
        APPEND lss_button TO lt_buttons.
        CLEAR lss_button.
        CALL METHOD comp_controller->window_manager->create_popup_2_confirm
          EXPORTING
            iv_title          = 'ATTENTION'
            iv_text           = 'Are you sure you want to edit this document?'
            iv_btncombination = '99'
            iv_custombuttons  = lt_buttons
          RECEIVING
            rv_result         = req_edit.
        req_edit->set_on_close_event( iv_event_name = 'EDIT' iv_view = me ). "#EC NOTEXT
        req_edit->open( ).
        RETURN.
      ELSE.
        lr_node ?= req_edit->get_context_node( 'OUTPUTNODE' ).
        lv_outbound = lr_node->get_event_name( ).
    *  CLEAR ptc_pricing_status.
    *    lv_outbound = req_edit->get_fired_outbound_plug( ).
        IF lv_outbound = 'YES'.
    you can use the submit report code here and you can al the validations here
        ELSE. " No
    if user clicks no nothing to do..
        ENDIF.
        CLEAR req_edit.
      ENDIF.
    Best Regards,
    Dharmakasi.

  • How to find the back ground job details

    Hi All,
       I have a back ground  job running from many days, now we would like to know when this job was created on what date this job actvlly created and schuduled.
               Please informe me how to check this.
    Thanks & Regards,
    Muralikrishna

    On SM37 screen there is plenty of options are there:
    This is what i got from SAP help
    Explanation for each selection field:                                                                               
    o   Jobname: Name of the job as an identifier.                                                                               
    o   Username: Name of the user who designed and planned the job.                                                                               
    o   Start date: The start condition of the job, which could be a time 
    frame or an event that the job is waiting for. Specifying both will   
    yield jobs whose starting condition is  either of the two             
    conditions.                                                                               
    ABAP program step: Name of an ABAP program that acts as a step in a   
    job.                                                                               
    Status selection: The current status of the job. By default, the      
    SCHEDULED option is not marked. To see the scheduled jobs, you must   
    explicitly check this.
    also give the proper values in Job Satus also.

  • How to turn off back ground music in iMovie?

    How can I turn off back ground music when working in a project with iMovie? Once I eliminate a selection the next piece of music is automatically selected from iTunes, which I want to avoid.

    That's not happening to me. Try resetting your phone (hold down Home and Sleep/Wake button until you see the Apple logo.

  • How to debug the back ground job

    Hi All,
    I want to debug the program, but it is taking more time so iam running it in back ground, but i need to debug the program from some particular point....is there any other way to debug the program...
    Means...to run the program in background upto particular point and later i need to run it in debug mode.
    Please suggest.
    Thanks & Regards,
    Hari

    Hi,
    You can do this only after the job has finished execution. This will simulate the exact background scenario with the same selection screen values as used in the job and sy-batch set to 'X'.
    Use SM37 to get list of jobs , type 'JDBG' in the command line ( no '/' ), put the cursor on the job and press ENTER
    You are in debug mode now. Step through SAP program (press F7 couple of times) until you get to code you need.
    Hope this helps u.
    Thanks.

  • How to change the back ground colour of the firefoxweb page

    I tried to upgrade Fire fox Mozilla as requested from the home page.. but it did not complete.
    When I went to surf the net the background screen colour was Black and now I could not see the web pages clearly, as some writing is in colour and does not stand out against the black background.
    It used to be a dark pink which was horrible when I used to view some web pages such as Ebay.. can anyone help change the back ground colour on the home page of Firefox.
    Regards
    Simon

    Hi,
    Please try enabling '''Allow pages to choose their own colors, instead of my selections above''' in '''Tools''' ('''Alt''' + '''T''') > '''Options''' > '''Content''' > '''Colors'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Content%20panel Options > Content]
    If the problem persists please also check in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • How to set a back ground to be shown in the whole browser...

    Hi all,
    1. How to set a background in Adobe Dreamweaver so it's gonna be visible in whole browser no matter what resolution is set, the problem is that I cant set to repeat it as the backgroud is not symetric (picture below):
    http://a.imagehost.org/view/0568/Untitled-2
    2. I would like to know how to create a shiny/glossy objects like rectangle or so in Photoshop. Could you recommended some addons/plugs? An example:
    http://www.istockphoto.com/file_thumbview_approve/6137760/2/istockphoto_6137760-shiny-rect angle-menu-buttons.jpg
    Thanks from advance for any help.
    Regards

    Here's an example using the background image you linked to.
    http://perrelink.com.au/forum/repeat-bg/
    Look at the code and see how I've applied the background image to the body tag in the css.
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • How system works in back ground while procure ment

    Can anyone let know how system works while procurement cycle and postn to respective gl is done,,
    and tables gets updated...

    please dont reply  accounting entries ......... reply with background process ,,like how  system will pick the inventory posting BSX and others.

  • How to change style (back-ground color) in selectBooleanCheckbox?

    Hi
    I've got selectBooleanCheckbox:
    af:selectBooleanCheckbox text="selectBooleanCheckbox 1"
    label="Label 1" />
    I can change background color of text="selectBooleanCheckbox 1" and label="Label 1"? just by adding inlineStyle="background-color:rgb(255,255,66)"
    SO, How can I change background color in space BETWEEN text and label (just at the checkBox)?

    Hi,
    the inline style property only styled the DOM node of the component. ADF Faces components are complex DHTML components that you style by writing a custom skin (see developer guide for skinning). If you don't want to write a custom skin, use Firebug to determine the style class generated for this component
    Frank

Maybe you are looking for

  • I have no more OS and i can't install a new one

    My mac was getting too crowded for me, so on a whim i decided to reset it to the factory settings. Cmd + R to boot in disk utility thing and deleted OS maverick from my HD. and now for some reason i'm left with 3 partitions on my HD. a 200 GB one wit

  • Generated orion-ejb-jar.xml

    I have app. which run under oc4j(version 020725.1695). If I try new oc4j(version 020927.1699), app doesn't run. If I compare generated orion-ejb-jar.xml by oc4j(version 020725.1695) with generated orion-ejb-jar.xml by oc4j(version 020927.1699) there

  • Hellanzb: cannot import name _NO_FILE after pacman -Suy [solved]

    hellanzb.py /usr/lib/python2.6/site-packages/twisted/internet/default.py:15: DeprecationWarning: twisted.internet.default is deprecated. Use posixbase or selectreactor instead.   warnings.warn("twisted.internet.default is deprecated. Use posixbase or

  • Is there a way I can download adobe reader on my iPad or the like so I can access some educational program's?

    Is there any way I can downloaded adobe reader on my iPad so I can access some educational program's. if not can I get round it somehow?

  • Broker processes for Reader 10

    I have a plugin that requires access to a COM object. To make this work in protected mode, I created a broker process using the sample project from the Adobe XI SDK. The plugin now works in Reader 11, but not in Reader 10. Is there a way of making th