Need the format for input file for standard program

hi can any one please give me the format in which the file to be uploaded to program RFBIBL00 ,
must be in for example my excel file to be uploaded has the following columns.
company code
accounting doc
line item
fiscal year
doc type
doc date
so is there any program which can create a file in the format to be uploaded taking this excel sheet.
i read the documentation but i am little confused about that.
thank you.

Ok.. I have created one small test program for RFBIBL00.
That program uses this file format:
indicator     company code      fiscal year      doc type      doc date     positng date     header text     Account     posting key      amount      item text      assignment number ....
H     0001     2007     SA     11/21/2007     11/21/2007     Test from RFBIBL00                         
D                                   106210     40     123.3     Line 1     
D                                   106210     50     123.3     Line 2     
H     0001     2007     SA     11/21/2007     11/21/2007     Test from RFBIBL00                         
D                                   106210     40     123.3     Line 1     
D                                   106210     50     123.3     Line 2     
Copy this data into one notepad and save it as .txt file. you need to provide this path to the test program.
The source code of the program (Currently it is only test version):
*& Report  ZTEST_NP_RFBIBL00
REPORT  ZTEST_NP_RFBIBL00.
TABLES:  BGR00,                        " Batch-Input Mappendaten
         BBKPF,                        " Batch-Input Tcode + Belegkopf
         BBSEG,                        " Batch-Input Belegsegment
         BBTAX,                        " Batch-Input Belegsteuern
         BSELK,                        " Batch-Input Selektionskopf
         BSELP.                        " Batch-Input Sel.positionen
DATA: BEGIN OF IT_FILE OCCURS 0,
      IND,
      BUKRS(4),
      GJAHR(4),
      BLART(2),
      BLDAT(10),
      BUDAT(10),
      BKTXT(25),
      HKONT(10),
      BSCHL(2),
      DMBTR(17),
      SGTXT(30),
      ZUONR(17),
      END   OF IT_FILE.
DATA:    C_NODATA(1)  TYPE C VALUE '/'.   " NODATA
SELECTION-SCREEN: BEGIN OF BLOCK BLK1 WITH FRAME TITLE TEXT-T01.
PARAMETERS:       P_LFILE TYPE CHAR70 OBLIGATORY,
                  DS_NAME TYPE CHAR70 OBLIGATORY LOWER CASE,  "< Server file
                  GR_NAME(12) TYPE C DEFAULT 'FI_TEST'.
SELECTION-SCREEN: END   OF BLOCK BLK1.
START-OF-SELECTION.
  PERFORM UPLOAD_DATA.
  OPEN DATASET DS_NAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
  PERFORM INIT_STRUKTUREN_ERZEUGEN(RFBIBLI0) USING C_NODATA.
  PERFORM SET_DATA.
  CLOSE DATASET DS_NAME.
  PERFORM SUBMIT_RFBIBL00.
*&      Form  upload_data
FORM UPLOAD_DATA .
  DATA: L_FILE TYPE RLGRAP-FILENAME.
  L_FILE = P_LFILE.
  CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
      FILENAME                      = L_FILE
      FILETYPE                      = 'DAT'
*    HAS_FIELD_SEPARATOR           = ','
    TABLES
      DATA_TAB                      = IT_FILE
  IF SY-SUBRC <> 0.
    MESSAGE S398(00) WITH 'Error while uploading'.
    LEAVE LIST-PROCESSING.
  ENDIF.
ENDFORM.                    " upload_data
*&      Form  set_data
FORM SET_DATA .
  PERFORM SET_BGR00.
  LOOP AT IT_FILE.
    CASE IT_FILE-IND.
      WHEN 'H'.
        PERFORM SET_BBKPF.
      WHEN 'D'.
        PERFORM SET_BBSEG.
    ENDCASE.
  ENDLOOP.
ENDFORM.                    " set_data
*&      Form  set_BGR00
FORM SET_BGR00 .
  PERFORM INIT_BGR00(RFBIBLI0) USING BGR00.
  BGR00-MANDT = SY-MANDT.
  BGR00-GROUP = GR_NAME.
  BGR00-USNAM  = SY-UNAME.
  BGR00-NODATA = C_NODATA.
  TRANSFER BGR00 TO DS_NAME.
ENDFORM.                                                    " set_BGR00
*&      Form  set_bbkpf
FORM SET_BBKPF .
  PERFORM INIT_BBKPF(RFBIBLI0) USING BBKPF.
  BBKPF-TCODE     = 'FB01'.
  BBKPF-BLART     = IT_FILE-BLART.
  BBKPF-BUKRS     = IT_FILE-BUKRS.
  BBKPF-BLDAT+0(6) = IT_FILE-BLDAT+0(6).
  BBKPF-BLDAT+6(2) = IT_FILE-BLDAT+8(2).
  BBKPF-BUDAT+0(6) = IT_FILE-BUDAT+0(6).
  BBKPF-BUDAT+6(2) = IT_FILE-BUDAT+8(2).
  TRANSFER BBKPF TO DS_NAME.
ENDFORM.                    " set_bbkpf
*&      Form  set_bbseg
FORM SET_BBSEG .
  PERFORM INIT_BBSEG(RFBIBLI0) USING BBSEG.
  BBSEG-NEWKO = IT_FILE-HKONT.
  BBSEG-NEWBS = IT_FILE-BSCHL.
  BBSEG-WRBTR = IT_FILE-DMBTR.
  BBSEG-SGTXT = IT_FILE-SGTXT.
  TRANSFER BBSEG TO DS_NAME.
ENDFORM.                    " set_bbseg
*&      Form  submit_rfbibl00
FORM SUBMIT_RFBIBL00 .
  SUBMIT RFBIBL00 WITH DS_NAME = DS_NAME
                  WITH CALLMODE = 'B'
                  WITH XLOG = 'X'
                  AND RETURN.
ENDFORM.                    " submit_rfbibl00
If you have any problem getting file, send me an e-mail (my id is on my business card) I will send you the file as a attachment
Regards,
Naimesh Patel

Similar Messages

  • I need to find a working file for the Adobe Download assistant?

    i need to find a working file for the Adobe Download assistant?

    I was going to recommend Brother becasue they held OS9 support longer than just about anyone, but their current printers are now supported back to Mac OS10.3 to 10.4, depending on printer model.
    If you can do with a b/w laser, the recently discontinued HL5250DN is very nice and OS9 drivers are still up on Brother support site (just checked). We have that model networked at home and its happily serving five Macs plus any visitors who bring their own computer.
    This printer has been absolutely reliable and trouble-free. It has both USB and ethernet connectivity (I prefer the latter), does duplex (two-sided) printing, and 1200 dpi res. If you Google the model HL5250DN, you should turn up some of the model still in stock someplace.
    If you need color, I'm at a loss for a recommendation there.

  • No sync with audio for input files AVI MPEG4 23.976 fps

    No sync with audio for input files AVI MPEG4 23.976 fps.
    If i open in Premiere Pro CC any file AVI MPEG4 23.976 fps (with internal audio MP3 or AC3) i got growing out of sync from start to end of file, even while play it at internal media player of Premiere Pro CC for source file.
    Using external audio files AC3 or MP3 not help.
    In properties of source file i see 23.97 fps instead of 23.976 fps, and time of internal file is wrong.
    If i try Clip > Modify > Interpreter Footage > custom settings to 23.976 time i see right time, but when i click "OK", custom fps saved as 23.98 fps instead of 23.976 fps and time of source goes wrong again.
    So i always get bad sync such files in Premiere Pro CC while play or export them.
    But in all media players, other editors, and in PluralEyes sync OK with all such files.
    If i open M2TS or MP4 (H264 23.976 fps) source file, all OK, it it shows as 23.976 fps, time is right, and sync OK.
    So i want to add automatic detection 23.976 fps instead of 23.97 fps for source AVI files with 23.976 fps.
    Is it possible?

    Yes, i know what XviD and DivX does not edit well in Premiere Pro. And because of that i create this topic "No sync with audio for input files AVI MPEG4 23.976 fps" and was hoping to get help in solving the problem, rather than stating that the problem really is.
    XviD and DivX it is MPEG4.
    Xvid (formerly "XviD") is a video codec library following the MPEG-4 standard, specifically MPEG-4 Part 2 Advanced Simple Profile (ASP).
    http://en.wikipedia.org/wiki/Xvid
    I have many old useful materials in XviD and DivX formats, and have no other formats versions for that material.
    XviD and DivX are very compact formats to store video at acceptable quality and it is fully compatible with all players and editors for PC except Premiere Pro.
    You suggest to convert them to another format (DV) to make compatible with Premiere Pro... It is not what i want.
    Let me explaine:
    1) Size of files
    uploaded AVI XviD 1280x720 file with very good quality have size 1.9Gb (with audio AC3 2.0). If i convert it via VirtualDub from "AVI XviD" to AVI DVCPRO HD 1280x720 (without audio) it have size 35Gb, and quality is worst than at XviD-HD, and also converting take much time.
    2) Compatibility with AC3 and MP3 audio inside AVI
    AVI DV / AVI DVCPRO not compatible with AC3 and MP3 audio inside, only with PCM
    http://en.wikipedia.org/wiki/DV
    AVI XviD and DivX can use AC3, MP3, OGG audio without any problems.
    Size of 1Hour 30Min "AC3 Stereo 48kHz 16bit 384Kbps" file is 257Mb
    Size of 1Hour 30Min "PCM Stereo 48kHz 16bit" file is 1030Mb
    3) I have and use hardware H264 encoder card "Matrox CompressHD" for export my material
    http://www.matrox.com/video/en/products/compresshd/specs/
    This card works only from Adobe Premiere Pro, so i can not use it from VirtualDub or other editing software.
    So i need a full compatibility Adobe Premiere Pro with all popular standard formats of input files.
    Here we see:
    http://www.adobe.com/products/premiere/extend.html#Supportedvideoformats
    Supported video formats:
    "Adobe Premiere Pro CC leads the industry with incredible, thorough native media support, meaning you can edit virtually all of the major video, image, and audio formats natively without waiting."
    As most PC users knows, AVI XviD it is a very popular free video format, and would be very useful if Adobe will make normal compatibility with that format in Premiere Pro.

  • Need the Cisco ASA5520 SYS OID for the LLDP protocol

    Hi :
    I need the Cisco ASA5520 SYS OID for the LLDP protocol so that I can create the network connection between Cisco ASA5520 and the 3rd party networking device in this 3rd party network management management system.
    Can anyone help on this?
    I tried to search the web and got some LLDP MIB files but they all cannot solve the problem. What I think and I need to have now is the SYS OID number for this Cisco ASA5520.
    I know that the SYS OID for ASA5520 is 1.3.6.1.4.1.9.1.670. Now I need is the SYS OID for its LLDP protocol. Can someone help on this?
    Many thanks!
    tangsuan

    Hi Afroj Ahmad:
    I think it is not due with command line. It is the lack of OID information for Cisco ASA5520 to be able discovered by 3rd party Network Management System.
    If I am not wrong, the ASA5520 should have been configured correctly for providing SNMP to the 3rd party network management system (NMS) and as such, the NMS is then able to capture the the SYS OID for ASA5520 is 1.3.6.1.4.1.9.1.670 from the ASA5520.
    The SNMP configuration is as below:
    snmp-server host inside 172.16.0.82 community public version 2c
    snmp-server host inside 172.16.8.50 community public version 2c
    no snmp-server location
    no snmp-server contact
    snmp-server community public
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    snmp-server enable traps syslog
    snmp-server enable traps ipsec start stop
    snmp-server enable traps entity config-change fru-insert fru-remove
    snmp-server enable traps remote-access session-threshold-exceeded
    The 3rd party NMS can capture the product OID from ASA5520 after given the ASA IP address to the NMS. It is the LLDP OID that is not included in the product OID to cause the 3rd NMS cannot link up the LAN connction between the ASA and the 3rd party switch. There is no LLDP configuration in ASA command. I believe the LLDP should be provide externally either by key in manually or upload the MIB file to the 3rd party NMS. I have tried also uploading few MIB files but all not succesfully done.
    I think the direct method is just key in the LLDP OID inside the 3rd party NMS system so that the 3rd NMS can embed the LLDP information into its operation kernel then the NMS can link up the LAN connection between the Cisco ASA and its switch.
    Many thanks!
    tangsuan

  • I need the sap bw table names for ROLE's

    I need the sap bw table names for ROLE's .
    thanks

    Hi,
    AGR_1251 - Authorization data for the activity group
    AGR_USERS - Assignment of roles to users
    AGR_TCODES - Assignment of roles to Tcodes
    You can also try putting AGR* in ur search.
    -Vikram

  • I need the font style century gothic for a project im working on, but neither my final cut pro x nor my photoshop have this font style. Where do you get/buy new fonts?

    I need the font style century gothic for a project im working on, but neither my final cut pro x nor my photoshop have this font style. Where do you get/buy new fonts?

    Not on this list.
    Maybe it gets installed with something else? For example, I have MS Ofiice on the 10.7 system but not on the others.
    Russ

  • Where can i see the .mdf or .ldf files for mysql database?

    Hi i have created a database in mysql workbench. Now i want the .mdf  or .ldf files for my project deployment.  where can i see this files in my folders. I have searched in this folders.
    C:\Program Files\MySQL\MySQL Server 5.6\data.
    Couldn't find the data's here. Please Help. Actually i don't know i am on the right path. Or please tell me how can i create it?

    I think mysql has a different file structures than MS SQL. May be this link will help you
    http://www.mkyong.com/mysql/where-does-mysql-stored-the-data-in-my-harddisk/
    Satheesh
    My Blog | How to ask questions in technical forum

  • How to set the gain and input coupling for each channel on a NI 4462 DaQ card?

    I've seen a few examples in how to set the gain for NI 4462, but none tell me how to chose the channel I wish to set this gain.  Also the same problem with input coupling
    Does anyone know how to set the gain and input coupling for each individual channel?
    Thanks,
    Hector
    LabView 8.5 Windows XP

    Hey Hector,
    http://forums.ni.com/ni/board/message?board.id=100&thread.id=1688
    This has a few examples of how to do that.  Let me know if you have further questions.
    Have fun!
    -gaving

  • Resolution for .mov files for film festivals

    Some film festivals are asking for .mov files for screenings. Nowhere can I find what type or resolution they want or if there's an industry standard.
    I have seen that if they play it back from a laptop (and you never know) that too high a resolution won't work.
    Is there a standard for movie theaters?
    Thanks.

    Neal Fox wrote:
    … Is there a standard for movie theaters?…
    Yes and No
    DCP is a worldwide, digital delivery standard for commercial theaters. But, by standards, is for example 'limited' to 24fps - sad news, for Mr P. Jackson or J.Cameron (no idea, how HFR nor 3D is delivered…)
    highly complex to encode, there are specialized companies offering 'transfer services' - $$$, creates enormous files (an intra-compression codec), asks for 'Linux formatted/ext2'-drives, etc etc etc ,.. . (just read about it - no clue what I'm talking about!!)
    Plan B)
    ask the theatre what they want …or use.
    Plan C)
    1080/24p, h.264/high profile/20mbps in a mp4 should be very universal … (who asks for mov can playback mp4 too)
    … but then, next question:
    What media? stick, dataDisk, hard drive, ftp-upload?
    What format? fat32 (doesn't work for longer movies…), exFat, ntfs??
    some non-commercial festivals allow/prefer delivery by BluRay or even on DVD ...
    again, 'limited' too, but very, very universal …

  • Jdeveloper dependency on ANT script for .JAR file for ADF Application

    Hi all,
    We need to create a .jar file for an ADF project consist of Model & viewcontroller. We are able to create jar file with help OjDeploy in my ANT script.
    My query: Ojdeploy uses internally jdeveloper home to complete the task. After going through the generated script, we came to know about below two references:
    1.     oracle.jdeveloper.ant.library = ${jdeveloperHome}\\ jdeveloper\\jdev\\/lib/ant-jdeveloper.jar
    2.     oracle.jdeveloper.ojdeploy.path = ${jdeveloperHome}\\jdeveloper\\jdev\\bin\\ojdeploy.exe
    Is there any way to remove above dependencies so that we can create .jar file without installing Jdeveloper on a machine ?
    regards,
    Mohit

    ojdeploy requires a JDeveloper installation.
    Without going into the debate as to whether this is "good" or not, that's the way it works, I personally don't have a problem with installing JDeveloper on a build box (after all, you do have to install other software on the build box, too).
    If you don't want to install JDeveloper, you can hand-roll your own ANT scripts which is good for racking up the billable hours, but not so good at maintainability.

  • How to find out the format of a file?

    Is there any way to find out the format of a file?
    By format I mean binary, text, .doc, .rtf, etc. Please kindly help

    The unix file command:
    file *
    foo.doc ms-office file / word
    bar.png png image, 32x32 pixels, no transparency
    moo.hhml html text
    note that as in the last - file names are ignored, it works by checking the beginning of each file's data against it's database, and as in #2 it can sometimes see a lot more than just the file format.
    Don't know of a windows port, you could try cygwin

  • How do you change the format on a file, how do you change the format on a file, how do you change the format on a file

    how do you change the format of a file.

    Why do you think repeating yourself is going to make things clear?
    Additional information that might help;
    current format of file,
    desired format of file,
    application that created file
    and applications file going to used in.
    Allan

  • I need to call main window from a Standard program

    I need to call main window from a Standard program for SAP Script. I have wrote the code like this but it is not working. Kindly help me on that.
          FORM OPEN_AND_START_FORM                                     
    FORM open_and_start_form.
      CALL FUNCTION 'OPEN_FORM'
        EXPORTING
          device   = 'PRINTER'
          dialog   = space
          form     = 'ZOTC_SLI'
         language = print_co-spras
         OPTIONS  = pr_options
        EXCEPTIONS
          canceled = 01
          device   = 02
          form     = 03
          OPTIONS  = 04
          unclosed = 05.
      CHECK sy-subrc IS INITIAL.
      CALL FUNCTION 'WRITE_FORM'
        EXPORTING
          window  = 'MAIN'.
    ENDFORM.                    "OPEN_AND_START_FORM
          FORM CLOSE_AND_END_FORM_FORM                                  *
    FORM close_and_end_form.
      CALL FUNCTION 'END_FORM'.
    ENDFORM.                    "CLOSE_AND_END_FORM

    Hi,
    FORM CLOSE_AND_END_FORM_FORM *
    FORM close_and_end_form.
    CALL FUNCTION 'END_FORM'.
    change this to CALL FUNCTION 'close_FORM'.
    as you are not using the start_form
    you can use End_form
    i hope you understand now
    ENDFORM. "CLOSE_AND_END_FORM
    reward points if helpful.
    thanks & regards,
    venkatesh

  • Structure of the input file for RMDATIND (standard material update program)

    Hi all !
    I need to find the structure of the input file used by the RMDATIND standard program. Is there only one structure for this file ? what should it contains ?
    Thanks a lot
    Regards,
    --Yohann

    Hi Yohann,
    Check this link...
    [RMDATIND Document|http://www.iconet-ltd.co.uk/mm.doc]
    Hope this would solve your issue.
    Regards
    Narin Nandivada

  • XSD for the input file for GTS offline screening program

    Hi Friends,
    We are running some performance tests for our current project to  evaluate how much time the offline screening program (report "/SAPSLL/SPL_OFFLINE_SCREENING") takes in GTS. This report expects the customers in an XML format - would you know where I can get the definition of this expected XML format (e.g. the XSD for this input file)?
    Can some one help me to provide response XML definition of what GTS generates for the SPL check ?
    Thanks,
    Sudheer.

    Hi Sudheer,
    please follwow the steps:
    1. Prepare an XML file  with Adress data
    -> you can create a simple excel file that has to be converted into an      
    XML-file. See also the GTS documentation http://help.sap.                
    com/saphelp_gts72/helpdata/en/b1/8dc5c62c885046ab71fdcddc6ad2c2/frameset 
    .htm.                                                                    
    2. Upload the local file  to GTS for SPL Screening
    3. Examine the SPL screening results in GTS
    4. Save the results in Audit trail and&or in local file
    Best regards,
    Christin

Maybe you are looking for

  • Purchased ringtones and alerts disappeared after updating to iOS 8.2

    since updating to iOS 8.2 purchased alert tones and ringtones have disappeared and following the restore times link does not restore them. Also, cannot update any apps from the App Store. How do I get back my purchased ringtones and alert tones?

  • Lot of DataBase connections

    Hi, I am using OC4J as web container and Oracle 8i database on Sun solaris. I am using following scheme to access database connection. I have one Properties file that carries information about the driver,url,user and password I have one class RDBMSer

  • Changed server for FSMO roles

    Hi, We have moved the FSMO roles from Windows 2008 R2 domain controller to another host with Windows Server 2012 R2. And i guess I also have to change something with the time service also right? Since the PDC role has changed host ? Im not sure, is t

  • Problems with Layers in CS4

    I have Dreamweaver CS4 setup on a new Win XP Pro computer with 1gb of memory. I was setting up a webpage that would act like a manual photogallery. The user by clicking on one image could change to the next image. Everything was done using AP Div and

  • Oh no! Note selection in Piano Roll also selects cc data?

    Just discovered this in the 10.0.05 update: If you select a note in the Piano Roll edit window Logic will also select any cc data the occurs during that note (or notes). I have never seen this behavior before, and I can find no way to turn it off !!!