Unable to fill data in Structure

Hello,
i am new to ABAP, started learning a week ago. i am trying to create a structure with 3 fields from two sap tables. Later, i need to fetch data from sap table to populate the structure and display. i am getting an error like "workarea does not contain corresponding components" and when i execute data will be populated in structure but the number of rows is shown (number of rows is 20 but all blank values) i write my code as follows.
TABLES vbak.
TABLES vbap.
SELECT-OPTIONS: so_vbeln FOR vbap-vbeln.
TYPES: BEGIN OF ty_item,
   salesdoch TYPE vbak-vbeln,
   salesdoci TYPE vbap-vbeln,
   materno TYPE vbap-matnr,
   END OF ty_item.
DATA: gt_vbak TYPE STANDARD TABLE OF vbak,
       gs_vbak TYPE vbak,
       gt_vbap TYPE STANDARD TABLE OF vbap,
       gs_vbap TYPE vbap,
       gt_item TYPE STANDARD TABLE OF ty_item,
       gs_item TYPE ty_item.
SELECT vbeln FROM vbak INTO CORRESPONDING FIELDS OF TABLE gt_vbak
   WHERE vbeln IN so_vbeln.
IF gt_vbak IS NOT INITIAL.
   SELECT vbeln matnr FROM vbap INTO CORRESPONDING FIELDS OF TABLE gt_item
     FOR ALL ENTRIES IN gt_vbak
     WHERE vbeln EQ gt_vbak-vbeln.
ENDIF.
LOOP AT gt_item INTO gs_item.
   WRITE: gs_item-salesdoci.
ENDLOOP.
can you please help me how can i fix this issue.

Hi Prasad,
In below query your are retrieving data from field VBELN and MATNR of table VBAP, but if you check structure of internal table gt_item, its filds are salesdoch,  salesdoci,
materno . So system gets confused as in which fields of iternal table gt_item it has to place the records.
   SELECT vbeln matnr FROM vbap INTO CORRESPONDING FIELDS OF TABLE gt_item
     FOR ALL ENTRIES IN gt_vbak
     WHERE vbeln EQ gt_vbak-vbeln.
To resolve above issue you need to mention VBLEN, POSNR and MATNR instead of
   salesdoch,  salesdoci,  materno fields in structure  ty_item.
Thanks & Regards,
Padmakar Kudtarkar

Similar Messages

  • UNABLE TO FILLED DATA IN INFOCUBE

    Hi Gurus,
    1 I'm unable  to  activated and filled 0IC_C03 ınfocube
    2 how can i do with 2LIS_03_BX and 2LIS_03_BF data sources according to procedure.
    3.How BI Reporting is much better than Abap Query .
    Regards
    Meenakshi Sharma

    Hi
    Check this thread:
    Re: difference between ABAP & BI reports
    Regards
    Chandra Sekhar T

  • Fill data in Shipment  Structure

    Hi
    Can any one help me ,How to Fill data in Extract structure MC08TR0FKP Which is under SHIPMENTS and the Data Source is 2LIS_08TRFKP.
    I was able to delete the set up tables.
    Thanks,
    kiran.

    Hi
    To fill the Setup table for the 2LIS_08TRFKP and 2LIS_08TRFKZ Extractors you can use the VIFBW Transaction Code
    Step
    Go to ECC  give the transaction code VIFBW ---> give the ship ment number if  any or else give blank and pressF8
    To fill the Setup table for the 2LIS_08TRTLP, 2LIS_08TRTS and 2LIS_08TRTK Extractors you can use the VTBW Transaction Code.
    If the data source is 2LIS_08TRTLP then  Tcode is is OLI8
    Hope this helps
    santosh

  • Unable to find data in RSA3 for particular fields2lis_04_p_arbpl datasource

    I am working with datasource 2lis_04_p_arbpl to construct Yield Report. I have a field GAMNG(Target Quantity) in the table AFKO, so I added it to the communication structure and activated it. I also want the field IGMNG(confirmed quantity) which is available in the table AFKO but not appearing in the pool tables of ARBPL datasource, so I have done datasource enhancement and obtained the field in the datasource. When I am checking for the data in RSA3, unable to find data(zero values) for both the fields.
    Edited by: bhagav on Jan 5, 2012 1:20 PM

    Hi ,
    Please make sure that you are doing the extractor check in Update mode 'Full' .If the setup tables are filled then this should pick the data for the 2 newly added fields .
    check and update accordingly later .
    Thanks
    Kamal Mehta

  • Unable to capture data from drop down list in custom added field in migo tcode at item level

    Hi guys,
    need bit help in resolving query related to custom added field in Tcode migo.
    i have added a field in migo at item level ,in this i have used drop down list
    to get data but unable to capture data from drop down list.gown through
    many blogs in scn but unable to resolve.
    Please help me out in this.
    Thanks,
    Umakant.

    Hi,
    U can use following code to fill the list box
    write this code in PBO
    In layout editor please select listbox in dropdown attribute of input field and put some fctcode attribute
    TYPE-POOLS vrm.
      DATA values TYPE vrm_values WITH HEADER LINE.
      TABLES: <ur custom Database table>.
      clear values, values[].
      SELECT * FROM <ur custom Database table>.
        values-text = <TABLE FIELD TO DISPLAY IN DROPDOWN> .
        values-key = <TABLE KEY FIELD TO DISPLAY IN DROPDOWN>.
        APPEND values.
      ENDSELECT.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = '<SCREEN INPUT FIELD NAME>'
          values          = values[]
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    Also please define the following before accessing the listbox value
    data: <listbox input field name> type <table field name>,
            <inputfield name where text to display> type string  in top include
    In PAI, select the text from the table into <inputfield name where text to display>  depending on value selected which will be called when enter key is pressed or any vale is selected

  • DropDrown unable to get data in ALV

    Hi,
    I'm trying to put an dropdown by key (or index) into an ALV but I'm unable to get data in the dropdown. Can someone please help me with this?
    I was watching this threads on topics at the forum, but I can not solve this problem.
    Copy my code.
      DATA: lr_col                            TYPE REF TO cl_salv_wd_column,
                 lr_dropdown                  TYPE REF TO cl_salv_wd_uie_dropdown_by_key,
                 l_cmp_usage                TYPE REF TO if_wd_component_usage,
                 l_alv_model                   TYPE REF TO cl_salv_wd_config_table,
                 l_ref_interfacecontroller  TYPE REF TO iwci_salv_wd_table.
      l_cmp_usage = wd_this->wd_cpuse_doc_measure( ).
      IF l_cmp_usage->has_active_component( ) IS INITIAL.
        l_cmp_usage->create_component( ).
      ENDIF.
      l_ref_interfacecontroller = wd_this->wd_cpifc_doc_measure( ).
      l_alv_model = l_ref_interfacecontroller->get_model( ).
      l_alv_model = l_ref_interfacecontroller->get_model( ).
      l_alv_model->if_salv_wd_table_settings~set_read_only( abap_false ).
      lr_col = l_alv_model->if_salv_wd_column_settings~get_column(
        id = 'VALEUR_DIFF' ).
      CREATE OBJECT lr_dropdown
        EXPORTING
          selected_key_fieldname = 'VALEUR_DIFF '.
      lr_col->set_cell_editor( lr_dropdown ).
      DATA:
      lo_nd_ctx_tab TYPE REF TO if_wd_context_node,
      lo_ndinfo_ctx_tab TYPE REF TO if_wd_context_node_info,
      lt_value_set TYPE TABLE OF wdr_context_attr_value,
      ls_value_set TYPE wdr_context_attr_value.
      ls_value_set-value = '01'.
      ls_value_set-text = 'One'.
      APPEND ls_value_set TO lt_value_set.
      ls_value_set-value = '02'.
      ls_value_set-text = 'Two'.
      APPEND ls_value_set TO lt_value_set.
      lo_nd_ctx_tab = wd_context->get_child_node( 'DOC_MEASURE' ).
      lo_ndinfo_ctx_tab = lo_nd_ctx_tab->get_node_info( ).
      lo_ndinfo_ctx_tab->set_attribute_value_set(
        name = 'VALEUR_DIFF' value_set = lt_value_set ).
      DATA: lt_valueset TYPE TABLE OF wdr_context_attr_value,
                ls_valueset TYPE wdr_context_attr_value,
                lr_node TYPE REF TO if_wd_context_node,
                lr_nodeinfo TYPE REF TO if_wd_context_node_info.
      lr_node = wd_context->get_child_node( 'DOC_MEASURE' ).
      lr_nodeinfo = lr_node->get_node_info( ).
      lr_nodeinfo->set_attribute_value_set(
      EXPORTING
        name = 'VALEUR_DIFF'
        value_set = lt_valueset
    Thanks.
    Matías.

    Hi,
    In your code, you are trying to do set_attribute_value_set twice. If you read your code carefully, you are setting the values once using lt_value_set where you have correctly filled the values. But after this, you are again trying using lt_valueset without filling any values. This is why your previous value-list gets overwritten and you see nothing in the dropdown. Remove the following lines in your code and it will work fine.
    DATA: lt_valueset TYPE TABLE OF wdr_context_attr_value,
    ls_valueset TYPE wdr_context_attr_value,
    lr_node TYPE REF TO if_wd_context_node,
    lr_nodeinfo TYPE REF TO if_wd_context_node_info.
    lr_node = wd_context->get_child_node( 'DOC_MEASURE' ).
    lr_nodeinfo = lr_node->get_node_info( ).
    lr_nodeinfo->set_attribute_value_set(
    EXPORTING
    name = 'VALEUR_DIFF'
    value_set = lt_valueset
    Please get back if you are facing any more issues.
    Regards,
    Nithya

  • Powerpivot for sharepoint error: Unable to refresh data for a data connection in the workbook

    Hello,
     I have three errors when i try to use a simple powerpivot workbook published in sharepoint: (nothing on google has help me..)
    1-Unable to refresh data for a data connection in the workbook.
    Try again or contact your system administrator. The following connections failed to refresh:
    PowerPivot Data
    2-The embedded PowerPivot data in the workbook cannot be loaded due to a version mismatch
    3-01/21/2012 17:26:47.08  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel
    Calculation Services     bccc Medium   Session.HandleTrimmedWorkbookReloading: userOperation ApplySlicerSelectionOperation requires BaseWorkbook: "http://crm2011:2020/Marketing%20Reports/test2_excel32bits.xlsx"
    [0x409] [Saturday, 21 January 2012 09:40:18] [BaseWB ID: 2] to be untrimmed if it is currently trimmed. The workbook is currently NOT trimmed. fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.08  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     f1va Medium   CWorkbookWrapper::CWorkbookWrapper: Created with ID=4 fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.09  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     eq3r Medium   ConnectionRequest.ConnectionRequest: New connection request. SessionId=1.V21.4PI+fCwIq52LH++nOoMzs90.5.en-US5.en-US73.-0060#0000-10-00-05T03:00:00:0000#+0000#0000-03-00-05T02:00:00:0000#-006036.bfceb31b-7122-46ca-9e2a-ae52cefcfcaf1.N,
    WorkbookVersion=ConnectionInfo.WorkbookVersion: Uri=http://crm2011:2020/Marketing Reports/test2_excel32bits.xlsx, Version=Saturday, 21 January 2012 09:40:18 fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     aysl Medium   Succeeded to initialize a chart. fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12  w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     8xk9 Medium   ExternalSource.ExecuteOperation: We exhausted all available connection information. Exception: Microsoft.Office.Excel.Server.CalculationServer.Interop.ConnectionInfoException: Exception of type
    'Microsoft.Office.Excel.Server.CalculationServer.Interop.ConnectionInfoException' was thrown.     at Microsoft.Office.Excel.Server.CalculationServer.ConnectionInfoManager.GetConnectionInfo(Request request, String externalSourceName, Int32
    externalSourceIndex, Boolean& shouldReportFailure)     at Microsoft.Office.Excel.Server.CalculationServer.ExternalSource.ExecuteOperation(Request request, ExternalSourceStateInfo externalSourceStateInfo, ExternalSourceStateInfo prevExternalSourceStateInfo,
    Int32 index, ConnectionInfoManager connectionInfoManager, ExternalDataScenario scenario, DataOperation dataOpe... fb614a65-e398-4b97-a98d-fb7b23eab39f
    01/21/2012 17:26:47.12* w3wp.exe (0x1950)                        0x0AD0 Excel Services Application     Excel Calculation
    Services     8xk9 Medium   ...ration, Boolean verifyPreOperationConnection), Data Connection Name: PowerPivot Data, SessionId: 1.V21.4PI+fCwIq52LH++nOoMzs90.5.en-US5.en-US73.-0060#0000-10-00-05T03:00:00:0000#+0000#0000-03-00-05T02:00:00:0000#-006036.bfceb31b-7122-46ca-9e2a-ae52cefcfcaf1.N,
    UserId: 0#.w|contoso\manager fb614a65-e398-4b97-a98d-fb7b23eab39f
    My server and client olap versions are the same: MSOLAP.5, i used sql server 2008 R2 SP1 and sharepoint 2010 SP1 and reboot or iisreset have no effect
    Thanks in advance for your help

    Hello Challen Fu
    I would be so grateful if you could please help me out
    I have been trying to find a solution to the same error message
    In my case, the power pivot reports were working before on a regular team  site , but then two things changed:
    a)  I  created a toplevel site using the BI Center template. Now I am using a Business Intelligence template , created a power pivot gallery library and uploaded a few powerpivot reports
    b)  On the  backend, the database instance was upgrated to SQL Server 2012 
         Front end Server VDSP01  remains  SQL Server 2008 R 2 where Sharepoint 2010  was installed as a FARM  
    Now, the reports will display in sharepoing however they will not refresh. the error message i get is the same.
     Scenario recap:
    a- Server VDSP01  uses SQL Server 2008 R 2 where Sharepoint 2010  was installed as a FARM
    b- On the back end,  the database instance name was replaced with SQL 2012 Server:
               from SQL Server 2008 R 2 (instance DBDEV-COTS\COTS)
               to     SQL Server 2012 ( instance VTSQL01\COTS)
    c-  I was told that:
         From VDSP01, they ran
    CliConfg.exe   to create SQL Server Alias :
           where    BEFORE: vdsharepoint -->  DBDEV-COTS\COTS
                and  AFTER    : vdsharepoint -->  VTSQL01\COTS
     I appreciate in advance any help you can provide<v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe" stroked="f">
      <v:stroke joinstyle="miter">
      <v:formulas>  <v:f eqn="if lineDrawn pixelLineWidth 0">
      <v:f eqn="sum @0 1 0">
      <v:f eqn="sum 0 0 @1">
      <v:f eqn="prod @2 1 2">
      <v:f eqn="prod @3 21600 pixelWidth">
      <v:f eqn="prod @3 21600 pixelHeight">
      <v:f eqn="sum @0 0 1">
      <v:f eqn="prod @6 1 2">
      <v:f eqn="prod @7 21600 pixelWidth">
      <v:f eqn="sum @8 21600 0">
      <v:f eqn="prod @7 21600 pixelHeight">
     <v:f eqn="sum @10 21600 0">
    </v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:formulas>
     <v:path gradientshapeok="t" o:connecttype="rect" o:extrusionok="f">
    <o:lock aspectratio="t" v:ext="edit">
    </o:lock></v:path></v:stroke></v:shapetype> <v:shape alt="" id="Picture_x0020_2" o:spid="_x0000_i1025" style="width:630pt;height:475.5pt;" type="#_x0000_t75">
    <v:imagedata o:href="cid:[email protected]" src="file:///C:\Users\wlarange\AppData\Local\Temp\msohtmlclip1\01\clip_image001.jpg">
    </v:imagedata></v:shape>
    wanda larangeira

  • How to download interactive adobe form with filled data

    Hi Experts,
    i have created a module pool program that is showing interactive adobe form, i created a button 'SAVE' to download the interactive adobe form to the presentation server.
    but the problem is that i am unable to save the interactive adobe form with filled data. Please provide me the code how to download interactive adobe form with filled data.
    Please provide me valuable information to clear the issue.
    Thank you,
    B. Raghu Prasad.

    Hi Raghu,
    is this adobe form in web dynpro ? if so, I suggest to go to [Web Dynpro |Web Dynpro ABAP; forum to get more advice because it seems to be more specific topic.
    Regards,
    Vincent

  • Adobe Reader unable to fill in Secured Fillable Adobe Forms on ipad

    I am unable to fill in my Adobe Fillable Secure Form using Adobe Reader. Help!    

    Currently, the Adobe Reader mobile products (Reader for iOS, Android) do not allow users to make changes (including filling in form fields) to secure/protected PDF documents (whose contents are encrypted).  Because saving encrypted data has not been supported yet.
    Please use the desktop version of Adobe Reader on a Windows or Mac computer to fill in the secured fillable forms, instead.  Sorry for the inconvenience.

  • Deleted Rows Flashback : unable to read data - table definition has changed

    Hi All,
    Its Really Important.
    I Unfortunately truncated a table using
    Trancate table mytable;
    and Made a alter table to decrease data pricision length.
    But i Need the tabla data back,
    i used the below command to get deleted rows, it shows error.
    query : select * from pol_tot versions between timestamp systimestamp-1 and systimestamp;
    error : ORA-01466: unable to read data - table definition has changed
    query : flashback table pol_tot to timestamp systimestamp - interval '45' minute;
    error : ORA-01466: unable to read data - table definition has changed
    Kindly Share your ideas How Can i Get thoose Deleted Records.
    Edited by: 887268 on Jul 8, 2012 12:26 AM

    BluShadow wrote:
    Khayyam wrote:
    Flashback dont works after DDL. Truncate command is DDL. Only recover from backup can help.Please don't spread untrue statements.Working of flashback after Drop command is so clear to say. I mean such DDL commands as CREATE, ALTER, TRUNCATE and so on...
    "Remember that DDLs that alter the structure of a table (such as drop/modify column, move table, drop partition, truncate table/partition, and add constraint) invalidate any existing undo data for the table. If you try to retrieve data from a time before such a DDL executed, you will get error ORA-1466. DDL operations that alter the storage attributes of a table (such as PCTFREE, INITRANS, and MAXTRANS) do not invalidate undo data."
    [http://docs.oracle.com/cd/B28359_01/appdev.111/b28424/adfns_flashback.htm#BJFJHDAG]

  • Not filling data in data base using Idoc

    Hi experts,
    I have a problem while filling data to data base table. My issue is
    I'm transferring data from c4c to crm, when customer filling the custom fields in header level for contacts in C4C, the idoc structure is filled but when I look the database table  but000  the custom fields values are not updated.
    Thanks,
    Ashok.

    Hi Ashok
    What IDoc basic/extension and message type are you using? And what corresponding process code are you using in the inbound partner profile?
    If you are using standard for the above, then definitely the custom fields will not be populated automatically - you will need to have custom logic in a relevant user-exit/BADI to extract the custom fields from the IDoc structure and populate it into the table.
    Rgds
    Eng Swee

  • Fill data in Shipment

    Hi
    Can any one help me ,How to Fill data in Extract structure MC08TR0FKP Which is under SHIPMENTS and the Data Source is  2LIS_08TRFKP.
    I was able to delete the set up tables.
    Thanks,
    kiran.
    Please do not post across forums..
    Fill data in Shipment  Structure

    Hi
    To fill the Setup table for the 2LIS_08TRFKP and 2LIS_08TRFKZ Extractors you can use the VIFBW Transaction Code
    Step
    Go to ECC  give the transaction code VIFBW ---> give the ship ment number if  any or else give blank and pressF8
    To fill the Setup table for the 2LIS_08TRTLP, 2LIS_08TRTS and 2LIS_08TRTK Extractors you can use the VTBW Transaction Code.
    If the data source is 2LIS_08TRTLP then  Tcode is is OLI8
    Hope this helps
    santosh

  • The way to fill data in test

    Hey friends
    Can anyone say me ,what is best way to fill data in test from Development .I want to take data from production to test every day .Every day many transaction occurs here and i want to modify all that happened to production.
    Thanks in Advance
    Tinku

    The problem, I'm assuming, with that is that there is presumably data in the dev/test environments that is not in prod that needs to be in dev/test. There will almost certainly be new and modified database objects and new or modified procedures in dev/test that ought not be overwritten.
    You could work around that issue by creating every table in dev/test as an updatable materialized view. The problem there is that will set up a situation where production performance is potentially affected by issues on dev/test and that the objects you're working with in dev/test aren't the same as they are in prod (MVs rather than tables), which generally goes against the point of dev/test.
    That leaves you creating a staging schema of materialized views and creating a custom ETL routine to extract data from those MVs (or from prod directly, but that puts a bigger burden on prod) and add it to your tables (noting that the ETL routines need to change whenever changes are made to the structure of your database and that calculated fields sometimes need to be recalcualated with the updated logic in dev/test). 99% of the time someone thinks they want what you're asking for, they realize that they don't want daily refreshes that badly when they start looking into the complexity of implementing it.
    The vast majority of applications have no problem running with data that is a few months out of date, so you can recover prod to test after, say, a regularly scheduled build.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Unable to display data in BI publisher Report

    Hi,
    We are developing BI publisher reports in siebel 8.1.1.
    We are able to preview data perfectly with the rtf which we developed and by loading sample data file generated based on integration object.
    we uploaded the template file into the application associated with the integration object and generated xliff and tagged it to a view.
    When we navigated to that view and trying to run the report. the report is generating but unable to view data in that report .
    on checking siebel log we found the below error....
    ObjMgrLog     Error     1     000000024b97169c:0     2010-03-10 20:24:01     (bcfile.cpp (5808)) SBL-SVC-00185: Error occurred while deleting file 'Error occurred while deleting file 'C:\Siebel81\Client\Local\files\S_XMLP_REPOUTPT_17XF-3PM_.SAF'.'.
    did anyone of you faced this kind of issue....?
    Please help .
    Maneesh

    Thanks for you reply,
    Our scenario is this report is basically a dissconnected mode report... we are developing these reports for mobile clients.
    We dint face this kind of issue while developing other reports.
    So please let us know if you have any idea on why we are facing this issue.
    Regards,
    Maneesh

  • OraRRP Error with "Unable to copy data file;Error code 2, check disk space"

    Hi,
    Some users get this message -"Unable to copy data file;Error code 2, check disk space" when run report with orarrp, but most users do not get it.
    I check free space at both server and client side, they are very sufficient.
    I also checked directory exists for REPORTXX_TMP variable.
    My user call reports via URL (rwservlet) and it occur for all reports.
    How I can solve this problem?
    Thanks in advance.
    Tawatchai R.

    Hi,
    have the same problem now. One user has temporarily problems to download .rrpa files via URL (rwservlet) request. Error code: -"Unable to copy data file;Error code 2, check disk space". Did you get a solution??
    Thanks in advance. Axel

Maybe you are looking for

  • To add additonal rows(text)  in ALV report

    Hi there, I want to add additional ROWS at the bottom of each grouping. Right now I am getting customer wise total comission amount but the requirement is on commsion amt ,i need to calculate 10 % tax and 2% tax and these taxes should get genrated be

  • No Export DLLs found

    When using Crystal XI Developer, I can create and export reports to Excel, pdf, and other formats just fine. When using a ICRDesigner in VB6, the report will display and print just fine, but when I click the export button, I get "No Export DLLs found

  • Urgent !!!!!!!! E recruiting - Candidate Search not working

    Hi experts, Candidate search of e recruiting is not working. As there are many candidates available in the system still its giving 0 search result. I am not getting why this is happening. Is there any spro setting required?? Is TREX must for this?? I

  • Selecting from ORDSYS.ORDImage field

    I have a table which contains a photo field of type ORDSYS.ORDImage. I can select images from that table to a report from query wizard, because there in display option you can check "Embed interMedia rich content in the report" -option. That option d

  • Iphone5 and losing pictures

    My previous question regarding iphone5 and missing photos was a bit off. My daughter received an iphone 5 for Christmas, I took her iphone4. After speaking with many Verizon people we thought we transferred my cell number to the 4 without a problem.