Converting raw data from memory to OTF format

hi all,
     i have a requirment where i need to submit a report and move the corresponding output to memory get the same back in OTF format and export it in an RFC.  i tried using different function modules but could not find the exact where i can convert from memory to OTF format or directly at the time of submit can store it in OTF format.
      tried converting list to asci but could not get the same report output,
thanks,
raju,

Hi krishnam,
You can try this function module
SX_OBJECT_CONVERT_OTF_RAW
Regards
Sumit Bhutani

Similar Messages

  • Download data from memory to Excel format.

    Hi Gurus,
        How can I download data from Memory( not in application server ) to Excel format ? Now I am using below function modules  but not coming in proper format.
    CALL FUNCTION 'LIST_FROM_MEMORY'
           TABLES
                listobject = listobject
           EXCEPTIONS
                OTHERS     = 1.
    CALL FUNCTION 'LIST_TO_ASCI'      "report to ASCII text
             TABLES
                  listasci           = listasci
                  listobject         = listobject
             EXCEPTIONS
                  empty_list         = 1
                  list_index_invalid = 2
                  OTHERS             = 3.

    Hi,
    use this function module.
    CALL FUNCTION  'SAPGUI_PROGRESS_INDICATOR'
    Regards,
    NNR.

  • Raw Read Error Rate, Errors occurred while reading raw data from a disk

    hi
    when I turn my pavilion dv6 2170ee computer on screen shows below error.
    system diognostics (F2) does not any work
    and when my windows7 comming up this error was shown.
    I install Hard Disk Sentinel software and this program shows below:
    Failure Predicted - Attribute: 1 Raw Read Error Rate, Errors occurred while reading raw data from a disk. Indicate problem with the disk surface or the read/write heads.
    There are 28 weak sectors found on the disk surface. They may be remapped any time in the later use of the disk.
    26848 errors occured during data transfer. This may indicate problem of the device or with data/power cables. It is recommended to examine and replace the cables if possible.
    Replace hard disk immediately.
    how can I fix it?
    may drive format (Fdisk) and renewing windows can fix it?
    tanx and regards
    Mohammad

    Hello mohkhosh,
    I see that you're getting an error indicating possible hard driver failure, that you have this message from 3 different sources. I will try to help you with this.
    After reviewing everything  you're looking at needing to replace the hard drive. I would suggest contacting support to see what they can do for you.
    HP Technical Support, North America 1-800-474-6836. For all other regions click here.
    Thank you for posting on the HP Forums.
    I worked on behalf of HP.

  • How to convert raw data to wav files??

    Hi AnyOne,
    Can anyone know how to do convert raw data in hex format into wav file format??
    Please show some guideline.
    Thank You.

    Hi Craig,
    Thanks for the reply.
    I do follow according the the wav creation standard and save it as wav file. However, i still fail to read back the wav file.
    I using LV8.2. Attach with my testvi and data. Please guide if i make any mistake in my testvi
    Thx and Regards,
    Simon76     
    Attachments:
    data.txt ‏7 KB
    testvi.JPG ‏39 KB
    header.txt ‏1 KB

  • Getting ¿¿¿¿¿¿ while converting Raw data to Varchar2.

    Hi All,
    We are fetching data from as400 database to Oracel using a dblink.
    It gives us Raw data. But when we tried converting Raw data to Varchar2 at Oracle side Its returning ¿¿¿¿¿¿ instead of actual data.
    We are using Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    We used following SQL:
    select UTL_RAW.CAST_TO_varCHAR2(ordno) from amflib6.pomast@as400_pub
    OUTPUT :     ¿¿¿¿¿¿
    However we also tried to run it withoout dblink as following but not getting required data.
    select UTL_RAW.CAST_TO_varCHAR2('4DAC') from dual
    OUTPUT  :     M¿
    Is it something to do with installed fonts or soem thing else.. Please help us out.
    Any help would be appreciated.
    Thanks and Regards
    Indu

    Hi,
    Probably a multibyte data vs. characterset issue.
    What is the outcome of:
    select * from nls_database_parameters where parameter like '%CHAR%';?
    Perhaps you'll find some similar problem here:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5783936214008#12758388562377
    And check the [Globalisation Support Guide | http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/toc.htm]

  • Reading data from microsoft 97-2003 format excelsheet in FLEx 4.6

    Reading data from microsoft 97-2003 format excelsheet in FLEx 4.6

    Not easy. Your best bet is probably to convert it to another format (e.g. CSV). You could get the user to do that before upload, or you could use an online converter such as Google Docs to do it for them. If you have your own server, there are various server-side components that can handle xls.

  • Upload data from excel( XLS/xs format) in SAP CRM

    Upload data from excel( XLS/xs format) in SAP CRM  7.0 as there is no *ALSM*EXCEL*ITAB* like FM there unlike ECC 6.0...?

    hello Buddy,
    plz go through below links
    http://wiki.scn.sap.com/wiki/display/CRM/CRM+Web+UI+-+Uploading+data+from+Excel+files
    http://scn.sap.com/docs/DOC-50732
    http://scn.sap.com/docs/DOC-31985
    Hope This will Help You...

  • Problem with BTE and FI-parking- no data from memory ID to ABAP

    Hi Experts,
    I have a scenario in Business Workflow where I want to catch the data(BKPF & BSEG) after SAP transaction processing - event is to change parked FI-document with FBV2. I´m trying to use BTE to receive the data after processing transaction.
    All BTE steps seems to be activated - because I can debug my functions when processing FBV2 - but I cannot reach any data into my coding after processing.
    I have created my project in BF24:
    ZXXX Testing: WF-memory ID
    I have also linked few FI-events to my BTE interface funtion in BF34:
    00001130 ZXXX ZXXX_FIPP_CHANGE_BTE
    00002213 ZXXX ZXXX_FIPP_CHANGE_BTE
    00002217 ZXXX ZXXX_FIPP_CHANGE_BTE
    My BTE function ZXXX_FIPP_CHANGE_BTE is as following:
    DATA: memid(15) VALUE 'ZXXX_2217'.
    *Initialize
    CLEAR: t_vbkpf,
    t_vbsegs.
    FREE MEMORY ID 'ZXXX_2217'.
    *Backtracking of BTE
    EXPORT t_vbkpf
    t_vbsegs
    TO MEMORY ID memid.
    ENDFUNCTION.
    I have also created funtion to call FBV2:
    data: memid(15) value 'ZXXX_2217'.
    CALL TRANSACTION 'FBV2'.
    *Import memory of BTE
    IMPORT t_vbkpf
    t_vbsegs
    FROM MEMORY ID memid.
    *Free memory id
    FREE MEMORY ID memid.  
    When I set a breakpoint to both of the functions and I execute FBV2 I reach the breakpoints. Problem is that the data is not passed from memid 'ZXXX_2217' into function after FBV2(this syntax: IMPORT t_vbkpf t_vbsegs FROM MEMORY ID memid.)
    What could be missing. So both functions are called but NO DATA is passed from memory ID to my internal tables? This seems to be a problem with memory ID´s. Also in my BTE function ZXXX_FIPP_CHANGE_BTE I receive a sy-subrc value 4 when executing syntax "FREE MEMORY ID 'ZXXX_2217'. ".
    All hints appreciated,
    Jani

    Hi Ramki,
    I must be frustrating You with these stupid questions... You have already supported me hugely to get more famailiar with BTE. For example not to commit in BTE etc. Big thanks for that!
    In all cases when I have tested my project in BF24 has been always active; and yes I have changed the pre. posted document always to trigger the BTE.
    I still have a problem. I copied all customizing and coding into other system - with same dissapointing results. Let me describe this once more:
    <b>My entry in BF24:</b>
    <i>Product:                 ZBE
    Text:                       Jani testing
    RFC destination:
    Active:   </i>               X
    <b>My entry in BF34:</b>
    <i>Event:                   00002214
    Product:                    ZBE
    Ctr:
    Appl:
    Function module:            ZBE_BTE</i>
    <b>My BTE function:</b>
    <i>  DATA: memid(15) VALUE 'ZBE_BTE2214'.
      DATA: t_vbkpf LIKE fvbkpf OCCURS 0 WITH HEADER LINE.
      FREE MEMORY ID memid.
      EXPORT t_vbkpf TO MEMORY ID memid.</i>
    <b>And the function ZBE_BTE_EXECUTE where I call FBV2:</b>
    <i>  DATA: memid(15) VALUE 'ZBE_BTE2214'.
      DATA: t_vbkpf LIKE fvbkpf OCCURS 0 WITH HEADER LINE.
      CALL TRANSACTION 'FBV2'.
      IMPORT t_vbkpf FROM MEMORY ID memid.
      FREE MEMORY ID memid.</i>
    When I process my function ZBE_BTE_EXECUTE - and I have added a breakpoint into ZBE_BTE - for FBV2 call <b>it does not reach the breakpoint</b> in ZBE_BTE at all! This occurs when using event linkage 00002214! And I do execute a real change to parked document.
    But if I change the entry in BF34 to be linked for event 00002217 or 00002218 process reaches my breakpoint in BTE function ZBE_BTE! But in these cases also, it does not import the data after transaction call in function ZBE_BTE_EXECUTE. When I continue debugging the coding in BTE function ZBE_BTE further into SAP-coding, I can see that my internal table t_vbkpf is filled. But when I leave SAP-coding when FBV2 is completed and return to ZBE_BTE_EXECUTE - where t_vbkpf should be filled from memory id - t_vbkpf is empty!
    Again as a conclusion in this system:
    For BTE event 00002214 this locig does not work at all. For events 00002217 and 00002218 it does get activated, but does not bring any data from memory ID into my abap. Strangest this is that I use absolutely same kind of coding that You.
    Can You see if I have to fill those empty fields( Ctr. & Appl.) in my BF34 customizing? Or is some other customizing action missing?
    Br,
    Jani

  • How can i convert the data from mutiple-table to the other database(MSSQL)?

    Dears,
    How can i convert the data from mutiple-table to the other database such as MS-SQL?
    I have a third party system based on MS-SQL 2000.
    Now we want to make a integration between SAP R/3(Oracle) and SQL server.
    When my user releases the purchase order in R/3, the application we coded will convert the releated data to the temp database on the SQL server.
    But i don't know which tools will help me reach the purpose.  BAPI, LSMW, IDoc... ???
    Would anybody tell me which way is better and how to do?
    Thanks a lot!
    Kevin Wang

    Hello Kevin,
    The question to use which method depend on your detail requirements. If you use BAPI, you need to find which Bapi can provide the data you want. Bapi normally use as a function called by external system. So you need to develop an external program like VB/Java to call this Bapi and move it to SQL. LSMW is use when you want to upload data from an external system to SAP. So it does not serve your requirement. Idoc can be use to export data to an external system. Again like Bapi, you need to find what Idoc can provide the data you want. However, it does not any programming from the external system. If I were you, based on your requirements, I think writing an Abap program that read the data you want and download it to NT/SQL server will be faster and easier.

  • How to convert system Date into DD-MMM-YYYY Format

    hi friends,
    please help me How to convert system Date into DD-MMM-YYYY Format.
    Regards
    Yogesh

    HI..
    data: w_dt(11) type c,
             w_month(2),
             w_mon(3).
    w_month = p_date+4(2). **p_date = given date**
    case w_month.
    when '01'.
    w_mon = 'Jan'.
    when '02'.
    w_mon = 'Feb'.
    when '03'.
    w_mon = 'Mar'.
    when '04'.
    w_mon = 'Apr'.
    when '05'.
    w_mon = 'May'.
    when '06'.
    w_mon = 'Jun'.
    when '07'.
    w_mon = 'Jul'.
    when '08'.
    w_mon = 'Aug'.
    when '09'.
    w_mon = 'Sep'.
    when '10'.
    w_mon = 'Oct'.
    when '11'.
    w_mon = 'Nov'.
    when '12'.
    w_mon = 'Dec'.
    endcase.
    Now...
      concatenate p_date6(2)  '-'  w_mon  '-'   p_date0(4)  into w_dt.
    write w_dt.

  • I need how to load data from MS Excel(csv format) to NW Excel

    Hi,
    I am doing Migration project from SAP MS to NW Manually.
    I need how to load data from MS excel (csv format) to NW excel .
    For example 2008 budget data.
    Could you please help me in this.
    Thanks and Regards
    Krishna

    Hi,
    You need to create a transformation file and a conversion file if required. First upload the excel (csv) file into BPC using Manage Data and Upload File option.
    Create the transformation file (refer to the sap help  on how to define a transformation file). You need to specify the mapping correctly and include all your application dimensions and map them to appropriate columns of the flat file.
    Before running the import package, do validate the data in the flat file you uploaded into BPC with the transformation file you created.
    Thanks,
    Sreeni

  • How to convert raw files from new fujifilm x-t1 ?

    how to convert raw files from new fujifilm x-t1 ?

    The work around of converting the CR2 to dng either with the dng converter or ACR 6.7 will allow working in LR and CS5 but not with the latest raw conversion engine from Adobe i.e PV 2012.
    Remember to keep a copy of the CR2 files if you wish to utilize the Canon software.

  • DNG converter not converting RAW files from Canon 70D.

    DNG converter not converting RAW files from Canon 70D (it does not see them). I tried DNG converter version 8.2 and 8.4. No success. I use iMac. What is wrong?

    hopefully, that's a typo on adobe's website because they list the canon 70d as using a .cs2 file extension, http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    i don't see any other camera that uses a .cs2 extension and i don't see other people having problems, so that probably is a typo.
    in any case, cr 8.2 or better is able to convert your camera's raw files.  why you are having a problem i can't say, but double check that you are navigating to the correct folder by adding a file that will show up in your dng converter.

  • Poor raw conversion from Fujifilm X100 .raf format in Lightroom 3 and 4

    I'm seeing very poor results when doing raw conversion from Fujifilm X100 .raf format. Who can I contact about this? Is there anything I can do?
    See below for what is supposed to be a white curtain, lit by stage lighting. It results in a blown out blue channel, serious loss of detail, and very ugly gradient.
    (Lightroom 4.2, Camera Raw 7.2 on LEFT  --- Fujifilm X100 in-camera jpg on RIGHT)
    And for more detail:
    (Lightroom 4.2, Camera Raw 7.2 on TOP  --- Fujifilm X100 in-camera jpg on BOTTOM)
    (Lightroom 4.2, Camera Raw 7.2 on LEFT --- Fujifilm X100 in-camera jpg on RIGHT)

    The blue light is so intense that it is, or almost is, saturating the sensor.
    The camera’s built-in raw conversion handles this by shifting the color to cyan—clipping the blue and allowing the green to contribute more.  I doubt there was cyan lighting in the scene, only blue.
    Adobe does not shift the hue, but this makes the blue seem over saturated.  Adobe’s conversion may be more colorimetrically correct, but less pleasing in this case of intense lighting that the sensor cannot accurately record.
    It is a difference in camera profile used between the camera and Adobe.  Since Adobe does not supply camera-match profiles for much more than Nikon and Canon cameras, you’re not going to be able to fix things other than managing the over-saturation using HSL or WB or other things like lower-vibrance, higher saturation. 
    You could try making your own camera profile using an X-Rite Color-Checker Passport or the color-checker and the Adobe DNG Profile Editor:
    http://xritephoto.com/ph_product_overview.aspx?id=1257

  • VISA read raw data from USB board Analog Devices ADISUSBZ

    Hi
    I am trying to use VISA to read the raw data from a USB dev board (Analog Devices ADISUSBZ). but always get below errors
    "BFFF003A Unable to start operation because setup is invalid."
    what I did.
    1) uninstalled and deleted the origanl USB driver for ADISUSBZ
    2) plugin ADISUSBZ USB Dev board, windows see a unknow device, using VISA Driver Wizard to create a USB driver inf file for ADISUSBZ
    3) installed the new driver which VISA Driver Wizard created, restarted computer, ADISUSBZ is identified and loaded with VISA USB driver. also showing "This device is working properly."
    4) Run Measurement & Automation Explorer, in the Devices and Interfaces list, I can see that USB device which is the ADISUSBZ. but the name is
    Unkown USB0::0x0456::0xEF02::NI-VISA-40002::RAW   (the VID PID tell me, it is the ADISUSBZ USB Dev board)
    5) Open VISA Test panel -> View All Settable Attributes, I got below data, where  VI_ATTR_USB_BULK_IN_STATUS = -1 (not active???)
    VI_ATTR_TMO_VALUE = 2000
    VI_ATTR_MAX_QUEUE_LENGTH = 50
    VI_ATTR_TERMCHAR = 0x0A
    VI_ATTR_TERMCHAR_EN = VI_FALSE
    VI_ATTR_IO_PROT = 1
    VI_ATTR_SUPPRESS_END_EN = VI_FALSE
    VI_ATTR_USB_MAX_INTR_SIZE = 1
    VI_ATTR_USB_CTRL_PIPE = 0x0000
    VI_ATTR_USB_BULK_OUT_PIPE = 0xFFFF
    VI_ATTR_USB_BULK_IN_PIPE = 0xFFFF
    VI_ATTR_USB_INTR_IN_PIPE = 0xFFFF
    VI_ATTR_USB_ALT_SETTING = 0
    VI_ATTR_USB_BULK_OUT_STATUS = -1
    VI_ATTR_USB_BULK_IN_STATUS = -1
    VI_ATTR_USB_INTR_IN_STATUS = -1
    VI_ATTR_USB_END_IN = 5
    6) Basic I/O  -> viRead  , set count to 1 or default 1024 , execute
    return status is always BFFF003A
    I searched in error list, it says
    "BFFF003A Unable to start operation because setup is invalid."
    any idea what is wrong? help
    BTW, the ADISUSBZ USB board works fine, test with its own software, it is not hardware faulty
    Eric

    Hi Eric
    I have a few questions for you as well as a number
    of likes that will help you.
    What software are you using NI VISA with is it just
    Measurement and automation explorer ?
    Which version of NI VISA are you using?
    Which operating system are you using?
    In measurement and automation explorer is there a
    yellow question mark against the device?
    I would advise reading the likes below if you have
    not already creating the VISA driver again checking the manufacture ID and
    model code if these options are available to you.
    The following link will help you with the VISA
    http://digital.ni.com/public.nsf/websearch/E3A2C4F​E42D7ED0D86256DB7005C65C9
    This tutorial gives a step by step guide on how to
    create a VISA driver.
    http://zone.ni.com/devzone/cda/tut/p/id/4713
    The Difference between USB Raw Control and USB Raw
    Bulk
    http://digital.ni.com/public.nsf/allkb/400D6EAB5CF​E1C6B86257395005F5D48?OpenDocument
    Can VISA Read be used to read USB Interrupt Data?
    http://digital.ni.com/public.nsf/allkb/D38E5A65DA5​4C9A2862571E900810FEA?OpenDocument
    Regards
    Robert
    National Instruments UK & Ireland

Maybe you are looking for

  • Your system say my serial 2C*****0MD is not valid

    Your system say my serial 2C*****0MD is not valid, your software doesn't run, Quickwhatever and all I get is errors, I'm a computer engineer and even I can't follow all the fixes you/others say works. I can't even access from a USB, What's Up? <Edite

  • Add default schema for Parties

    All, Identifiers can be linked to a Party in the Integration Directory.  A number of pre-defined agencies are available: 016 (DUNS), 009 (EAN), 166 (NMETA) and of course http://sap.com/XI/xi.  But is it possible to define agencies myself? I've been s

  • Disounts on Invoice Amount

    Dear Sir, Our company purchasing a material with a disount amount of INR 465 on Price of 1585. So we maintained rate INR 1585 in Info Record and Discount/Quantity as INR 465. But this condition is not coming in PO.system is calculating taxes as per r

  • SharePoint Workflow Manager email urls not changing

    Hello Experts, I have created workflow using VS 2013 in SharePoint 2013 using Workflow Manager every thing is working fine . but over due e-mails  of Task assigned shows url in the form of servername like http://servername/... i want to show FQDN. se

  • Pentax K3 RAW file

    I recently bought a PANTAX K3, but I could not open the RAW file by CS5 Bridge Camera RAW. I have checked the 'Help' without any result in downloading the updated method.