Spem fields are missing In the Query

Hi this is a FI-Sales Query , under Material Group consists Bags,Caps,wallets ete like these lot of fields but in the query i am not getting all the field. in the query designer every thing is there some fields are not coming like Tie etc,But remeber this is Production Issue.I think u r clear with the issue.
Any Help

Hi kumar
I guess what u are talking about is a values in the infoobject material group are not populating into the query.
The problem is accordig to me is that the master  data for the material Group is deleted so thats the reason u can t find material group values in the query.
If i have not understood the problem then restate the problem again in other words.
If this solves ur problem then kindly assingn the points.

Similar Messages

  • Few of my amount_cr lines are missing from the query, check GL_JE_LINES_V.

    I have a discover report which have 5 union all, and one of the select statement brings the information about the cr.type like 'MISC'from the table called ar.ar_cash_receipts_all cr.
    This query basically brings the information of amount_dr and amount_Cr from the general ledger table, the navigation for the same is as below.
    Navigation:
    Enter journals
    pick some Batch Name
    Click find button
    Place cursor on the line item from the list that has Journal Name like Miscellaneous receipts
    Click on Review Journal.
    When you check the record history pulls the information as GL_JE_LINES_V.
    I am not able to pick few of my amount_cr values.
    Tables and joints used for my query is as below.
    Please correct me if i am missing any information.
    Thanks in advance.
    Archice
    APPS.ra_customer_trx_all ct
    ,AR.ra_cust_trx_types_all ctt
    ,AR.ar_distributions_all ard
    ,apps.hz_cust_accounts_all cust
    ,AR.hz_parties cust2
    ,AR.ar_adjustments_all adj
    ,GL.gl_sets_of_books books
    where
    adj.set_of_books_id=books.set_of_books_id) and
    nvl(adj.postable,'Y')='Y') and
    adj.adjustment_id=ard.source_id) and
    ard.source_table='ADJ') and
    adj.customer_trx_id=ct.customer_trx_id)
    and ctt.cust_trx_type_id=ct.cust_trx_type_id) and
    cust.cust_account_id=decode(ctt.type,'BR',ct.drawee_id,ct.bill_to_customer_id)) and
    cust2.party_id=cust.party_id and
    ctt.set_of_books_id=books.set_of_books_id(+)

    Hi Blushadow,
    Thanks for responding my query, here is best i can mention further regarding my query problem.
    The code which I have posted earlier, has been coded by some other technical person, I have posted part of the main query which pulls ‘MISC’, the posted query is not pulling all the amount_credit (amount_cr) column information, few of the lines are missing,
    The amount_dr, amount_cr is basically called form GL_JE_LINES_V, I have checked this from record history, I want to know whether, I need any further tables to be added for the existing query, in order to pull the missing amount_cr
    Lines.
    Basically, when we check the description of the view GL_JE_LINES_V
    We have few tables.
    GL_JE_LINES JEL
    , GL_CODE_COMBINATIONS CC
    , GL_JE_LINES_RECON REC
    , GL_SYSTEM_USAGES USE
    I would like to know is there any way to use another table instead of
    GL_JE_LINES_RECON REC, because when I query it, I wont see any data from this table and this have two major joins in the mentioned view called GL_JE_LINES_V.
    Regards
    Archie

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

  • Multiprovder objects missing in the Query Designer

    Hi,
    I have multiprovider based on 2 infosets ( as the reproting is based on master data) .
    Later on i have added couple of objects in master data and adjusted the infoset and activated it . The multiprovider also ajusted after adding the fields.
    I have activated the multiprovider which is successfully activated, but when i login to Query designer and try to create a query the news objects are missing from the query desinger where as in RSA1 for the Multiprovider it is displayed.. Kindly can anyone will help to resolve this.
    Thanks

    Hi Sathish,
    Thanks for the response..
    I have cehck the infoset invidually , the data dispalyed in both the infosets are according to my requreiment.
    When i was checking the multiprovider i did not get the fileds which i have added in the multiprovider , i went back to the structure to cross check, if found this difference for all the ojects when you right click it will display assign identification filed where as for the added obejct it is displaying Change RUN id option.. why this is happening...
    This is happen in test server after transprotation where as in dev it is fine and executing properly
    Thanks
    Edited by: Sony Kapse on Mar 1, 2009 12:45 PM

  • "iTunes can not run because some of the required fields are missing.  Please reinstall iTunes."  What the ****?!

    "iTunes can not run because some of the required fields are missing.  Please reinstall iTunes."  What the ****?  Please help me figure this out.  I already removed quicktime (as another thread suggested).  I can't get in!

    i get same error.
    I have uninstalled and reinstalled more times than i care to count. but still i get
    itunes cannot run because some of its required files are missing.

  • If the connecting fields are missing the data from knvh should be u00BBnullu00AB

    Could you help me I would like to have all fields from kna1 (if the connecting fields are missing the data from knvh should be »null«)in following code
    select * from kna1 .
    select * from knvh where kunnr = kna1-kunnr and vkorg = '0200'.
      itab-mandt = kna1-mandt.
      itab-stceg = kna1-stceg.
          itab-hkunnr = knvh-hkunnr.
          itab-datab = knvh-datab.
          itab-datbi = knvh-datbi.
        append itab. clear itab.
      endselect.
    endselect.

    HI,
      use the following code
    select * from kna1 into table it_kna1.
    if sy-subrc = 0.
    select * from knvh into table it_knvh
    for all entries in IT_kna1
    where kunnr = it_kna1-kunnr
       and vkorg = '0200'.
    if sy-subrc = 0.
    loop at it_kna1 into wa_kna1.
    itab-mandt = wa_kna1-mandt.
    itab-stceg = wa_kna1-stceg.
    loop at it_knvh into wa_knvh where kunnr = wa_kna1-kunnr.
    itab-hkunnr = wa_knvh-hkunnr.
    itab-datab = wa_knvh-datab.
    itab-datbi = wa_knvh-datbi.
    append itab.
    clear itab.
    endloop.
    endloop.endif.
    endif.
    I hope this solves your problem
    Regards,
    Vara

  • Some Field Descriptions are missing on the ALV

    Hi Experts,
    In my ALV list output some fields are missing.
    Details of My Requirements......
    I ve one final internal table i.e. T_OUTPUT_DATA where all the output data were stored and in this internal table one column i.e. NOC where the total number of changes of the fields is stored .
    EX..
       FIELD.DESC.    Deficienct Type       NOC
             XXX              Missing                      3
             YYY             Missing                     2
    So my requirements is that if the NOC is 3 then the deficiency type is Critical
    if NOC is 2 then deficiency type is Medium .
    Plese help me .Reward point is sure.
    Satya

    for this requirement .....u need consider
    [    DDICTXT(1)     TYPE C,        " (S)hort (M)iddle (L)ong   ]
    wat i mean to say is ...first give
    it_fldcat-ddictxt =  's' or 'm' or 'l'  .........based on u r relavence .....
    and then give .... it_fldcat-seltext_s = ' ajhajk' ...give wat ever the text u want ...
    reward points if helpful

  • Field names Missing in the (Excel) Mail attachment

    Hi ,
    I am trying to send my ALV Grid Output as Excel Email attachment using the below code
    The problem is that the field names are missing in the receivers Mail.
    i.e
    *Name*   *Emp Code*   * Branch*         "this is missing
    abc         123                 ukp
    I searched many threads but unable to find the solution for this.
    Kindly suggest me regarding this issue.
    loop at p_eadd.
        if p_eadd-low <> space.
          clear reclist.
          reclist-rec_type = 'U'.  "Internet-adress
          reclist-receiver = p_eadd-low.
          reclist-express = 'X'.
          append reclist.
        endif.
      endloop.
    * endif.
    * Send the document
      call function 'SO_NEW_DOCUMENT_SEND_API1'
         exporting
              document_type              = 'RAW'
              document_data              = doc_chng
    *         PUT_IN_OUTBOX              = 'X'
         tables
              object_content             = objcont
              receivers                  = reclist
         exceptions
              too_many_receivers         = 1
              document_not_sent          = 2
              operation_no_authorization = 4
              others                     = 99.
      ld_aplstat = '4'.
      case sy-subrc.
        when 0.
          loop at reclist.
            if reclist-receiver = space.
              name = reclist-rec_id.
            else.
              name = reclist-receiver.
            endif.
            if reclist-retrn_code = 0.
              write: / name, ': succesfully sent'.
            else.
              write: / name, ': error occured'.
            endif.
          endloop.
          ld_aplstat = '0'.
        when 1.
          write: / 'Too many receivers specified !'.
        when 2.
          write: / 'No receiver got the document !'.
        when 4.
          write: / 'Missing send authority !'.
        when others.
          write: / 'Unexpected error occured !'.
      endcase.
    *.Tell workflow to go on
      clear ls_scma_event.
      ls_scma_event-wf_event = cs_wf_events-finished.
      ls_scma_event-wf_witem = wf_witem.
      ls_scma_event-wf_okey  = wf_okey.
      call function 'KPEP_MONI_CLOSE_RECORD'
        exporting
          ls_key        = gs_key
          ls_scma_event = ls_scma_event
        changing
          ld_aplstat    = ld_aplstat
        exceptions
          no_id_given   = 1
          others        = 2.
    call function 'SAP_CONVERT_TO_XLS_FORMAT'
          exporting
           i_field_seperator          = ' '
           i_line_header              = 'X'
            i_filename                 = p_file
    *   I_APPL_KEEP                = ' '
          tables
            i_tab_sap_data             = it_final
    * CHANGING
    *   I_TAB_CONVERTED_DATA       =
         exceptions
           conversion_failed          = 1
    *   OTHERS                     = 2
        if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
    Thanks in Advance,
    Mr. Ben

    Hi Ben,
    Follow the code below....
    Your internal table it_final will have the attachment data. After you got the attachment data do the following
    gc_ret TYPE c VALUE cl_abap_char_utilities=>cr_lf.
    lt_attachment        TYPE TABLE OF  solisti1 ,
    gt_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0 WITH HEADER LINE,
      CLEAR:gs_attach.                      <this will have your attachment, declare a structure which contains fields of your  excel sheet>
    <before this you have to copy all the fields from your final internal table which should be attached to email to gs_attach>
    For attaching field names
        CONCATENATE gc_ret gs_attach INTO gs_attach.
        gs_attach = gs_attach+1.
        APPEND gs_attach TO gt_attach.
    CLEAR:lt_attachment.
          lt_attachment[] = gt_attach[].
    SORT  lt_attachment .
          DELETE ADJACENT DUPLICATES FROM lt_attachment COMPARING ALL FIELDS.
          CLEAR gs_attach.
          CONCATENATE <field names >
          INTO gs_attach SEPARATED BY gc_tab.
          INSERT gs_attach INTO lt_attachment INDEX 1.
    <field addition ends>
    call function 'SO_NEW_DOCUMENT_SEND_API1'
         exporting
              document_type              = 'RAW'
              document_data              = doc_chng
            PUT_IN_OUTBOX              = 'X'
         tables
              object_content             = objcont
              receivers                  = reclist
            contents_bin               = lt_attachment
         exceptions
              too_many_receivers         = 1
              document_not_sent          = 2
              operation_no_authorization = 4
        if sy-subrc  0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
    Regards,
    Aravind.

  • Fields are missing in Purchasing View

    Dear Experts,
    We have developed Work flow to create material.The work flow cycle follows like this
    <b>User1-Basic Data1&2,User2-Sales Views,User 3-Purchasing View,User4-MRP Views and User5- Finance and Accounting Views...</b>
    For this we made an option in Basic Data1 view.There is a field called <b>Lab/Office</b>,we customized this field for our purpose.
    1.If we give value as 1, system will trigger user to create a material through work flow.
    2.If we give value as 2,system will come out of work flow,and user can create a material as normal.
    Now we got an issue like this...when user has created a material through work flow,in Purchasing View some fields are missing...<b>Purchasing Group,Plant-sp.matl status,Tax ind. f. material,Qual.f.FreeGoodsDis,Autom.PO</b>....
    While creation of material this Purchasing Group field is appearing at the time of MRP1 and after creation of material,when we go for display material it is showing <b>Purchasing Group,Plant-sp.matl status,Tax ind. f. material,Qual.f.FreeGoodsDis</b> fields.....
    Why it is happening like this???Does this Lab/Office Field has got any affect on work flow???
    Please reply me...
    Regards
    MK

    Dear Ashish,
    We had given authorization to user.
    I would like to ask one more thing,with this particular user we tried to create a material through normal procedure with MM01.Then also in Purchasing View Screen,some fields are missing.
    <b>Purchasing Group,Plant-sp.matl status,Tax ind. f. material,Qual.f.FreeGoodsDis,Autom.PO....</b>...
    We tried to create with other user,then we can see all field Purchasing View....
    So is there any settings on user specific for these fields???
    Please Do Reply me....
    Regards
    MK

  • 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

  • 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

  • Default parameters are missing in the cloned EUL

    we have discoverer up and running perfectly on our existing instance - SIGMA
    now we have a new instance - ALPHA,
    we cloned the whole EUL from old instance(SIGMA),
    IN ALPHA every thing is working fine, we have all the BA,folders and all the workbooks seem to work fine, but we have a issue with the default parameters.
    the default parameters are missing from the workbooks, now this has become an big issue, because we have hundreds of reports and user want need them all with the default parameters
    could somebody please help me on this issue
    few questions:
    when cloned does the default parameters get erased??
    Does the default parameters entered in the workbook get saved anywhere in the EUL_Tables??
    Could you please give me a best approach to bring in thoese default parameters??
    any thoughts are highly appreciated
    note: i can edit the worksheet and enter the default parameter and save the worksheet but we have got some hundreds of workbooks

    Hi,
    when cloned does the default parameters get erased??I would be surprised if the default parameters are erased. More likely is that they are not being used because the default value is not valid anymore or because Discoverer is trying to use the last parameter value. Check the value of the SaveLastUsedParamValue preference setting. Is this the same on Desktop, viewer and Plus?
    Does the default parameters entered in the workbook get saved anywhere in the EUL_Tables??The default parameters will be save along with the workbook in the EUL5_DOCUMENTS table. The field is of type LONG RAW so you won't easily be able to see this field. You can use the workbook dump utility to check whether there are default parameters actually set up in the workbook.
    Could you please give me a best approach to bring in thoese default parameters??You could try exporting and importing the workbooks into the new environment to see whether this fixes the issue.
    Rod West

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

  • Unbale to get complete output as some field are missing in z t-code.

    Respected Guru's,
    i am tring to get output from a customized t-code.
    While executing the report in background,  i mention customized format as the exsisting format does not match.
    But i  am the unbale to get complete output as some field are missing.
    Please help me, i have tried change the no of rows and coloums, but no effect.
    Regards,
    Daya

    Hi,
    Please try with printer settings and used different printer formats.
    Actully this problem because of printers configration which is used for backgound reports.
    Regards,
    Ravi

  • Events are missing in the calendar in Month view in Blend

    Type :
    Bug
    Initial condition :
    The blend software is running. The calendar view is opened.
    Action :
    Select the month view.
    Expected result :
    All events are displayed for each day.
    Obtained result :
    The events of the previous month are missing.

    Having the same problems where the UI elements are missing in the layout screen.
    using the Show/Hide layout Preview Button  I get an Program cannot  display the web page.
    The server is on a different box . Tried running the sapgui  from a vista machine and a xp machine and they both have the same problem.
    If I run Sapgui on the server box the Show/Hide layout Preview Button  does show a subset on the ui elements but not all the examples described in the "ABAP Trial Version for Newbies: Part 18 - Starting with Web Dynpro for ABAP"
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414900)ID1299772950DB10354599868941910736End?blog=/pub/wlg/6973
    Thanks in advance.

Maybe you are looking for

  • Display 0TOTALSTCK with respect to Material,Purchase order, OrderItem Level

    Hi, I have a reporting scenario wherein I require to display the total stock of the material with respact to Purchase order , Order Item Level - For Ex: material     Po No     Po Item     Receipts     Issues     Total Stck M1     10001     10     100

  • Struts tags preferences

    is there a preference file for Struts tags such that the HTML code it generates can be customized? For example I have the following Struts tag code: <s:form      action="upload" method="POST" enctype="multipart/form-data">      <s:file name="upload"

  • Web dynpro Abap : Icons not display in alv table

    Hi , I want to replace the content of a cell by an icon ,in an alv table. I know how I should do it, but my icon is never displayed. There is only an "X" as if the icon hasn't been find. Did anyone encountered the same issue? Thanks Karim

  • Migrate one HDD to different Storage

    Hi Guys, in our LAB we have two VMS with two differents HDD attached it to it, lately we have attached extra storage and want to move one HDD to different storage Disk 1  is 40 GB on the SSD Hard disk  Disk 2 is 1TB on Sata Hard Disk. I want to move

  • Which RH8 file holds conditional build tag defintions?

    Mine got lost and I have to find it in a backup.