Some segments are missing in the idocs for master data zdebmas

hi guru's,
can any one hlep me here we facing the probelumm
some segments are missing in the idocs for master data zdebmas
, there is some issue on the generation of the Site Master IDoc (Message type: ZDEBMAS, Basic type: DEBMAS06).
This is using the SAP standard program (RBDMIDOC) which reads the Site master change pointers.
There is  some segments below is missing in the IDoc:
how to chcek this probelumm...

hi
i got the function module. it is  triggerig whne i do changepointer running.
what ever changes i made only that segments are onlycomming in to the idoc. but remaing segments are not comming.
my req is to show all segments  even if i do changes in one segmet fields  dont change theay have send to the interfece all athe segments.i ahve to do some enhancemetns for that
can u plse help me the login  or any function module which will fill the alla the segmetns .

Similar Messages

  • Some coloumns are missing in the transaction FB50

    Hi Experts,
    We are finished with the upgrade from 4.6c to ECC6.0.
    Here we have an issue with FB50 transaction.
    In ECC6.0 the following coloumns are missing in the table control in the initial screen of the transaction FB50,
    1) STATUS
    2) Tax jurisdictn Code
    3) W/O cash disc
    We have deactivated the transaction variants also but still we are not getting the above coloumns.
    Thanks,
    Rakesh.

    check for SPRO configurations there are not
    cheers
    s.janagar

  • Do you know the idoc for master recipe?

    Hi all.
    Do you know the idoc for maintain master recipe?
    I am looking for the idoc.
    I would like to create, update and delete master recipe with idoc.
    I have investigated about idoc,but can't find suitable idoc.
    (I did find it for BOM, but for recipe is nothing.)
    Thank you in advance..
    Satoru

    Hello,
    As far as I can see there are no BAPI's or IDOC's available to upload Master Recipe data.
    A suggestion would be to use the batch input technique to upload the master recipe master data. You find the documentation of the batch input recorder etc. via the menu path System -> Services -> Batch input -> Recorder
    I hope it helps,
    Regards,
    Marcelo

  • What is the IDOC for Master inspection Characterstics Creation/edit/Cancel

    Hi
    i need IDOC for this.....
    what is the IDOC for
    1.Master inspection Characterstics Creation
    2.Master inspection Characterstics Edit
    3.Master inspection Characterstics Cancel
    plz give ans very urgent
    bye
    suresh

    Check these..
    in TCode: we30
    ->INSPECTIONPLAN_CREATE01
    ->MATQM01
    ->QPMK01
    Regards,
    Ramesh.

  • Why we are not using "Message Control" for Master data ?

    Hi friends,
    We are using Message control as output determination for Transactional data, <b>what is the main reason for not using the msg control for Master data.</b>Please explain with details...
    I am very thankful to them...
    Thanks and Regards.
    <i><b>Naveen Kumar. Chamala</b></i>

    Hi Naveen,
       Listing down those I know -
       1. Master data is expected to be changed/created less frequestly.
       2. Transactional data is expected to be chnaged/created more frequestly.
       3. Transactions to create/change/display master data do no have message control integration, since you are not supposed to print/fax/mail master data to your partners.
       4. Distribution of master data in generally supposed to happen within Enterprise boundry and typically you will have one central server maintaining master data which will be distributed to multiple downstream operation system (Some thing where MDM fits). So ideally when distributing master data using ALE you will be sending it to multiple systems.
       5. Distributing transactional data PO/SO etc is same as sending fax/print which fits with the requirement of message control.
    Hope this helps,
    Regards,
    Sanjeev

  • IDOC Segment is missing in the IDOC even though I have populated values

    Hi Experts,
       I face a problem in the IDOC processing.
       I have a custom IDoc type with 2 segments in the same Hierarchy.
       In the Z program I populate both the segments and send the internal table to the MASTER_IDOC_DISTRIBUTE Fun.Module.
       When the IDOC is generated, I see the IDOC with only one segment and the 2nd segment is missing.
       When I debugged the program, I see the 2nd Segment also getting populated.
       Can you give some info that can resolve my issues.
    Thanks,
    Micheal

    Check the below points,
    1. Check the internal table IDOC_DATA in MASTER_IDOC_DISTRIBUTE in debug mode whether the segement with values are populated.
    2. Are you populating the parent & hierarchy level in segment, if yes check whether the values are right one.
    3. There may be a possiblity the std SAP code would delete the custom segment if its any syntax error in segment defenition.
    Check this and if you still have the issue come back.

  • Column headings are missing in the output for ALV?

    Hi all,
    i have coded a small report in ALV mode. i am getting the data but the column headings are missing.
    iam not getting the column headings in the output. it is coming as blank. Could you all please help me out in this?
    below is the code of my program:
                     Includes                                            *
    *---Standard header and footer routines
    INCLUDE zsrepthd.
    *--- ALV Routines
    INCLUDE zvsdi_alv_routines_ver3.
    *--- Authorization Check
    INCLUDE z_selection_auth_check.
                     Types Declarations                                  *
    tables : ekpo.
                     Types Declarations                                  *
    TYPES: BEGIN OF ty_ekpo,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_ekpo.
    *-Output field name
    TYPES: BEGIN OF ty_output,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_output.
    *-Output field name
    TYPES: BEGIN OF ty_fields,
            fname(60) TYPE c,
           END OF ty_fields.
                     Internal Table Declarations                         *
    DATA:it_ekpo TYPE STANDARD TABLE OF ty_ekpo,
    *--- Alv parameters
        it_out_alvp TYPE typ_alv_form_params, "for alv parameters
    *-Field catalog  for ALV display
        it_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    *-Field names for Excel column headings
    it_ekpo_fields TYPE STANDARD TABLE OF ty_fields WITH HEADER LINE.
    **--To store output for Principial Pegging data
    DATA: BEGIN OF it_output occurs 0,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF it_output.
    **--To store output for 2nd
    DATA: BEGIN OF it_output1 occurs 0,
            text(2000),
           END OF it_output1.
                     Data Declarations                                   *
    data: v_ebeln TYPE ekpo-ebeln,
          v_ebelp TYPE ekpo-ebelp,
          v_matnr TYPE ekpo-matnr,
          v_werks TYPE ekpo-werks.
                     Constants Declarations                              *
    CONSTANTS:
         c_0    TYPE i     VALUE  0,
         c_x    TYPE char1 VALUE  'X',
         c_i    TYPE char1 VALUE  'I',
         c_eq   TYPE char2 VALUE  'EQ',
         c_ekpo  TYPE char4 VALUE 'EKPO',
         c_hyfn  TYPE char1 VALUE '-'.
                     Work Area Declarations                              *
    DATA: x_output_ekpo type ty_output,
          x_ekpo type ty_ekpo.
                     Selection Screen                                    *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-f01.
    SELECT-OPTIONS:
          s_ebeln FOR v_ebeln OBLIGATORY,
          s_ebelp FOR v_ebelp,
          s_matnr FOR v_matnr,
          s_werks FOR v_werks.
    SELECTION-SCREEN END OF BLOCK b1.
                     At Selection Screen                                 *
    AT SELECTION-SCREEN.
                     Start-of-Selection                                  *
    START-OF-SELECTION.
    *--- Check Authorizations for Selection-screen
      PERFORM  z_selection_auth_check.
    *--- Fetch Purchasing Document Item data
      PERFORM  fetch_status_pp.
                     End-of-Selection                                    *
    END-OF-SELECTION.
    **-- Download data to final internal table.
      PERFORM data_output.
      IF NOT it_output[] IS INITIAL.
    *--- Fill the structure for calling the ALV form
        PERFORM initialize_alv_params.
    **-- Display ALV Report
        PERFORM setup_and_display_alv_ver2
           USING
         it_out_alvp        "Parameter structure
         it_output[]        "Internal Data table(header table)
         it_output[].       "Dummy table for Hierarchical ALV!!(item table)
        ENDIF.
      IF it_output[] IS INITIAL.
        MESSAGE i999(zi) WITH 'No data found for selection'(i02).
      ENDIF.
    *&      Form  FETCH_STATUS_PP
    Get data from ekpo table
    FORM FETCH_STATUS_PP .
    *-Fetch PP Data from ekpo table
      REFRESH it_ekpo.
      SELECT EBELN
             EBELP
             MATNR
             WERKS
             FROM ekpo
             INTO TABLE it_ekpo
             WHERE ebeln IN s_ebeln
               AND ebelp IN s_ebelp.
      IF sy-subrc = c_0.
        SORT it_ekpo BY ebeln ebelp.
      ENDIF.
    ENDFORM.                    " FETCH_STATUS_PP
    *&      Form  f_top_of_page
    *This is to write the top of page
    FORM top_of_page.
      DATA:  lt_list TYPE slis_t_listheader,
             lx_list TYPE slis_listheader.
    *--- Title name
      CLEAR lx_list.
      lx_list-typ  = 'S'.
      lx_list-key  = 'Title name'(t13).
      lx_list-info = sy-title.
      APPEND lx_list TO lt_list.
      IF NOT lt_list IS INITIAL.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary = lt_list.
      ENDIF.
    ENDFORM.                    "top_of_page
    *&      Form  init_page_head
    Description : This subroutine initializes the fields in table BHDGD  *
                  for printing the report heading.                       *
    FORM init_page_head.
      bhdgd-line1  = 'SLA Status Report'(h04).
      bhdgd-line2  = sy-title.
      bhdgd-lines  = sy-linsz.
      bhdgd-fcpyrt = sy-uline.
      bhdgd-inifl  = '0'.
    ENDFORM.                    "init_page_head
    *&      Form  initialize_alv_params
    Description : Form to initialize ALV Params
    FORM initialize_alv_params.
      CONSTANTS: lc_alv_grid  TYPE char1 VALUE 'G',  "Grid
                 lc_u         TYPE char1 VALUE 'U'.
      MOVE 'IT_OUTPUT' TO   it_out_alvp-tablname.   "final table
      MOVE sy-repid    TO   it_out_alvp-repid.
      MOVE lc_alv_grid TO   it_out_alvp-alvtype.
      MOVE c_x         TO   it_out_alvp-bringdefaultvar.
      MOVE lc_u        TO   it_out_alvp-variantsavetype.
    ENDFORM.                    " initialize_alv_params
          FORM it_out_init_events                                       *
    -->this is form is to modify the events
    FORM it_out_init_events
          CHANGING
           alevnts TYPE slis_t_event.
      FIELD-SYMBOLS <alevnt> TYPE slis_alv_event.
      LOOP AT alevnts ASSIGNING <alevnt>.
        CASE <alevnt>-name.
          WHEN  slis_ev_top_of_page.
            MOVE 'TOP_OF_PAGE'  TO <alevnt>-form.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    "it_out_init_events
    *&      Form  DATA_OUTPUT
    Download data to final internal table
    FORM DATA_OUTPUT .
      loop at it_ekpo into x_ekpo.
        x_output_ekpo-ebeln = x_ekpo-ebeln.
        x_output_ekpo-ebelp = x_ekpo-ebelp.
        x_output_ekpo-matnr = x_ekpo-matnr.
        x_output_ekpo-werks = x_ekpo-werks.
        append x_output_ekpo to it_output.
      endloop.
    ENDFORM.                    " DATA_OUTPUT
          FORM it_out_alv_fieldcat_before                               *
    -->  PT_FCAT                                                       *
    -->  ALVP                                                          *
    FORM it_out_alv_fieldcat_before  CHANGING
        pt_fcat TYPE slis_t_fieldcat_alv
        alvp TYPE typ_alv_form_params.
      DATA: lx_fcat TYPE slis_fieldcat_alv.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELN'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_m      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_s      = 'Purchasing Doc No'(018).
      lx_fcat-reptext_ddic   = 'Purchasing Doc No'(018).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELP'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_m      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_s      = 'Item No Purchasing Doc'(020).
      lx_fcat-reptext_ddic   = 'Item No Purchasing Doc'(020).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'MATNR'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Material'(010).
      lx_fcat-seltext_m      = 'Material'(010).
      lx_fcat-seltext_s      = 'Material'(010).
      lx_fcat-reptext_ddic   = 'Material'(010).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'WERKS'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Supply plant'(013).
      lx_fcat-seltext_m      = 'Supply plant'(013).
      lx_fcat-seltext_s      = 'Supply plant'(013).
      lx_fcat-reptext_ddic   = 'Supply plant'(013).
      APPEND lx_fcat TO pt_fcat.
    ENDFORM.                    " it_out_alv_fieldcat_before.
    Regards,
    Shalini
    Edited by: shalini reddy on Oct 7, 2008 5:08 PM

    Hi,
    The heading are in the table pt_fcat - you don't seem to be passing that in form....
    PERFORM setup_and_display_alv_ver2
    USING
    it_out_alvp "Parameter structure
    it_output[] "Internal Data table(header table)
    it_output[]. "Dummy table for Hierarchical ALV!!(item table)
    which I guessing in in one of the includes?
    Saying that the extract pof code does not show where you are calling form it_out_alv_fieldcat_before ...which populates the headings...
    Regards
    Stu

  • Some fields are missing in the ALV output

    Hi ,
    I have created a normal ALV report using REUSE_ALV_GRID_DISPLAY . It shows the output correctly. But when I take the prin out or download to an excel sheet some fields are not there. Can I know how to solve this issue ?
    Regards,
    Beena

    hi Beena,
    If you are downloading the ALV output to excel, please make sure that the DDIC structure is passed as a parameter to the REUSE_ALV. I doubt you are creating field catalog from the program and that DDIC structure is not used.
    Hope this helps,
    Sajan Joseph.

  • Problem in finding the datasources for master data for 0TCT_MC11

    Hi,
    I want to load the data in 0TCT_MC11(BI7) , which is one of the technical content multiprovider. I have a datasource to load data in it , but I am not able to find the data source for the master data objects. hence I am stopped in doing loading to this MP. Can some body let me know where can I get the Information about the Datasources to load master data.
    Thanks,
    Jeetu

    Hi Srilatha,
    While reading data from 0TCT_MC11 through query I am getting the following message...(query name 0TCT_MC11_Q0130)
    "Error while reading data; navigation is possible
    "Value XY2CLNT400AHPL_ACCT"
    "You are trying to load the invalid characteristic value 1. (hexidecimal representation 0044004200320043004C004E00540036003000300049004F00)."
    Please let me know if you have any suggestions for this.
    Thanks, Jeetu

  • Segment field missing while creating profit center master data in SAP ECC6.

    Hi,
    I am working on ECC6.0 IDES. When I create profit center master I dont see the field for Segment on the profit center master.
    Is there any setting which needs to be activated to see the the field for Segment on profit center master.
    Regards,
    Raghav

    HI Raghavendra,
    Check if the segmentation scenario is available for general ledger at the following path
    Financial Accounting (New)>Ledgers> Fields > Customer Fields > Display Scenarios for General Ledger Accounting
    Regards
    Sach!n
    Edited by: Sachin Bhutani on Mar 26, 2009 11:23 AM

  • Some records are missing in the mail, when scheduled a background job.

    There is a Z report,  which will display some details from SD, MM , WM every day , and the same thing need to be mailed to the user through background Job.
    Issue is that spool is correct and it is missing some records ( Billing due list ), even internal table have records and displayed in the spool , in the mail it says
    “No Entries Found”.
    Is there any chance of debugging background job.
    Good thing is that when executed in foreground it is working fine. Both mail and report display.

    EM_BODY = '4) VF04 -- Processing Billing document due list.'.
      APPEND EM_BODY.
      EM_BODY = ' '.
      APPEND EM_BODY.
      IF IT_FINAL3[] IS INITIAL.
        EM_BODY = '        No Entry Found'.
        APPEND EM_BODY.
        EM_BODY = ' '.
        APPEND EM_BODY.
      ELSE.
        CONCATENATE 'Delivery No' 'Created By' 'Created On'
                     'Reason' INTO HEAD SEPARATED BY '     '.
        EM_BODY = HEAD.
        APPEND EM_BODY.
        EM_BODY = ' '.
        APPEND EM_BODY.
        CLEAR V_TEXT.
        CLEAR ITEM.
        LOOP AT IT_FINAL3.
          CONCATENATE IT_FINAL3-VBELN  IT_FINAL3-ERNAM IT_final3-ERDAT
                      IT_FINAL3-RESO INTO ITEM SEPARATED BY '     '.
          V_TEXT = ITEM.
          EM_BODY = V_TEXT.
          APPEND EM_BODY.
        ENDLOOP.
        EM_BODY = ' '.
        APPEND EM_BODY.
      ENDIF.
    This is the part where it is failing, where it_final3[] is initial.
    but whereas in the spool i can view those records.

  • Some countries are missing from the iCloud KeyChain confirmation process

    Cyprus (+357) is not listed in the Countries list, thus I can not confirm and activate my Icloud Keychane option!

    Guys even Sri Lanka (+94) is missing, would really love to use this feature, since I've been using apple devices from 2007 onwards.
    Cheers,
    Amila Fonseka

  • For all entries : lines are missing in the results

    Hi all,
    I have a problem with my abap code.
    some lines are missing in the results.
    I have check the note 65554 but i use the version 6.40
    TYPES: BEGIN OF wys_bseg,
             bukrs TYPE bsad-bukrs,
             belnr TYPE bsad-belnr,
             gjahr TYPE bsad-gjahr,
             augbl TYPE bseg-augbl,
             augdt type bseg-augdt,
             hkont TYPE bseg-hkont,
             WRBTR type bseg-WRBTR,
             KOART type bseg-KOART,
             SHKZG type bseg-SHKZG,
           END OF wys_bseg.
    TYPES: begin of wys_bsas,
             bukrs TYPE bsas-bukrs,
             hkont TYPE bsas-hkont,
             augbl TYPE bsas-augbl,
             augdt type bseg-augdt,
             gjahr TYPE bsas-gjahr,
             belnr TYPE bsas-belnr,
             waers TYPE bsas-waers,
             blart TYPE bsas-blart,
             gsber TYPE bsas-gsber,
             dmbtr TYPE bsas-dmbtr,
             xblnr TYPE bsas-xblnr,
             SHKZG type bseg-SHKZG,
             zmntfact TYPE bsas-WRBTR,
           end of wys_bsas.
    DATA: wt_bseg_tmp TYPE wys_bseg OCCURS 0 WITH HEADER LINE.
    DATA : wt_bsas type wys_bsas occurs 0 WITH HEADER LINE.
        sort wt_bsas by bukrs belnr gjahr.
        DELETE ADJACENT DUPLICATES FROM wt_bsas COMPARING bukrs belnr gjahr.
    IF NOT wt_bsas[] IS INITIAL.
        select bukrs belnr gjahr augbl augdt hkont WRBTR KOART SHKZG from
    bseg into table wt_bseg_tmp
                  for all entries in wt_bsas
                  where bukrs EQ wt_bsas-bukrs
                    and belnr EQ wt_bsas-belnr
                    and gjahr EQ wt_bsas-gjahr
                    and koart EQ 'D'.
    ENDIF.

    Hi
    Yes Arun is right, INTO TABLE option delete automatically the duplicates lines, so you make sure to insert all keys in order to load all record.
    Insert the field BUZEI in the structure of internal table:
    TYPES: BEGIN OF wys_bseg,
             bukrs TYPE bsad-bukrs,
             belnr TYPE bsad-belnr,
             gjahr TYPE bsad-gjahr,
             buzei type bseg-buzei, <------ New field
             augbl TYPE bseg-augbl,
             augdt type bseg-augdt,
             hkont TYPE bseg-hkont,
             WRBTR type bseg-WRBTR,
             KOART type bseg-KOART,
             SHKZG type bseg-SHKZG,
           END OF wys_bseg.
    Max

  • Some parameters are missing values

    I am trying to invoke a crystal report using JRC API. I am using Business Objects XI.
    When I try to invoke the report after setting all parameters I am getting an error message "Some parameters are missing values ". Here is how my JSP code looks like
    ReportClientDocument oReportClientDocument = new ReportClientDocument();
    oReportClientDocument.open(reportName, 0);
    CrystalReportViewer oCrystalReportViewer = new CrystalReportViewer();
    //set the reportsource property of the viewer
    oCrystalReportViewer.setReportSource(reportSource);
    //set viewer attributes
    oCrystalReportViewer.setOwnPage(true);
    oCrystalReportViewer.setOwnForm(true);
    //set the CrystalReportViewer print mode
    oCrystalReportViewer.setPrintMode(CrPrintMode.ACTIVEX);
    //refresh the CrystalReportViewer if necessary (only required once)
    if (session.getAttribute("refreshed") == null)
    oCrystalReportViewer.refresh();
    session.setAttribute("refreshed", "true");
    String userid="emagia";
    String password="emagia";
    String rptuserid="tjordan";
    String fromdate="07/01/2008";
    String todate="07/12/2008";
    ConnectionInfo ci = new ConnectionInfo();
    ci.setUserName(userid);
    ci.setPassword(password);
    ConnectionInfos connections = new ConnectionInfos();
    connections.add(ci);
    oCrystalReportViewer.setEnableLogonPrompt(false);
    oCrystalReportViewer.setDatabaseLogonInfos(connections);
    ParameterFieldDiscreteValue val1 = new ParameterFieldDiscreteValue();
    val1.setValue(rptuserid);
    Values vals1 = new Values();
    vals1.add(val1);
    ParameterField param1 = new ParameterField();
    param1.setName("User Id");
    param1.setReportName("");
    param1.setCurrentValues(vals1);
    Fields fields = new Fields();
    fields.add(param1);
    ParameterFieldDiscreteValue val2 = new ParameterFieldDiscreteValue();
    val2.setValue(fromdate);
    Values vals2 = new Values();
    vals2.add(val2);
    ParameterField param2 = new ParameterField();
    param2.setName("Date Range from");
    param2.setReportName("");
    param2.setCurrentValues(vals2);
    fields.add(param2);
    ParameterFieldDiscreteValue val3 = new ParameterFieldDiscreteValue();
    val3.setValue(todate);
    Values vals3 = new Values();
    vals3.add(val3);
    ParameterField param3 = new ParameterField();
    param3.setName("Date Range To");
    param3.setReportName("");
    param3.setCurrentValues(vals3);
    fields.add(param3);
    oCrystalReportViewer.setEnableParameterPrompt(false);
    oCrystalReportViewer.setParameterFields(fields);
    oCrystalReportViewer.processHttpRequest(request, response,getServletConfig().getServletContext(), null);
    oCrystalReportViewer.dispose();
    In the Tomcat log this is what I get
    - JRCAgent3 received request: refreshData
    - JRCAgent3 attempting to acquire license
    - JRCAgent3 successfully acquired license
    - JRCAgent3 releasing license
    - JRCAgent3 received request: getPromptConnInfos
    - JRCAgent3 received request: compoundRequest
    - JRCAgent3 received request: setSQLLogonInfoRequest
    - JRCAgent3 received request: setSQLLogonInfoRequest
    - JRCAgent3 received request: fetchReportPageRequest
    - JRCAgent3 attempting to acquire license
    - JRCAgent3 successfully acquired license
    - Logon: Connecting to database using local JNDI server ...
    - Connection Opened null
    - Connection opened (Connection:  databaseType=JDBC  serverName=reports_dsn.dsn  state=open  databaseDriverName=crdb_odbc.dll).
    - Report parameters is not valid
    - Report parameters is changed
    - Handling report parameters changes
    - Validating report parameters
    - com.crystaldecisions.reports.dataengine.l: Some parameters are missing values
    - The report requires parameter values that need to be supplied by the client before further processing
    com.crystaldecisions.reports.dataengine.l: Some parameters are missing values
         at com.crystaldecisions.reports.dataengine.j.a(Unknown Source)
         at com.crystaldecisions.reports.dataengine.a9.a(Unknown Source)
    Can anybody tell me why I am getting this error??
    Any help will be appreciated.

    The problem may be that you are setting your report date parameters as a string when you pass the value to the report.   If the JRC does not recognize the parameter value as the correct type, it will throw the error you see when trying to pass them to the report.
    If they are a date type or a date time type in the report, they must be set as such using the Java Calendar object.
    Below is an example of how one would pass a date parameter to a report:
    //DATE VALUE PARAMETER.
         Calendar calendar = Calendar.getInstance();
         calendar.clear();
         calendar.set(2004, 1, 17);
         Date dateParamVal = calendar.getTime();     
         pfieldDate.setName("dateParam");
         pfieldDVDate.setValue(dateParamVal);
         //Add the parameter field values to the Values collection object.
         vals5.add(pfieldDVDate);
         //Set the current Values collection for each parameter field.
         pfieldDate.setCurrentValues(vals5);
         //Add each parameter field to the Fields collection.
         //The Fields object is now ready to be used with the viewer.
         parameterFields.add(pfieldDate);
         //DATE-TIME VALUE PARAMETER.
         Calendar calendar2 = Calendar.getInstance();
         calendar2.clear();
         calendar2.set(2002, 5, 12, 8, 23, 15);
         Date dateTimeParamVal = calendar2.getTime();
         pfieldDateTime.setName("dateTimeParam");
         pfieldDVDateTime.setValue(dateTimeParamVal);
         //Add the parameter field values to the Values collection object.
         vals6.add(pfieldDVDateTime);
         //Set the current Values collection for each parameter field.
         pfieldDateTime.setCurrentValues(vals6);
         //Add each parameter field to the Fields collection.
         //The Fields object is now ready to be used with the viewer.
         parameterFields.add(pfieldDateTime);
         //TIME VALUE PARAMETER.
         Calendar calendar3 = Calendar.getInstance();
         calendar3.clear();
         calendar3.set(2002, 5, 12, 13, 44, 59);
         Date timeParamVal = calendar3.getTime();     
         pfieldTime.setName("timeParam");
         pfieldDVTime.setValue(timeParamVal);
         //Add the parameter field values to the Values collection object.
         vals7.add(pfieldDVTime);
         //Set the current Values collection for each parameter field.
         pfieldTime.setCurrentValues(vals7);
         //Add each parameter field to the Fields collection.
         //The Fields object is now ready to be used with the viewer.
         parameterFields.add(pfieldTime);
    Edited by: Merry Enns on Aug 5, 2008 8:11 PM

  • Deltas for master data

    Hi,
      Will you please let me know the proceedure for master data delta set up.is it something, after init the delata gets activated automatically or do we need to set it in r/3 side(Where checking the check box ('delta enable')for a data source or is it something there are some specific data sources which will support delta.
    Please let me know the proceedure for this, or if you have any docs or links please give me those.
    Thanks & Regards,
    Shashikanth.

    Shashi
    also please check this thread
    Re: Delta update for master data
    Hope this helps
    Thnaks
    Sat

Maybe you are looking for

  • Cannot start Managed Server- after creating a new domain

    I created a new domain, I could start Admin Server but ,I am unable to start Managed Server. My DB is up & running at com.collaxa.cube.engine.CubeEngine.finalizeActivity(CubeEngine.java:2842) at com.collaxa.cube.engine.CubeEngine.checkBlockConditions

  • Oracle 10g Paremeter to Auto Roll Back uncommited transanctions

    Hi all In SME Segment - People donot affort having Oracle Dba and at the same time less experienced persons keep making their own tests Situation goes as under :- a) Oracle 10g Windows 2003 64 Bit version on Branded HP Server with 8GB Ram having arou

  • ORA-12899: value too large for column

    Hi Experts, I am getting data from erp systems in the form of feeds,in particular one column length in feed is 3 only. In target table also corresponded column also length is varchar2(3) but when i am trying to load same into db ti showing error like

  • BAPI or FM for MD81

    Hi All, Is there any BAPI or FM to create "Customer Independent Requirements" (MD81)??

  • Distiller and Missing PDF's

    We are using Distiller to create PDF's, from CS version 1. This has been working fine, but lately since upgrading to the new Intel Mac Pro, we create the PDF's fine, but randomly they are going missing or being deleted but not by the user's. Eg, last