SOME FIELDS OF WORK AREA ARE CONVERTED TO ***** AT AT NEW STATEMENT

HELLO
SOME OF THE FIELDS OF WORK AREA ARE CONVERTED INTO *********** AT AT NEW STATEMENT .FIND BELOW THE CODE
*& Report  YTEST_OBJECTS7
REPORT  YTEST_OBJECTS7.
Program Description
Author.........: Jitendra Dash                                       *
Creation date..: 17/09/2010                                                    *
GAP ID/FS Id...:                                                     *
Transport......:                                                     *
Description u2026..:                                                     *
CHANGE HISTORY u2013 Should be completed in reverse date order           *
Revised by........: <Developer name>                                 *
Change date.......: Date of creation>                                *
CR/Defect No......:  <Change Request No>/ <Defect#<xxx>              *
Transport.........: <Request No>                                     *
Description.......: Description about modification                   *
Data Declaration
TYPES: BEGIN OF gx_input,
         NEMI      TYPE EXT_UI,
         DIVISION  TYPE SPARTE ,
         DATE      TYPE ERDAT,
         DATE1     TYPE ERDAT,
       END OF gx_input.
TYPES: BEGIN OF gx_input1,
         NEMI      TYPE EXT_UI,
         DIVISION  TYPE SPARTE ,
         DATE      TYPE ERDAT,
         DATE1     TYPE ERDAT,
         int_ui    TYPE INT_UI,
         ANlage    type   anlage,
         SERVICE   TYPE SERCODE,
         SERVICEID TYPE SERVICE_PROV,
         SPARTE    TYPE SPARTE,
        END OF gx_input1.
TYPES : BEGIN OF gx_euitrans,
        INT_UI TYPE INT_UI,
        EXT_UI type EXT_UI,
        END OF gx_euitrans.
TYPES : BEGIN OF gx_eservice,
        INT_UI TYPE INT_UI,
        SERVICE TYPE SERCODE,
        SERVICEID TYPE SERVICE_PROV,
        SPARTE    TYPE SPARTE,
        END OF gx_eservice.
TYPES : BEGIN OF gx_inst,
        int_ui TYPE INT_UI,
        ANlage type   anlage,
        END OF gx_inst.
TYPES : BEGIN OF gx_ever,
        ANLAGE TYPE anlage,
        EINZDAT TYPE EINZDAT,
        AUSZDAT TYPE AUSZDAT,
        VERTRAG type VERTRAG,
        vkonto TYPE VKONT_KK,
        END OF gx_ever .
TYPES : BEGIN OF gx_fkkvkp,
        VKONT type VKONT_KK,
        GPART type GPART_KK,
        END OF gx_fkkvkp.
DATA : GIT_INPUT TYPE STANDARD TABLE OF GX_INPUT,
       git_euitrans TYPE STANDARD TABLE OF gx_euitrans,
       git_eservice TYPE STANDARD TABLE OF gx_eservice,
       git_inst TYPE STANDARD TABLE OF gx_inst,
       git_ever TYPE STANDARD TABLE OF  gx_ever,
       GIT_INPUT1 TYPE STANDARD TABLE OF GX_INPUT1,
       GIT_fkkvkp TYPE STANDARD TABLE OF GX_fkkvkp,
       WA_INPUT TYPE gx_input,
       wa_euitrans LIKE LINE OF git_euitrans,
       wa_eservice like LINE OF git_eservice,
       WA_inst LIKE LINE OF git_inst,
       wa_ever LIKE LINE OF git_ever,
       wa_INPUT1 like LINE OF git_INPUT1,
       wa_fkkvkp like LINE OF GIT_fkkvkp.
DATA: gv_v_localfile TYPE localfile,
      gv_g_localfile type string,
      gv_g_alocalfile type string,
      gv_g_sender type SERVICE_PROV,
      gv_g_reciever type SERVICE_PROV.
CONSTANTS : GC_AINP TYPE c LENGTH 50 VALUE '/tmp'.
************Selection screen for input *********************
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE t1.
PARAMETERS : p_rad1 RADIOBUTTON GROUP grp DEFAULT 'X' USER-COMMAND chk,
             p_rad2 RADIOBUTTON GROUP grp,
             p_file TYPE file_table-filename MODIF ID m1,
             p_afile TYPE file_table-filename MODIF ID m2.
SELECTION-SCREEN END OF BLOCK b1.
***************Initialization*****************************
INITIALIZATION.
  t1 = text-001.
***Selection of Appl ser and Presen ser for I/P file******
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF p_rad1 = 'X'.
      IF screen-group1 = 'M2'.
        screen-active = 0.
        MODIFY SCREEN.
      ENDIF.
    ELSEIF p_rad2 = 'X'.
      IF screen-group1 = 'M1'.
        screen-active = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDIF.
  ENDLOOP.
**F4 help for inputting the Filename from presentation Ser*
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
  CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
    EXPORTING
      program_name  = sy-repid
      dynpro_number = sy-dynnr
      field_name    = p_file
    CHANGING
      file_name     = gv_v_localfile
    EXCEPTIONS
      mask_too_long = 1
      OTHERS        = 2.
  IF sy-subrc = 0.
    MOVE gv_v_localfile TO p_file.
    move gv_v_localfile to gv_g_localfile.
  ENDIF.
***F4 help for file on Application Server*******************
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_afile.
  CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
    EXPORTING
      directory        = GC_AINP
      filemask         = ' '
    IMPORTING
      serverfile       = p_afile
    EXCEPTIONS
      canceled_by_user = 1
      OTHERS           = 2.
  IF sy-subrc = 0.
    move p_afile to gv_g_alocalfile.
   MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
START-OF-SELECTION.
  IF p_rad1 = 'X'.
*************Upload file into Itab from pres server*********
    CALL FUNCTION 'GUI_UPLOAD'
       EXPORTING
         FILENAME                      = gv_g_localfile
  FILETYPE                      = 'ASC'
        HAS_FIELD_SEPARATOR           = '|'
  HEADER_LENGTH                 = 0
  READ_BY_LINE                  = 'X'
  DAT_MODE                      = ' '
  CODEPAGE                      = ' '
  IGNORE_CERR                   = ABAP_TRUE
  REPLACEMENT                   = '#'
  CHECK_BOM                     = ' '
  VIRUS_SCAN_PROFILE            =
  NO_AUTH_CHECK                 = ' '
IMPORTING
  FILELENGTH                    =
  HEADER                        =
       TABLES
         DATA_TAB                      = GIT_INPUT
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
      WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
  ELSEIF p_rad2 = 'X'.
*************Upload file into Itab from Applic server*********
************file should be ; seperated and not tab seper******
   TRANSLATE gv_g_alocalfile USING '\/'.
   OPEN DATASET gv_g_alocalfile FOR INPUT MESSAGE gv_LC_MESSAGE in TEXT MODE ENCODING DEFAULT.
   IF sy-subrc = 0.
     DO.
       READ DATASET gv_g_alocalfile INTO wa_xls.
       IF sy-subrc IS NOT INITIAL.
         EXIT.
       ELSE.
         APPEND wa_xls TO git_xls.
       ENDIF.
     ENDDO.
   ENDIF.
   close DATASET gv_g_alocalfile.
  ENDIF.
  SELECT INT_UI EXT_UI from EUITRANS
                       into CORRESPONDING FIELDS OF TABLE git_euitrans
                       for ALL ENTRIES IN  GIT_INPUT
                       WHERE ext_ui = GIT_INPUT-NEMI.
  SElect INT_UI
         SERVICE
         SERVICEID
         SPARTE    from ESERVICE
                   into CORRESPONDING FIELDS OF TABLE git_eservice
                   FOR ALL ENTRIES IN git_euitrans
                   where INT_UI = git_euitrans-INT_UI .
  SELECT INT_UI
         ANLAGE from euiinstln
                into CORRESPONDING FIELDS OF TABLE GIT_INST
                FOR ALL ENTRIES IN  git_eservice
                WHERE INT_UI = git_eservice-INT_UI.
  LOOP AT git_eservice into wa_eservice.
    READ TABLE git_euitrans into wa_euitrans
                            with KEY int_ui = wa_eservice-int_ui.
    IF SY-SUBRC = 0.
      READ TABLE git_input into wa_input
                           WITH key NEMI = wa_euitrans-EXT_UI.
      IF SY-SUBRC = 0.
        READ TABLE  GIT_INST into WA_INST
                                 with key int_ui = wa_eservice-int_ui.
         IF Sy-subrc = 0.
              wa_input1-NEMI = wa_input-NEMI      .
              wa_input1-DIVISION = wa_input-DIVISION.
              wa_input1-DATE = wa_input-DATE.
              wa_input1-DATE1 = wa_input-DATE1.
              wa_input1-int_ui = wa_eservice-int_ui.
              wa_input1-anlage = WA_INST-anlage.
              wa_input1-SERVICE = wa_eservice-service.
              wa_input1-SERVICEID = wa_eservice-serviceid.
              wa_input1-SPARTE  = wa_eservice-sparte.
        Append wa_input1 to git_input1.
         ENDIF.
      ENDIF.
    ENDIF.
    clear : wa_eservice,wa_input,WA_INST,wa_euitrans,wa_input1 .
  ENDLOOP.
  SELECT anlage
         EINZDAT
         AUSZDAT
         VERTRAG
         VKONTO  from ever
                 into CORRESPONDING FIELDS OF TABLE git_ever
                 FOR ALL ENTRIES IN git_input1
                 WHERE anlage = git_input1-ANLAGE
                   and EINZDAT = git_input1-DATE
                   or  AUSZDAT = git_input1-DATE1.
  Select Vkont Gpart from fkkvkp
                     into CORRESPONDING FIELDS OF TABLE git_fkkvkp
                     for ALL ENTRIES IN git_ever
                     where  Vkont = git_ever-Vkonto.
LOOP AT  git_input1 INTO wa_input1 .
IF wa_input1-SPARTE = 01  .
CASE wa_input1-SERVICE.
  WHEN 'FRMP'.
    gv_g_sender = wa_input1-SERVICEID.
  WHEN 'LNSP'.
    gv_g_reciever = wa_input1-SERVICEID.
ENDCASE.
ELSEIF wa_input1-SPARTE = 02 .
CASE wa_input1-SERVICE.
  WHEN 'FRO'.
    gv_g_sender = wa_input1-SERVICEID.
  WHEN 'DB'.
    gv_g_reciever = wa_input1-SERVICEID.
ENDCASE.
ENDIF.
data : int_ui TYPE INT_UI.
*int_ui = wa_input1-int_ui .
AT NEW int_ui .
READ TABLE git_ever into wa_ever with key  anlage = wa_input1-anlage.
READ TABLE git_fkkvkp INTO wa_fkkvkp with key Vkont = wa_ever-Vkonto.
CALL FUNCTION 'ZIN_COMEV_CUSTDETAILNOTIF_OUT'
  EXPORTING
    Y_SENDER              = gv_g_sender
    Y_RECEIVER            = gv_g_reciever
    Y_PARTNER             = wa_fkkvkp-gpart
    Y_BASIC_PROCESS       = 'ZCDNO'
  Y_SWITCHNUM           =
  Y_SEN_LOAD            =
    Y_INTUI               = wa_input1-int_ui
  Y_TRANSACTIONID       =
    Y_DATE                = wa_input1-DATE
IMPORTING
  X_TASK_ID             =
TABLES
   IDOC_STATUS           =
   IDOC_CONTRL           =
   XYT_ERROR             =
EXCEPTIONS
  GENERAL_FAULT         = 1
  NOT_FOUND             = 2
  OTHERS                = 3
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
ENDAT.
ENDLOOP.
IN THIS PROGRAM AT AT NEW STATEMENT IN LOOP SOME OF THE FIELDS OF wa_input1 IS CONVERTED TO ***** E.G  wa_input1-anlage.
pLEASE HELP ME OUT

HELLO
My Q is some fields at AT NEW statement turns into *****.Please help me out
TYPES: BEGIN OF gx_input1,
         NEMI      TYPE EXT_UI,
         DIVISION  TYPE SPARTE ,
         DATE      TYPE ERDAT,
         DATE1     TYPE ERDAT,
         int_ui    TYPE INT_UI,
         ANlage    type   anlage,
         SERVICE   TYPE SERCODE,
         SERVICEID TYPE SERVICE_PROV,
         SPARTE    TYPE SPARTE,
        END OF gx_input1.
GIT_INPUT1 TYPE  gx_input1.
LOOP AT  git_input1 INTO wa_input1 .
AT NEW int_ui .----
>hERE FIELDS OF wa_input1 ARE TURNED INTO *                                                                               
EX: wa_input1-ANLAGE =******** AFTER AT IN COMMAND.
END AT
eNDLOOP

Similar Messages

  • Some fields in ADF application are responding during playback

    Hi All,
    I'm facing some issues when playbacks the script which was recorded ADF application. Mainly 3 fields are showing this abnormal behavior. For combo-box `adf.table(..., .....).rowSelect(3);` is used to select value, but it's not working during playback. For date field the date picker I used is not working during playback. One Text field is also showing some issue. Value of text field is not get set during playback and it leaves it blank and passes the run. There are also other fields, including many Text fields, but all of them are working except the 3 above mentioned..
    Please help me, if any one knows solution for this. Even if you don't know solution please share your ideas.
    Regards,
    Deepu

    You give us no clue about what you used to record/playback scripts

  • Some cd playbacks work, others are fuzzy. Please help!

    I get this problem with some led zeppelin cds and many other cds. when i play them in itunes or windows mediaplayer, they sound so fuzzy and ******. how can i fix this? some cds work fine

    Could you post your diagnostics for us please? (Preferably, have one of the fuzzy-sounding CDs in the drive when running the DVD/CD tests.)
    In iTunes, go "Help > Run Diagnostics". Uncheck the boxes other than DVD/CD tests, as per the following screenshot:
    ... and click "Next".
    When you get through to the final screen:
    ... click the "Copy to Clipboard" button and paste the diagnostics into a reply here.

  • Some fields in text box are being displayed multiple times

    Hi All,
    I am getting a strange error in Crystal Reports.
    It is displaying a particular field multiple times while the query returns a single row.
    I have used a text box in which I have dragged and dropped that field.
    The version used to design the reports is Crystal Reports XI while client is having Crystal Reports 11.5.
    Regards,
    Misra P.

    Hi Salah,
    Thanks a lot for quick reply.
    1- I am using SQL queries ,not tables.
    2- The field is in page header for one report and in group header for the other one.
    3- If i grag and drop simply,then it shows correct result,i.e. a single record.
    e.g i am displaying a customer name with title.
    Like Mr XYZ(page header,query is returning a single row).
    and it is being displayed as
    Mr XYZ
    Mr
    Mr
    Mr
    Mr
    Mr
    Thanks again.
    Regards,
    Misra P.

  • Why do some videos from some website stop working after seconds or minutes on a new iPad

    I subscribe to some website posting videos. The videos will start as it should and then stop after, sometimes seconds, and sometimes minutes after the beginning.
    The iPad is less than 3 weeks old. it is already the second. The first was a 16 GB this one is a 32 GB. no difference. This issue does not happen with only one website but other posted videos from other websites.

    This and other answers helped me to understand better why I cannot view these videos and search for answers. I found that the videos posted by this website end in .cfm, and doing research cfm is Adobe and is not compatible with apple software ? why this is not resolved is surprising to me - Several other people experience the same issue as I (dating 2007-to 2013) I am not computer literate but I know how to find information on the web and know +or -  how to use the programs. There seems to be nothing that will convert these videos into a format that the iPad could process and allow. should I buy quicktime for my windows device and transfer/sync it to the ipad (?)(3 weeks old I paid $900) will this work. I have tried to upgrade the firmware to my router but no luck there either; even following all the steps religiously. the unzip is not working? I get a file the upgrade button rejects.
    if it is this cfm format that is doing that, then there is no reason to spend x$ into a new router : the issue will remain the same- is this statement correct ?
    your help is greatly appreciated.

  • Some fields are missing while recording through shdb

    Dear Abapers,
                   I am doing bdc for F-27 t.code.Some fields,cobl-gsber(business area),cobl-kostl(Cost center) are missing while recording through SHDB.But when do it manualy the fields are displaying.Also i have ddded those fields manualy in the program,stll the fields are not getting captured.May anyone pls help me,why this problem is happening?What is the solution for this.
    Thanks in Advance.

    hi
    i can tell u that few transactions wont suffice us with BDC,so for such transactions we do bdc with similar kind of transactions.
    ie., The transactions FB60 and f-63 both are meant for Parking.
    But we cant do bdc for FB60 Parking. So we do bdc for f-63.
    similarly when we do bdc for vendor few fields wont appear...in that case, we use bapi for it....
    So try to find an appropriate bapi or similar tcode which will suffice ur need
    hope its clear.
    Regards
    Sajid

  • ALV_grid oo: event "data_changed" on F4 in the line only for some fields

    Hi all,
    when I add a new line in ALV_Grid and I select the search help, for some fields
    the event "data_changed" has triggered even I have not finished to fill the entire fields on the line, and I don't need this.
    Opposite I have some fields which work fine and when I choose F4 the list of the
    possible values has showed without triggering "data_changed".
    Does anyboby know how is it possible?
    Since I'm new on ALV_grid oo, could you give a detailed answer?
    I thank You in advance.
                                                              Best Regards
                                                              Paolo

    I solved the problem int this way: 
    METHODS:
          handle_data_changed
              FOR EVENT data_changed
               OF cl_gui_alv_grid
              IMPORTING er_data_changed
              <u><i>e_onf4</i></u> e_onf4_before e_onf4_after.
      METHOD handle_data_changed.
    DATA: ls_good      TYPE lvc_s_modi.
    error_in_data = space.
    IF e_onf4 IS INITIAL.
      CALL METHOD check_righe_doppie  ( er_data_changed ).
      CALL METHOD update_delta_tables ( er_data_changed ).
      CALL METHOD semantic_checks     ( er_data_changed ).
    ENDIF.
      ENDMETHOD.                                  "handle_data_changed
    Message was edited by:
            Paolo Cavallini

  • Read dynamic field symbol Work Area before append to dynamic table

    Hi experts:
    I have a dynamic work area but before doing an append to the dynamic table, I need to do some validation on some fields of the work area in order to decide to append it or not, but I don't know how...
    More or less this is the example
    loop at so_kschl.
        field = so_kschl-low.
        if <t_dyntable>-field = 0. "if the value of this field in dinamic table is 0.
    don't append
        else.
           APPEND <fs_dyntable> TO <t_dyntable>.  
        endif.
    endloop.
    Thank you very much for your help.
    Miriam

    Check this example, you read the component of the dynamic work area and assign it to a field-symbols. In this case, I validate that the entry is always 'a'.
    DATA: i_lvc TYPE lvc_t_fcat WITH HEADER LINE,
          i_table TYPE REF TO data,
          l_style TYPE lvc_fname,
          l_warea TYPE REF TO data,
          l_name(7) VALUE 'VARCHAR'..
    FIELD-SYMBOLS: <fs> TYPE table,
                  <fs2> TYPE ANY,
                  <fs3> TYPE ANY.
    PARAMETERS p_char TYPE c LOWER CASE.
    START-OF-SELECTION.
      i_lvc-fieldname = 'Varchar'.
      i_lvc-inttype = 'C'.
      i_lvc-intlen = 1.
      APPEND i_lvc.
      CALL METHOD cl_alv_table_create=>create_dynamic_table
      EXPORTING
      it_fieldcatalog = i_lvc[]
      IMPORTING
      ep_table = i_table
      e_style_fname = l_style.
      ASSIGN i_table->* TO <fs>.
      CREATE DATA l_warea LIKE LINE OF <fs>.
      ASSIGN l_warea->* TO <fs2>.
      <fs2> = p_char.
      ASSIGN COMPONENT l_name OF STRUCTURE <fs2> TO <fs3>.
      IF <fs3> = 'a'.
        WRITE: 'Component VARCHAR is a'.
    *  APPEND <fs2> TO <fs>.
      ELSE.
        WRITE: 'Component VARCHAR is not a'.
      ENDIF.

  • Some fields of standard extractor 2LIS_17_I3HDR are lost in the structure

    Hi experts,
    I need help with a case of a standard extractor, the 2LIS_17_I3HDR has selected some fields like GEWRK, GSTRP, GLTRP (when I saw it in the tx. LBWE) but this fields are not defined in the structure of the extractor, Anyone know why this occurs?. I send you an example of the case, thanks for any help that you can give me.

    Hi Rosmar,
    Have your system was upgraded previously?
    This is the problem faced by many and SAP has provided a SAP note for this.
    2042469 - 2LIS_17_I3HDR: Fields are missing after upgrade
    This note explains exactly the reason of missing fields and how to retrive that.
    Even if this note do not apply to your system (valid for SAP_APPL 605, 606, 616, 617) it is worth trying in your Dev system and check if it works.
    Thanks
    Amit

  • HT204406 Hello,  I have songs that show they are "Waiting" for download from the cloud but they are greyed out.  Some songs in one album are done others in the same album will not download. It is not a time function because i have been working on this for

    Hello,  I have songs that show they are "Waiting" for download from the cloud but they are greyed out.  Some songs in one album are done others in the same album will not download. It is not a time function because i have been working on this for weeks. I have allowed my compter to run for days and the songs are still not accessible.  I have a Match subscription and Match is working.  If I click on the "Genre" link the greyed out songs show that they are ready for download from the cloud but I cannot download them.  I have downloaded over 1500 other songs, so I am trying to understand what is going on here. I would appreciate any help anyone can give me.
    Thanks

    I did think about that and if I have to I will do that, however there are about 50 songs. I have closed and reopened iTunes several times and I am sure that I have the latest version. It fails right away but I can click on the cloud download icon and download the song that it failed on ... therefore it is not that song "or any one song" causing the issue. Any ideas?

  • R12-Check Printing-Some fields are not shown in Arabic

    Hi, we have a unique problem while printing the checks some fields are printed correctly in Arabic and some are printed in english, once in english are payee name, payee address, invoice number . am i missing something here, any help is appreciated.
    Regards
    Santy

    There are couple of ways to achieve this,
    1) - Create 2 variants, 1 variant for CFO with all the fields  & 2nd variant with only relevant fields. Then use the authorization concept, where basis can restrict the access / execution of the report with specific variants.
    From the basis view, they create role & assign this variants in one of the object ( not sure). Basis assistance required
    2) - When developing report, write the validation for the respective fields such as maintain Customize table in which maintain userID's & fields which they can access. Display only those fields to the userID who executes this report. It should check this customize table for this UserID & only those fields listed should get displayed. ( for all the fields, instead maintaining each field, you can enter "ALL",
    Eg: UserID -
    Fields
           CFO -
    ALL ( report should display all the fields)
         NONCFO-------Field1 | Field2 | Field3 | Field4 | Field5 ( only these fields should get displayed)
    Note: In Customize table either you can maintain with User ID or Role. It will be more convinient in future as well.
    Regards,
    Reazuddin MD

  • Some fields are missing in some BO XI 3.1 reports

    Hi Guys,
    We are facing a strange issue on some webi reports, BO version is XI 3.1 and product version is 12.2.8.638. These reports are using a same universe which retrieves data from Data Federator
    Issue Detail: Some fields are showing empty when we run the report at 1st time, but these fields will shows correct value when we run the 2nd time. Universe level Max Row limitation is 5,000,000 and no run time limitation.
    I will appreciate if you can help me to fire the root cause.

    Hi Nigel,
    Good Morning.
    Please check following :
    1. Are you facing same issue in Webi Rich Client?
    2. If Report ran fine in WRC, see in which viewer (Web, Advanced etc.) issue persists.
    3. If all the viewers having same issue check whether loadbalancer or firewall (if any) blocking the data.
    - [You can test it with infoview link bypassing an loadbalancer and make sure your firewall is stop and disabled.]
    Regards,
    Veer S.

  • 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.

  • Some fields are missing in Current Task - Designer Workflow Approval Task Process

    Hi All,
           I am using approval task process activity in designer workflow. When i go to the single task behaviour page, some fields are missing under Current Task Source.
    Some missing fields are :
    1. Assigned To
    2.External participants
    3. Form Urn
    I am trying to get the above fields but not available. What could be the issue?
    Puli Bala

    Hi Puli,
    I think your task list is corrupted, could you please try to associate your workflow to another task list in SharePoint Designer > Click Workflows on left navigation > Click to open your workflow > Under Settings section, select another task
    list and test.
    Thanks & Regards,
    Emir
    Emir Liu
    TechNet Community Support

  • I am trying to import movie files into to iMovie. They are home videos so I use handbrake and VLC to put them onto the computer and convert them to MPEG-4 files. I successfully imported two of the videos but the others are not working, they are all MPEG-4

    I am trying to import movie files into to iMovie. They are home videos so I use handbrake and VLC to put them onto the computer and convert them to MPEG-4 files. I successfully imported two of the videos but the others are not working, they are all MPEG-4 files. Now, they are not compatible. How to I get them into imovie?

    Hi
    I use
    • DV-PAL or DV-NTSC - or -
    • AIC
    Yours Bengt W

Maybe you are looking for

  • Accessing physical floppy disk drive from Windows 8.1 host machine to Windows XP SP3 hyper-v?

    Hi there! Could someone help up me? I just wanted to ask if it's possible for a hyper-v to access a physical "floppy diskette" drive? Here's my setup: I have a Windows 8.1 as my host and Windows XP SP3 as the virtual machine. I would need to access t

  • Tree node removal problem

    I am trying to move a node while draging and dropping a node from one folder to other. It seams to be copying it but not moving it. I have the following in the handle drop method in the tree. May I know what i can change to get this working? public v

  • You may need to set ORACLE_HOME

    I installed Oracle Client 9i with administrator user. The installation was completed successfully and TNSPING and SQLPLUS utilities also working. The administrator user done the complete control privilege to the OracleHome directory and also to his s

  • Keynote soundtrack skips

    Help! I have made a Keynote slide show and added music from my iTunes, but when I plat the slide show there are skips in the music. This has never happened before, but I am using a new computer.

  • HT201210 could not restore unknown error occurred (11)

    what's the problem?