Bdc Screen data not passing to XK01 transaction screen for the second PO

Hi Friends,
                I have an requirement to extend an existing vendor to multiple company code and for multiple purchase organisation.I have created one report that will list the company code and the purchase organisation to be extended for the vendor. I am calling the standard program as below.
          LOOP AT li_porg.
          If user has ALSO selected p. organizations to extend...
            IF NOT li_company[] IS INITIAL.
              LOOP AT li_company.
                SUBMIT zricef666 WITH ld_par = ld_param
                                 WITH ls_vend = ls_vendor_ampl
                                 WITH ld_bukrs = li_company-bukrs
                                 WITH ld_ekorg = li_porg-ekorg
                         AND RETURN.
              ENDLOOP.
          ENDLOOP.
Within the program zricef666 , i am calling the below program to extend vendor.
SUBMIT RFBIKR00 WITH ds_name = FICH
               WITH xlog = ld_mark
                AND RETURN.
Now the problem i am facing is that the first vendor got extended sucessfully for the first PO.But for the second PO , the screen fields are blank and it stuckes in that screen. But in the session i am able to clearly see the data are there but these data are not passing to the screen of XK01.
    Need help to solve this problem from you all.Thanks in advance.
With Regards,
Ajit Prasad.

Hello Ajit, try with the following code and reward if useful. the following code uses the transaction XK01.
REPORT zbdcxk01 .
DATA: BEGIN OF itab OCCURS 0,
        lifnr LIKE rf02k-lifnr,
        bukrs LIKE rf02k-bukrs,
        ktokk LIKE rf02k-ktokk,
        name1 LIKE lfa1-name1,
        sortl LIKE lfa1-sortl,
        land1 LIKE lfa1-land1,
        brsch LIKE lfa1-brsch,
        akont LIKE lfb1-akont,
        zterm LIKE lfb1-zterm,
        reprf LIKE lfb1-reprf,
        zwels LIKE lfb1-zwels,
      END OF itab.
DATA: rc TYPE i,
      flag TYPE i VALUE 1,
      it_files TYPE filetable,
      bdc_data TYPE STANDARD TABLE OF bdcdata WITH HEADER LINE.
DATA:   messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-002.
PARAMETERS: p_file(1024) TYPE c OBLIGATORY.
PARAMETERS:dismode DEFAULT 'A',
           updmode DEFAULT 'S'.
SELECTION-SCREEN : END OF BLOCK b1.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
  CALL METHOD cl_gui_frontend_services=>file_open_dialog
  CHANGING
     file_table              = it_files
     rc                      = rc.
*Read the Filename into P_FILE
  READ TABLE it_files INDEX 1 INTO p_file.
START-OF-SELECTION.
  PERFORM getdata.
  PERFORM create_session.
  LOOP AT itab.
    PERFORM fill_bdc_table.
  ENDLOOP.
  PERFORM close_session.
END-OF-SELECTION.
  PERFORM submit.
*&      Form  getdata
*       text
FORM getdata.
  DATA: file TYPE string.
  file = p_file.
  CALL FUNCTION 'GUI_UPLOAD'
       EXPORTING
            filename                = file
            has_field_separator     = 'X'
       TABLES
            data_tab                = itab
       EXCEPTIONS
            file_open_error         = 1
            file_read_error         = 2
            no_batch                = 3
            gui_refuse_filetransfer = 4
            invalid_type            = 5
            no_authority            = 6
            unknown_error           = 7
            bad_data_format         = 8
            header_not_allowed      = 9
            separator_not_allowed   = 10
            header_too_long         = 11
            unknown_dp_error        = 12
            access_denied           = 13
            dp_out_of_memory        = 14
            disk_full               = 15
            dp_timeout              = 16
            OTHERS                  = 17.
*IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
*ENDIF.
ENDFORM.                    " getdata
*&      Form  CREATE_SESSION
*       text
FORM create_session.
  CALL FUNCTION 'BDC_OPEN_GROUP'
   EXPORTING
     client                    = sy-mandt
*   DEST                      = FILLER8
     group                     = 'MYGROUP'
*   HOLDDATE                  = FILLER8
     keep                      = 'X'
     user                      = sy-uname
*   RECORD                    = FILLER1
* IMPORTING
*   QID                       =
   EXCEPTIONS
     client_invalid            = 1
     destination_invalid       = 2
     group_invalid             = 3
     group_is_locked           = 4
     holddate_invalid          = 5
     internal_error            = 6
     queue_error               = 7
     running                   = 8
     system_lock_error         = 9
     user_invalid              = 10
     OTHERS                    = 11
  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDFORM.                    " CREATE_SESSION
*&      Form  CLOSE_SESSION
FORM close_session.
  CALL FUNCTION 'BDC_CLOSE_GROUP'
       EXCEPTIONS
            not_open    = 1
            queue_error = 2
            OTHERS      = 3.
  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDFORM.                    " CLOSE_SESSION
*&      Form  FILL_BDC_TABLE
*       text
*  -->  p1        text
*  <--  p2        text
FORM fill_bdc_table.
  REFRESH bdc_data.
  PERFORM operation.
  CALL FUNCTION 'BDC_INSERT'
   EXPORTING
     tcode                  = 'XK01'
*   POST_LOCAL             = NOVBLOCAL
*   PRINTING               = NOPRINT
    TABLES
      dynprotab              = bdc_data
* EXCEPTIONS
*   INTERNAL_ERROR         = 1
*   NOT_OPEN               = 2
*   QUEUE_ERROR            = 3
*   TCODE_INVALID          = 4
*   PRINTING_INVALID       = 5
*   POSTING_INVALID        = 6
*   OTHERS                 = 7
  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  PERFORM bdc_transaction USING 'XK01'.
ENDFORM.                    " FILL_BDC_TABLE
*&      Form  BDC_DYNPRO
*       texT
*  -->  p1        text
*  <--  p2        text
FORM bdc_dynpro USING program dynpro.
  CLEAR bdc_data.
  bdc_data-program = program.
  bdc_data-dynpro = dynpro.
  bdc_data-dynbegin = 'X'.
  APPEND bdc_data.
ENDFORM.                    " BDC_DYNPRO
*&      Form  BDC_FIELD
*       text
FORM bdc_field USING fnam fval.
  CLEAR bdc_data.
  bdc_data-fnam = fnam.
  bdc_data-fval = fval.
  APPEND bdc_data.
ENDFORM.                    " BDC_FIELD
*&      Form  BDC_TRANSACTION
FORM bdc_transaction USING tcode.
  CALL TRANSACTION tcode USING bdc_data
                         MODE   dismode
                         UPDATE updmode
                         MESSAGES INTO messtab.
ENDFORM.                    " BDC_TRANSACTION
*&      Form  SUBMIT
*       text
FORM submit.
  SUBMIT rsbdcsub EXPORTING LIST TO MEMORY AND RETURN
*                  user sy-uname
                    WITH mappe = 'MYGROUP'
                    WITH von   = sy-datum
                    WITH bis   = sy-datum
                    WITH z_verarb = 'X'.
ENDFORM.                    " SUBMIT
*&      Form  OPERATION
*       text
FORM operation.
  PERFORM bdc_dynpro      USING 'SAPMF02K' '0100'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'RF02K-KTOKK'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '/00'.
  PERFORM bdc_field       USING 'RF02K-LIFNR'
                                itab-lifnr.
  PERFORM bdc_field       USING 'RF02K-BUKRS'
                                itab-bukrs.
  PERFORM bdc_field       USING 'RF02K-KTOKK'
                                itab-ktokk.
  PERFORM bdc_dynpro      USING 'SAPMF02K' '0110'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'LFA1-SORTL'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '/00'.
  PERFORM bdc_field       USING 'LFA1-NAME1'
                                itab-name1.
  PERFORM bdc_field       USING 'LFA1-SORTL'
                                itab-sortl.
  PERFORM bdc_field       USING 'LFA1-LAND1'
                                itab-land1.
  PERFORM bdc_dynpro      USING 'SAPMF02K' '0120'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'LFA1-BRSCH'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '/00'.
  PERFORM bdc_field       USING 'LFA1-BRSCH'
                                itab-brsch.
  PERFORM bdc_dynpro      USING 'SAPMF02K' '0130'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'LFBK-BANKS(01)'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '=ENTR'.
  PERFORM bdc_dynpro      USING 'SAPMF02K' '0210'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'LFB1-AKONT'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '/00'.
  PERFORM bdc_field       USING 'LFB1-AKONT'
                                itab-akont.
  PERFORM bdc_dynpro      USING 'SAPMF02K' '0215'.
  PERFORM bdc_field       USING 'BDC_CURSOR'
                                'LFB1-REPRF'.
  PERFORM bdc_field       USING 'BDC_OKCODE'
                                '=UPDA'.
  PERFORM bdc_field       USING 'LFB1-ZTERM'
                                itab-zterm.
  PERFORM bdc_field       USING 'LFB1-REPRF'
                                itab-reprf.
  PERFORM bdc_field       USING 'LFB1-ZWELS'
                                itab-zwels.
  PERFORM bdc_transaction USING 'XK01'.
ENDFORM.                    " OPERATION

Similar Messages

  • HT201412 i have notes on my i phone and for the second time they dissapear, any one know why?

    I have notes on my iphone 5s and for the second time in a month the notes disappear.  any one know why?

        Hey Webbrowser.  I am sorry for the delayed response and that bluetooth and WiFi was giving your device some troubles. I hope that you had a nice vacation that you had a safe return.
    Are you still having issues with WiFi and Bluetooth?
    If so, please try resetting the network settings, http://vz.to/uLOEAI.
    After you update the network settings, please update us with results and let us know if the WiFi and Bluetooth are now working.
    NickB_VZW
    VZWSupport
    Follow us on Twitter @VZWSupport

  • Hi I was just wondering, if my iPod nano's serial number says that it is eligible, but its screen is not working, am I still eligibile for the iPod nano 1st gen replacement?

    Hi I was just wondering, if my iPod nano's serial number says that it is eligible, but its screen is not working, am I still eligibile for the iPod nano 1st gen replacement?

    Yes. They'll still replace your iPod. Several users have indicated that they have returned damaged iPods and were still given a replacement iPod.
    B-rock

  • My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?

    My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?

    linda mariefromharper woods wrote:
    My time capsule is full and when I attempt to back up, I only receive a preparing back up message and the earliest and most recent back up dates remain the same.  Why are the oldest backups not being deleted to make room for the newest backups?
    It may be in the process of making room.  What version of OSX are you on?    (That process can be excruciatingly slow on Leopard or Snow Leopard backups over a network;  Lion has improved it greatly.)
    A clue may be lurking in your logs.  Use the widget in #A1 of  Time Machine - Troubleshooting to display the backup messages from your logs.   That should help you figure out what's going on.  If in doubt, copy and post them here (but if the same ones repeat over and over, drop most of the duplicates).
    If you can, connect via Ethernet; it will be 2-3 times faster.

  • Vista & Outlook 2007: Sync with second XP & Outlook 2003 - The passed buffer is too small for the reply data

    Dear Community,
    I'm synchronising my T3 with two PCs. One with Vista & Outlook 2007 and the other with XP & Outlook 2003. Both with the latest conduit & Hotsync Manager versions installed for each OS based on the availability on the Palm Website. 
    My problem is that when I synchronise the T3 with either PC and then try to sync it with the other I'm receiving the following error message for the Calendar:
    Outlook Calendar
    The passed buffer is too small for the reply data.
    OLERR:0D-0008
    OLERR:0D-0004
    OLERR:0D-0001
    - Slow Sync
    Outlook Calendar synchronization failed
     The second time the sync is successful but takes a long time and the actual problem is that it creates duplicates for records previously changed on either PC - but with a sync in between those changes, i.e. no conflict in the sense that the same record was changed in both environments since the last sync. I have configured the conflict handling to establish a hierarchy PC1-T3-PC2 but try to avoid them by synchronising as often as possible.
    Has anyone come across that problem or any ideas? Can you somehow adjust the buffer size for the sync? I have been using Lotus Organiser & then the various Outlook versions for a number of years.
    Thank you
    Rainer
    Post relates to: Tungsten T3
    Post relates to: Tungsten T3

    As they say on TV, "Doh"!!!
    I figured out the problem. I started the Sync tool, selected "Settings", then "Mcrosoft Outlook" tab and then "Select Folders" button. I browsed to the proper folders in Outlook (Calendar, Tasks, etc). Select OK enough times and retried the sync.
    It worked.

  • When I boot up the iphone 5s after it being off it will load then as soon as it gets to the lock screen it goes to sleep right away it will show me the lock screen for a second if that

    When I turn on the iphone 5s after it being off it will load then show me the lock screen for a second if that and then go right to sleep mode right away as soon as the lock screen comes on

    Hi Apple user 789,
    Welcome to the Support Communities!
    The following article will provide some troubleshooting steps for your iPhone.
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    If that does not resolve the issue, refer to page 146 in the iPhone User Guide to Reset All Settings:
    iPhone User Guide for iOS 7
    manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf
    The final troubleshooting step would be to restore your device:
    iTunes: Restoring iOS software
    http://support.apple.com/kb/ht1414
    Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition. Before restoring:
    Verify that you are using the latest version of iTunes.
    Back up your device.
    Transfer and sync content to your computer.
    I hope this information helps ....
    Happy Holidays!
    - Judy

  • Lightroom won't boot -I only get the splash screen for a second.

    I do have the photographers version of the Creative Cloud which included Photoshop CC 2014 and Lightroom. Everything was working just fine until I upgraded to Lightroom version 5.6. Now when I try to load LR, the slash screen shows for a second then disappears and LR does not load. This occurs on both my Mac (a Mac Pro and a iMac). I uninstalled LR and had creative cloud reinstall but still the same thing is happening  - Splash screen for a second then nothing. Again, this is happening on both Mac's. Photoshop CC 2014 I working just fine.
    Before I call Adobe, any ideas here on this issue. BTW, Creative Cloud App states LR in up to date and installed.
    Thanks
    James

    Hi PBAYARD,
    I see that you are experiencing an issue with your iPod classic. Here is an article for you that will hep you through some troubleshooting steps regarding this issue:
    iPod: No power or frozen - Apple Support
    https://support.apple.com/en-us/TS1404
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • SQL0964C  The transaction log for the database is full

    Hi,
    i am planning to do QAS refresh from PRD system using Client export\import method. i have done export in PRD and the same has been moved to QAS then started imported.
    DB Size:160gb
    DB:DB2 9.7
    os: windows 2008.
    I facing SQL0964C  The transaction log for the database is full issue while client import and regarding this i have raised incident to SAP then they replied to increase some parameter like(LOGPRIMARY,LOGSECOND,LOGFILSIZ) temporarily and revert them back after the import. Based on that i have increased from as below mentioned calculation.
    the filesystem size of /db2/<SID>/log_dir should be greater than LOGFILSIZ*4*(Sum of LOGPRIMARY+LOGSECONDARY) KB
    From:
    Log file size (4KB)                         (LOGFILSIZ) = 60000
    Number of primary log files                (LOGPRIMARY) = 50
    Number of secondary log files               (LOGSECOND) = 100
    Total drive space required: 33GB
    To:
    Log file size (4KB)                         (LOGFILSIZ) = 70000
    Number of primary log files                (LOGPRIMARY) = 60
    Number of secondary log files               (LOGSECOND) = 120
    Total drive space required: 47GB
    But still facing the same issue. Please help me to resolve the ASAP.
    Last error TP log details:
    3 ETW674Xstart import of "R3TRTABUFAGLFLEX08" ...
    4 ETW000   1 entry from FAGLFLEX08 (210) deleted.
    4 ETW000   1 entry for FAGLFLEX08 inserted (210*).
    4 ETW675 end import of "R3TRTABUFAGLFLEX08".
    3 ETW674Xstart import of "R3TRTABUFAGLFLEXA" ...
    4 ETW000  [     dev trc,00000]  Fri Jun 27 02:20:21 2014                                             -774509399  65811.628079
    4 ETW000  [     dev trc,00000]  *** ERROR in DB6Execute[dbdb6.c, 4980] CON = 0 (BEGIN)                    85  65811.628164
    4 ETW000  [     dev trc,00000]  &+     DbSlModifyDB6( SQLExecute ): [IBM][CLI Driver][DB2/NT64] SQL0964C  The transaction log for the database is full. 
    4 ETW000                                                                                                  83  65811.628247
    4 ETW000  [     dev trc,00000]  &+     SQLSTATE=57011 row=1                                                                                             
    4 ETW000                                                                                                  51  65811.628298
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  67  65811.628365
    4 ETW000  [     dev trc,00000]  &+     DELETE FROM "FAGLFLEXA" WHERE "RCLNT" = ?                                                                        
    4 ETW000                                                                                                  62  65811.628427
    4 ETW000  [     dev trc,00000]  &+       cursor type=NO_HOLD, isolation=UR, cc_release=YES, optlevel=5, degree=1, op_type=8, reopt=0                    
    4 ETW000                                                                                                  58  65811.628485
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  53  65811.628538
    4 ETW000  [     dev trc,00000]  &+     Input SQLDA:                                                                                                     
    4 ETW000                                                                                                  52  65811.628590
    4 ETW000  [     dev trc,00000]  &+                        1 CT=WCHAR           T=VARCHAR         L=6     P=9     S=0   
    4 ETW000                                                                                                  49  65811.628639
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  50  65811.628689
    4 ETW000  [     dev trc,00000]  &+     Input data:                                                                                                      
    4 ETW000                                                                                                  49  65811.628738
    4 ETW000  [     dev trc,00000]  &+     row 1:             1 WCHAR           I=6       "210"               34  65811.628772
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  51  65811.628823
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  50  65811.628873
    4 ETW000  [     dev trc,00000]  *** ERROR in DB6Execute[dbdb6.c, 4980] (END)                              27  65811.628900
    4 ETW000  [    dbtran  ,00000]  ***LOG BY4=>sql error -964   performing DEL on table FAGLFLEXA                    
    4 ETW000                                                                                                3428  65811.632328
    4 ETW000  [    dbtran  ,00000]  ***LOG BY0=>SQL0964C  The transaction log for the database is full.  SQLSTATE=57011 row=1
    4 ETW000                                                                                                  46  65811.632374
    4 ETW000  [     dev trc,00000]  dbtran ERROR LOG (hdl_dbsl_error): DbSl 'DEL'                             59  65811.632433
    4 ETW000                         RSLT: {dbsl=99, tran=1}
    4 ETW000                         FHDR: {tab='FAGLFLEXA', fcode=194, mode=2, bpb=0, dbcnt=0, crsr=0,
    4 ETW000                                hold=0, keep=0, xfer=0, pkg=0, upto=0, init:b=0,
    4 ETW000                                init:p=0000000000000000, init:#=0, wa:p=0X00000000020290C0, wa:#=10000}
    4 ETW000  [     dev trc,00000]  dbtran ERROR LOG (hdl_dbsl_error): DbSl 'DEL'                            126  65811.632559
    4 ETW000                         STMT: {stmt:#=0, bndfld:#=1, prop=0, distinct=0,
    4 ETW000                                fld:#=0, alias:p=0000000000000000, fupd:#=0, tab:#=1, where:#=2,
    4 ETW000                                groupby:#=0, having:#=0, order:#=0, primary=0, hint:#=0}
    4 ETW000                         CRSR: {tab='', id=0, hold=0, prop=0, max.in@0=1, fae:blk=0,
    4 ETW000                                con:id=0, con:vndr=7, val=2,
    4 ETW000                                key:#=3, xfer=0, xin:#=0, row:#=0, upto=0, wa:p=0X00000001421A3000}
    2EETW125 SQL error "-964" during "-964" access: "SQL0964C  The transaction log for the database is full.  SQLSTATE=57011 row=1"
    4 ETW690 COMMIT "14208" "-1"
    4 ETW000  [     dev trc,00000]  *** ERROR in DB6Execute[dbdb6.c, 4980] CON = 0 (BEGIN)                 16208  65811.648767
    4 ETW000  [     dev trc,00000]  &+     DbSlModifyDB6( SQLExecute ): [IBM][CLI Driver][DB2/NT64] SQL0964C  The transaction log for the database is full. 
    4 ETW000                                                                                                  75  65811.648842
    4 ETW000  [     dev trc,00000]  &+     SQLSTATE=57011 row=1                                                                                             
    4 ETW000                                                                                                  52  65811.648894
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  51  65811.648945
    4 ETW000  [     dev trc,00000]  &+     INSERT INTO DDLOG (SYSTEMID, TIMESTAMP, NBLENGTH, NOTEBOOK) VALUES (  ? , CHAR(   CURRENT TIMESTAMP - CURRENT TIME
    4 ETW000                                                                                                  50  65811.648995
    4 ETW000  [     dev trc,00000]  &+     ZONE   ), ?, ? )                                                                                                 
    4 ETW000                                                                                                  49  65811.649044
    4 ETW000  [     dev trc,00000]  &+       cursor type=NO_HOLD, isolation=UR, cc_release=YES, optlevel=5, degree=1, op_type=15, reopt=0                   
    4 ETW000                                                                                                  55  65811.649099
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  49  65811.649148
    4 ETW000  [     dev trc,00000]  &+     Input SQLDA:                                                                                                     
    4 ETW000                                                                                                  50  65811.649198
    4 ETW000  [     dev trc,00000]  &+                        1 CT=WCHAR           T=VARCHAR         L=44    P=66    S=0   
    4 ETW000                                                                                                  47  65811.649245
    4 ETW000  [     dev trc,00000]  &+                        2 CT=SHORT           T=SMALLINT        L=2     P=2     S=0   
    4 ETW000                                                                                                  48  65811.649293
    4 ETW000  [     dev trc,00000]  &+                        3 CT=BINARY          T=VARBINARY       L=32000 P=32000 S=0   
    4 ETW000                                                                                                  47  65811.649340
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  50  65811.649390
    4 ETW000  [     dev trc,00000]  &+     Input data:                                                                                                      
    4 ETW000                                                                                                  49  65811.649439
    4 ETW000  [     dev trc,00000]  &+     row 1:             1 WCHAR           I=14      "R3trans"           32  65811.649471
    4 ETW000  [     dev trc,00000]  &+                        2 SHORT           I=2        12744              32  65811.649503
    4 ETW000  [     dev trc,00000]  &+                        3 BINARY          I=12744   00600306003200300030003900300033003300310031003300320036003400390000...
    4 ETW000                                                                                                  64  65811.649567
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  52  65811.649619
    4 ETW000  [     dev trc,00000]  &+                                                                                                                      
    4 ETW000                                                                                                  51  65811.649670
    4 ETW000  [     dev trc,00000]  *** ERROR in DB6Execute[dbdb6.c, 4980] (END)                              28  65811.649698
    4 ETW000  [    dbsyntsp,00000]  ***LOG BY4=>sql error -964   performing SEL on table DDLOG                36  65811.649734
    4 ETW000  [    dbsyntsp,00000]  ***LOG BY0=>SQL0964C  The transaction log for the database is full.  SQLSTATE=57011 row=1
    4 ETW000                                                                                                  46  65811.649780
    4 ETW000  [    dbsync  ,00000]  ***LOG BZY=>unexpected return code 2          calling ins_ddlog           37  65811.649817
    4 ETW000  [     dev trc,00000]  db_syflush (TRUE) failed                                                  26  65811.649843
    4 ETW000  [     dev trc,00000]  db_con_commit received error 1024 in before-commit action, returning 8
    4 ETW000                                                                                                  57  65811.649900
    4 ETW000  [    dbeh.c  ,00000]  *** ERROR => missing return code handler                               1974  65811.651874
    4 ETW000                         caller does not handle code 1024 from dblink#5[321]
    4 ETW000                         ==> calling sap_dext to abort transaction
    2EETW000 sap_dext called with msgnr "900":
    2EETW125 SQL error "-964" during "-964" access: "SQL0964C  The transaction log for the database is full.  SQLSTATE=57011 row=1"
    1 ETP154 MAIN IMPORT
    1 ETP110 end date and time   : "20140627022021"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    Regards,
    Rajesh

    Hi Babu,
    I believe you should have taken a restart of your system if log primary are changed.  If so, then increase log primary to 120 and secondary to 80 provide size and space are enough.
    Note 1293475 - DB6: Transaction Log Full
    Note 1308895 - DB6: File System for Transaction Log is Full
    Note: 495297 - DB6: Monitoring transaction log    
    Regards,
    Divyanshu

  • Repeat credit check does not happen for already released sales orders when CMGST =D, for the second time using FM SD_ORDER_CREDIT_CHECK

    Hi,
       I have written a routine which will call the FM SD_ORDER_CREDIT_CHECK whenever there is a rejection and again unrejection of a same sales order, we are only concerned about already credit released sales orders, the scenario is as follow
    1). Sales order created in the system --> Credit check --> Credit blocked
    2). Release credit block manually CMGST =D
    3). Reject sales order then unreject the same
    4) Routine will determine rejection and unrejection of the order while saving and will call the FM SD_ORDER_CREDIT_CHECK
    5)   The order is credit checked and blocked if necessary
    All goes well till this point
    but when the same sales order is rejeceted and unrejected multiple times either partially/ fully then the Custom routine calls the FM for credit check but the FM fails to put the order back on credit hold
    in short the FM works only for the first time incase of mutiple rejection and unrejection of teh same sales order then the FM SD_ORDER_CREDIT_CHECK fails to put the order back on credit hold from the second time onwards
    if some one any idea of the behavior of this FM please share your thoughts and inputs . thanks !!

    Issue resolved
    The Standard FM “SD_ORDER_CREDIT _CHECK” uses the field  “Release date of the document determined by credit management  VBAK – CMFRE”
    For any sales order that is manually credit released in a single day, Only one credit check is triggered (per day) if there is any change in the sales order and then the order goes back to credit hold and if again the order is manually credit released for the second time in a single day there will be no credit check  (still the order will pass into FM but  the update entry in the internal table will be blank)this is a standard functionality
    Process of rejection and unrejection :
    Blocked order -->released-->blocked again (first time after manual release same day) unrejected (same day) -->but no credit check  (all this in a single day)
    note : OVA8 - released document still unchecked = 0 Days , Deviation %= blank

  • HT4191 my notes app on my IPad opens for a second then closes - it's working ok on my Iphone though

    My notes app. on my Ipad opens for 1 second then closes  - however it's working ok on my IPhone. Checked settings and all seems fine, compared settings to another Ipad and identical, so unsure why this has suddenly occured. Have shut down /restarted Ipad 3 or 4 times, and closed app. from programmes running screen -  but still happening. Any thoughts ?

    Try reset all settings
    Settings>General>Reset>Reset All Settings
    Note: Data will not be affected but settings will be reset.

  • Problem while refreshing the data for the second time using excel services in sharepoint 2013...

    Hi,
    I have migrated my Sharepoint from 2010 to 2013.I am able to get the data at the first time of refresh when I click on refresh for the second time I am getting the empty the sheet.
    below find the flow of refresh
    First Refresh
    On Click of refresh open the workbook with excel services and return the session id.
    Using that session I am invoking RefrehAsync method of excel services
    After refresh completed I am setting the calculation of workbook as automatic(to calculate the formulas) using the same session id
    After setting the calculation as Automatic I am setting the calculation type as full(recalculate) using the same session id.
    Now I am able to see the data
    Second Refresh
    After clicking on refresh instead of opening the workbook I am using the session id(already opened workbook) and setting the calculation type as manual
    I am following the same process from refresh(RefreshAsync) as I have followed in first refresh.
    This time my formulas are not getting calculated because of that I am not able to see the data.
    Could you please let me know that am I missing anything here?
    Is this know issue in Sharepoint2013 excel services as same code is working fine with Sharepoint2010.
    If I close the workbook(session id null) and opens(new session id) for all the refreshes it is working and I am able to see the data.
    Thanks,
    Meenakshi Nagpal
    N.Meenakshi

    I am able to see the data for the second refresh  if I change the data source.If I use the same data source which is used in the first refresh I am not getting the data.Excel services will contact the cubes and calculate the formulas in my workbook.
    Could you please let me know what could be the problem at second refresh while contacting the same data source with same session id?
    Please help me asap.
    Thanks,
    Meenakshi Nagpal
    N.Meenakshi

  • How to find the transaction code for the particular program or include

    Dear All,
    Please help me on this queary.
    1) How to find what is the transaction assigned for the particular Report
    2) How to find the particular include is used in which programs and also transaction codes
    I have one ZProgram that contains only includes no selection screen, I have to find where this program is used, in that one include is ther I would like to know in which program and in which transaction that is used,
    They have given ME9F, ME21N/22n, wheren this includle is calling.
    Please kinely help on this.
    Thanks and Regards,
    Muralikrishna

    HI
    1. you can find the transaction for your report by opening in se80. On the left side window it will show the transaction if there is any.
    2. to find in which programs particular inclue is called , just open include in se38 and press where used list icon. in the pop up window select programs.
    regards
    vijay
    reward points if helpful

  • Non-Glossy screen for the 13" MacBook Pro...the 13" MacBook Air has it!?!?!

    Sorry if this has already been discovered, but I just realized.....Why isn't there a Matte option for the screen on the 13" MacBook Pro? The 17" has always had it with an upgrade, the 15" now has the option for the upgrade, but why not the 13"??? I was trying to think what it would look like and then realized.....it would look like the MacBook Air......RIGHT? Because the MacBook air doesn't have a black frame around the screen, and its not glossy, and is the same 13" 1280 x 800, so why not bring that option to the MacBook PRO? (On second thought, I'd also like to have a 1440 x 900 option even though the fonts will be even smaller! lol I love screen space!)

    As someone with 20 years professional experience in digital imaging, both in video and stills, Photoshop retouching, Quark press work, and working with everything from Binuscan to Shake, having supervised thousands of press checks and taught thousands of personnel in everything from Newspapers to video Post-houses as a consultant and trainer, I love the glossy screens for the color saturation, rich blacks and fine detail rendition.
    That said, the many years of glossy Sony, Barco and Mitsu/Lacie CRT screens have taught me to use hoods and proper lighting; this goes for matte LCD screens as well, where ANY pro color-critical work should be done with a hood, such as the Hoodman or Think Tank products. That said, I have no problem in airports, outdoors, etc. using any of my glossy screen MPS, I find a properly calibrated glossy screen on these to be, at least with the latest iteration of the glossy screens available on the Unibody MBPs, eminently usable for pro color work.
    The point is, at least for me, that anyplace I'd need to worry about glare and reflections on a glossy screen MBP, I also have to worry about the same on the matte screen. For example, my wife now uses my previous generation MBP matte-screen 15" LED backlit model. This is the case when I use hers when out and about. Pro work CAN and IS done by many pros who PREFER the glossy screen MBPs to their matte screen counterparts, and manage to get pro quality work done more easily on them, as it suits their taste, and somehow manages to produce results avery bit as professional as pro users on matte-screen MBPs. I know I'm in the minority here, with regard to pros who prefer glossy screen MBPs to matte-screen ones.
    Since I am, after all, in the pro minority, I agree that Apple NEVER should have removed the matte option, and I'd be happy to have, and think it's the ethical thing to do, Apple not only offer matte screens on all laptop products from now on, but that they RETURN to making glossy displays on MacBook Pros (and MacBooks, for that matter) an EXTRA-COST OPTION, and make matte screen displays the standard. That's the fair and logical thing for Apple to do, and I wouldn't mind at all paying for being in the Pro minority by paying an extra $50.00 USD, or even $100.00 over a standard matte-screen display in any and al of the Apple laptop line.
    The matte screen's no longer what I use on my laptops for pro work, and i prefer it that way. But I know, too, that if Apple suddenly yanked the glossy displays with NO Option AT ALL of buying a MBP with a glossy display, I'd be freakin' livid. So I empathize with those pros, and anyone else, who prefers matte screens but who've been unfairly 'locked out' by Apple from paying the same as glossy screen laptops on the 15" and the 17" UMBPs and having NO glossy option on the 13" UMBP. Makes no sense at all, to quote Husker Du. ;^) BUT- pros who prefer the glossy display MBPs (I've owned all 3 unibody MBPs, with and without the superior quality latest-generation displays- the 13" MBP, the 15" MBP and the 17"), should, IMO, have at least the option to purchase the glossy display, at least as an extra-cost option. THAT would make the most sense, since the majority of pros who use UMBPs prefer the matte screen, and that vast majority should not only have the matte-screen option, but the matte-screen discount as well!

  • User presses F4 on the selection screen for the field ''Transport Request"

    Dear ALL,
                     I want to build up a functionality in my report where if the user presses F4 on the selection screen for the field ''Transport Request", then it will display all the Transport Requests involving that particular User...
    What I mean is the normal process that is provided by SAP on saving an object in a package & assigning it to TR...
    How do we Achieve it ?

    Hi.
    First we need to give the client after that client number related requestes display in second parameter F4 help for that purpose i used two function modules.First for read the client no dynamically after that pass the client number second function module.
    then u can get all the request for that client.
    DFIELD-FIELDNAME = 'P_MANDT'.
    APPEND DFIELD.
    CALL FUNCTION 'DYNP_VALUES_READ'
      EXPORTING
        dyname                               = 'Y9EZ_TR_COPYCLIENT'
        dynumb                               = SY-DYNNR
      tables
        dynpfields                           = DFIELD
    READ TABLE DFIELD INDEX 1 ."WITH KEY DFIELD-FIELDVALUE = 'P_MANDT'.
    V_MANDT = DFIELD-FIELDVALUE.
    CALL FUNCTION 'TR_F4_REQUESTS'
    EXPORTING
      IV_USERNAME                   = SY-UNAME
      IV_TRKORR_PATTERN             =
      IV_TRFUNCTIONS                =
       IV_TRSTATUS                   = 'RNDL'
      IV_FROM_DATE                  =
      IV_TO_DATE                    =
       IV_CLIENT                     = V_MANDT
      IV_PROJECT                    =
      IV_TITLE                      =
      IV_VIA_SELECTION_SCREEN       = 'X'
      IV_COMPLETE_REQUESTS          = 'X'
      IT_EXCLUDE_REQUESTS           =
    IMPORTING
       EV_SELECTED_REQUEST           = S_TRKORR-LOW.
      ES_SELECTED_REQUEST           =
    'TR_F4_REQUESTS' This function module for request
    Regards
    muralii

  • ITunes LP material only stays on screen for 10 seconds

    I have ATV (software up to date 17/APR/10) hooked up to iTunes 9.1(79) on Snow Leopard all updates installed. The issue is, when playing back an iTunes LP on Apple TV, I can see the navigation screens, view lyrics, etc. but they only stay on screen for 10 seconds then ATV just jumps back to displaying the old album cover and song title as per non- iTunes LP titles.
    I don't have shuffle set or anything like that and the iTunes LP is synced and the include iTunes LPs and include videos boxes are both checked in iTunes. So basically it isn't that I can't work iTunes LPs on ATV, just that most of the time,, the lyrics have disappeared off screen before the first line has been sung.
    Help!
    Message was edited by: Nidi

    See the white-screen topic of:
    iPod touch: Hardware troubleshooting

Maybe you are looking for

  • For the love of god do not shut down this store in my town.

    To whom it may concern, Lets get down to business on this problem that my town is facing. One, the Verizon corporate store in Escanaba, Mi is closing? For the love of god why are you guys doing this? I have had a great experience in dealing with Veri

  • How to populate values of some controls in a form which is associated another form in realtime?

    My aim each time when I click on button1 then only one instance of Form2 exist with updated string or else if I design with other controls in Form1 and Form2. Below example success for the first time by clicking button1, any other times it does not w

  • How to reduce processing time for ResultSet getter methods

    In my application, I have the following code. query = .....; ResultSet rs = stmt.executeQuery(query); while (rs.next()) var_1 = rs.getString(1); var_38 = rs.getString(38); The query generates 35,000 rows. It is running slowly. I checked all the code,

  • Initialization Parameters for JSPs ??

    Hi All,           Is there any way to provide Initialization Parameters for JSP ??           If so how should it be done on Weblogic ??           Thanx In Advance,           Navaneeth.           

  • Sounds Interesting : SAXParser Not returning Attributes

    hi! I implemented the SAXParser but its not getting me the attributes. It does get me the data . e.g. <DATA> <RECORD ID="1"> <FIELD>165</FIELD> </RECORD> <RECORD ID="2"> <FIELD>189</FIELD> </RECORD> </DATA> Here , if i do, element.getLocalName() -- i