No Applicable Data - Hide table

Hi,
When I execute a query and there is no result, the table shows "No Applicable Data". Now I want to hide this table. I tried several visibility conditions, but it didn't work. I thougt I could use something like BOOL(IF(@column1=='',false,true)) or maybe BOOL(IF(column1==null,false,true)), but it doesn't work.
Any ideas?
Thank you!

Hello,
I can explain why what u did didnt work.
Reason:
Because @column1 value can be obtained only after some event Like 'select, submit, evt1 ...etc. if you want to put this formula in some guard condition of an event it will work.
But Since you want to use it before the table is displayed, when it is not there at all. Thats why it didnt work.
To solve this problem you might try storing a flag variable in data store, whose value is updated based on the result from web service. And you can use this flag to make your table visible or hidden. I think this should work. 
Regards
Ashutosh

Similar Messages

  • Hiding table items in web report when "no applicable data found"

    Hi,
    i want to hide a complete web item from a web report using web table interface
    when i have the situation "no applicable data found".
    I cannot use javascript due to requirements in my solution.
    can i set some attributes in the START method in the class?
    i can see there is an attribute N_NO_DATA which tells if no data is found.
    Can i use this in the other methods to hide the complete table including table heading?
    Best regards,
    Jarle

    Hello,
    datas are available in the Cube, they are displayed when there is no filter or when only one single value is selected in the filter.
    The problem happens when two or more values are selected in the filter.
    Example :
    The field selected is Profit Center.
    Without filter the I can see :
    PC1
    PC2
    PC3
    etc...
    If I select in filter the value PC1, I can see :
    PC1
    If I select in filter the value PC2, I can see :
    PC2
    But If I select in filter the values PC1 and PC2, I can see :
    No Applicable Data Found.
    BR,
    Pedro.

  • Open HUB ( SAP BW ) to SAP HANA through DB Connection data loading , Delete data from table option is not working Please help any one from this forum

    Issue:
    I have SAP BW system and SAP HANA System
    SAP BW to SAP HANA connecting through a DB Connection (named HANA)
    Whenever I created any Open Hub as Destination like DB Table with the help of DB Connection, table will be created at HANA Schema level ( L_F50800_D )
    Executed the Open Hub service without checking DELETING Data from table option
    Data loaded with 16 Records from BW to HANA same
    Second time again executed from BW to HANA now 32 records came ( it is going to append )
    Executed the Open Hub service with checking DELETING Data from table option
    Now am getting short Dump DBIF_RSQL_TABLE_KNOWN getting
    If checking in SAP BW system tio SAP BW system it is working fine ..
    will this option supports through DB Connection or not ?
    Please follow the attachemnet along with this discussion and help me to resolve how ?
    From
    Santhosh Kumar

    Hi Ramanjaneyulu ,
    First of all thanks for the reply ,
    Here the issue is At OH level ( Definition Level - DESTINATION TAB and FIELD DEFINITION )
    in that there is check box i have selected already that is what my issue even though selected also
    not performing the deletion from target level .
    SAP BW - to SAP HANA via DBC connection
    1. first time from BW suppose 16 records - Dtp Executed -loaded up to HANA - 16 same
    2. second time again executed from BW - now hana side appaended means 16+16 = 32
    3. so that i used to select the check box at OH level like Deleting data from table
    4. Now excuted the DTP it throws an Short Dump - DBIF_RSQL_TABLE_KNOWN
    Now please tell me how to resolve this ? will this option is applicable for HANA mean to say like , deleting data from table option ...
    Thanks
    Santhosh Kumar

  • No Applicable data in Jump Report

    Hi All,
    I am having some issue with jump report.We are able to see the data in multiprovider of both main and jump one..when we check in report for Asia region i am able to see data in main report but when we go to jump report i am getting No Applicable data Found.Other than Asia ,jump report is showing data for other regions.Query is based on multiprovider.Ther is no conditions also.please help me out.
    Cheers,
    Bhavani

    That variable is having this call function query.
    WHEN c_zvbesfss.
          CALL FUNCTION 'ZBWSP_GET_INFOPROV_YYSTEERQ'
            EXPORTING
              i_bwsp_infoprov        = i_s_cob_pro-infoprov
      I_BWSP_QUERY           =
              i_bwsp_iobjnm          = '0COMP_CODE'
            TABLES
              i_bwsp_var_range       = i_t_var_range
      T_YYSTEERQ             =
              e_t_range              = e_t_range.
    and call function is
    DATA: r_bwsp_inobj      TYPE RANGE OF rsiobjnm,
            l_bwsp_inobj      TYPE rsiobjnm,
            w_bwsp_inobj      LIKE LINE OF r_bwsp_inobj,
            w_bwsp_var_range  TYPE rrrangeexit, "variable structure
            w_yysteerq        TYPE yysteerq,    "Steering Table
            l_s_range         TYPE rrrangesid.  "Range expanded around SID
      CONSTANTS: zsppc_c_zero TYPE char1  VALUE '0'.    "for zero
    Processing the i_t_var_range table and filling up the range r_bwsp_comp_code
      LOOP AT i_bwsp_var_range INTO w_bwsp_var_range WHERE iobjnm = i_bwsp_iobjnm.
        w_bwsp_inobj-sign   = w_bwsp_var_range-sign.
        w_bwsp_inobj-option = w_bwsp_var_range-opt.
        w_bwsp_inobj-low    = w_bwsp_var_range-low.
        w_bwsp_inobj-high   = w_bwsp_var_range-high.
        APPEND w_bwsp_inobj TO r_bwsp_inobj.
      ENDLOOP.
        l_bwsp_inobj = i_bwsp_iobjnm.
        SHIFT l_bwsp_inobj LEFT DELETING LEADING zsppc_c_zero.
    If the above range is filled then
      IF NOT r_bwsp_inobj IS INITIAL.
    Fill the t_yysteerq table from yysteerq database table
        SELECT *
        FROM yysteerq
        INTO TABLE t_yysteerq
        WHERE mprov = i_bwsp_infoprov
        AND query   = i_bwsp_query
        AND iobj    = l_bwsp_inobj
        AND char_val IN r_bwsp_inobj.
      ELSE.
    Otherwise fill t_yysteerq table from yysteerq database table
        SELECT *
        FROM yysteerq
        INTO TABLE t_yysteerq
        WHERE mprov = i_bwsp_infoprov
        AND query   = i_bwsp_query
        AND iobj    = l_bwsp_inobj.
      ENDIF.
    Check the sy-subrc and if OK, then update the e_t_range table
    by processing t_yysteerq internal table
      IF sy-subrc = 0.
        SORT t_yysteerq.
        DELETE ADJACENT DUPLICATES FROM t_yysteerq.
        LOOP AT t_yysteerq INTO w_yysteerq.
          l_s_range-low = w_yysteerq-cube.
          l_s_range-sign = 'I'.
          l_s_range-opt = 'EQ'.
          APPEND l_s_range TO e_t_range.
        ENDLOOP.
    Delete e_t_range if any duplicates are updated.........
        SORT e_t_range BY low.
        DELETE ADJACENT DUPLICATES FROM e_t_range COMPARING low.
      ENDIF.
    ENDFUNCTION.
    I took abapers help but nothing found

  • CIF issue u201CNo data in table TRFCQDATA selected (internal )u201D

    Hi SAP Gurus,
    I am facing CIF issue in R/3 quality system after this system has been refreshed with production. When i try to activate the integration model for any data, the inbound queues are failing with status "u201CNo data in table TRFCQDATA selected (internal )u201D. When i try to delete this queue and activate the integration model the same is getting activated. But seems like activation is not happening as expected. Please advise on how do resolve this issue of u201CNo data in table TRFCQDATA selected (internal )u201D.
    I have been looking into the SAP note 961154 for the resolution. But when we tried the same implementing and it thrown up an error message saying that its applicable to DB2 database .We are having IBM hardware with Linux and oracle database. Please any one of you know what SAP note is applicable in that case. I am  not sure of what needs to be maintained in that tabe TRFCQDATA and the significance of the same.
    Based on your replies, i am thinking of reaching out the SAP by raising an OSS note.
    Thanks in Advance.
    Jagadeesh

    Hi,
    The destination in SMQR should either be empty or pointing to a destination on the local system. If you configure it with a destination pointing to other system, then you will get this problem, because the data is only available on the local system and the inbound luws should only be processed on this local system.                                                                               
    Please check the note no 369007, specifically question 11  to ensure you have the correct settings.Also go through the note description and answers to other questions and see if it helps.                                                                               
    Also check the following notes:                                                                               
    697884 - Queues in SMQ2 are not processed.                             
    524419 - Procedure for large-scale queue jams.                         
    523974 - Inbound/outbound queues are not processed.                    
    527481 - tRFC or qRFC calls are not processed.                         
    564612 - FAQ, Q+A, SM59, RFC destination, RFC error                                                                               
    I hope I could help.
    Regards,
    Tibor

  • How to hide table column based on country molga value

    Hi Experts,
    I am doing some enhancement in ess application. I want to hide table column based on country code i.e. Molga value.
    I want to hide coulm for only Japan country reset of them i need to be show those coulmn.
    Could you please provide me a sample code.
    Regards
    Chakri

    Hi Chakri,
    Your setting the table value that time you will get the Country Code.
    1.Create the attribute like Country_Column_Visible Data Type bind the com.sap.ide.webdynpro.uielementdefinitions.Visibility this value  you need to bind the table country column.
    2.In Table You need to check the country code Japan is available you need follow this below sample code.
    for(int i=0;i<tablesize;i++)
         tablesithValue=wdContext.nodeTable().getTablenode(i);
         if(null != tablesithValue.getcountrycode)
         if(tablesithValue.getcountrycode.equalsIgnoreCase("Japan"))
              wdContext.currentxxxxElement.setCountry_Column_Visible(WDVisibility.NONE);
         }else
              wdContext.currentxxxxElement.setCountry_Column_Visible(WDVisibility.VISIBLE);
    Use the above code you condition it will work.I hope it will help you.
    BR,
    Durga

  • How to hide table in bo based on userresponse selection

    Hi,
    I have a requirement in my webi report i have to reports Table1 and Table 2 ( Two blocks)..
    And we have two date Prompts like D1  and D2 both are optional prompts. 1)   If user enter D1 date appear table1 and table 2 should be hide same way
                                                                                                                2)  If user enter D2 date appear table 2 and table 1 should be hide..
    Pls give any suggestions to achieve this problem...
    Regards,
    G

    Hi Bhargav,
    Suppose let us think, these are the two blocks,
    Now Right clik on Table/Block 1, Hide -- Hide When - Write the Below Formula
    Right Click on Table/ Block 2, Hide -- Hide when -- =IsNull([Demo Date])
    Apply and Ok.

  • Transported query from DEV to QAS no applicable data

    Hi all, any idea why queries transported from a DEV system to a QAS system will not execute?  I am getting no applicable data even though the data is in the cube. I am not having much luck with new queries either.  Please advise.  Anna Marie

    Hi Anna,
    Looks really strange...
    Are you sure data is reportable on your InfoCubes on QAS? (do you see the table icon on the right of all request ids?).
    Are you sure query is not filtering too much data? Please, check this by displaying filtered values with 'Display text elements -> All' on BEx Toolbar.
    Regards,
    David.

  • How to hide table header for empty table

    Hi,
    I wanna to hide table header for all tables which doesn't contain any data in my Adobe form. How can I do this? Helpful answers will be rewarded .

    HI Aliaksandr,
    You can use javascript to do this dynamically.
    For example, i used Adobe Designer 7.1 to add a table to a subform.
    Now, i have the object hierchy as:
    Level 1 - form1
    Level 2 - form2
    Level 3 - Table1
               -->HeaderRow
                    --> Cell1
                    --> Cell2
               -->Row1
                    --> Cell1
                    --> Cell2
    Now, i sleect the Table1 element, and write the javascript which is executed on Initialization, as
    if(this.Row1.Cell1.rawValue == "")
    this.HeaderRow.presence = "hidden" ;
    This will check that if the first row is empty, it will hide the header from the layout.
    You can use something similar for your requirement.
    Hope this helps,
    Siddhartha Jain

  • How to replace "No Applicable data found." message with other message ?

    Hi all BW Gurus
    I have a very specific requirement wherein the user wants to see different message instead of "No Applicable data found." in Web result of query.
    I think this should be possible with Table Interface Class but i am not sure how to go about this.
    If anybody can help me in this regard with sample ABAP code to be written in Table interface class it would be highly appreciated as the requirement is very urgent.
    Thanks in Advance
    Regards
    Swapnil.

    Hi  Swapnil,
         If you are using Web Application Designer means... Through Java Scripting you can solve ur problem.... if it BEX means  through Macros  you can solve ur problem...
           let me know,  if you are using Wad means.. i will give the  java script.... for  displaying different message....
    thanks
    @jay

  • BEx Analyzer (SAP BW 3.x) - No Applicable Data Found

    Hi,
    currently, i now access my BI Server remotelly and my local pc is install with Netweaver 2007s, and i try to do a tutorial on SAP BW. like create infosource, infocube and etc but when i finish creating the infocube and try to make a new query on BEx Analyzer (SAP BW 3.x), and seem like it cannot display anything the errors is as follow "No Applicable Data Found" so now i suspect is either drivers problem or access right problem.. beside that i do make an Installation Check On BEx Analyzer  on Business Explorer after that i display this few red alerts.
    Filename                   Version on PC
    <b>BW Components</b>     
    sapbex.xla                     Not found
    sapbex0.xla     Not found
    sapbexc.xla     
    <b>OLE for OLAP</b>     
    mdrmdlg.dll     Not found
    mdrmsap.dll     Not found
    mdxpars.dll     Not found
    saprfc.ini                     Not found
    scerrlkp.dll                     Not found
    <b>SAP GUI core components</b>
    sapfctrl.dll                     Not found
    sapfcust.exe     Not found
    sapfdraw.dll     Not found
    sapfewrm.dll     Not found
    sapfhook.dll     Not found
    wonder could anyone advise me on will this few components result i unable to display the data? if really i need those component how could i download it or should i reinstall it...
    anyway for access right part, currently i not the super user account will it affect the query??

    Hi Ram,
    My dimension table i check already in the Data Warehousing WorkBench the data is sufficient.
    even i also check on My Fact table, it has also data loaded in.
    but then problem is i unable to display data out.
    as according to the book, i follow it should be display out the whole information.
    Regards
    Jia Jun

  • Data base table hierarchy

    hi ,
    when i opened the Data Base table in SE11 ..the hierarchy of the fields r not  displaying in a standard order.can anyone tell where we can find the setting option to rectify the correct sequence of the fields.
    Suman R

    Hi suman,
       You can do anything with the fields created already ,
       while displaying you can hide some fields and display
       goto the selection screen of table , in menu settings>format list>choose fields

  • How to make column headers in table in PDF report appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp

    Hi my name is vishal
    For past 10 days i have been breaking my head on how to make column headers in table appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp.
    Given below is my code in c# on how i export datas from different tables in sql server to PDF report using iTextSharp:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using System.Diagnostics;
    using System.IO;
    namespace DRRS_CSharp
    public partial class frmPDF : Form
    public frmPDF()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(6);
    table.TotalWidth =530f;
    table.LockedWidth = true;
    PdfPCell cell = new PdfPCell(new Phrase("Institute/Hospital:AIIMS,NEW DELHI", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK)));
    cell.Colspan = 6;
    cell.HorizontalAlignment = 0;
    table.AddCell(cell);
    Paragraph para=new Paragraph("DCS Clinical Record-Assigned Dialyzer",FontFactory.GetFont("Arial",16,iTextSharp.text.Font.BOLD,BaseColor.BLACK));
    para.Alignment = Element.ALIGN_CENTER;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(105f, 105f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn = new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select d.dialyserID,r.errorCode,r.dialysis_date,pn.patient_first_name,pn.patient_last_name,d.manufacturer,d.dialyzer_size,r.start_date,r.end_date,d.packed_volume,r.bundle_vol,r.disinfectant,t.Technician_first_name,t.Technician_last_name from dialyser d,patient_name pn,reprocessor r,Techniciandetail t where pn.patient_id=d.patient_id and r.dialyzer_id=d.dialyserID and t.technician_id=r.technician_id and d.deleted_status=0 and d.closed_status=0 and pn.status=1 and r.errorCode<106 and r.reprocessor_id in (Select max(reprocessor_id) from reprocessor where dialyzer_id=d.dialyserID) order by pn.patient_first_name,pn.patient_last_name", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("Reprocessing Date");
    table.AddCell("Patient Name");
    table.AddCell("Dialyzer(Manufacturer,Size)");
    table.AddCell("No.of Reuse");
    table.AddCell("Verification");
    table.AddCell("DialyzerID");
    while (dr.Read())
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString() +"_"+ dr[4].ToString());
    table.AddCell(dr[5].ToString() + "-" + dr[6].ToString());
    table.AddCell("@count".ToString());
    table.AddCell(dr[12].ToString() + "-" + dr[13].ToString());
    table.AddCell(dr[0].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    System.Diagnostics.Process.Start("AssignedDialyzer.pdf");
    if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.Yes)
    var writer2 = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    else if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.No)
    this.Close();
    The above code executes well with no problem at all!
    As you can see the file to which i create and save and open my pdf report is
    AssignedDialyzer.pdf.
    The column headers of table in pdf report from c# windows forms using iTextSharp are
    "Reprocessing Date","Patient Name","Dialyzer(Manufacturer,Size)","No.of Reuse","Verification" and
    "DialyzerID".
    However the problem i am facing is after execution and opening of document is my
    column headers in table in pdf report from
    c# and datas in it all appear in bold.
    I have browsed through net regarding to solve this problem but with no success.
    What i want is my pdf report from c# should be similar to following format which i was able to accomplish in vb6,adodb with MS access using iTextSharp.:
    Given below is report which i have achieved from vb6,adodb with MS access using iTextSharp
    I know that there has to be another way to solve my problem.I have browsed many articles in net regarding exporting sql datas to above format but with no success!
    Is there is any another way to solve to my problem on exporting sql datas from c# windows forms using iTextSharp to above format given in the picture/image above?!
    If so Then Can anyone tell me what modifications must i do in my c# code given above so that my pdf report from c# windows forms using iTextSharp will look similar to image/picture(pdf report) which i was able to accomplish from
    vb6,adodb with ms access using iTextSharp?
    I have approached Sound Forge.Net for help but with no success.
    I hope anyone/someone truly understands what i am trying to ask!
    I know i have to do lot of modifications in my c# code to achieve this level of perfection but i dont know how to do it.
    Can anyone help me please! Any help/guidance in solving this problem would be greatly appreciated.
    I hope i get a reply in terms of solving this problem.
    vishal

    Hi,
    About iTextSharp component issue , I think this case is off-topic in here.
    I suggest you consulting to compenent provider.
    http://sourceforge.net/projects/itextsharp/
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to populate data in table control  .

    hi all,
    i put matnr no. in screen no. 103
    validation is done at that screen only.
    now when i want to modify dat record
    when i put matnr no. at screen 103
    so how i will get all  data of dat number to table control screen.

    Hi Darshan,
       Here is a detailed description of how to update data in table controll.
      Updating data in table control
    The ABAP language provides two mechanisms for loading the table control with data from the internal table and then storing the altered rows of the table control back to the internal table.
    Method 1: Read the internal table into the Table Control in the screenu2019s flow logic.  Used when the names of the Table Control fields are based on fields of the internal table.
    Method 2: Read the internal table into the Table Control in the module pool code. Used when the names of the Table Control fields are based on fields of the database table.
    Method 1 (table control fields = itab fields)
    In the flow logic we can read an internal table using the LOOP statement. Define the reference to the relevant able control by specifying WITH CONTROL <ctrl>
    Determine which table entry is to be read by specifying CURSOR <ctrl>-CURRENT_LINE.
    After the read operation the field contents are placed in the header line of the internal table. If the fields in the table control have the same name as the internal they will be filled automatically. Otherwise we need to write a module to transfer the internal table fields to the screen fields.
    We must reflect any changes the user makes to the fields of the table control in the internal table otherwise they will not appear when the screen is redisplayed after PBO processing, (eg, after the user presses Enter or scrolls) However, this processing should be performed only if changes have actually been made to the screen fields of the table control (hence the use of the ON REQUEST)
    PROCESS BEFORE OUTPUT.
    LOOP AT ITAB_REG WITH CONTROL TCREG
    CURSOR TCREG-CURRENT_LINE.
    ENDLOOP.
    PROCESS AFTER INPUT.
    LOOP AT ITAB_REG.
    MODULE MODIFY_ITAB_REG.
    ENDLOOP.
    MODULE MODIFY_ITAB_REG INPUT.
    MODIFY ITAB_REG INDEX TCREG-CURRENT_LINE.
    ENDMODULE.
    Method 2 (table control fields = dict. fields)
    If using a LOOP statement without an internal table in the flow logic, we must read the data in a PBO module which is called each time the loop is processed.
    Since, in this case, the system cannot determine the number of internal table entries itself, we must use the EXIT FROM STEP-LOOP statement to ensure that no blank lines are displayed in the table control if there are no more corresponding entries in the internal table.
    PROCESS BEFORE OUTPUT.
    LOOP WITH CONTROL TCREG.
    MODULE READ_ITAB_REG.
    ENDLOOP.
    PROCESS AFTER INPUT.
    LOOP WITH CONTROL TCREG.
    CHAIN.
    FIELD: ITAB_REG-REG,
    ITAB_REG-DESC.
    MODULE MODIFY_ITAB_REG
    ON CHAIN-REQUEST.
    ENDCHAIN.
    ENDLOOP.
    MODULE READ_ITAB_REG OUTPUT.
    READ TABLE ITAB_REG INDEX TCREG-CURRENT_LINE.
    IF SY-SUBRC EQ 0.
    MOVE-CORRESPONDING ITAB_REREG TO TCREG.
    ELSE.
    EXIT FROM STEP-LOOP.
    ENDIF.
    ENDMODULE.
    MODULE MODIFY_ITAB_REG INPUT.
    MOVE-CORRESPONDING TCREG TO ITAB_REG.
    MODIFY ITAB_REG INDEX
    TCREG-CURRENT_LINE.
    ENDMODULE.
    Updating the internal table
    Method 1
    PROCESS AFTER INPUT.
    LOOP AT ITAB_REG.
    CHAIN.
    FIELD: ITAB_REG-REG,
    ITAB_REG-DESC.
    MODULE MODIFY_ITAB_REG ON CHAIN-REQUEST.
    ENDCHAIN.
    ENDLOOP.
    MODULE MODIFY_ITAB_REG INPUT.
    ITAB_REG-MARK = u2018Xu2019.
    MODIFY ITAB_REG INDEX TCREG-CURRENT_LINE.
    ENDMODULE.
    Method 2
    PROCESS AFTER INPUT.
    LOOP WITH CONTROL TCREG.
    CHAIN.
    FIELD: TCREG-REG,
    TCREG-DESC.
    MODULE MODIFY_ITAB_REG ON CHAIN-REQUEST.
    ENDCHAIN.
    ENDLOOP.
    MODULE MODIFY_ITAB_REG INPUT.
    MOVE-CORRESPONDING TCREG TO ITAB_REG.
    ITAB_REG-MARK = u2018Xu2019.
    MODIFY ITAB_REG INDEX TCREG-CURRENT_LINE.
    ENDMODULE.
    Updating the database
    MODULE USER_COMMAND_100.
    CASE OK_CODE.
    WHEN u2018SAVEu2019.
    LOOP AT ITAB-REG.
    CHECK ITAB_REG-MARK = u2018Xu2019.
    MOVE-CORRESPONDING ITAB_REG TO TCREG.
    UPDATE TCREG.
    ENDLOOP.
    WHEN u2026
    u2026
    ENDCASE.
    ENDMODULE.
    Hope this will solve your problem.
    Regards,
    Pavan.
    Edited by: PAVAN CHANDRASEKHAR GANTI on Aug 3, 2009 12:48 PM

  • Unable to see data in Table in smartform

    Hi all,
    I need to create a smartform where I have to print the header details at the start and then below that details for all line items for a particular document.
    so i have data ;ike :
    Header data :
    field 1 : field 2:
    Field3 : field4:
    field5: field6:
    Item data :
    field1 field2 field3 field4 --> Item 1
    field1 field2 field3 field4 -->Item 2
    field 1 field2 field3 field4 -->Item3
    For the Header data,Im planning to use a template in a secondary window.
    However for the item data,i need to use a table (As i know the no of records only at runtime).Also another reason for usng table would be that I dont need the header on each flloowing page but only the Line item details on the following pages.
    Now my ques is :
    1.I hav ecreated the form and put some constant /texts to just test the form.I am able to see the texts/data in the header data.However  Im unable to see the data for the Item i.e. in the TABLE.
    I have used template for Header details which I can see.
    I dont know what Im doing wrong.Is it because in the DATA tab under TABLES,I have given an interna table but there is no data in the table?
    I have defined only 1 line type in  my table an dthat has 4 cells (as I need to print 4 item fields under the Item data)
    PLease let me know what I am doig wrong because of which Im unable to see the item data in table form.
    Thanks!

    Hi,
    Have you used any exists?
    in exists is there any system date kind?
    Can you try to run your report thru RSRT and use debug option there.
    before reporting please check your all connected targets have data for reporting.
    mean at targets-->request tab, reporting symbol was there or not.
    Any master data objects included in multi provider?
    if yes then please check those, if any ACR was running then it may cause you.
    if possible try to develop simple query with as per needs(mean to see 2015 data only).
    As my guess selections/filters migth be hidden, please check those.
    Thanks

Maybe you are looking for

  • New to Apple - Bootcamp Help

    Hello everyone - I'm new to Apple and these forums. I just bought an iMac 21.5" the cheapest version. I have a couple of programs that I use that will only run on Windows. What is the best way to go about that? Bootcamp? Paralells? or something else?

  • Can EBS E-Tax be used as Tax Engine For External Systems

    Dear E-Tax Gurus, I have a question regarding to e-tax engine in R12. Assuming we have EBS R12 and another system that is not EBS, but both has same customer base and same product base (so customer and product which we get is exactly same from that s

  • Duplicate sent message

    I found this help page http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB10332&sliceId=1&docTy... and it was very informative.  I tried going to the BlackBerry Internet Service on my computer, but it wouldn't let me creat

  • Difference between diff ., P.O.

    Hi guru's Can anybody clarity that is there any difference between raw material procurement, Normal P.O. for traded goods while creating P.O., MIGO & MIRO. Please its urgent. regards tuljasingh,

  • Credit Memo Request Vs. Invoice Correction Request

    Hi, I have done tests and searched the forums but I don't understand the difference between a credit memo request and invoice correction request. What are the business scenarios for each? They both create a credit memo in the end (just one has 2 line