Can we record two transactions and use for  a Call-transaction BDC?

can we record two transactions and upload data using Call-transaction method in BDC ?IF not why?

Hi Prakash,
Here i used two transactions.
REPORT zra_gl_cr NO STANDARD PAGE HEADING LINE-SIZE 255.
TYPE-POOLS: truxs.
DATA: it_raw TYPE truxs_t_text_data.
DATA:messtab1 LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
DATA:messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
DATA: bdcdata LIKE bdcdata OCCURS 0 WITH HEADER LINE.
DATA: BEGIN OF i_mess OCCURS 0,
  l_mstring(480),
  msgnr(5),
  msgv1(15),
  END OF i_mess.
DATA:i_mess1 LIKE i_mess OCCURS 0 WITH HEADER LINE.
DATA: l_mstring(480),l_mstring1(480).
DATA: BEGIN OF it_itab OCCURS 0,
      saknr(10),    "G/L a/c number.
      bukrs(4),     "Company Code.
      ktoks(4),     "G/L a/c group.
      xplacct(1),   "P&L statement account.
      xbilk(1),     "Balance sheet account.
      txt20_ml(20), "G/L a/c short text.
      txt50_ml(50), "G/L a/c long text.
      waers(5),     "Account currency.
      MWSKZ(2),
      mitkz(1),     "Reconciliation a/c for a/c type.
      xopvw(1),     "Open item management
      xkres(1),     "Line item display.
      zuawa(3),     "Sort Key.
      fstag(4),     "Field status group.
      xintb(1),     "Post automatically only.
      hbkid(5),     "House bank.
      hktid(5),     "Account id.
      vzskz(2),     "Interest indicator
      END OF it_itab.
DATA: hdate LIKE sy-datum.
                      Selection Screen                       *****
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 5(15) text-103. " FOR FIELD P_FILE1.
SELECTION-SCREEN POSITION 25.
PARAMETERS : p_file1 LIKE rlgrap-filename.
SELECTION-SCREEN END OF LINE.
                      Initialization                         *****
INITIALIZATION.
                   At Selection Screen                       *****
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
Perform file_selection will help to select the location of the file
  PERFORM file_selection.
                   Start-Of-Selection                        *****
START-OF-SELECTION.
Perform data_upload will help to upload the data from the flat file
to the internal table.
  PERFORM data_upload.
PERFORM open_group.
   Peform bdc_upload will help to upload the data from the internal
   table into its respective fields.
PERFORM bdc_fspo.
  PERFORM bdc_upload.
  PERFORM exp_log.
PERFORM close_group.
   Perform display_log will prepare a log for the data that has been
   uploaded
   PERFORM display_log.
                    End-Of-Selection                           ****
END-OF-SELECTION.
*&      Form  file_selection
      To select the location of the file
FORM file_selection .
  CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
      def_filename     = ' '
      def_path         = 'C:\'
      mask             = ',.txt,.xls.'
      mode             = 'O'
      title            = 'Open a excel file'
    IMPORTING
      filename         = p_file1
    EXCEPTIONS
      inv_winsys       = 1
      no_batch         = 2
      selection_cancel = 3
      selection_error  = 4
      OTHERS           = 5.
ENDFORM.                    " file_selection
*&      Form  data_upload
     To upload the data from the file location to the internal table.
FORM data_upload .
  CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
    EXPORTING
    I_FIELD_SEPERATOR        =
      i_line_header            =  'X'
      i_tab_raw_data           =  it_raw
      i_filename               =  p_file1
    TABLES
      i_tab_converted_data     = it_itab
   EXCEPTIONS
      conversion_failed        = 1
      OTHERS                   = 2.
  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.                    " data_upload
*&      Form  bdc_upload
To upload the data from the internal table into its respective fields.
FORM bdc_upload .
  LOOP AT it_itab.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ACC_CRE'.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_KEY-SAKNR'.
perform bdc_field       using 'GLACCOUNT_SCREEN_KEY-SAKNR'
                              it_itab-SAKNR.
perform bdc_field       using 'GLACCOUNT_SCREEN_KEY-BUKRS'
                              it_itab-BUKRS.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=2102_GROUP'.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_COA-KTOKS'.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                              it_itab-KTOKS.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XPLACCT'
                              it_itab-XPLACCT.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=2102_BS_PL'.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_COA-XBILK'.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                              it_itab-KTOKS.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XPLACCT'
                             it_itab-XPLACCT.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XBILK'
                              it_itab-XBILK.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTER'.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                              it_itab-KTOKS.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XBILK'
                              it_itab-XBILK.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                              it_itab-TXT20_ML.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                             it_itab-TXT50_ML.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_COA-BILKT'.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-BILKT'
                              it_itab-saknr.
    PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '=TAB02'.
    PERFORM bdc_field       USING 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-KTOKS'.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                   it_itab-ktoks.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                                   it_itab-txt20_ml.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                                   it_itab-txt50_ml.
    perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_COA-BILKT'.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-BILKT'
                              it_itab-saknr.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=TAB02'.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_COA-KTOKS'.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                                 it_itab-KTOKS.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_COA-KTOKS'.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-KTOKS'
                              it_itab-KTOKS.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-XBILK'
                             it_itab-XBILK.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                              it_itab-TXT20_ML.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                              it_itab-TXT50_ML.
perform bdc_field       using 'GLACCOUNT_SCREEN_COA-BILKT'
                             it_itab-saknr.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTER'.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-WAERS'
                              it_itab-waers.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-MWSKZ'
                              it_itab-MWSKZ.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                              it_itab-mitkz.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_CCODE-XOPVW'.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-XOPVW'
                              it_itab-XOPVW.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-XKRES'
                              it_itab-XKRES.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                             it_itab-ZUAWA.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                   it_itab-xplacct.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                                   it_itab-xbilk.
       IF it_itab-xbilk = 'X'.
   PERFORM bdc_dynpro USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
   PERFORM bdc_field       USING 'BDC_OKCODE'
                                 '=TAB03'.
   PERFORM bdc_field       USING 'BDC_CURSOR'
                                 'GLACCOUNT_SCREEN_CCODE-WAERS'.
   PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-WAERS'
                                  it_itab-waers.
     PERFORM bdc_field USING 'GLACCOUNT_SCREEN_CCODE-XOPVW'
                              it_itab-xopvw.
     PERFORM bdc_field USING 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                              it_itab-mitkz.
   ENDIF.
   PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-XKRES'
                                  it_itab-xkres.
   PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                                  it_itab-zuawa.
   PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
   PERFORM bdc_field       USING 'BDC_OKCODE'
                                 '=SAVE'.
   PERFORM bdc_field       USING 'BDC_CURSOR'
                                 'GLACCOUNT_SCREEN_CCODE-FSTAG'.
   PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                                  it_itab-fstag.
   PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-XINTB'
                                  it_itab-xintb.
   PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-HBKID'
                                  it_itab-hbkid.
   PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-HKTID'
                                  it_itab-hktid.
   PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_CCODE-VZSKZ'
                                  it_itab-vzskz.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=TAB03'.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_CCODE-WAERS'.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-WAERS'
                              it_itab-WAERS.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-MWSKZ'
                              it_itab-MWSKZ.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-MITKZ'
                              it_itab-MITKZ.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-ZUAWA'
                             it_itab-ZUAWA.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTER'.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_CCODE-FSTAG'.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                             it_itab-FSTAG.
perform bdc_dynpro      using 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
perform bdc_field       using 'BDC_OKCODE'
                              '=SAVE'.
perform bdc_field       using 'BDC_CURSOR'
                              'GLACCOUNT_SCREEN_CCODE-FSTAG'.
perform bdc_field       using 'GLACCOUNT_SCREEN_CCODE-FSTAG'
                              it_itab-FSTAG.
   PERFORM bdc_transaction USING 'FS00'.
    CALL TRANSACTION 'FS00' USING bdcdata MODE 'A'
                                          UPDATE 'S'
                                         MESSAGES  INTO messtab1.
    PERFORM mess1.
    REFRESH bdcdata[].
  ENDLOOP.
ENDFORM.                    " bdc_upload
*&      Form  bdc_fspo
      text
FORM bdc_fspo .
  LOOP AT it_itab.
    PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '=ACC_CRE'.
    PERFORM bdc_field       USING 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_KEY-SAKNR'.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_KEY-SAKNR'
                                  it_itab-saknr.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_KEY-KTOPL'
                                  '1000'.
    PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '=2102_GROUP'.
    PERFORM bdc_field       USING 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-KTOKS'.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                  it_itab-ktoks.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                   it_itab-xplacct.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XBILK'
                                  it_itab-xbilk.
    PERFORM bdc_dynpro      USING 'SAPLGL_ACCOUNT_MASTER_MAINTAIN' '2001'.
    PERFORM bdc_field       USING 'BDC_OKCODE'
                                  '=SAVE'.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-KTOKS'
                                   it_itab-ktoks.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-XPLACCT'
                                   it_itab-xplacct.
    PERFORM bdc_field       USING 'BDC_CURSOR'
                                  'GLACCOUNT_SCREEN_COA-TXT50_ML'.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-TXT20_ML'
                                   it_itab-txt20_ml.
    PERFORM bdc_field       USING 'GLACCOUNT_SCREEN_COA-TXT50_ML'
                                   it_itab-txt50_ml.
*perform bdc_transaction using 'FSP0'.
    CALL TRANSACTION 'FSP0' USING bdcdata MODE 'A'
                                          UPDATE 'S'
                                         MESSAGES  INTO messtab.
    PERFORM mess.
    REFRESH bdcdata[].
  ENDLOOP.
ENDFORM.                    " bdc_fspo
*&      Form  mess
      text
-->  p1        text
<--  p2        text
FORM mess .                                                 "fsp0
  LOOP AT messtab.
    CALL FUNCTION 'FORMAT_MESSAGE'
      EXPORTING
        id        = messtab-msgid
        lang      = messtab-msgspra
        no        = messtab-msgnr
        v1        = messtab-msgv1
        v2        = messtab-msgv2
        v3        = messtab-msgv3
        v4        = messtab-msgv4
      IMPORTING
        msg       = l_mstring
      EXCEPTIONS
        not_found = 1
        OTHERS    = 2.
    CONDENSE l_mstring.
    i_mess1-l_mstring = l_mstring(250).
    i_mess1-msgnr = messtab1-msgnr.
    i_mess1-msgv1 = messtab1-msgv1.
    APPEND i_mess1.
  ENDLOOP.
ENDFORM.                    " mess
*&      Form  mess1
      text
-->  p1        text
<--  p2        text
FORM mess1 .                                                "fs00
  LOOP AT messtab1.
    CALL FUNCTION 'FORMAT_MESSAGE'
      EXPORTING
        id        = messtab1-msgid
        lang      = messtab1-msgspra
        no        = messtab1-msgnr
        v1        = messtab1-msgv1
        v2        = messtab1-msgv2
        v3        = messtab1-msgv3
        v4        = messtab1-msgv4
      IMPORTING
        msg       = l_mstring1
      EXCEPTIONS
        not_found = 1
        OTHERS    = 2.
    CONDENSE l_mstring1.
    i_mess-l_mstring = l_mstring1(250).
    i_mess-msgnr = messtab1-msgnr.
    i_mess-msgv1 = messtab1-msgv1.
    APPEND i_mess.
  ENDLOOP.
ENDFORM.                                                    " mess1
*&      Form  exp_log
      text
-->  p1        text
<--  p2        text
FORM exp_log .
  CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
      filename = 'c:\temp\error_fsp0.txt'
      filetype = 'DAT'
    TABLES
      data_tab = i_mess1.
  CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
      filename = 'c:\temp\error_fs00.txt'
      filetype = 'DAT'
    TABLES
      data_tab = i_mess.
ENDFORM.                    " exp_log
*&      Form  bdc_dynpro
      text
     -->PROGRAM    text
     -->DYNPRO     text
FORM bdc_dynpro USING program dynpro.
  CLEAR bdcdata.
  bdcdata-program  = program.
  bdcdata-dynpro   = dynpro.
  bdcdata-dynbegin = 'X'.
  APPEND bdcdata.
ENDFORM.                    "BDC_DYNPRO
       Insert field                                                  *
FORM bdc_field USING fnam fval.
  CLEAR bdcdata.
  bdcdata-fnam = fnam.
  bdcdata-fval = fval.
  APPEND bdcdata.
ENDFORM.                    "BDC_Field
********Rewards some points.

Similar Messages

  • Can ipad air wifi cellular be used for making mobile calls?

    Can ipaid air (Wifi+cellular) be used for mobile calling ?

    Not 'normal' phone calls as you would with a mobile phone - you can do calls such as with FaceTime or the Skype For iPad app, and you may find other apps in your country's app store that allow you to make calls

  • I have two macbooks can I download Mavericks once and use a usb to install it on another

    I have two macbooks can I download Mavericks once and use a usb or something to install it on another.
    this is because I have limited high speed bandwith and after 10 gb of download in a month my internet is chargeable or slow.
    So please help, me,
    Last time I asked a question, It was unanswered, I hoped someone solves this problem, so here is my arrow in the dark.
    <Email Edited by Host>

    Hi pranavmalhotra!
    I believe I have an article here that will tell you how to do exactly that:
    Creating a bootable OS X installer in OS X Mavericks
    http://support.apple.com/kb/HT5856
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Can I have two phone lines on my iPhone 4G (one for biz and one for personal calls)?

    can I have two phone lines on my iPhone 4G (one for biz and one for personal calls)?

    FWIW, from my experience I was not able to get this to work.  When I conected a second bluetooth audio device the first device disconnected.

  • In addition to my iMac, I have a Power Mac G4 (10.4.11 Tiger) which of course is pre-Intel.  I can boot up and use for about 5 minutes before the mouse freezes.  I believe something is   overheating.  What would that be - so I can have repairs done?  The

    In addition to my iMac, I have a Power Mac G4 (10.4.11 Tiger) which of course is pre-Intel.  I can boot up and use for about 5 minutes before the mouse freezes.  I believe something is
    overheating.  What would that be - so I can have repairs done?  The machine is the Digital Audio version, M7627LL/A and Serial Number XB******KXQ.
    <Edited By Host>

    Hello USME,
    'Tis a common problem on old Macs.
    Do as Allan says: open the door and blow out all the dust bunnies. Canned air from Wal-Mart or Radio Shack can be handy (though sort of expensive) especially for blowing through the back of the power supply. A cool Mac is a happy Mac.
    Be sure your Mac can breathe. The air intake is on the bottom of the case, so be sure a deep pile rug or too many papers on your desk are not blocking the air supply.
    Feel the power supply and the processor with your hand. They should be warm but not hot; if you have to move your hand away, that's too hot!
    Check the fan on the power supply, and on the processor if it has one. Take a flashlight and peer in the back of the (Mac) case through  the grille; make sure the fan is turning. If it's not, the power supply won't work for long.
    Fans are not considered serviceable, though they will succumb to mechanics of determination. A CPU fan is easy and straightforward.
    A fan replacement will not cure an already damaged power supply; the PS may already be done for. Used power supplies for a DA are hard to come by, and not especially cheap when found (c.$50). An entire  working DA or Quicksilver may often be found for under $100 on eBay, and swapping in your HD is easy and simple... this might be cheaper and more expeditious than repairing an expired DA. Replacing a power supply is fairly easy, but it's a nuisance and requires a 2mm Allen head wrench in addition to the usual #2 Phillips head screwdriver.
    In my experience, power supplies and CPUs are about equally likely to fail. There are a few other possibilities, but they are not nearly so common.
    Good luck!... Jon

  • Can i make a video and use an external mixer for the sound?

    can i make a video and use an external mixer for the sound with my ipod touch?

    You need a special plug to use the iPod's mic in for the headphone jack. If you compare a headphone plug for a set that includes a mic and one that does not you can see that there is a difference.

  • CPUA Fail light comes on then mac freezes. Can still boot and use for a few minutes.

    I have a first gen Mac Pro (2006) which has been working fine until a week or two ago. I have this computer set up with boot camp to run both OSX and Windows. I can boot into either os and run for between 2 and 5 minutes before the computer locks up and the fans turn on full blast. Generally when the computer locks up there are some significant graphical artifacts (the GFX output kind of tears horizontally across the screen then stops.).
    Due to the graphics issue, I originally thought this might be a problem with my gfx card (ATI Radeon HD 5770). I pulled the side of the case off and booted the computer up. All fans, including that on the GFX card are running normally. What I did notice was that when the computer locked up, two CPUA lights lit up on the mobo. I pulled the gfx card out and booted the computer again. After around 10 minutes the fans switched into high gear, but the problem led did not light up.
    Does anyone have any ideas? Since the fans are kicking into high gear after a while even without the gfx card, I don't think the gfx card is necessarily the issue. Would appreciate a second opinion.

    AppleCare has long since run out on this unit so I'm more likely to replace it rather than repair. Would the logic board error still let it boot up and function fine for a period of time? Just trying to get a good understanding here before I give up on this computer.

  • How many transaction key used for Service PO

    Hi,
    Please let me know, how many transaction key used for Service PO...
    In OBYC, we have maintained GBB & WRX Transaction key's for Service PO, Is there any other Transaction key skip???
    Please guide...

    Hi,
    GBB is used for Offsetting entry for inventory posting but for Service procurement WRX Transaction key is used for GR/IR clearing-service.
    NOTE: You may use WRX with new account modifier ZZZ  to triggers GR/IR clearing-service only for service procurement where you need to post all separate GR/IR clearing- material , GR/IR clearing-asset and GR/IR clearing-service and can done with user exit.
    #But in special case GBB can be used with VBR key or copy of VBR as ZBR for default G/L account foe service PO.
    For more check the link:
    http://www.bluemarlinsys.com/ns/0603-03.asp
    Regards,
    Biju K

  • Different transaction codes useful for Performance Monitoring

    Hi Experts,
    Please can you guide me on this question, as to what are the different transaction codes useful for Performance Monitoring i.e. workload statistics and database statistics? What kind of statistics do each of these codes provide?
    Many thanks,
    Mithun

    Hi Mithun
    In performance issuses you need to look in terms of many ways that is..
    Workload analsys
    ST03N: Statistics Regards Locallly
    ST03G: Statistics Regards Golbally
    STAD: Individual Statistics Regards
    STATTRAACE: Individual Statistics Regards Trace
    ST07 : User Distribution
    Buffers and Memory
    ST02 : Buffers and Memory and swaps monitoring
    ST10: Table Acess
    OS Monitoring
    OS04: Locally monitoring
    OS07: Remotely monitoring
    OS01: LAN check
    DataBase Side
    ST04: Performance overview
    DB01: Exclusive locks
    DB02: Tables/Indexes
    BackgroundJobs monitor
    SM37
    other tcodes
    ST22: Abap Dumps
    SM12: Lock Entries
    SM56: NumberRange Buffers
    SU56: User Buffer
    all above transactions are need to monitor for Performance.
    Regards
    Bandla

  • Can the USB NI DAQs be used for process control,eg.closed loop? or is too fast

    can the USB NI DAQs be used for process control,eg.closed loop? or is too fast.

    Hi mho,
                 1.usb is very high speed that is correct.Better you can choose PCI DAQ.But thats upto you.
                 2. see this:-
                 http://sine.ni.com/nips/cds/view/p/lang/en/nid/14136
                3.If Matlab support TCP/IP, that could be an option.
                   see Another idea: http://digital.ni.com/public.nsf/allkb/244A37667BD7CBCE86257520007F937B
                   Another simplest way to do it (assuming you running Windows) is to use a Matlab script.
                  If both programs running on different systems:-
    Most simple and slow - Create two  VI's  with shared variable on both machines, and use a matlab script to
    share data. (this makes matlab some kind of "slave").
    More advanced but still  relatively slow (Create two  VI's  with shared variable, on the Matlab machine build the .NET
    dll, and it can be used on Matlab too ( at least at 2010b version, earlier version support only COM).
    Create TCP/IP connection between two comps.
    There is "out of the box" NI products, that communicate with Simulink models.You please do a simple search on that...OK
    I think this link is also helpful for you:-
     Procedimiento para la interface entre LabView 2009 y Matlab 2009b.pdf 1128 KB
    Anyway All the best.Try....do it.
    Thanks as kudos only

  • Can you have two separate icloud accounts for two iphones that sync with the same imac?

    can you have two separate icloud accounts for two iphones that sync with the same imac?

    Welcome to the Apple Community.
    Yes and no.
    There is no issues at all if you use two user accounts on the mac, each can sync with one of the accounts.
    If you are using a single user account, you can add the second account as a secondary account in settings > mail, contacts and calendars and you can then sync mail, contacts, calendars, notes and reminders from the second account, but not documents and data, back to my mac or photostream.

  • HT204053 can i make two apple id using same credit card?

    can i make two apple id using same credit card?

    You can create an iTune and App Store account without credit card details
    1. Sign out of current Apple ID if you are sign-in to one (important)
    2. Go to App Store and select a free app
    3. Tap INSTALL APP
    4. Create New Apple ID
    5. Confirm Your Country
    6. Agree with Terms and Conditions
    7. Fill in your Apple ID and Password (you must create a new Apple ID; don't use your old Apple ID)
    8. Create and answer your secret question
    9. Select NONE for Payment Method
    10. Fill in Billing Address
    11. Submit application for new Apple ID
    12. Wait for verification email
    13. When email arrive, verify your account
    14. Start downloading your free apps

  • When I try compose an email, just get compose window icon stuck in windows taskbar can't actually enlarge it and use it

    Ok, details of installation below, so when I try compose an email, I just get a compose window icon stuck in the windows
    taskbar can't actually enlarge it and use it. If I restart in safe mode with all addons disabled, then it works fine. But
    If I restart normally and manually disable addons/plugins, then close and start normally again i.e not safe mode, it
    breaks, so does not seem to be an addon or plugin but rather something with the configuration.
    Application Basics
    Name Thunderbird
    Version 31.6.0
    User Agent Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Thunderbird/31.6.0
    Profile Folder
    Show Folder
    (Local drive)
    Application Build ID 20150330093429
    Enabled Plugins about:plugins
    Build Configuration about:buildconfig
    Memory Use about:memory
    Mail and News Accounts
    ID Incoming server Outgoing servers
    Name Connection security Authentication method Name Connection security Authentication method Default?
    account2 (none) Local Folders plain passwordCleartext
    account3 (nntp) news.mozilla.org:119 plain passwordCleartext stbeehive.oracle.com:465 SSL passwordCleartext true
    account5 (imap) stbeehive.oracle.com:993 SSL passwordCleartext stbeehive.oracle.com:465 SSL passwordCleartext true
    Crash Reports
    Report ID Submitted
    bp-0a8986d2-ff0c-41c3-9da6-e770e2141224 24/12/2014
    bp-01f44ba7-3143-4452-ac98-981b62140123 23/01/2014
    Extensions
    Name Version Enabled ID
    British English Dictionary 1.19.1 false [email protected]
    Lightning 3.3.3 false {e2fda1a4-762b-4020-b5ad-a41df1933103}
    Oracle Beehive Extensions for Thunderbird (OracleInternal) 1.0.0.5 false [email protected]
    Important Modified Preferences
    Name Value
    accessibility.typeaheadfind.flashBar 0
    browser.cache.disk.capacity 358400
    browser.cache.disk.smart_size_cached_value 358400
    browser.cache.disk.smart_size.first_run false
    browser.cache.disk.smart_size.use_old_max false
    extensions.lastAppVersion 31.6.0
    font.internaluseonly.changed false
    font.name.monospace.el Consolas
    font.name.monospace.tr Consolas
    font.name.monospace.x-baltic Consolas
    font.name.monospace.x-central-euro Consolas
    font.name.monospace.x-cyrillic Consolas
    font.name.monospace.x-unicode Consolas
    font.name.monospace.x-western Consolas
    font.name.sans-serif.el Calibri
    font.name.sans-serif.tr Calibri
    font.name.sans-serif.x-baltic Calibri
    font.name.sans-serif.x-central-euro Calibri
    font.name.sans-serif.x-cyrillic Calibri
    font.name.sans-serif.x-unicode Calibri
    font.name.sans-serif.x-western Calibri
    font.name.serif.el Cambria
    font.name.serif.tr Cambria
    font.name.serif.x-baltic Cambria
    font.name.serif.x-central-euro Cambria
    font.name.serif.x-cyrillic Cambria
    font.name.serif.x-unicode Cambria
    font.name.serif.x-western Cambria
    font.size.fixed.el 14
    font.size.fixed.tr 14
    font.size.fixed.x-baltic 14
    font.size.fixed.x-central-euro 14
    font.size.fixed.x-cyrillic 14
    font.size.fixed.x-unicode 14
    font.size.fixed.x-western 14
    font.size.variable.el 17
    font.size.variable.tr 17
    font.size.variable.x-baltic 17
    font.size.variable.x-central-euro 17
    font.size.variable.x-cyrillic 17
    font.size.variable.x-unicode 17
    font.size.variable.x-western 17
    gfx.blacklist.suggested-driver-version 257.21
    mail.openMessageBehavior.version 1
    mail.winsearch.firstRunDone true
    mailnews.database.global.datastore.id 8d997817-eec1-4f16-aa36-008d5baeb30
    mailnews.database.global.indexer.enabled false
    network.cookie.prefsMigrated true
    network.tcp.sendbuffer 65536
    places.database.lastMaintenance 1429004341
    places.history.expiration.transient_current_max_pages 78789
    plugin.disable_full_page_plugin_for_types application/pdf
    plugin.importedState true
    plugin.state.flash 0
    plugin.state.java 0
    plugin.state.np32dsw 0
    plugin.state.npatgpc 0
    plugin.state.npctrl 0
    plugin.state.npdeployjava 0
    plugin.state.npfoxitreaderplugin 0
    plugin.state.npgeplugin 0
    plugin.state.npgoogleupdate 0
    plugin.state.npitunes 0
    plugin.state.npoff 0
    plugin.state.npqtplugin 0
    plugin.state.nprlsecurepluginlayer 0
    plugin.state.npunity3d 0
    plugin.state.npwatweb 0
    plugin.state.npwlpg 0
    plugins.update.notifyUser true
    Graphics
    Adapter Description NVIDIA Quadro FX 580
    Vendor ID 0x10de
    Device ID 0x0659
    Adapter RAM 512
    Adapter Drivers nvd3dum nvwgf2um,nvwgf2um
    Driver Version 8.15.11.9038
    Driver Date 7-14-2009
    Direct2D Enabled Blocked for your graphics driver version. Try updating your graphics driver to version 257.21 or newer.
    DirectWrite Enabled false (6.2.9200.16571)
    ClearType Parameters Gamma: 2200 Pixel Structure: R
    WebGL Renderer Blocked for your graphics driver version. Try updating your graphics driver to version 257.21 or newer.
    GPU Accelerated Windows 0. Blocked for your graphics driver version. Try updating your graphics driver to version 257.21 or newer.
    AzureCanvasBackend skia
    AzureSkiaAccelerated 0
    AzureFallbackCanvasBackend cairo
    AzureContentBackend cairo
    JavaScript
    Incremental GC 1
    Accessibility
    Activated 0
    Prevent Accessibility 0
    Library Versions
    Expected minimum version Version in use
    NSPR 4.10.6 4.10.6
    NSS 3.16.2.3 Basic ECC 3.16.2.3 Basic ECC
    NSS Util 3.16.2.3 3.16.2.3
    NSS SSL 3.16.2.3 Basic ECC 3.16.2.3 Basic ECC
    NSS S/MIME 3.16.2.3 Basic ECC 3.16.2.3 Basic ECC

    Noticed this in the info supplied:
    Graphics Adapter Description NVIDIA Quadro FX 580
    Vendor ID 0x10de
    Device ID 0x0659
    Adapter RAM 512
    Adapter Drivers nvd3dum nvwgf2um,nvwgf2um
    Driver Version 8.15.11.9038
    Driver Date 7-14-2009
    Direct2D Enabled Blocked for your graphics driver version.
    Try updating your graphics driver to version 257.21 or newer.
    Could you update your graphics driver and retest.

  • I have windows 7 64 bit but the new itunes will not install because it can't find itunes64.msi.  I have searxhed evertwhere on my pc. In addition, I can't uninstall the itunes and reinstall for the same reason.

    I have windows 7 64 bit but the new itunes will not install because it can't find itunes64.msi.  I have searched evertwhere on my pc. In addition, I can't uninstall the itunes and reinstall for the same reason. I can't upgrade for my icloud account.

    Try the following steps:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • How can i write the below code using "For all entries"

    Hi
    How can we write the below code using "for all entries" and need to avoid joins...
    Please help
    SELECT aaufnr aobjnr aauart atxjcd a~pspel
    agstrp awerks carbpl cwerks
    INTO TABLE t_caufv
    FROM caufv AS a
    INNER JOIN afih AS b
    ON aaufnr = baufnr
    INNER JOIN crhd AS c
    ON bgewrk = cobjid
    AND c~objty = 'D'
    WHERE ( a~pspel = space
    OR a~txjcd = space
    OR NOT a~objnr IN
    ( select OBJNR from COBRB AS e
    WHERE objnr = a~objnr ) )
    AND a~werks IN s_plant
    AND a~auart IN s_wtype
    AND NOT a~objnr IN
    ( select OBJNR from JEST AS d
    WHERE objnr = a~objnr
    AND ( dstat = 'A0081'OR dstat = 'A0018' )
    AND d~inact 'X' ).
    Reward points for all helpfull answers
    Thanks
    Ammi.

    Hi,
    SELECT objnr objid aufnr
            from afih
            into table t_afih.
    SELECT objnr
            from JEST
            into table t_JEST
            where stat = 'A0045'
               OR stat = 'A0046'
               AND inact 'X'.
    SELECT objnr
            from COBRB
            into table t_cobrb.
    SELECT arbpl werks objid objty
          from crhd
          INTO table it_crhd
          FOR ALL ENTRIES IN it_afih
          WHERE objty eq 'D'
          AND gewrk = it_afih-objid.
    SELECT aufnr objnr auart txjcd pspel gstrp werks aufnr
            FROM caufv
            INTO table t_caufv
            FOR ALL ENTRIES IN it_afih
            WHERE aufnr = it_afih-aufnr
              And pspel = ' '
              AND txjcd = ' '
             ANd objnr ne it_crhd-objnr
              AND auart in s_wtype
              AND werks in s_plant.
             AND objnr ne it_jest-objnr.
    dont use NE in the select statements, it may effect performance also. Instead use if statements inside
    loops.
    loop at t_caufv.
    read table it_chrd............
      if t_caufv-objnr ne it_chrd-objnr.
      read table it_jest..........
       if   if t_caufv-objnr ne it_jest-objnr.
        (proceed further).
       endif.
      endif.
    endloop.
    hope this helps.
    Reward if useful.
    Regards,
    Anu

Maybe you are looking for

  • Busting does not work after XDOLOAD to different instance

    Oralce report - output XML template RTF burst control file all work in one instance, but after using XDOLOAD to move to another application instance on the same server, the bursting fails with a nullpointer.exception I have checked the OPP processor

  • How to maintained the Text  language for CKF keyfigure

    Dear All, Please let me know how to maintained the text language for CKF I am using only keyfigures in CKF. Issue is text is not showing in Spain language when user exeuted the report (longin Spain) for CKF keyfigures . As per report design there are

  • Cenvat credit on capital goods.

    Dear all, 1. There is a rule that the cenvat credit in respect of capital goods shall be allowed for the whole amount of the duty paid on such capital goods in the same financial year if such capital goods are cleared from the factory as such in the

  • OT (ish): ATTO raid card and Sonnet drive array won't mount

    Hi, It's slightly off topic I think, but the title says it all. My ATTO configuration tool says all is ok and all 8 drives are fine, but Finder doesn't show the drive array (8xdrives as RAID 5). ATTO support have told me how to manually mount the dri

  • Consuming Web Service from ABAP

    I'm using WAS 6.4 SP10. I'm trying to consume a web service from our Intranet using instructions from ABAP256 from Teched 04. I get an error when I try to create a Proxy object. From SE80 Enterprise Services>Create>Proxy Object URL/HTTP Destination: