Problem in BDC: Not Picking the second entry of file

Dear Friends,
I have been working on a BDC and have been facing a problem. This code uploads the first entry of my file properly but repeats the same entry again second time, doesn't refresh or take the second entry of the file.
Please have a look at the code & suggest the necessary corrections.
Regards,
Alok.
report ZFBPS_BDC
       no standard page heading line-size 255.
data: bdcdata1 like bdcdata occurs 0 with header line.
data : vf_index type i.
*include bdcrecx1.
DATA: BEGIN OF ENTRIES OCCURS 0,
        RECNO(5),
        NEWBS(2),
        NEWKO(17),
        NEWNUM(1),
        WRBTR(13),
        GSBER(4),
        KOSTL(10),
        SECCO(4),
        ZFBDT(8),
        zuonr(18),
        SGTXT(50),
        FMORE(1),
        HKONT(10),
        PRCTR(10),
        AUFNR(3),
        MWSKZ(2),
        XBLNR(16),
        BKTXT(25),
END OF ENTRIES.
DATA: TEMP(8),
      DOCDATE(8),
      SPLGL(1),
      PKEY(2),
      GL(17),
      VCHAMT(13),
      BUSAREA(4),
      SECCODE(4),
      FBDT(8),
      zzuonr(18),
      COSTCEN(10),
      AUFNR(3),
      SGTXT(50).
data : vf_start_col type i value '1',      "start column
       vf_start_row type i value '1',      "start row
       vf_end_col   type i value '256',    "maximum column
       vf_end_row   type i value '65536',  "maximum row
       p_text(20).                         "stores error messages
Internal Table
data : it_excel type  kcde_cells occurs 0 with header line.
*/ Field symbol
field-symbols : <fs>.
parameters: p_file   LIKE rlgrap-filename MEMORY ID M01,
            NOHEADER AS CHECKBOX.
parameters: COMPANY(4) TYPE C DEFAULT 'SCL',
            GROUP(12) TYPE C DEFAULT 'BDCTEST',
            USER(12) TYPE C DEFAULT SY-UNAME,
            KEEP(1) TYPE C DEFAULT 'X',
            POSTDATE LIKE SY-DATUM DEFAULT SY-DATUM,
            DOC_TYPE(2) TYPE C DEFAULT 'KR',
            HOLDDATE LIKE SY-DATUM.
***********************************************upload data from excel
CALL FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'
  EXPORTING
    filename                      = p_file
    i_begin_col                   = VF_START_COL
    i_begin_row                   = VF_START_ROW
    i_end_col                     = VF_END_COL
    i_end_row                     = VF_END_ROW
  tables
    intern                        = IT_EXCEL
EXCEPTIONS
   INCONSISTENT_PARAMETERS       = 1
   UPLOAD_OLE                    = 2
   OTHERS                        = 3 .
IF sy-subrc <> 0.
          WRITE: / 'EXCEL UPLOAD FAILED :', p_file, SY-SUBRC.
else.
  sort it_excel by row col.
      loop at it_excel.
     IF NOHEADER = 'X'
    AND It_EXCEL-row = 1.
      CONTINUE.
    ENDIF.
     vf_index = it_excel-col.
   assign component vf_index of structure ENTRIES to <fs>.
        move  it_excel-value to <fs>.
      at end of row.
        append ENTRIES.
        clear ENTRIES.
      endat.
      endloop.
  endif.
start-of-selection.
LOOP AT ENTRIES.
  WRITE: /  ENTRIES-RECNO,
            ENTRIES-NEWBS,
            ENTRIES-NEWKO,
            ENTRIES-NEWNUM,
            ENTRIES-WRBTR,
            ENTRIES-GSBER,
            ENTRIES-SECCO,
            ENTRIES-ZFBDT,
            ENTRIES-ZUONR,
            ENTRIES-SGTXT.
ENDLOOP.
WRITE: / 'THIS IS THE BDC PROGRAM FOR SAMTEL'.
perform bdc_dynpro      using 'SAPMF05A' '0100'.
perform bdc_field       using 'BDC_OKCODE' '/00'.
PERFORM BDC_FIELD       USING 'BDC_CURSOR' 'RF05A-NEWKO'.
TEMP = POSTDATE.
DOCDATE = TEMP+6(2).
DOCDATE2(2) = TEMP4(2).
DOCDATE4(4) = TEMP0(4).
*PERFORM BDC_FIELD USING 'BKPF-BLDAT' DOCDATE.
*PERFORM BDC_FIELD USING 'BKPF-BLART' DOC_TYPE.
*PERFORM BDC_FIELD USING 'BKPF-BUKRS' COMPANY.
*PERFORM BDC_FIELD USING 'BKPF-WAERS' 'INR'.
*PERFORM BDC_FIELD USING 'BKPF-BUDAT' DOCDATE.
*PERFORM BDC_FIELD USING 'BKPF-XBLNR' 'Deepak'.
*PERFORM BDC_FIELD USING 'BKPF-BKTXT' 'Sahib'.
LOOP AT ENTRIES.
REFRESH BDCDATA1.
perform bdc_dynpro      using 'SAPMF05A' '0100'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF05A-NEWKO'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
PERFORM BDC_FIELD USING 'BKPF-BLDAT' DOCDATE.
PERFORM BDC_FIELD USING 'BKPF-BLART' DOC_TYPE.
PERFORM BDC_FIELD USING 'BKPF-BUKRS' COMPANY.
PERFORM BDC_FIELD USING 'BKPF-WAERS' 'INR'.
PERFORM BDC_FIELD USING 'BKPF-BUDAT' DOCDATE.
PERFORM BDC_FIELD USING 'BKPF-XBLNR' 'Deepak'.
PERFORM BDC_FIELD USING 'BKPF-BKTXT' 'Sahib'.
perform bdc_field       using 'RF05A-NEWBS'
                              ENTRIES-NEWBS.
perform bdc_field       using 'RF05A-NEWKO'
                              ENTRIES-NEWKO.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                              'BSEG-SGTXT'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                              ENTRIES-WRBTR.
perform bdc_field       using 'BSEG-ZUONR'
                              ENTRIES-ZUONR.
perform bdc_field       using 'BSEG-SGTXT'
                              ENTRIES-SGTXT.
perform bdc_field       using 'DKACB-FMORE'
                              ENTRIES-FMORE.
perform bdc_dynpro      using 'SAPLKACB' '0002'.
perform bdc_field       using 'BDC_CURSOR'
                              'COBL-KOSTL'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTE'.
perform bdc_field       using 'COBL-GSBER'
                              ENTRIES-GSBER.
perform bdc_field       using 'COBL-KOSTL'
                              ENTRIES-KOSTL.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF05A-NEWKO'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                              ENTRIES-WRBTR.
perform bdc_field       using 'BSEG-ZUONR'
                              ENTRIES-ZUONR.
perform bdc_field       using 'BSEG-SGTXT'
                              ENTRIES-SGTXT.
perform bdc_field       using 'RF05A-NEWBS'
                              ENTRIES-NEWBS.
perform bdc_field       using 'RF05A-NEWKO'
                              ENTRIES-NEWKO.
perform bdc_field       using 'DKACB-FMORE'
                              ENTRIES-FMORE.
perform bdc_dynpro      using 'SAPLKACB' '0002'.
perform bdc_field       using 'BDC_CURSOR'
                              'COBL-GSBER'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTE'.
perform bdc_field       using 'COBL-GSBER'
                              ENTRIES-GSBER.
perform bdc_field       using 'COBL-KOSTL'
                              ENTRIES-KOSTL.
perform bdc_field       using 'COBL-PRCTR'
                              ENTRIES-PRCTR.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF05A-NEWKO'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                              ENTRIES-WRBTR.
perform bdc_field       using 'BSEG-SGTXT'
                              ENTRIES-SGTXT.
perform bdc_field       using 'RF05A-NEWBS'
                              ENTRIES-NEWBS.
perform bdc_field       using 'RF05A-NEWKO'
                              ENTRIES-NEWKO.
perform bdc_field       using 'DKACB-FMORE'
                              ENTRIES-FMORE.
perform bdc_dynpro      using 'SAPLKACB' '0002'.
perform bdc_field       using 'BDC_CURSOR'
                              'COBL-GSBER'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTE'.
perform bdc_field       using 'COBL-GSBER'
                              ENTRIES-GSBER.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                              'BSEG-WRBTR'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                              ENTRIES-WRBTR.
perform bdc_field       using 'DKACB-FMORE'
                              ENTRIES-FMORE.
perform bdc_dynpro      using 'SAPLKACB' '0002'.
perform bdc_field       using 'BDC_CURSOR'
                              'COBL-GSBER'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTE'.
perform bdc_field       using 'COBL-GSBER'
                              ENTRIES-GSBER.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF05A-NEWKO'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                              ENTRIES-WRBTR.
perform bdc_field       using 'BSEG-SGTXT'
                              ENTRIES-SGTXT.
perform bdc_field       using 'RF05A-NEWBS'
                              ENTRIES-NEWBS.
perform bdc_field       using 'RF05A-NEWKO'
                              ENTRIES-NEWKO.
perform bdc_field       using 'DKACB-FMORE'
                              ENTRIES-FMORE.
perform bdc_dynpro      using 'SAPLKACB' '0002'.
perform bdc_field       using 'BDC_CURSOR'
                              'COBL-GSBER'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTE'.
perform bdc_field       using 'COBL-GSBER'
                              ENTRIES-GSBER.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF05A-NEWKO'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                              ENTRIES-WRBTR.
perform bdc_field       using 'BSEG-SGTXT'
                              ENTRIES-SGTXT.
perform bdc_field       using 'RF05A-NEWBS'
                              ENTRIES-NEWBS.
perform bdc_field       using 'RF05A-NEWKO'
                              ENTRIES-NEWKO.
perform bdc_field       using 'DKACB-FMORE'
                              ENTRIES-FMORE.
perform bdc_dynpro      using 'SAPLKACB' '0002'.
perform bdc_field       using 'BDC_CURSOR'
                              'COBL-GSBER'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTE'.
perform bdc_field       using 'COBL-GSBER'
                              ENTRIES-GSBER.
perform bdc_dynpro      using 'SAPMF05A' '0300'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF05A-NEWKO'.
perform bdc_field       using 'BDC_OKCODE'
                              '/00'.
perform bdc_field       using 'BSEG-WRBTR'
                              ENTRIES-WRBTR.
perform bdc_field       using 'BSEG-SGTXT'
                              ENTRIES-SGTXT.
perform bdc_field       using 'RF05A-NEWBS'
                              ENTRIES-NEWBS.
perform bdc_field       using 'RF05A-NEWKO'
                              ENTRIES-NEWKO.
perform bdc_field       using 'DKACB-FMORE'
                              ENTRIES-FMORE.
perform bdc_dynpro      using 'SAPLKACB' '0002'.
perform bdc_field       using 'BDC_CURSOR'
                              'COBL-GSBER'.
perform bdc_field       using 'BDC_OKCODE'
                              '=ENTE'.
perform bdc_field       using 'COBL-GSBER'
                              ENTRIES-GSBER.
perform bdc_dynpro      using 'SAPMF05A' '0302'.
perform bdc_field       using 'BDC_CURSOR'
                              'BSEG-SGTXT'.
perform bdc_field       using 'BDC_OKCODE'
                              '=AB'.
perform bdc_field       using 'BSEG-HKONT'
                              ENTRIES-HKONT.
perform bdc_field       using 'BSEG-WRBTR'
                              ENTRIES-WRBTR.
perform bdc_field       using 'BSEG-MWSKZ'
                              ENTRIES-MWSKZ.
perform bdc_field       using 'BSEG-ZFBDT'
                              ENTRIES-ZFBDT.
perform bdc_field       using 'BSEG-SGTXT'
                              ENTRIES-SGTXT.
perform bdc_dynpro      using 'SAPLFWTD' '0100'.
perform bdc_field       using 'BDC_CURSOR'
                              'WITH_ITEM-WT_WITHCD(01)'.
perform bdc_field       using 'BDC_OKCODE'
                              '=GO'.
perform bdc_dynpro      using 'SAPMF05A' '0700'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF05A-NEWBS'.
perform bdc_field       using 'BDC_OKCODE'
                              '=BS'.
perform bdc_field       using 'BKPF-XBLNR'
                              ENTRIES-XBLNR.
perform bdc_field       using 'BKPF-BKTXT'
                              ENTRIES-BKTXT.
perform bdc_dynpro      using 'SAPMF05A' '0700'.
perform bdc_field       using 'BDC_CURSOR'
                              'RF05A-NEWBS'.
perform bdc_field       using 'BDC_OKCODE'
                              '=BU'.
perform bdc_field       using 'BKPF-XBLNR'
                              ENTRIES-XBLNR.
perform bdc_field       using 'BKPF-BKTXT'
                              ENTRIES-BKTXT.
perform bdc_field       using 'BDC_OKCODE'
                              '=YES'.
call transaction 'FB01' using bdcdata1 mode 'A'.
ENDLOOP.
       Start new screen                                              *
form bdc_dynpro using program dynpro.
   clear bdcdata1.
  bdcdata1-program  = program.
  bdcdata1-dynpro   = dynpro.
  bdcdata1-dynbegin = 'X'.
append bdcdata1.
endform.
       Insert field                                                  *
form bdc_field using fnam fval.
   clear bdcdata1.
    bdcdata1-fnam = fnam.
    bdcdata1-fval = fval.
append bdcdata1.
endform.

Hi
You better use LSMW instaed of using BDC for FB01 Transaction. The Problem is not with REFRESH.
Regards,
Anji

Similar Messages

  • Since updating to 10.4 getting error message on startup 'AppleSyncNotifier.exe – Entry Point Not Found, The procedure entry point xmlTextReaderConstName could not be located in the dynamic link library libxml2.dll.'. How do I fix this annoying problem?

    Since updating to 10.4 I've been getting this error message on computer startup
    'AppleSyncNotifier.exe – Entry Point Not Found
    The procedure entry point xmlTextReaderConstName could not be located in the dynamic link library libxml2.dll.'.
    Please help me fix this annoying problem?
    belle

    This is the fix I got from discussions and it worked for me.  It is copied below.  I just did the manual fix which I have underlined. Good luck! Regards, Belle.
    This can occur because libmxl2.dll is not in your C:\Program Files\Common Files\Apple\Mobile Device Support folder.
    There have been some issues with this and other dlls not being in the right place (or not being everywhere they should be) since the 10.3.1.55 iTunes update.
    However, I note that the 10.4 iTunes update is now out - surprisingly quickly - so try installing that, rebooting, and see if your issue is solved.
    If it isn't, though, here's the manual fix:-
    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the libmxl2.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well.
    I actually had the issue with SQLite3.dll, and the above fix worked for me (I found it in an April 2010 posting!).
    I passed on the fix as above for the similar issue with libmxl2.dll to someone who had exactly your problem, and he reported that it fixed it for him.

  • I have a problem with ( AppleSyncNotifier.exe - Entry Point Not Found ) The procedure entry point sqlite3_wal_checkpoint could not be locate in the dynamic link library SWLite3.dll.

    I have a problem with ( AppleSyncNotifier.exe - Entry Point Not Found ) The procedure entry point sqlite3_wal_checkpoint could not be locate in the dynamic link library SWLite3.dll.

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well
    In case that your OS is Windows 7 (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Open new windows explorer, to to location C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Paste file "SQLite3.dll" to the location.
    5. Reboot your computer, it should not display that message, it should be clear.
    Good Luck

  • HT1296 My Outlook 2010 is not picking up calendar entries from my 4S, and the phone is not picking up calendar entries from Outlook 2010. Help, please!

    My Outlook 2010 is not picking up calendar entries from my 4S, and the phone is not picking up calendar entries from Outlook 2010. Help, please!

    Only the carrier it is locked to can authorize unlocking it. Contact them.

  • Calendar now splits my entries into 2 separate entries. 1 entry lists date/time/name. The second entry lists notes

    Calendar now splits my entries into 2 separate entries. 1 entry lists date/time/name. The second entry lists notes and alerts. I can delete the date/time one, but not the alert entry. That means I will get all the alerts even if I deleted the original entry. It shows up as two separate entries for each one entry. This happened after the Yosemite install.

    Calendar now splits my entries into 2 separate entries. 1 entry lists date/time/name. The second entry lists notes and alerts. I can delete the date/time one, but not the alert entry. That means I will get all the alerts even if I deleted the original entry. It shows up as two separate entries for each one entry. This happened after the Yosemite install.

  • Bw is not picking up manual entries done in sap

    Hi ,
    Can any one guide me on this.
    for copa we are getting data from 3 datasource for one cube.
    z_1_copa_510_Act
    0ec_pca_3
    Z_1_COPA_510_PLAN
    What happens if somebody did the manual entry(adjustment against something)in sap.(So BW didn't pick up units because there were no System in R3.) These data source is not picking the value.
    What could be the reason?
    Edited by: naman shah on Oct 24, 2008 4:37 PM

    okay
    and is this journal entry in the PCA tables for example
    ie got to FB03 on the journal and do enviroment - doc enviroment - accounting documents - and is there a profit centre document and COPA documetn there?
    ANd then does those documents exist on the base R3 tables ie GLPCA
    I have 1000000 manual entries in SAP each day in FI and PCA and they do come into BW - so... some more detailed information abotu exactly the problem and examples may be helpful

  • I just purchased a new ipod touch so now I have two. I do not want the second ipod touch to sync the same as the old ipod touch - 2 people with 2 different music preferences. How do I keep them separate.

    I just purchased a new ipod touch so now I have two. I do not want the second ipod touch to sync the same as the old ipod touch - 2 people with 2 different music preferences. How do I keep them separate.

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • How do i fix the following message that appears when i open my computer :- Apple Sync Notifier.exe Entry Point not found the procedure entry point sqlite3_wal_check point chould not be located in the dynamic link library SQLite3.dll

    Apple Sync Notifies,exe.Entry point not found the procedure entry point sqlite3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll
    I have uninstalled Itunes 10.4 shut down and installed Itunes 10.4 and still get this message on opening? How do i fix this problem?

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Restart the programme all should be well
    In case that your OS is (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Now paste it in the folder  C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Restart the programme, it should not display that message, it should be clear.
    Good Luck

  • Firefox.exe - entry point not found The Procedure entry point GetLogicalProcessorInformation could not be located in the dynamic link library Kernel32.dll

    Here's my problem, until yesterday my firefox browser is fine, unless sometimes when i playing games/app in facebook the plugin keep crashing but thats okay i can stop it and reload my firefox.
    But now everytime i try to open firefox it displaying the error massage:
    firefox.exe - entry point not found
    The Procedure entry point GetLogicalProcessorInformation could not be located in the dynamic link library Kernel32.dll
    I try to uninstall firefox, and reinstall again.
    i have to use internet explorer and torch browser, which don't fit me and make me in pain.
    i try to run in firefox safe mode, according to some suggestion here, but it wouldn't allow me to open Safe Mode (i even holding the Shift button when clicking on firefix icon)
    Can you guys help me in here?
    Iam using windows xp.
    Thank you so much in advance, GBU all :)

    hi, do you have service pack 3 installed on your xp computer?

  • File Adapter as Sender not picking the files

    We configured the File Adapter as Sender, Transport Protocol =NSF and message protocol as FCC.
    In OS we have folder to read the file, but SAP XI unable to read the file.
    To trouble shoot this issue we copied that file into another location and reverted back to the same location then XI File adaptor is able to read the file.
    Now we have compared the Attributes of the path
    the only difference in file attributes
    Coded character set ID . . . . . . . . :   819      
    CCSID 819 (decimal)
    0333 (hex)
    Name ISO 8859-1 ASCII
    Description ISO 8859-1: Latin Alphabet Number 1Latin-1 countries and regions
    Notes Related CCSID with euro is 923           
    able to read the file attributes:
    Coded character set ID . . . . . . . . :   1252                    
    CCSID 1252 (decimal)
    04E4 (hex)
    Name MS-WIN LATIN-1
    SC Co-existence/Migration
    FMS Subset
    Registration Date 
    Description MS Windows, Latin-1
    Notes CCSID for this code page with euro is 5348
    We have tried to chage the File type as Text and File Encoding with ISO-8859-1even then its not picking the files.
    Please suggest me where i am doing wrong here
    Thanks,
    Venkat.

    Hi,
    Check the file path & file name , Check  the processing mode parameter which you have set?
    Check the folder properties & provide all the permission ...
    Finally check the communication channel status in RWB, If the problem persist try to stop & start the communication channel again..
    Hope it helps...
    Regards,
    Kumar.

  • Query Designer is not picking the host:port

    Dear All
    We have installed BI 7.0 on Netweaver 2004s alongwith BI Java. When we run a query and execute it does not pick the hostname:port but come as
    http:///irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=ZSD_C03_Q009&VARIABLE_SCREEN=X&DUMMY=1
    Please check i have activated all services in SICF and SMICM - all the services is running
    and i have added the icm/hsotnamefull in the instance profile also.
    is there any thing missing.
    Whether PI/Xi is to be also installed and u think it is necessry to configure SLD?
    regards
    balaji

    Japnese yen is maintained in units of 100. Check the entry in TCURX table for Yen. That is why the value is getting multiplied by 100 and getting displayed.
    JPY (Japanese Yen) and others have a 0 in the TCURR-CURRDEC field which means 0 decumals. SAP applications will process amounts in these currencies by dividing the input value by 100 for storing in tables. Then, when being displayed, it will do a conversion exit and multiply the stored table value by 100 to show the correct amount.
    SAP stores currency values in a data type that has a fixed interpretation of two decimal places. There are some currencies that do not work well with that setting. Usually that is because for some currencies , a fraction o the currency unit is meaningless. That is true of the Japanese Yen, the Turkish Lira, Korean Won and many other currencies whose value is often 10 US cents or less.
    Here's a full explanation of the decimal issue in SAP. It is not just
    limited to BW but is a system-wide situation.
    1. By default there are two decimals on the data base, e.g. 123.45
    2. When there is no corresponding entry in TCURX, these two decimals
    are displayed in the query.
    3. When there is an entry in TCURX, it determines the division factor
    when reporting. (default = 2)
    Example TCURX = NO ENTRY: Database entry = 123.45
    There is no division
    The above number is displayed as 123.45
    Example TCURX = 3: Database entry = 123.45
    There is a division by 10 (because 3 - 2 = 1).
    The above number is displayed as 12.345.
    example INR currency.
    Example TCURX = 0 Database entry = 123.45
    There is a division by 0.01 OR Multiplication by 100

  • Sub:ck11n not picking the routing automatically

    Hi Guru,
                Create cost estimation (ck11n) ,not picking the routing data automatically

    Dear Jothi,
    Goto OKKN,check for the costing variant under quantity structure control tab,whether the routing selection ID is assigned properly.
    Say if selection ID is 01 and the first priority is for N task list type(that's normal routing),then the system will pick it automatically.
    Likewise if it fails to find N,then it searches for the second priority given in the same selection ID.
    This is how it picks for costing in CK11N,Also check the routing status in CA03,under header whether it's 4 - released and usage
    is for 1 production.
    Check and revert
    Regards
    S Mangalraj

  • Weblogic Server not picking the jar files in WEB-INF/lib folder

    we are facing a strange problem where Weblogic App Server is not picking the jar files present inside the WEB-INF/lib folder if we update the jar file path in the classpath of the start script then the classes get loaded properly.
    Is there any specific setting which I need to do in weblogic to pick these jars ?

    Class loaders associated with a Web application can be configured to locate local classes first. To enable this we have to set the <prefer-web-inf-classes> to true in the deployment override weblogic.xml, for example
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    http://blog.transfer-solutions.com/2010/12/weblogic-class-loading/

  • Job executing the SSIS pkg via cmdExec line step not picking the config details

    Job executing the SSIS pkg via cmdExec line step not picking the config details (of prod server connections/parameters)
    specified in dtsConfig file and by default using the values present in the pkg (which is of dev env).  I have to open the package
    uncheck "Enable package configuration" save the package and check it again and save again then the package will use the prod config.
    What could be the reason? and how to fix this?
    The SSIS pkg and the dtsCofig reside in same folder of network drive.
    SQL Server R2 Ent Ed
    Thanks

    Hi Ramzi24,
    This is the by design behavior. The Dtexec utility will apply the default package configurations for the second time after applying the options specified in the command lines or other package configurations configured in the job step. In this way, as long
    as the default package configurations file is valid, the configurations of it cannot be overwritten.
    If the package is not deployed/installed, the Dtexec utility looks for the XML configurations file according to the file path defined in the Package Configurations Organizer window. In this situation, you need to either disable the package configurations or
    modify the XML file path in the BIDS.
    If the package is already deployed/installed, you need to modify the package as above or re-specify the install folder for the package configurations file. 
    Reference:
    http://technet.microsoft.com/en-us/library/ms141682(v=sql.105).aspx
    Regards,
    Mike Yin
    TechNet Community Support

  • Have tried several times to do all that was suggested BUT itunes still not downloading correctly....still recieving---iTunes.exe - entry point not found - the procedure entry point. AVCFPlayerSppliesMediaSe;ectopmCriteriaAutomaticallKey could not be locat

    HELP!! I'm trying to reinstall my iTunes BUT keep getting this---iTunes.exe-entry point not found-the procedure entry point AVCPlayerSuppliesMediaSe;ectopmCriteriaAutomaticallKey Could not be located in the dynamic link library AVFFoundationCF.dll.
    itunes was not installed correctly. error 7 (windows error 127) --
    I have already tried (4 times) completely unstalling and reinstalling as was suggested But didn't fix the problem.
    HELP---CAN ANYONE SUGGEST SOMETHING ELSE TO TRY??

    HELP!! I'm trying to reinstall my iTunes BUT keep getting this---iTunes.exe-entry point not found-the procedure entry point AVCPlayerSuppliesMediaSe;ectopmCriteriaAutomaticallKey Could not be located in the dynamic link library AVFFoundationCF.dll.
    That one can be produced if you have an older version of Apple Application Support on the PC than is required by iTunes version 11.1.4.62. (The required version of Apple Application Support is included in the standard iTunes installers, but for some reason it hasn't been updating properly for some folks.)
    Let's try updating your Apple Application Support to version 3.0 by doing a standalone Apple Application Support install.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, can you launch iTunes without the error now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

Maybe you are looking for

  • Error while doing inbound delivery

    HI, In our process we do GR by using mvt type 561 initial stock upload and then against the material documents , create inbound delivery( PGR).. While doing PGR we are facing the error as follows, STORAGE UNIT XXXXXXXXX IS WITHOUT APPENDANT HU Could

  • Error trying to look at packages, funtions or Procedures

    getting the following error when just trying to open up the list of procedures, packages or functions. An Error was encountered performing the requested operation: No more data to read from socket. Vendor code 17410

  • Error: The password could not be set.

    When I create a user as an OD administrator, the new user cannot reset passwords for typical users. If the new administrator attempts to do so, they receive the following message: "The password could not be set. An unexpected error of type -14120 occ

  • Error in MiniBasis System..

    Hi All I am getting a error in SAP MINI BASIS System almost 90% of the times i try to activate/Run any object. Iam also getting the same error when after running a transaction i click on any Tabs in the screen. I checked the Computer system log there

  • Does webcam signature need to be set up?

    I am trying to add my signature through webcam option, but Adop pro does not communicate with my laptop .webcam