Does the background task support BDC program in Workflow?

Hi Gurus,
Environment:
ECC 6.0
WAS 640
I've configured a task using Class method, in which a BDC program is called.
When the task is set as background, it doesn't work. The workflow is suspended at this step.
However,  when i unselected background option, it was all ok. The workitem is displayed in the mailbox, and can be executed through the mail box.
The BDC mode is as follows,
  opt-dismode =  'N' .
  opt-updmode = 'S' .    
  opt-cattmode = 'N'.   
  opt-racommit = 'X'.
  opt-nobinpt = 'X'.
Is it that the background task does not support BDC program?
or any other reasons?
Thanks.

Hi,
BDC will work in workflow. I done in one of my Project.
Convert the BDC into FM and call it in workflow, Otherwise, in the FM call your BDC Program and map it workflow.
Check the binding whether the values are passing or not.
Regards,
Surjith

Similar Messages

  • Why does the iPad not support flash player? I would like to watch programming from att uverse but cannot because of this restriction

    Why does the iPad not support flash player? I would like to watch programming from att uverse but cannot because of this restriction

    Because NOTHING that is iOS supports Flash. Never has never will.
    The only possible option is to try the Skyfire browser from the App store. It is an internet browser that converts flash to HTML 5 so that you can attempt to view it on iOS devices.
    I have never tried it so I can tell you if it is any good, but it has gotten decent reviews.

  • Can I turn off the background task for HERE Drive+...

    Hello,
    I have installed on my new Lumia 1020 the application HERE Drive+ and I have noticed that it starts up a background task. Since I'm not using HERE Drive+ on a daily basis I think I could save some battery if I turn off this background task and it is started automatically only when I'm using Drive+ application. Can I do that?
    I went to Settings->Applications->Background tasks and tried to block HERE Drive+. So far so good but when I tried to set to ON (checked) the option "Turn background tasks back on for this app the next time I open it", HERE Drive+ application was automatically unblocked. Is this normal?
    I want to know if I can stop the background task for HERE Drive+ and have it automatically started up when I open HERE Drive+ application.
    Thank you.
    Cosmin Petrenciuc
    Solved!
    Go to Solution.

    It may be something I missunderstand. So if I go to Settings->Application->Background tasks and tap the button "Advanced" I see a list with many applications, and among them there is HERE Drive+. Above this list it is written "These apps can run in the background, and you may not be able to block all of them".
    Does this just means that HERE Drive+ application is allowed to run in the background? Do I see in this window the list of all background tasks currently running or it is just a list with the application that could run in background?
    Right now I don't have any application running. If I keep pressing on back button the app card list is empty.
    Thank you.
    Cosmin Petrenciuc

  • Does the 6600GT-VTD128 support video capture?

    Hi,
    I recently purchased an MSI 6600GT-VTD128 video card.  The product information seems to suggest that the card has video input capabilities, and there is an adapter that plugs into the card that has a number of connections, one of which is labeled S-Video in.  However, I haven't been able to get any video capture to work.
    Does the card actually support this functionality?  If not, what are the video input connections for?  If so, is there some documentation as to how to set it up?  
    So far, I tried installing the video capture drivers that come with the card.  I checked the manual.  I checked the MSI web site FAQs.  And I searched the forums.
    Any help would be greatly appreciated.
    Thanks,
    Daniel

    Thanks Richard.  Yes I do have a breakout cable like that.  Actually, I described it in my original message.  So, I am guessing from your message that you believe that the card should have the capability to capture video.  
    In my original message, I asked if there was any documentation on setting up the card for video capture.  The manual does not describe the procedure, nor does the MSI web site.  
    There are drivers on the CD that claim to be for video capture, but they had no effect when I installed them.  In fact, there appears to be no way to tell whether the drivers were actually installed successfully.
    If anyone out there has successfully used this card for video capture, please let me know.

  • How can we know the return code of BDC Program ?

    Hi All,
    Please tell me : How can we know the return code of BDC Program when being exceuted in Session or in Transaction mode.
    In my program, we are uploading data from Excel sheet to SAP via BDC
    The records that are not updated we want to create a log file.
    Now to know whether a record is updated ot not, wat syst field shloud be used?
    Its urgent....
    <b>Reward Point will be there ....</b>
    Thanks,
    Harish

    Hi harish,
    try the logic in this code ...
    i had attached input file in the end.
    TYPES: begin of errmess,
            msgnr type t100-msgnr,
            text type t100-text,
           end of errmess.
    TABLES : t100.
    DATA: BEGIN OF DD_VA01,
           AUART TYPE VBAK-AUART,
           KUNNR TYPE RV45A-KUNNR,
           BSTKD TYPE VBKD-BSTKD,
           MABNR TYPE RV45A-MABNR,
           KWMENG(2) type C,
           KBETR(2) type C,
          END OF DD_VA01.
    DATA:IT_VA01     Like TABLE OF DD_VA01,
         WA_VA01     Like LINE  OF IT_VA01,
         WA_VA01_F   Like LINE  OF IT_VA01,
         IT_BDCDATA  TYPE TABLE OF BDCDATA,
         WA_BDCDATA  Like Line  OF IT_BDCDATA,
         W_FNAME     TYPE STRING,
         messtab like bdcmsgcoll occurs 0 with header line,
         it_errmess type table of errmess,
         wa_errmess like line of it_errmess,
         err_message type string.
    data: zf1 type i,
          zc1 type c value '2',
          fn(20) type c.
    Main Code ************************************************************
    PERFORM get_input using 'C:\Documents and Settings\ic881592\Desktop\Daran_bdc_VA01-e.txt'.
    SORT IT_VA01 BY AUART KUNNR BSTKD.
    LOOP AT IT_VA01 INTO WA_VA01.
      if WA_VA01_F-AUART <> WA_VA01-AUART OR
         WA_VA01_F-KUNNR <> WA_VA01-KUNNR OR
         WA_VA01_F-BSTKD <> WA_VA01-BSTKD.
           PERFORM set_header_flag.
           PERFORM create_bdc_header_data.
      endif.
      PERFORM create_bdc_item_data.
    ENDLOOP.
    PERFORM call_transaction.
    PERFORM errorlog.
    Procedures ***********************************************************
    form get_input using w_fname.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME            = W_FNAME
          HAS_FIELD_SEPARATOR = '#'
        TABLES
          DATA_TAB            = IT_VA01.
    endform.
    form call_transaction.
        PERFORM bdc_field       using 'BDC_OKCODE' '/11'.
        CALL TRANSACTION 'VA01' USING IT_BDCDATA MODE 'A' messages into messtab.
        refresh it_bdcdata.
    endform.
    FORM set_header_flag.
           WA_VA01_F-AUART = WA_VA01-AUART.
           WA_VA01_F-KUNNR = WA_VA01-KUNNR.
           WA_VA01_F-BSTKD = WA_VA01-BSTKD.
           if zf1 = 1.
               PERFORM call_transaction.
           endif.
           zf1 = 1.
    endform.   "set_header_flag.
    form create_bdc_header_data.
         perform bdc_dynpro      using 'SAPMV45A' '0101'.
         perform bdc_field       using 'VBAK-AUART' WA_VA01-AUART.
         perform bdc_field       using 'BDC_OKCODE' '/00'.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         perform bdc_field       using 'KUAGV-KUNNR' WA_VA01-KUNNR.
         perform bdc_field       using 'VBKD-BSTKD' WA_VA01-BSTKD.
         perform bdc_field       using 'BDC_OKCODE' '/00'.
         perform bdc_dynpro      using 'SAPMSSY0' '0120'.
         perform bdc_field       using 'BDC_CURSOR' '04/06'.
         perform bdc_field       using 'BDC_OKCODE' '=CHOO'.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         PERFORM bdc_field       USING 'BDC_OKCODE' '=POAN'.
    endform. "create_bdcdata
    FORM create_bdc_item_data.
         CONCATENATE 'RV45A-KWMENG(' zc1 ')' INTO FN.
         perform bdc_field       using 'BDC_CURSOR' FN.
         perform bdc_field       using FN WA_VA01-KWMENG.
         CONCATENATE 'KOMV-KBETR(' zc1 ')' INTO FN.
         perform bdc_field       using FN WA_VA01-KBETR.
         CONCATENATE 'RV45A-MABNR(' zc1 ')' INTO FN.
         perform bdc_field       using FN WA_VA01-MABNR.
         perform bdc_dynpro      using 'SAPMV45A' '4001'.
         PERFORM bdc_field       USING 'BDC_OKCODE' '=POAN'.
    ENDFORM.
    form errorlog.
      LOOP AT MESSTAB .
        if MESSTAB-MSGNR = '311' or MESSTAB-MSGTYP = 'E'.
            SELECT SINGLE msgnr text FROM T100
                            into wa_errmess
                            WHERE SPRSL = MESSTAB-MSGSPRA
                              AND ARBGB = MESSTAB-MSGID
                              AND MSGNR = MESSTAB-MSGNR.
            IF SY-SUBRC = 0.
              err_message = wa_errmess-TEXT.
              IF err_message CS '&1'.
                REPLACE '&1' WITH MESSTAB-MSGV1 INTO err_message.
                REPLACE '&2' WITH MESSTAB-MSGV2 INTO err_message.
                REPLACE '&3' WITH MESSTAB-MSGV3 INTO err_message.
                REPLACE '&4' WITH MESSTAB-MSGV4 INTO err_message.
              ELSE.
                REPLACE '&' WITH MESSTAB-MSGV1 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV2 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV3 INTO err_message.
                REPLACE '&' WITH MESSTAB-MSGV4 INTO err_message.
              ENDIF.
              CONDENSE err_message.
              WRITE: / MESSTAB-MSGTYP, err_message .
            ELSE.
              WRITE: / MESSTAB.
            ENDIF.
        endif.
      ENDLOOP.
    endform. "errorlog
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      WA_BDCDATA-PROGRAM  = PROGRAM.
      WA_BDCDATA-DYNPRO   = DYNPRO.
      WA_BDCDATA-DYNBEGIN = 'X'.
      APPEND WA_BDCDATA TO IT_BDCDATA.
      CLEAR  WA_BDCDATA.
    ENDFORM.
    FORM BDC_FIELD USING FNAM FVAL.
      WA_BDCDATA-FNAM = FNAM.
      WA_BDCDATA-FVAL = FVAL.
      APPEND WA_BDCDATA TO IT_BDCDATA.
      CLEAR  WA_BDCDATA.
    ENDFORM.
    input file :
    OR     2148     0001235     R-1162     8     17
    OR     2148     0001235     R-1161     2     30
    OR     2148     0001235     100-400     6     25
    OR     2148     0001235     R-1162     4     12
    OR     2148     0001236     R-1162     3     12
    OR     2148     0001236     R-1161     2     30
    OR     2148     0001236     100-400     1     25
    OR     2148     0001236     R-1162     7     12
    OR     2148     0001236     R-1161     8     30
    OR     2148     0001236     100-400     10     25
    OR     2148     0001235     R-1161     5     30
    OR     2148     0001235     100-400     2     25
    OR     2148     0001235     R-11621     3     12
    OR     2148     0001235     R-1161     2     30
    OR     2148     0001235     100-400     1     25
    OR     2148     0001235     R-1162     7     12
    OR     2148     0001235     R-1161     8     30
    OR     2148     0001235     100-400     10     25
    OR     2148     0001236     R-1162     8     17
    OR     2148     0001236     R-1161     2     30
    OR     2148     0001236     100-400     6     25
    OR     2148     0001236     R-1162     4     12
    OR     2148     0001236     R-1161     5     30
    OR     2148     0001236     100-400     2     25

  • Does the Macbook Pro have a program to run Windows? If not, what is the best program to do so?

    Does the Macbook Pro have a program to run Windows built in? If not, what is the best program to do so. Purchasing a new Mac.

    No. The Mac does not have anything to run Windows
    You must install either virtualizrion software or use BootCamp to create a partition for Windows. Once you have done that then you must install Windows.
    Allan

  • Does the cannon mx410 support ipad printing of notes from the notepad

    Does the cannon mx401 support iPad (Via wi-fi) printing from the notepad area?????
    I need help getting mine to operate..
    .thnx
    . Bea

    According to the link below that printer doesn't support Airprint.
    See requirements for AirPrint and printers that support AirPrint here:
    http://support.apple.com/kb/ht4356
    You may be able to print some content using a printing App from the App Store. See Print n Share, etc.

  • Does the macbook pro supports the logitech gamepad 510/710? I't doesn't recognize it

    Does the macbook pro supports the logitech gamepad 510/710? I't doesn't recognize it.
    Is for playing to the FIFA 2012 for Mac

    juliafrancine wrote:
    I've tried looking for the install cd for it but I can't find it, now I'm starting to wonder if it even had one.
    No.  10.7 never came one a disk.  Read this:
    Restoring iLife applications after Internet Restore of OS X Lion
    If you reinstall Lion on a new Mac that shipped with OS X Lion installed, on an erased or replaced hard drive, you can download iPhoto, iMovie, and GarageBand from the Mac App Store.
    After installation, start from Lion.
    Double-click the App Store icon in the dock.
    Enter your Apple ID and password.
    Click Purchases.
    If you haven't previously accepted your bundled iLife applications within the Mac App Store, you should see your iLife applications appear in the Accept portion of the screen. Click Accept.
    You may be asked for your Apple ID and password once again. Your iLife applications now move to the Purchased section. These applications are part of the software that came with your Lion based computer. Your account will not be charged for them. Click Install to compete installation of your applications.
    http://support.apple.com/kb/HT4718

  • Does the ME3400 switch support MDI/MDI-x autocross

    Does the ME3400 switch support MDI/MDI-x autocross? I recently experienced  a situation where when the switch was set to a fixed 100 Full duplex and the outboard device selected the wrong pair, they would never link.
    Is MDI/MDI-x only supported on auto-negotiation?

    “Thank you for your question.  This community is for Cisco Small Business products and your question is in reference to a Cisco Elite/Classic product.  Please post your question in the Cisco NetPro forums located here: http://forums.cisco.com/eforum/servlet/NetProf?page=main  This forum has subject matter experts on Cisco Elite/Classic products that may be able to answer your question.”
    - Switches ----> Network Infrastructure Forum http://forum.cisco.com/eforum/servlet/NetProf;jsessionid=E0EEC3D9CB4E5165ED16933737822748.SJ3A?page=Network_Infrastructure_discussion

  • Does the iPhone 5s support LTE Advanced?

    ihave iphone 5s but
    Does the iPhone 5s support LTE Advanced?

    Galadari wrote:
    Does the iPhone 5S support LTE Advanced
    I assume you mean Voice over LTE (VoLTE)? If so, I do not believe it does. It certainly doesn't with my carrier (Verizon).

  • HT6154 Does the iPhone 4s support Blue Tooth?

    Does the iPhone 4s support blue tooth?

    But not all Bluetooth profiles are supported. What is it you wish to do/connect to via Bluetooth?

  • HT204387 Does the IPhone 4S support NFC technology for Bluetooth pairing?

    Does the IPhone 4s support NFC technology for Bluetooth pairing.

    NFC and bluetooth are not the same thing.
    The iPhone (no currently existing model) does not have the hardware required for NFC.

  • Does the mozilla OS support sony xperia tipo(single sim)?

    Does the mozilla OS support sony xperia Tipo(single sim) ?
    If yes how would i be able to install it in my mobile phone and will it function properly and smoothly ?

    You can get start from here:
    *https://developer.mozilla.org/en-US/docs/Mozilla/Firefox_OS/Porting
    *https://developer.mozilla.org/en-US/docs/Mozilla/Firefox_OS/Preparing_for_your_first_B2G_build
    *https://wiki.mozilla.org/B2G/Porting
    btw, This is support forum, we dont handle this type of question, however you can ask porting related help at b2g mailing list or [https://www.mibbit.com/?server=irc.mozilla.org&channel=%23b2g irc channel].
    *[email protected]
    *irc://irc.mozilla.org/b2g

  • Does the new IPAD3 support the 3G in Egypt?

    does the new IPAD3 support the 3G in Egypt?

    The New iPad supports 3G world-wide wherever there is a local provider of iPad data plans and iPad micro sim cards. Read the specifications. http://www.apple.com/ipad/specs/
    So the question really is, are there 3G providers in Egypt who support the iPad?

  • Does the new ATV3 support DTS?

    Does the new ATV support DTS?

    Hi, sorry for delay in getting back, having checked the info of one of the files it shows the following.
    Apple lossless audio file
    29.2mb
    1253kbps
    44.100khz
    Stereo
    16 bit
    Encoded with itunes 11.1.0.126
    Doesnt mean much to me but hopefully it does to hou.

Maybe you are looking for