BDC is not working in back ground

Hi all,
I have created bdc for F-51 but it is not working in back ground (mod N)  and it is not showing any error in error tab , but  it is working fine in mod A & E .I tried  with mod P  and using CTU_PARAMS but no use..
I have tested my recording in SHDB , in SHDB I have assigned session ,
And I executed that session in SM35  .
In SM35 I given processing mod foreground and error mod both are working fine but while trying in Background mod it is showing below error
u201CThe difference is too large for clearingu201D
How can I resolve this problem?

Hi Rakhi,
The error which you are getting u201CThe difference is too large for clearingu201D will come if the DEBIT AMT - CREDIT AMT <> 0. So the document which you are trying to select is either not there on the list or it is not getting selected while running in background. If it is not getting selected them the reason may be of you screen resolution, have you selected Default Size while recording ? and have you passed the same to CTU_PARAMS.
Thanks & Regards,
Faheem.

Similar Messages

  • LQ02 Transaction not work in Back ground processing

    Hi
    LQ02 transaction working well in forground process but not working for background process. I did the bdc and use call transaction to post WM-IM transaction.
    screen input as follows :
    Warehouse number
    Storage type
    Storage bin
    WM movement type
    Storage Unit
    batch job shows sucessfully completed but category stock status remain unchanged (ie quality to unrestricted.)
    Any body know the alternative function module or bapi to post LQ02 transaction.
    Appriciate your help.
    Best regards
    Pravin

    when you run LQ02 in foreground, do you select anything manually or can you just hit save an everything is done?
    What does job log and spool file tell you?
    Did you flag the box for create mail in case of an error?
    check OSS note 489286

  • RMCB0300 is not working in back ground job

    Hi
      I call t-code MC.9 program (RMCB0300) in back ground by using sample code given below.
      SUBMIT RMCB0300 WITH SL_WERKS-LOW = u2018ABCDu2019
                      WITH SL_LGORT = 'W001'
                      EXPORTING LIST TO MEMORY AND RETURN.
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          LISTOBJECT = LISTOBJECT
        EXCEPTIONS
          NOT_FOUND  = 4
          OTHERS     = 8.
      IF SY-SUBRC <> 0.
      ENDIF.
    The 'LIST_FROM_MEMORYu2019 is getting correct output in four ground but
      not in back ground job.
    Kindly help.

    When you use 'LIST_FROM_MEMORY' it basically imports the memory id '%_LIST'.
    When running MC.9 in foreground the memory id '%_LIST' is saved (you can check in debugging) but in background the memory id is not saved
    This is why you are not getting the data correctly in background.
    BR,
    Suhas

  • BDC is not working as background job

    Dear Expert,
    I have developed a program which contain BDC of FB75 with mode 'E' . I have Schedule this program as background by FM 'JOB OPEN' , Submit statement and 'JOB CLOSE'. My problem is when i run this program as background BDC is not working.
    What is the solution of this problem?
    Thanks
    Avadhesh

    Hi Avadhesh,
      if FB75 is doing a commit work, then, your batch job will finish with error at the time of BDC execution.
      Try to add the option parameter type CTU_PARAMS to the CALL TRANSACTION with field RACOMMIT = 'X'.
    DATA opt TYPE ctu_params.
    opt-RACOMMIT = 'X'.
    CALL TRANSACTION 'FB75' USING bdcdata_tab OPTIONS FROM opt.
    Regards.

  • BDC is not working in when executing the program in background

    Hi gurus,
    I have a problem that in BDC is not working when i'm executing the upload program in background thru scheduling(SM36) , while it works fine when i execute directly with NO screen display mode

    Many transactions behave differently when executed in foreground and background. The fields on the screen may be different.
    In transaction SHBD when starting a recording there is a checkbox where you can select 'Simulate Background Mode'. If you do your recording using this option you will get the code suitable for background mode. If you do not select this option you will get a code for foreground mode.
    By compairing the two codes you will know the changes required for background mode.
    Hope this helps you

  • BDC is not working in background for Transaction COR6N

    Hi ,
       We have written the BDC program for transaction COR6N. BDC works perfectly in foreground but it's not working for background option.
        SELECT SINGLE AUFPL INTO W_AUFPL FROM AFKO
                  WHERE AUFNR = W_AUFNR.
        SELECT AUFPL VORNR INTO TABLE IT_PHASE FROM AFVC
                WHERE AUFPL = W_AUFPL
                  AND PHFLG = 'X'.
        LOOP AT IT_PHASE.
        WA_BDCDATA-PROGRAM  = 'SAPLCORU_S'.
        WA_BDCDATA-DYNPRO   = '0100'.
        WA_BDCDATA-DYNBEGIN = 'X'.
        APPEND WA_BDCDATA TO BDCDATA.
        CLEAR WA_BDCDATA.
        WA_BDCDATA-FNAM     = 'AFRUD-AUFNR'.
        WA_BDCDATA-FVAL     = W_AUFNR.
        APPEND WA_BDCDATA TO BDCDATA.
        CLEAR WA_BDCDATA.
        WA_BDCDATA-FNAM     = 'AFRUD-VORNR'.
        WA_BDCDATA-FVAL     = IT_PHASE-VORNR.
        APPEND WA_BDCDATA TO BDCDATA.
        CLEAR WA_BDCDATA.
        WA_BDCDATA-FNAM     = 'BDC_OKCODE'.
        WA_BDCDATA-FVAL     = '/00'.
        APPEND WA_BDCDATA TO BDCDATA.
        CLEAR WA_BDCDATA.
        WA_BDCDATA-PROGRAM  = 'SAPLCORU_S'.
        WA_BDCDATA-DYNPRO   = '0100'.
        WA_BDCDATA-DYNBEGIN = 'X'.
        APPEND WA_BDCDATA TO BDCDATA.
        CLEAR WA_BDCDATA.
        WA_BDCDATA-FNAM     = 'AFRUD-LMNGA'.
        WA_BDCDATA-FVAL     = w_qty. "'60'.
        APPEND WA_BDCDATA TO BDCDATA.
       CLEAR WA_BDCDATA.
       WA_BDCDATA-FNAM     = 'AFRUD-BUDAT'.
       WA_BDCDATA-FVAL     = w_date. "'31.12.2008'.
       APPEND WA_BDCDATA TO BDCDATA.
        CLEAR WA_BDCDATA.
        WA_BDCDATA-FNAM     = 'BDC_OKCODE'.
        WA_BDCDATA-FVAL     = '=BU'.
        APPEND WA_BDCDATA TO BDCDATA.
        clear X_OPTIONS.
        X_OPTIONS-DISMODE = 'N'.  ' works perfectly for 'A'
        X_OPTIONS-UPDMODE = 'S'.
        X_OPTIONS-CATTMODE = ' '.
        X_OPTIONS-DEFSIZE = ' '.
        X_OPTIONS-RACOMMIT = ' '.
        X_OPTIONS-NOBINPT = 'X'.
        X_OPTIONS-NOBIEND = ' '.
        CALL TRANSACTION 'COR6N'  USING BDCDATA  OPTIONS FROM X_OPTIONS
                           MESSAGES INTO ITAB.
                     MODE 'N'  MESSAGES INTO ITAB UPDATE 'S'.
       WAIT UP TO 3 SECONDS.
        COMMIT WORK AND WAIT.
        CLEAR:BDCDATA[],WA_BDCDATA.

    HI,
    COR6N is the Enjoy Transaction and sap does not suggest to write the BDC on these transaction as most of these transaction uses the GUI elements foe better display and which cannot be recorded while processing the BDC in back ground.
    Check for the Normal transaction and write the BDC for it.
    Or
    Pass X to Rcommit flag in the CTU_PARAMS option and check.

  • BDC is not working in background mode and working fine in Foreground mode

    Hi Experts,
    I have created a BDC in SHDB for the transaction code:CWBQM for creating and deleting the record and converted the BDC recording into the program using call transaction. It is working fine in both foreground and background. When I given the same program for users testing one for the user was able to delete the records but Creation is not working in the same BDC. He is able to create the same records in another PC and the problem is only in that PC and only during the creation of the record. When I change the mode to 'A' mode for testing and request the user to execute and it is working fine the records created successfully. What could be the issue ?
    Thanks,
    Hema

    Hello,
    While recording BDC in SHDB try setting "Simulate background mode" flag and give a try.
    Cheers,
    Nag

  • MIGO BDC is not working in  Scheduled BG Job

    Hello,
    For Subcontracting Purchase Order Item, we are using the BDC Call Transaction method for the TCode
    MIGO in the program  'ZMIGO_TEST'.
    When we are testing the Program 'ZMIGO_TEST' through SE38 it is running successfuly and document is also posted but problem is when we schedule the same program 'ZMIGO_TEST' in SM36, same BDC code for MIGO Transaction is not working and giving the Error in IST_BDCMSGCOLL as folloow.
    MSGID: - DC
    MSGTYP: - S
    MSGNR: - 006
    DYNAME: -  0001
    MSGV4: -  SAPLMIGO
    NOTE: - We can not use the BAPI 'BAPI_GOODSMVT_CREATE' because we have to update the Challan Number and Challan Year also for each PO Line Item and this BAPI does not have thses two fields in its Parameter Interface.
    Please suggest.
    Thanks & Regards
    Jagesh

    hi,
    check below tcodes..
    Subcontracting Process
    Subcontracting without Payment of Duty
    Creation of Subcontracting PO (ME21N) 
    Transfer Posting of Components to Subcontractor (Mvmt Type - 541) (MB1B/ME2O/MIGO) 
    Creation of Subcontracting Challan w.r.t. Transfer Posting Doc (J1IF01) 
    Goods Receipt w.r.t. Subcontracting PO and Refer Subcontracting Challan at the time of GR (MIGO) {GR with 101 and auto consumption of components with 543 movement} 
    Reconciliation of Subcontracting Challan (J1IFQ) 
    Completion of Subcontracting Challan (J1IF13) 
    Generation of Annexure IV (J1IFR) 
    Note: - In this case, you have to maintain the Assessable Value for the Components to be supplied to Vendor in J1ID and also Excise Tax rates for the Chapter IDs linked with these components. So during J1IF01, system will take the Assessable Value as Excise base Value and calculates the Excise Duties by taking Excise Tax Rates.
    Subcontracting under Full Payment of Duty
    Creation of Subcontracting PO (ME21N) 
    Transfer Posting of Components to Subcontractor (MB1B/ME2O/MIGO) 
    Creation of Outgoing Excise Invoice w.r.t. Transfer Posting Document (J1IS) - Used to send the components to Subcontractor's. Here 57F4 Challan is not created. 
    Accounting Entry: -
    CENVAT Input BED - Cr
    CENVAT Input ECS - Cr
    CENVAT Input ECS - Cr
    CENVAT Suspense A/c - Dr
    Capture Vendor Excise Invoice at the time of GR of Finished Goods w.r.t. Subcontracting PO (MIGO) 
    Post Excise Invoice for FG received from Subcontractor (J1IEX) 
    Accounting Entry: -
    CENVAT Input BED - Dr
    CENVAT Input ECS - Dr
    CENVAT Input ECS - Dr
    CENVAT Clearing A/c - Cr
    Master Data:-
    MM01- Material Masters for Components and FG 
    XK01 - Vendor Master (Subcontractor) 
    CS01 - BOM for FG 
    ME11 - Purchase Info record for Subcontracting

  • BDC does not work in the list of report.

    Hi All,
    I have report with selection screen and after entering the value in selection screen it goes to module pool screen and shows output in table control. And after click one button here the output shows in the list. After getting the out put in the list we can use the print option to take the print out of the list.
    My requirment is i have do the same thing through BDC. It is working fine but once it reach to the list output, the BDC is getting fail and the print option is not working. I did the BDC in recording. After analysing, I found that any report ouput list does not have the Program name and screen number(System-status).
    So i had tried it with the submit report option also but in this there is module pool so submit report is also failing after reaching to the module pool screen.
    Please help me out in this issue.

    hi,
    try with leave to list-processing...or
    leave to list-processing and return to screen <screen number>.
    please let me know if its working or not
    hope this helps,
    priya.

  • RV082 UPnP not working with Back To My Mac

    I have several Mac based applications that are not working with UPnP on my RV082 router. It's not listed as a compatible router on Apple's MobileMe Back To My Mac hardware compatibility list. Is there a way to manually configure port forwarding for this application?
    Another application that requires UPnP that is not working is El Gato EyeTV.
    UPnP is on, and some applications on some computers are clearly able to open ports via UPnP.
    I have firmware version 1.3.98-tm.

    You will need to contact the vendor/manufacturer of the specific non-Cisco applications (Back to My Mac & El Gato EyeTV) for those application instructions, we don't support them on here.  if the RV082 is working with other devices/applications, then I'd believe that it's specific to those non-Cisco apps that you would need to troubleshoot with the specfic vendors on.
    Best Regards,
    Glenn

  • Command button onclick="history.go(-1)" not work as back button

    Hi,
    I'm using Jdev 10.1.3 on WinXP running standalone oc4j.
    Does anyone has experience in implementing command button with onclick="history.go(-1) ? Mine did not work as a back button. It simply stayed on the same page.
    Any idea?

    cor-el, I started Firefox in the Safe Mode as recommended. It looked and worked fine. Same after I closed and reopened it. As suggested, I shut down and restarted and so far it is operating "normally." Pages open on the first try and the back button works just fine. The double headers are gone and all my Bookmarks are in place. I did not change any settings or stop any functions (add-on's, etc).
    Hopefully this has solved the issue. Only time will tell. Thanks for your help. I also have a long list of other things to try from Safe Mode if the issue returns.
    I appreciate your prompt help. Larry.

  • Left side touch note working - took back up with PC companions - repaired with SUS - restore of contacts etc failed - restore error - touch still not working ..... Experts can i get some help ?

    Hi Guys / Experts / Arnab,
    The left side touch of my phone screen was not working. Was not able to type numbers 1, 2 and alphabets Q, W etc.
    I repaired with SUS after taking back up with PC companion.
    While restoring the backup, i got RESTORE ERROR, and almost everything got restore except few apps and CONTACTS, which is the most important thing in a mobile .
    ---> TOUCH IS STILL NOT WORKING <----
    Guys can i expect some help here ?
    Regards,
    Sush
    Solved!
    Go to Solution.

    I see
    this might help
    http://talk.sonymobile.com/message/448070#448070
    https://github.com/nelenkov/android-backup-extractor
    SO HERE IS HOW YOU CAN RESTORE YOUR DATA:
    Get your Fullbackupdata-Contactfile.
    1.  First go to your backupfile: (C:\Users\YourUserName\Documents\Sony\Sony PC Companion\SomeNameDependsOnLanguage\
    2. Make a Copy of your backup-File (crtl+c, crtl+v)
    3. We want to change the file extension, so make sure you see it. If you don't see a .dbk at the end of your file, go in the explorer window in the left upper corner on organise -> Folder and search options. Change to view and then deselect "Hide extensions for known File types"
    4. Rename (F2) the file to backup.zip
    5. Open the zip with 7zip or something similar.
    6. Navigate to Applications\com.sonyericsson.android.contactsimport and get the fullbackupdata file which is lying in this folder.
    7. Put this file on your Desktop.
    8.Download this jar-File: http://ge.tt/64TJmne/v/0?c
    9. Put the .jarFile also on your desktop.
    10. Doubleclick the .jar-File. After a few seconds a new file with the name "restore.tar" should show up (If not check if your fullbackupdata-File really has the name "fullbackupdata" and is on the desktop)
    11. Open the .tarfile with 7Zip
    12. Navigate to restore.tar\apps\com.sonyericsson.android.contactsimport\f\
    13. Copy full_backup_vcard.vcf to the Desktop.
    If everything worked you're finished, you can open this .vcf File via Windows-contacts -> import or put it directly on your phone and import it there (open Contacts. Settingsbutton -> impot)
    If you don't trust my .jar file, you can also download the github-project follow their orders and compile it yourself.
    Don't forget to mark the Correct Answers & Helpful Answers
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Installed Acrobat Pro and uninstall Reader does not work defaults back to Reader

    I've installed Acrobat Pro, after installing Acrobat Reader.  After I uninstall Reader and click on a PDF file, it automatically opens it in Reader.  I've clicked Acrobat 9 as my preferred software, but next time, it reverts back to opening in Reader.  I'm using a lenovo Yoga laptop with Windows 8.1.

    Thank you very much for your reply.  This didn't work.  As you can tell, this is not a high priority for me, just annoying that I have to uninstall Reader every time I open a PDF.  It will open in Acrobat after that, 'til I shut down my laptop.
    Here's the order:  I installed Acrobat Reader.  Then I installed Acrobat Pro.  Then I uninstalled Acrobat Reader.  But when I click on a PDF file, it reopens in Acrobat Reader (I don't use Microsoft Reader - at least on purpose!)  Somehow Acrobat Reader is not completely uninstalling and reactivates.  Our computer consultant tried to fix it, but couldn't.   He said he thot some of his research showed this was a problem in Windows 8 and 8.1?
    I just tried going into Programs in the Control Panel and Acrobat Pro 9 only shows Uninstall/Change, not Repair.  However, I clicked through and got to Repair.  Tried that (which I've actually done before) and still didn't work.

  • Movement type 311 is not planned in Back Ground Processing

    Hello,
      I have created a BDC to run the transaction "MIGO"  with movement type 311.
      Its working fine in foreground. But i execute in Background i am getting a error message "Movement type 311 is not planned for this operation".
      I think there should be some config settings. But i don know where to check configuration ?
    If anyone has any sugggestions or answers , Pls post here.

    Hi,
    Better you can use the BAPI "BAPI_GOODSMVT_CREATE".
    Check with your Functional Consultant for this issue......
    You may also look for an OSS note and in Last raise a ticket to SAP..but there is no surety that every txn will work with BDC in Background Mode.

  • BDC is not working in through RFC call

    HI,
    i have created BDC for MM41 to create article with variants, its working fine in fore ground, when i am trying to call this through RFC it is failing. please help me on this.
    i have passed ctu_params also.

    Hi,
           I dont know your complete scenario but you if you want to use your BDC in some other program you can use statement
    export your itab or wa to memory id 'ZID'.
    AND THEN
    IN YOUR BDC PROGRAM YOU CAN
    IMPORT ITAB INTO ITAB FROM MEMORY ID 'ZID'.
    Submit <your bdc program> and Return.
    Regards,
    Edited by: ZAHID HAMEED on Nov 3, 2011 10:38 AM

Maybe you are looking for

  • Get current RID path from file upload in KM

    Hi all, I wrote an customized upload application using upload ui element. The question is , how can I get the current RID Path when I trigger the WDJ upload action ? Thanks for your help. please.

  • 941 pdf showing 2011 instead of 2012

    We have generated the Employers Quarterly Federal tax return to be submitted quarterly to IRS USA This generates a PDF file showing the heading as 941 for 2011 This should show 941 for 2012 any idea which patch fixes this issue ?

  • Line Out: broken ground connection?

    Hi! At home, I ususally connect my MacBook Pro with my stereo using the line out socket to listen to music. Today, after coming home from work, I plugged in my stereo into the line out of my MacBook and all I got was some nasty buzzing. Just like if

  • Domino Notes / Ldap connection Wls6.1

    hi all, is there a way to connect Wls 6.1 sp1 with Domino Notes 5 Ldap Server ? Can we do an authentification login for groups and user? If you did it can you reply me with a sample of connection parameters. thanks Hugues Simonnet Consultant Principa

  • Pop-up error message about USB won't go away?

    I keep getting a pop-up message that says my USB device is drawing too much power from my Macbook Pro so it is disabling it, but I have nothing plugged in to my USB. Now I realize my sound isn't working at all...songs in iTunes won't even start. I've