Transition of Sybase to Oracle with fields which are NULL

Why does Oracle 9i handle an empty field as null.

Hey Wei-Ming Tchay,
  For Your requirment dont give manditory options. Write the code in PAI for displaying the error message ( If the field is initial ) and put the condition to execute the code when the user press execute button only.
Just follow the following suggations.
At selection-screen.
if sy-ucomm eq 'ONLI'.
  wite actual condition here.
endif.
Note : The function code ONLI is for execute button.
Regards,
Mahi.

Similar Messages

  • Creating Custom fields which are sales org dependent in Accounts Master

    Hello Experts,
    I want to create new custom fields in Accounts Master for sales and shipping.The component being used is BP_SALES.However when I try to create custom fields through AET, the new fields are added in the BUILHEADER context node.The problem with this is, its making the fields Sales Org independent.
    I want to add the fields which are sales org dependent( i.e. want to add the fields for the context nodes BUILSHIPPINGTERMS and BUILSALESARRANGEMENT).
    Please help me in this regards,
    Thanks and Regards,
    Rahim
    Edited by: Abdul Rahim on Dec 27, 2010 9:55 AM

    Hi Rahim,
    in general extension fields for Business Partner are only supported for the header fields (Table BUT000). Therefore the AET does not offer this.
    Table extension for BP sales data is supported by the AET beginning from CRM 7.0 eHP1. If you have this you can just create a 1:1 table enhancements and should be happy. If not I'm afraid that you would have to implement this manually.
    Using the Easy Enhancement Workbench (EEW) it would only be possible to create table extensions for the header and for relation ship but not for sales data.
    Regards Matthias

  • How to export fields which are rendered false from a page?

    Hi ,
    I have a requirement to export the data to excel, i am able to do it using export button.
    but the problem is i need to export the all the fields which are there in the VO query but some of them are not renderd on the page.
    Please suggest some solution for this.
    Thanks

    Hi,
    Can you add them in the page to formValueBeans and check the issue.
    Thanks.
    With Regards,
    Kali.
    OSSi.

  • I'm using OS 10.6.8 and Mail 4.5. When I receive mails with attachments which are visible the save button doesn't work. Some contacts have problems opening files sent by me using Mail too. This was never a problem on pre-Intel. A real Mac **** up !

    I'm using OS 10.6.8 and Mail 4.5. When I receive mails with attachments which are visible the save button doesn't work. And some contacts occasionally have problems opening files sent by me using Mail too. This was never a problem on pre-Intel Mac. A real Mac **** up ! Any ideas ?

    Can you drag and drop the attachments visible in the email to the Desktop OK or does that fail ?
    Re the sending: Are these recipients on Mac's or PC's as the file type could be an issue, if on Mac's then try setting the Mail Preferences Composing setting to Plain Text not Rich Text and see if that improves things.

  • How to get the screen groups for the screen field which are on selectionscn

    hiiii Experts,
                   How to know the screen groups for the screen field which are on selection screen.
    Thanks and regards,
    kasyap

         NAME                                             PNPABKRS-LOW
            GROUP1                                             SEL
            GROUP2                                             DBS
            GROUP3                                             LOW
            GROUP4                                             180
    to get this use this:
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        if screen-name CS 'ABKRS'.
          BREAK-POINT.
        endif.
      ENDLOOP.

  • Using MISSING FIELD VALUES ARE NULL for external table

    I want to place a null for values missing in the sub_account field. Here is my external table:
    CREATE OR REPLACE DIRECTORY INCOMING_ORDERS_log_dir
    AS 'c:\starpubs\starpubs\dataformats\logs\INCOMING_ORDERS\log';
    CREATE OR REPLACE DIRECTORY INCOMING_ORDERS_bad_dir
    AS 'c:\starpubs\starpubs\dataformats\logs\INCOMING_ORDERS\bad';
    create table ext_INCOMING_ORDERS_table (
    Account varchar(5),
    Sub_Account varchar(1),
    Override_Code varchar(1),
    Nomenclature varchar(28),
    chg_nbr varchar(3),
    quantity integer,
    U_I varchar(5),
    zipcode varchar(5),
    type_reject varchar(2)
    organization external
    type oracle_loader
    default directory user_dir
    access parameters
    records delimited by newline
    missing field values are null
    badfile INCOMING_ORDERS_bad_dir:'INCOMING_ORDERS%a_%p.bad'
    logfile INCOMING_ORDERS_log_dir:'INCOMING_ORDERS%a_%p.log'
    fields
    Account(1:5) char(5),
    Sub_Account(7:7) char(1),
    Override_Code(10:10) char(1),
    Nomenclature(11:38) char(28),
    chg_nbr(40:42) char(3),
    quantity(44:48) integer external,
    U_I(50:54) char(5),
    zipcode(56:60) char(5),
    type_reject(61:62) char(2)
    location('PTCLICK.MANUAL.NOMEN.TXT','PTCLICK.ORDERS.TXT', 'EUR_RES.TXT', 'MQ.TXT', 'BPRO.TXT')
    reject limit unlimited;
    How can I place the MISSING FIELD VALUES ARE NULL for missing values for the sub_account?

    made the change I received this error:
    SQL> select * from ext_INCOMING_ORDERS_table;
    select * from ext_INCOMING_ORDERS_table
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-00554: error encountered while parsing access parameters
    KUP-01005: syntax error: found "no": expecting one of: "comma, date_format,
    defaultif, enclosed, ltrim, lrtrim, ldrtrim, notrim, nullif, optionally, ),
    rtrim, terminated"
    KUP-01007: at line 7 column 26
    CREATE OR REPLACE DIRECTORY INCOMING_ORDERS_log_dir
    AS 'c:\starpubs\starpubs\dataformats\logs\INCOMING_ORDERS\log';
    CREATE OR REPLACE DIRECTORY INCOMING_ORDERS_bad_dir
    AS 'c:\starpubs\starpubs\dataformats\logs\INCOMING_ORDERS\bad';
    create table ext_INCOMING_ORDERS_table (
    Account varchar(5),
    Sub_Account varchar(1),
    Override_Code varchar(1),
    Nomenclature varchar(28),
    chg_nbr varchar(3),
    quantity integer,
    U_I varchar(5),
    zipcode varchar(5),
    type_reject varchar(2)
    organization external
    type oracle_loader
    default directory user_dir
    access parameters
    records delimited by newline
    badfile INCOMING_ORDERS_bad_dir:'INCOMING_ORDERS%a_%p.bad'
    logfile INCOMING_ORDERS_log_dir:'INCOMING_ORDERS%a_%p.log'
    fields
    Account(1:5) char(5),
    Sub_Account(7:7) char(1) NO PRESERVE BLANKS,
    Override_Code(10:10) char(1),
    Nomenclature(11:38) char(28),
    chg_nbr(40:42) char(3),
    quantity(44:48) integer external,
    U_I(50:54) char(5),
    zipcode(56:60) char(5),
    type_reject(61:62) char(2)
    location('PTCLICK.MANUAL.NOMEN.TXT','PTCLICK.ORDERS.TXT', 'EUR_RES.TXT', 'MQ.TXT', 'BPRO.TXT')
    reject limit unlimited;

  • How to clear the form fields which are not rendered

    I have a creation form. There is a document_type list set up as a partial triger. When user change the document type, only the filed related to that document type will be rendered. This caused a problem when we need to clear the form . The input in the field which is not render won't be cleared when reset button is pressed. Can anybody give a sugestion on how to handle this?
    I tried to use the following function to clear the fields. It does not work since it get the list value before the list value change and clear the fields after the new field rendered.
    public void clear_action(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    System.out.println("test1");
    String coutcase = null;
    if(EL.get("#{bindings.Proxy.inputValue}") != null){
    coutcase = EL.get("#{bindings.Proxy.inputValue}").toString();
    System.out.println(coutcase);
    AttributeBinding a11= (AttributeBinding)getBindings().getControlBinding("INT_FNAM");
    AttributeBinding a12 = (AttributeBinding)getBindings().getControlBinding("INT_LNAM");
    AttributeBinding a13 = (AttributeBinding)getBindings().getControlBinding("TIT_PROG");
    AttributeBinding a14 = (AttributeBinding)getBindings().getControlBinding("T_OF_INT");
    AttributeBinding a15 = (AttributeBinding)getBindings().getControlBinding("NETWORK");
    AttributeBinding a16 = (AttributeBinding)getBindings().getControlBinding("IN_DATE");
    AttributeBinding a17 = (AttributeBinding)getBindings().getControlBinding("PE_FNAM");
    AttributeBinding a18 = (AttributeBinding)getBindings().getControlBinding("PE_IN_LNAM");
    AttributeBinding a19 = (AttributeBinding)getBindings().getControlBinding("WEBSITE");
    AttributeBinding a20 = (AttributeBinding)getBindings().getControlBinding("URL");
    AttributeBinding a21 = (AttributeBinding)getBindings().getControlBinding("INT_DATA");
    AttributeBinding a22 = (AttributeBinding)getBindings().getControlBinding("D_ACCESS");
    AttributeBinding a23 = (AttributeBinding)getBindings().getControlBinding("CASE_NUM");
    AttributeBinding a24 = (AttributeBinding)getBindings().getControlBinding("COURT");
    AttributeBinding a25 = (AttributeBinding)getBindings().getControlBinding("PLAIN");
    AttributeBinding a26 = (AttributeBinding)getBindings().getControlBinding("DEFEN");
    if(coutcase.equals("Interview")) {
    a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);
    /*a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);
    a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);*/
    } else if(coutcase.equals("Internet")){
    /*a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);*/
    a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);
    /*a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);*/
    } else{
    /*a11.setInputValue(null);
    a12.setInputValue(null);
    a13.setInputValue(null);
    a14.setInputValue(null);
    a15.setInputValue(null);
    a16.setInputValue(null);
    a17.setInputValue(null);
    a18.setInputValue(null);
    a19.setInputValue(null);
    a20.setInputValue(null);
    a21.setInputValue(null);
    a22.setInputValue(null);*/
    a23.setInputValue(null);
    a24.setInputValue(null);
    a25.setInputValue(null);
    a26.setInputValue(null);
    }else{
    System.out.println("coutcase is null");
    }

    Hi,
    The easiest way to modify the screens in the Std transactions using ITS is to modify the ITS templates corresponding to that transaction.
    E.g In you case,there will be a ITS service corresponding to the ESS transaction.This ITS service will have  number of HTML templates which will actually correspond to the diffrent screens in the Trascn.What you need to do is find out the HTML template in the ITS service which corresponds to the screen(which you want to modify) in the STd transacn.To do this ,the easiest way is to right click on that Web page and say VIEW SOURCE.It will show you a HTML code with the ITS service name and the template which is being used for that particular screen.
    So after you find out the correct HTML template to be modified,you can simply hide the fields by putting the HTML code lines in between the symbols
      <!   and  -->
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • Detect the fields which are primary/foreign keys for each schema's tables

    Hello everybody,
    I'd like to know if it's possible to select a field in one of the dictionary tables to identify the fields of a table which are PK or FK in this one. I'd like to do this to generate the fields that I need to put in a technical design.
    Actually I have this (if it can help you to understand what I'd like to do) :
    select table_name "Table name",
    column_name "Physical field name",
    case when data_type = 'NUMBER' then data_type || '(' || NVL(data_precision,0) || ',' || NVL(data_scale,0) || ')'
    when data_type = 'VARCHAR2' then data_type || '(' || data_length || ')'
    else data_type
    end "Datatype",
    case when nullable = 'Y' then 'FALSE'
    when nullable = 'N' then 'TRUE'
    end "Not null",
    /* Here I'd like to retrieve TRUE or FALSE if the field to display is a primary key or not and the same for foreign keys*/
    from all_tab_columns
    where table_name in (select table_name
    from all_tables
    where table_name like '%project_name%'
    and table_name not like '%TMP%');
    Thanks a lot for your help,
    Florent

    Please investigate all_constraints and all_cons_colums.
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14237/toc.htm

  • ALV fields which are not referenced to data dictionary table fields

    Hello,
    I am using function module reuse_alv_popup_to_select.
    How do I display fields in ALV which are not referenced to
    data dictionary table fields.
    I am showing 4 columns in alv out of which first column is checkbox
    and remaining 3 columns are from data dictionary and it works fine.
    Now I need to add one more column which is of type checkbox.
    I have added this field in my ITAB as flag(1) type C.
    When I add this flag field in the field catalog, I get exception.
    Regards,
    Vishal.

    Hey guys,
    Finally I got rid of such a stupid problem.
    There were no problem in the code.
    while assigning fieldname to field catalog I had given fieldname
    in lowercase.
    I changed it to uppercase and problem got solved.
    Thanks,
    Vishal.

  • Fields which are possible 4 change in a service entry sheet after approval

    Dear Guru's,
    I find that after a service entry sheet is approved (automatic GR is done at this stage as well), there is not even 1 field which can be changed. Is there a way to make some fields changeable without going through the reversal process or cancelling the GR and cancelling the approval in the service entry sheet? Im looking to change the Header Short Text (Field Name = TXZ01). Is this possible ?
    Thanks in advance..

    Hi,
    After approval of a SES, no changes can be done further.  if you want to make any changes first reverse the acceptance. 
    regards
    alexandro

  • How to identify fields which are fast approaching the size limits

    Hi All,
    Is there an easy (or any) way of identifying Database fields whose field sizes are close to the limits.
    Example: I have field called SEQ_NUM, size of the field is 3 and currently latest value in the filed is 995, soon it will be a 1000.
    Thanks
    Raghu

    Hi, Raghu,
    Assuming your statistics are up to date, you can start with the information in the data dictionary view user_tab_columns (or all_tab_columns, or dba_tab_columns).
    The column high_value is a RAW representing the highest value. There's a conversion function in the supplied package utl_raw.
    The column data_precision is the maximum number of digits, and data_scale is the number of them to the right of the decimal point
    SELECT     table_name
    ,     column_name
    ,     utl_raw.cast_to_number (high_value)     AS actual_high
    ,     POWER (10, data_precision - data_scale)     AS possible_high
    FROM     user_tab_columns
    WHERE     data_type     = 'NUMBER'
    AND      ( utl_raw.cast_to_number (high_value)          -- actual_high
          / POWER (10, data_precision - data_scale)     -- possible_high
          ) > .95      -- or whatever
    ;I'm sure there are lots of special cases (large negative numbers, for example) that this will not catch.

  • Find columns which are null

    Hello all, I am currently developing a data warehouse that holds time-series values. In the 5-min interval fact table, there is a column for every 5-minute segment of a 12 hour period. So I have a few foreign keys which make up a composite primary key in the fact table, followed by generally-named columns m0,m5,m10...m1145,m1150,m1155 (m0 represents 00:00 [12:00] and m1155 represents 11:55). There is a flag in the row to denote AM or PM. This database collects various metrics from a Coherence environment for a live monitoring solution that also has a Historian to track trends, get a graphical historical overlay against the current values coming into the live environment, etc.
    So I have this table with aggregation at a 5 minute level and will need to roll this up to hourly and daily aggregation levels during an ETL process. I'd like to be able to pinpoint which data, if any, has holes in it IE the collectors hiccupped somewhere for whatever reason and did not report a 5 minute segment to me.
    Is there anyway to find rows which have null values and to report back which column names contain null values? A use case would be that I have a row in the 5 min fact table that contains a null value for column m455, which means that there is a gap in my time series at the 4:55 hour for that object. During ETL roll ups, I'd like to be able to record which time slot has "holes", or null values in them so that we can pinpoint why they occur to prevent them from occurring again during the development process of this solution.
    Thanks for anyone's help!!
    Regards,
    TimS

    TimS wrote:
    create table f_metric_5_min (
         metric_key number(10) not null,
         object_key number(19) not null,
         date_key number(5) not null,
         segment_id number(1) not null,
         m0 number(19,4),
         m5 number(19,4),
         m10 number(19,4),
         m15 number(19,4),
         m20 number(19,4),
         m25 number(19,4),
         m30 number(19,4),
         m35 number(19,4),
         m40 number(19,4),
         m45 number(19,4),
         m50 number(19,4),
         m55 number(19,4),
         m100 number(19,4),
         m105 number(19,4),
         m110 number(19,4),
         m115 number(19,4),
         m120 number(19,4),
         m125 number(19,4),
         m130 number(19,4),
         m135 number(19,4),
         m140 number(19,4),
         m145 number(19,4),
         m150 number(19,4),
         m155 number(19,4),
         m200 number(19,4),
         m205 number(19,4),
         m210 number(19,4),
         m215 number(19,4),
         m220 number(19,4),
         m225 number(19,4),
         m230 number(19,4),
         m235 number(19,4),
         m240 number(19,4),
         m245 number(19,4),
         m250 number(19,4),
         m255 number(19,4),
         m300 number(19,4),
         m305 number(19,4),
         m310 number(19,4),
         m315 number(19,4),
         m320 number(19,4),
         m325 number(19,4),
         m330 number(19,4),
         m335 number(19,4),
         m340 number(19,4),
         m345 number(19,4),
         m350 number(19,4),
         m355 number(19,4),
         m400 number(19,4),
         m405 number(19,4),
         m410 number(19,4),
         m415 number(19,4),
         m420 number(19,4),
         m425 number(19,4),
         m430 number(19,4),
         m435 number(19,4),
         m440 number(19,4),
         m445 number(19,4),
         m450 number(19,4),
         m455 number(19,4),
         m500 number(19,4),
         m505 number(19,4),
         m510 number(19,4),
         m515 number(19,4),
         m520 number(19,4),
         m525 number(19,4),
         m530 number(19,4),
         m535 number(19,4),
         m540 number(19,4),
         m545 number(19,4),
         m550 number(19,4),
         m555 number(19,4),
         m600 number(19,4),
         m605 number(19,4),
         m610 number(19,4),
         m615 number(19,4),
         m620 number(19,4),
         m625 number(19,4),
         m630 number(19,4),
         m635 number(19,4),
         m640 number(19,4),
         m645 number(19,4),
         m650 number(19,4),
         m655 number(19,4),
         m700 number(19,4),
         m705 number(19,4),
         m710 number(19,4),
         m715 number(19,4),
         m720 number(19,4),
         m725 number(19,4),
         m730 number(19,4),
         m735 number(19,4),
         m740 number(19,4),
         m745 number(19,4),
         m750 number(19,4),
         m755 number(19,4),
         m800 number(19,4),
         m805 number(19,4),
         m810 number(19,4),
         m815 number(19,4),
         m820 number(19,4),
         m825 number(19,4),
         m830 number(19,4),
         m835 number(19,4),
         m840 number(19,4),
         m845 number(19,4),
         m850 number(19,4),
         m855 number(19,4),
         m900 number(19,4),
         m905 number(19,4),
         m910 number(19,4),
         m915 number(19,4),
         m920 number(19,4),
         m925 number(19,4),
         m930 number(19,4),
         m935 number(19,4),
         m940 number(19,4),
         m945 number(19,4),
         m950 number(19,4),
         m955 number(19,4),
         m1000 number(19,4),
         m1005 number(19,4),
         m1010 number(19,4),
         m1015 number(19,4),
         m1020 number(19,4),
         m1025 number(19,4),
         m1030 number(19,4),
         m1035 number(19,4),
         m1040 number(19,4),
         m1045 number(19,4),
         m1050 number(19,4),
         m1055 number(19,4),
         m1100 number(19,4),
         m1105 number(19,4),
         m1110 number(19,4),
         m1115 number(19,4),
         m1120 number(19,4),
         m1125 number(19,4),
         m1130 number(19,4),
         m1135 number(19,4),
         m1140 number(19,4),
         m1145 number(19,4),
         m1150 number(19,4),
         m1155 number(19,4),
         constraint f_metric_5_min_pk primary key (metric_key, object_key, date_key, segment_id),
         constraint f_metric_5min_fk_metric_key foreign key (metric_key) references d_metric (metric_key),
         constraint f_metric_5min_fk_object_key foreign key (object_key) references d_object (object_key),
         constraint f_metric_5min_fk_date_key foreign key (date_key) references d_date (date_key)
    ) partition by range(date_key) (
         PARTITION def values less than (2558)
    ) tablespace FACT;The reason to define separate columns for time intervals is because need to see data coming from Coherence enviroment in 5 minute intervals, creating a row for each 5 min interval for each object (thousands) is too time-consuming. Using MERGE is much faster to update columns in the same row. And secondly, because my job tells me to go with this logical model :).
    I can understand the "job-tells-me" reason but not sure am convinced with the "time-consuming" issue,
    especially as it is a datawarehouse. But I assume you must have verified the same.:)
    The NULL-finding exercise will be done after the data is loaded into the 5 minute metric table and before the hourly roll-up ETL.
    Not sure what you mean in what format, I plan to build a list and place them into a form of auditing table within the database that will be queried in the future to determine where the gaps are and for what objects so that we can trace them back to a certain JVM and coherence collector and fix the issue from occuring again; hence the point of a monitoring tool.
    Storing time in a table can take up a lot of space and is harder to compute procedurally. In this model the database does not care about the time, only the data; the date and time is not a focal point for this database, the database is abstract, with the Java behind it controlling the purpose of its data. The reporting engine after-the-fact cares about dates and such which can be easily determined by referencing to dimension tables to determine which column represents which time in the 12 hour sequence.
    Going back to the "null-finder" do you think there is any way to do this? Thanks for your help!
    Regards,
    TimSDo you mean that you want to get only those columns where there is a NULL value, for a record-at-a-time ?
    In that case, the only option that I can think of is building a Dynamic SQL, based on checking whether each column has a NULL value or not. Although, I hope somebody can come up with a better way to achieve the same.
    (Else, your not considering "time-consuming" approach above becomes not much of advantage, isn't it ?) :)
    (Of course, only if "null-finding" is a MUST exercise...)

  • APEX: Store Values of fields which are created dynamically(Using APEX_ITEM)

    Hello All,
    I am creating one application in which i create one report with dynamic fields(using APEX_ITEM Package) and non-dynamic fields(Taking from table). Now i want to store the value of the dynamic fields into table. So please help me on that.
    I want to store value of APEX_ITEM.TEXT fields in a table, but i don't have names of it so how to store value in table?
    select APEX_ITEM.CHECKBOX2(1,HC.S_ID) "SELECT",
    HC.ACT_NAME,HC.REBOOT_DATE,
    APEX_ITEM.TEXT(2,00) "Start Time",
    APEX_ITEM.TEXT(3,00) "End Time",
    APEX_ITEM.TEXTAREA(4,'Enter Remarks',2,40) "Remarks" FROM HWC_CHK_SCHEDUELE HC;
    Thanks,
    Jiten

    Let me clarify a finer point. The APEX_ITEM API provides for value , which can come from a table.
    You need to add APEX_ITEM to your columns selected from the table as well.
    Once you have done that then the p_idx value , the first numeric, in the APEX_ITEM, is accessing in DOM as well as PL/SQL.
    In DOM, for JavaScritps, the p_idx 1 becomes f01, 2 becomes f02 ,etc.
    In PLSQL the same are APEX_APPLICATION.G_F01, APEX_APPLICATION.G_F02, etc.
    Hope that explains what you need to do.
    select APEX_ITEM.CHECKBOX2(1,HC.S_ID) "SELECT",
    APEX_ITEM.TEXT(2,HC.ACT_NAME) "ACT_NAME",
    APEX_ITEM.DATE_POPUP(3,HC.REBOOT_DATE) "REBOOT_DATE",
    APEX_ITEM.DATE_POPUP(4,SYSDATE) "Start Time",
    APEX_ITEM.DATE_POPUP(5,SYSDATE) "End Time",
    APEX_ITEM.TEXTAREA(4,'Enter Remarks',2,40) "Remarks"
    FROM HWC_CHK_SCHEDUELE HC  /* no semi colon in SQL; */In the OnSubmit process
    FOR I IN APEX_APPLICATION.G_F02.COUNT LOOP
      -- LOGIC HERE.
    END LOOP;Note I have not used Check box F01 in the above code. Look up the documentation for checkbox in Referencing Arrays. Checkbox behaves different as compared to other item types.
    BTW, why are you not using Tabular form for this?
    Regards,
    Edited by: Prabodh on May 9, 2012 5:32 PM

  • UnMapping Fields which are sent from XI

    Hi ,
    Scenario : I am doing an auto import of data . I receive an XSD from and an XML which has 40 fields and in the MDM system i have only 30 fields to map . Is this possible.If i do not map my source to any destination will it throw a structural exception ???
    Regards,
    Vignesh

    Hi Vignesh,
    This wont be a issue at all.
    It is good to keep some fields extra fields in xsd as at some point in future there can be a requirement to import those field values in MDM,when that heppens you simply have to map those required and save the map.
    Thanks,
    Ravi

  • How to use fields (which are from includes in marc) in selectqry where cond

    Hi,
    I want to select the data from marc which contains includes.....i want to use that include field
    in selection list and in where condition, basing on that i want to retrieve data.
    can u give examples reply..........
    Thanks and Regards,
    M Prasanna

    TYPES: BEGIN OF ty_marc,
            matnr TYPE marc-matnr,
            werks TYPE marc-werks,
            pstat TYPE marc-pstat,
            lvorm TYPE marc-lvorm,
            bwtty TYPE marc-bwtty,
            xchar TYPE marc-xchar,
            mmsta TYPE marc-mmsta,
            mmstd TYPE marc-mmstd,
            maabc TYPE marc-maabc,
            kzkri TYPE marc-kzkri,
            ekgrp TYPE marc-ekgrp,
            ausme TYPE marc-ausme,
            dispr TYPE marc-dispr,
            dismm TYPE marc-dismm,
           END OF ty_marc.
    DATA: gt_marc  TYPE TABLE OF ty_marc.
    SELECT  matnr
            werks
            pstat
            lvorm
            bwtty
            xchar
            mmsta
            mmstd
            maabc
            kzkri
            ekgrp
            ausme
            dispr
            dismm
           FROM marc
            INTO TABLE gt_marc
             WHERE pstat = 'EDLQBG'.
    IF sy-subrc = 0.
      WRITE: / 'done'.
    ELSE.
      WRITE: / 'error'.
    ENDIF.

Maybe you are looking for

  • VHS TV as External Monitor

    I have an E-mac with a Video Output port. I use this machine to create movies in IMovie and transfer to IDVD. I am running OS 10.3.9. I've had a problem with being able to match what I see on the E-Mac monitor with what I will ultimatly see on my TV

  • Videos will not play when Adobe Flash is installed

    I have always used Adobe Flash, and never had a problem with it.  When I installed the lastest release several months ago, I discovered that videos would not play at all. It's not just You Tube either; it's whatever site I visit. Six months of dealin

  • How do I restore the Colors in the Finder side panel?

    Hello; How do I restore the colors to the Finder's Side Panel?

  • Error 13109 for manual sync Ipod

    I manually sync my nano and I have read the unysnc and resync help. Since I manually drag my music, I cannot click sync or it will delete all my music. How can I get rid of this error without loosing all my music?

  • Mp3..DRM,...windows media pla

    I,downloaded 4 songs and only 24 got on my muvo tx 28,I read about turning off my ...DRM..in windows media player,I checked the box but agin only some song got on I,hope my muvo 28 hold more than 24 songs has any body had this problem ...hepl