I need  Web based Dynamic Reporting tools

Hi,
I need a Web based Dynamic Reporting tool.
I have to user oracle products and this reporting tools must support OLAP and Data Warehousing.
thanks,

Hi Shima,
Let me quote from Oracle Reports website:
"Oracle Reports is Oracle's award-winning, high-fidelity enterprise reporting tool. It enables businesses to give immediate access to information to all levels within and outside of the organization in an unrivaled scalable and secure environment. Oracle Reports consists of Oracle Reports Developer (a component of the Oracle Developer Suite) and OracleAS Reports Services (a component of the Oracle Application Server)."
Since you need a web-based reporting tool, this is what is available with Oracle Reports:- you cannot design reports on the web, but you can use Oracle Reports Developer to design high quality reports that are suitable for viewing on the web.
Oracle Reports support OLAP as a data source.
From your requirements, it seems that it might be worthwhile for you to check out Oracle Discoverer which is again a powerful reporting and analysis tool. Oracle Discoverer is more suitable for ad-hoc reporting and web-based analysis of data by the end-users:
http://www.oracle.com/technology/products/discoverer/index.html
Navneet.

Similar Messages

  • Web-based data visualization tools

    Hi.  I originally posted this question to the LV forum, but I am going to modify my question because I think Diadem may be a good solution for us.
    I am embarking on a interesting research project that will involve recording lots of physiological signals from patient monitors in a hospital.  I will be recording signals like BP, spO2, Pulserate, ECG, etc.
    Right now, my main design concern is how to give clinicians access to the data after it is recorded.  I think Diadem might be a good solution, but I really want it to be web-based.
    Here is my wish list:
    - Store the data securely, where access can be restricted and controlled (e.g. user must login)
    - Allow users (who are granted access) to login and view historical data via a simple web browser
    - Allow users to pick datasets amd zoom, scroll, etc. 
    - Allow user to view data in stacked plots (e.g. so they can see multiple signals simultaneously on the screen and scroll the time axis)
    - Allow user to annotate data (e.g. add comments at specific timestamps)
    Do you have any reccomendations for a web-based data visualization tool like this?  Do you think Diadem meet my needs?

    Hello J Osborne,
    You application sounds like a great fit for DIAdem and the DataFinder, with the exception of the Web-based nature of the application. We currently do not offer a native web interface to DIAdem and it's features, but there are ways to accomplish that using established technologies such as remote clients ...
    Here are my comments to your individual questions:
    - Store the data securely, where access can be restricted and controlled (e.g. user must login)
    * The DataFinder Server (which works with DIAdem) technology can be used to give specific users access to only data they are supposed to see, so we can cover this part of your application
    - Allow users (who are granted access) to login and view historical data via a simple web browser
    * This would have to be achieved via a remote client solution, since DIAdem offers no native Web client
    - Allow users to pick datasets amd zoom, scroll, etc. 
    * This is something that the DIAdem NAVIGATOR and DIAdem VIEW are very good at, including the ability to search for data sets based on specific key words, patient names, etc. and the ability to look at multiple data sets simultaneously in multiple windows with zooming and scrolling.
    - Allow user to view data in stacked plots (e.g. so they can see multiple signals simultaneously on the screen and scroll the time axis)
    * That's DIAdem VIEW, sounds like a perfect fit: http://zone.ni.com/devzone/cda/tut/p/id/7384
    - Allow user to annotate data (e.g. add comments at specific timestamps)
    * DIAdem VIEW has the ability to highlight events with cursors, and we could easily add the ability to add comments through a custom dialog and a short script. We could prepare and demo this feature for you ...
    I would be happy to discuss your application with you in more detail. Feel free to contact me at (800) 531-5066 (ask for Otmar Foehner) or via email at    otmar DOT foehner AT ni DOT com.
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • Free web-based Oracle administration tool

    Is there a free web-based Oracle Administration tool? Oracle SQL Developer is a free tool but not web-based. There are many web-based Shareware Oracle administration tools but I could not find a free tool. If anyone knows anything about it, please let me know.
    Thank You for your help in advance!

    Are you referring to the extra features or options provided by licensing Management Packs? (note that EE is needed before you may add the licenses)
    http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/options.htm#sthref69
    http://download.oracle.com/docs/cd/B19306_01/license.102/b40010/overview.htm

  • Reccomendations for web-based data visualization tools?

    Hello again,
    I am embarking on a interesting research project that will involve recording lots of physiological signals from patient monitors in a hospital.  I will be recording signals like BP, spO2, Pulserate, ECG, etc.
    Right now, my main design concern is how to give clinicians access to the data after it is recorded.
    My wish list is:
    - Store the data securely, where access can be controlled (e.g. perhaps in a RDBMS like SQL Server)
    - Allow users (who are granted access) to login and view historical data via a simple web browser
    - Allow users to zoom, scroll, etc. 
    - Allow user to view data in stacked plots (e.g. so they can see ECG, BP and HR simultaneously on the screen and scroll the time axis)
    - Allow user to annotate data (e.g. add comments at specific timestamps)
    Anybody have any reccomendations for a web-based data visualization tool like this?
    I know that people are probably going to reccomend Diadem ... but I don't think its web-based is it?

    There is actually a new thing available called LabVIEW Web UI Builder.  This allows you develop web-based applications that have a custom GUI that can interface with other LabVIEW applications.  You can find more information on the Web UI Builder page on ni.com. There is also a dedicated forum that you can use to post questions about the Web UI Builder.  That forum is located here.  I hope that you find this helpful!
    Brandon Treece
    Applications Engineer
    National Instruments

  • Applet-Servlet with RMI or HTTP? : for a web based network monitoring tool.

    Hi,
    I need help to make a decision to choose an implementation technique for a tool that I am creating.
    I am creating a utility to display a table of RX and TX bandwidth information in real time from a network device X
    onto a client's web browser.
    I have a JTable based applet to display bandwidth information. However I am running this as a standalone applet. I want
    to create a web based solution (applet/servlet model) to make life easier for the end user.
    As for displaying the bandwidth information, I am using Runtime.exec() function to remote execute commands using ssh/rsh.
    This not only seems to impose a lot of process and network latency overhead, but also seems impractical from a
    security point of view, hence I need a real client/server model to have efficient and secure serialized data transfer across
    the network (through HTTP etc) between the client's web browser and X.
    X has a web server running on it. It essentially is a Linux box (CentOS). I can create a JNLP definition to launch an applet
    from X onto a remote client's web browser. The real problem is: what is the most efficient way to go about the
    servlet implementation? Is it wise to use HTTP get/post? or RMI is the way to go?
    Also I'd appreciate suggestion on any different approaches than what I have in mind above.
    Thanks,
    Rajiv

    Thanks for your time, but I cannot make a front-end in C. It has to be in JSP (or in ASP but I haven't tried yet to program in VBA).
    So that is why I am asking what is the best way of attaching a JSP front-end to the given API.
    PS: Why should I code a .dll to provide a JNI interface for the api? Isn't the JNI interface capable of doing such?

  • Web-based user management tools???

    Are there any pre-packaged or off-the-shelf tools one can use to manage unix users and groups in DS 5.2? (preferrably web based) I have found a few open source apps that are web-based but they don't seem to be production quality.
    For now, I'm creating LDIF files and importing them or using the GUI console. This is tedius and the other sys admins that aren't familiar with ldap will find it difficult.
    One of the open source tools I found was "Directory Administrator" which runs only under gnome, we don't use gnome.
    Another tool is "LDAP Account Manager" which was originally built to manage samba users and their unix user/group attributes. We don't use samba and this application does not allow you to seperate the samba and unix components.
    There has to be a simple web-based tool for managing unix users/groups. If any of you know of a commercial or free app, please let me know.

    I urege to to take a look at phpldapadmin, an open-source php/web based tool for managing ldap/directory servers. We have been using it for over a year now, and find that it is easy to install, works well, and continues to receive updates on a periodic basis. Another nice thing is that since you have the php source, it's easy to modify for local modifications.
    You can find it at:
    http://phpldapadmin.sourceforge.net/

  • Need india based tax reports of VAT,Excise duty, etc seperately

    Hi All,
    I need India based reports like RG1, Input tax in the given time, output tax in the given time.

    Hi Nagaraju...
    You can try this one....Basicaly this report give you all the details regarding your purchase and all that...
    *Declare @DateFrom Datetime*
    *Declare @DateTo Datetime*
    *set @DateFrom = '20101001'*
    *set @DateTo = '20111005'*
    *SELECT T20.Cardcode,T20.CardName, T11.[TaxId11], T11.[AddrType], T20.[Address], T20.[BillToDef] INTO #TIN FROM OCRD T20  INNER JOIN CRD7 T11 ON T20.CardCode = T11.CardCode WHERE T11.Address IS NULL OR T11.Address = '' AND T11.AddrType='S' AND T20.Cardtype='S'*
    *Select *,*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .02 THEN CST*
          *ELSE NULL*
    *END 'CST2%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .03 THEN CST*
          *ELSE NULL*
    *END 'CST3%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .04 THEN CST*
          *ELSE NULL*
    *END 'CST4%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .04 THEN VAT*
          *ELSE NULL*
    *END 'VAT4%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .125 THEN VAT*
          *ELSE NULL*
    *END 'VAT12.5%',*
    *CASE*
          *WHEN Basic <> 0 AND ROUND(BED / Basic ,2) = .08 THEN BED*
          *ELSE NULL*
    *END 'BED8%',*
    *CASE*
          *WHEN Basic <> 0 AND ROUND(BED / Basic ,2) = .10 THEN BED*
          *ELSE NULL*
    *END 'BED10%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .135 THEN VAT*
          *ELSE NULL*
    *END 'VAT13.5%'*
    *FROM*
    *SELECT DISTINCT*
    *(Select CompnyName from OADM) Company,*
    *T0.DocNum AS 'Invoice / Bill No.',*
    *T0.DocDate as ' Invoice / Bill Date',*
    *T0.CardName as 'Seller Name',*
    *(Convert(varchar,T6.Block) + ', '+Convert(Varchar,T6.Address)+', '+Convert(Varchar,T6.City)+', '+Convert(Varchar,T6.Zipcode)+' '+Convert(Varchar,T6.Country)) 'Seller Address',*
    *T7.Name 'State',*
    *SUM( T1.LineTotal )  as 'Basic' ,*
    *SUM(T1.[VatSum])   as 'TotalTax',*
    *SUM( T1.LineTotal +T1.[VatSum]) as 'InclTax',* 
    *T0.[TotalExpns] 'Freight Charge',*
    *T1.[TaxCode],*
    *T0.NumAtCard 'Vendor Ref. No',*
    *T5.DocNum as 'P.O/Memo No',*
    *T5.DocDate as 'P.O/Memo Date' ,*
    *T8.[SeriesName] 'Purpose',*
    *T17.Taxid11'Tin No',*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=-90 and PCH4.docentry=T0.Docentry  )BED,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=-60 and PCH4.docentry=T0.Docentry )ECess,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=10 and PCH4.docentry=T0.Docentry )SAD,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=1 and PCH4.docentry=T0.Docentry )VAT,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=4 and PCH4.docentry=T0.Docentry )CST,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=5 and PCH4.docentry=T0.Docentry )ServiceTax,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=6 and PCH4.docentry=T0.Docentry )ECessForService,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=7 and PCH4.docentry=T0.Docentry )HCess,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=8 and PCH4.docentry=T0.Docentry )Surcharge,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=25 and PCH4.docentry=T0.Docentry)Freight,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=15 and PCH4.docentry=T0.Docentry )ADC,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=16 and PCH4.docentry=T0.Docentry )CustomeECess,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=12 and PCH4.docentry=T0.Docentry )CVD,*
    *(Select distinct isnull(Sum(PCH4.taxsum),0) from PCH4 where PCH4.statype=22 and PCH4.docentry=T0.Docentry )CustomHECess*
    *FROM  OPCH  T0*
    *INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry*
    *INNER JOIN PCH12  T3 ON T3.DocEntry = T0.DocEntry*
    *LEFT OUTER JOIN PDN1 T4 ON T4.TrgetEntry = T0.DocEntry*
    *LEFT OUTER JOIN OPOR T5 ON T5.DocEntry = T4.BaseEntry*
    *INNER JOIN OCRD T6 ON T0.Cardcode= T6.Cardcode*
    *Left Outer JOIN OCST T7 ON T7.Code =T3.State AND T7.Country=T6.Country*
    *INNER JOIN NNM1 T8 ON T8.Series = T0.Series*
    *LEFT OUTER JOIN #TIN T17 ON T0.CardCode=T17.Cardcode*
    *INNER JOIN PCH4 T13 ON T0.DocEntry=T13.DocEntry*
    *WHERE*
    *     T0.DocDate >= @DateFrom  AND  T0.DocDate <= @DateTo*
    *     AND T13.StaType=1     *
    *GROUP BY*
    *T0.DocEntry,*
    *T0.DocNum,*
    *T0.DocDate,*
    *T0.CardName,*
    *(Convert(varchar,T6.Block) + ', '+Convert(Varchar,T6.Address)+', '+Convert(Varchar,T6.City)+', '+Convert(Varchar,T6.Zipcode)+' '+Convert(Varchar,T6.Country)),*
    *T7.Name ,*
    *T1.[TaxCode],*
    *T0.NumAtCard,*
    *T5.DocNum,*
    *T5.DocDate,*
    *T8.[SeriesName],*
    *T17.Taxid11,*
    *T0.[TotalExpns]*
    *)#Purchase*
    *UNION ALL*
    *Select *,*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .02 THEN CST*
          *ELSE NULL*
    *END 'CST2%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .03 THEN CST*
          *ELSE NULL*
    *END 'CST3%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(CST / (Basic + BED + SAD + ECess + HCess),2) = .04 THEN CST*
          *ELSE NULL*
    *END 'CST4%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .04 THEN VAT*
          *ELSE NULL*
    *END 'VAT4%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .125 THEN VAT*
          *ELSE NULL*
    *END 'VAT12.5%',*
    *CASE*
          *WHEN Basic <> 0 AND ROUND(BED / Basic ,2) = .08 THEN BED*
          *ELSE NULL*
    *END 'BED8%',*
    *CASE*
          *WHEN Basic <> 0 AND ROUND(BED / Basic ,2) = .10 THEN BED*
          *ELSE NULL*
    *END 'BED10%',*
    *CASE*
          *WHEN (Basic + BED + SAD + ECess + HCess) <> 0 AND ROUND(VAT / (Basic + BED + SAD + ECess + HCess),2) = .135 THEN VAT*
          *ELSE NULL*
    *END 'VAT13.5%'*
    *FROM*
    *SELECT DISTINCT*
    *(Select CompnyName from OADM) Company,*
    *T0.DocNum AS 'Invoice / Bill No.',*
    *T0.DocDate as ' Invoice / Bill Date',*
    *T0.CardName as 'Seller Name',*
    *(Convert(varchar,T6.Block) + ', '+Convert(Varchar,T6.Address)+', '+Convert(Varchar,T6.City)+', '+Convert(Varchar,T6.Zipcode)+' '+Convert(Varchar,T6.Country)) 'Seller Address',*
    *T7.Name 'State',*
    *SUM( T1.LineTotal ) * -1 as 'Basic' ,*
    *SUM(T1.[VatSum]) * -1  as 'TotalTax',*
    *SUM( T1.LineTotal +T1.[VatSum]) * -1 as 'InclTax',* 
    *T0.[TotalExpns] * -1 'Freight Charge',*
    *T1.[TaxCode],*
    *T0.NumAtCard 'Vendor Ref. No',*
    *T1.Baseref as 'P.O/Memo No',*
    *T0.DocDate as 'P.O/Memo Date' ,*
    *T8.[SeriesName] 'Purpose',*
    *T17.Taxid11'Tin No',*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=-90 and RPC4.docentry=T0.Docentry  )* -1 BED,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=-60 and RPC4.docentry=T0.Docentry )* -1 ECess,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=10 and RPC4.docentry=T0.Docentry ) * -1 SAD,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=1 and RPC4.docentry=T0.Docentry ) * -1 VAT,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=4 and RPC4.docentry=T0.Docentry ) * -1 CST,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=5 and RPC4.docentry=T0.Docentry ) * -1 ServiceTax,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=6 and RPC4.docentry=T0.Docentry ) * -1 ECessForService,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=7 and RPC4.docentry=T0.Docentry ) * -1 HCess,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=8 and RPC4.docentry=T0.Docentry ) * -1 Surcharge,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=25 and RPC4.docentry=T0.Docentry) * -1 Freight,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=15 and RPC4.docentry=T0.Docentry ) * -1 ADC,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=16 and RPC4.docentry=T0.Docentry ) * -1 CustomeECess,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=12 and RPC4.docentry=T0.Docentry )* -1 CVD,*
    *(Select distinct isnull(Sum(RPC4.taxsum),0) from RPC4 where RPC4.statype=22 and RPC4.docentry=T0.Docentry )* -1 CustomHECess*
    *FROM  ORPC  T0*
    *INNER JOIN RPC1 T1 ON T0.DocEntry = T1.DocEntry*
    *INNER JOIN RPC12  T3 ON T3.DocEntry = T0.DocEntry*
    *INNER JOIN OCRD T6 ON T0.Cardcode= T6.Cardcode*
    *Left Outer JOIN OCST T7 ON T7.Code =T3.State AND T7.Country=T6.Country*
    *INNER JOIN NNM1 T8 ON T8.Series = T0.Series*
    *LEFT OUTER JOIN #TIN T17 ON T0.CardCode=T17.Cardcode*
    *INNER JOIN RPC4 T13 ON T0.DocEntry=T13.DocEntry*
    *WHERE*
    *     T0.DocDate >= @DateFrom  AND  T0.DocDate <= @DateTo*
    *     AND T13.StaType=1     *
    *GROUP BY*
    *T0.DocEntry,*
    *T0.DocNum,*
    *T0.DocDate,*
    *T0.CardName,*
    *(Convert(varchar,T6.Block) + ', '+Convert(Varchar,T6.Address)+', '+Convert(Varchar,T6.City)+', '+Convert(Varchar,T6.Zipcode)+' '+Convert(Varchar,T6.Country)),*
    *T7.Name ,*
    *T1.[TaxCode],*
    *T0.NumAtCard,*
    *T1.baseref,*
    *T8.[SeriesName],*
    *T17.Taxid11,*
    *T0.[TotalExpns]*
    *)#MEMO*
    *DROP TABLE #TIN*
    you can thet the table name for A/R Sales and get the salres report too for the same.
    Edited by: itskumaramit on Mar 19, 2011 3:43 AM

  • Need correction for dynamic report

    Hi Experts,
    As i have very less experience in SAP , can anyone please help me.
    The report code i attached here generate only 10 columns in the report and all the lines in internal table i am showing in these 10 columns, the problem is if i have more that 10 lines in the tline(script for long material text- MM03) then it leaves those lines, so
    I need to create a dynamic report for this which will create columns depending on the lines in the tline.As i dnt no much about ALV i read so namy things but not able to make it dynamic
    Please, can anyone help me by doing changes in this code and make it dynamic report/ALV
    REPORT  zmm_test_mat_desc.
    TABLES : ekpo,makt, t001w.
    TYPE-POOLS: slis.
    DATA : thread LIKE thead.
    DATA : l_index LIKE sy-tabix.
    DATA : p_index LIKE sy-tabix.
    DATA: BEGIN OF int_out OCCURS 0,
    matnr LIKE makt-matnr,
    maktx LIKE makt-maktx,
    tdline1 LIKE tline-tdline,
    tdline2 LIKE tline-tdline,
    tdline3 LIKE tline-tdline,
    tdline4 LIKE tline-tdline,
    tdline5 LIKE tline-tdline,
    tdline6 LIKE tline-tdline,
    tdline7 LIKE tline-tdline,
    tdline8 LIKE tline-tdline,
    tdline9 LIKE tline-tdline,
    tdline10 LIKE tline-tdline,
    werks LIKE ekpo-werks,
    END OF int_out.
    DATA: BEGIN OF int_out_new OCCURS 0,
    matnr LIKE makt-matnr,
    maktx LIKE makt-maktx,
    tdline1 LIKE tline-tdline,
    tdline2 LIKE tline-tdline,
    tdline3 LIKE tline-tdline,
    tdline4 LIKE tline-tdline,
    tdline5 LIKE tline-tdline,
    tdline6 LIKE tline-tdline,
    tdline7 LIKE tline-tdline,
    tdline8 LIKE tline-tdline,
    tdline9 LIKE tline-tdline,
    tdline10 LIKE tline-tdline,
    tline LIKE tline OCCURS 0,
    werks LIKE ekpo-werks,
    END OF int_out_new.
    DATA: it_tlines LIKE tline OCCURS 10 WITH HEADER LINE.
    ****ALV list definintion
    DATA: ws_cat TYPE slis_fieldcat_alv ,
    int_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    DATA: g_container TYPE scrfname VALUE 'BCALV_GRID_DEMO_0100_CONT1',
    g_custom_container TYPE REF TO cl_gui_custom_container.
    DATA : it_heading TYPE slis_t_listheader WITH HEADER LINE.
    *DATA : it_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    DATA : lay TYPE slis_layout_alv.
    DATA : it_sort_subtotal TYPE slis_t_sortinfo_alv WITH HEADER LINE.
    DATA : it_event TYPE slis_t_event WITH HEADER LINE.
    DATA: v_repid LIKE sy-repid.
    *selection-screen
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_werks FOR ekpo-werks OBLIGATORY .
    SELECT-OPTIONS: s_matnr FOR makt-matnr OBLIGATORY .
    SELECTION-SCREEN END OF BLOCK b1.
    INITIALIZATION.
    AT SELECTION-SCREEN.
      SELECT SINGLE * FROM t001w WHERE werks IN s_werks.
      IF sy-subrc NE 0.
        MESSAGE e001(319) WITH 'Plant does not Exist!'.
      ENDIF.
      SELECT SINGLE * FROM makt WHERE matnr IN s_matnr.
      IF sy-subrc <> 0.
        MESSAGE e001(319) WITH 'Material does not Exist!'.
      ENDIF.
    START-OF-SELECTION.
      BREAK-POINT.
      PERFORM get_data.
    PERFORM field_catalog.
    PERFORM display_data.
    END-OF-SELECTION.
    *FORM GET_DATA.
    FORM get_data.
      DATA: l_index LIKE sy-tabix.
    *To Fetch Data From Makt.
      SELECT b~werks a~matnr a~maktx
      INTO CORRESPONDING FIELDS OF TABLE int_out
      FROM makt AS a INNER JOIN marc AS b ON a~matnr = b~matnr
      WHERE a~matnr IN s_matnr
      AND b~werks IN s_werks.
      LOOP AT int_out.
        l_index = sy-tabix.
    read table int_out_new with key matnr = int_out-matnr.
        int_out_new-werks = int_out-werks.
        int_out_new-matnr = int_out-matnr.
        int_out_new-maktx = int_out-maktx.
        thread-tdname = int_out-matnr.
        CALL FUNCTION 'READ_TEXT'
          EXPORTING
            client                  = sy-mandt
            id                      = 'BEST'
            language                = sy-langu
            name                    = thread-tdname
            object                  = 'MATERIAL'
          TABLES
            lines                   = it_tlines
          EXCEPTIONS
            id                      = 1
            language                = 2
            name                    = 3
            not_found               = 4
            object                  = 5
            reference_check         = 6
            wrong_access_to_archive = 7
            OTHERS                  = 8.
    *Loop on it_tlines where long text is coming .
        LOOP AT it_tlines.
          IF sy-subrc = 0.
            p_index = sy-tabix.
            IF p_index = 1.
              int_out_new-tdline1 = it_tlines-tdline.
            ELSEIF p_index = 2.
              int_out_new-tdline2 = it_tlines-tdline.
            ELSEIF p_index = 3.
              int_out_new-tdline3 = it_tlines-tdline.
            ELSEIF p_index = 4.
              int_out_new-tdline4 = it_tlines-tdline.
            ELSEIF p_index = 5.
              int_out_new-tdline5 = it_tlines-tdline.
            ELSEIF p_index = 6.
              int_out_new-tdline6 = it_tlines-tdline.
            ELSEIF p_index = 7.
              int_out_new-tdline7 = it_tlines-tdline.
            ELSEIF p_index = 8.
              int_out_new-tdline8 = it_tlines-tdline.
            ELSEIF p_index = 9.
              int_out_new-tdline9 = it_tlines-tdline.
            ELSEIF p_index GE 10.
              int_out_new-tdline10 = it_tlines-tdline.
            ENDIF.
          ENDIF.
        ENDLOOP.
        DELETE ADJACENT DUPLICATES FROM int_out .
        APPEND int_out_new.
        CLEAR int_out_new.
      ENDLOOP.
    Field Catalog
    ***MATERIAL NO no
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'WERKS'.
      int_fcat-reptext_ddic = 'Plant'.
      APPEND int_fcat .
    ***MATERIAL NO no
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'MATNR'.
      int_fcat-reptext_ddic = 'Material N0'.
      APPEND int_fcat .
    *material Short Description
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'MAKTX'.
      int_fcat-reptext_ddic = 'Material Short Description'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '45'.
      APPEND int_fcat .
    Material Long Description1
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE1'.
      int_fcat-reptext_ddic = 'Material Long Description1'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description2
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE2'.
      int_fcat-reptext_ddic = 'Material Long Description2'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description3
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE3'.
      int_fcat-reptext_ddic = 'Material Long Description3'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description4
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE4'.
      int_fcat-reptext_ddic = 'Material Long Description4'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description5
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE5'.
      int_fcat-reptext_ddic = 'Material Long Description5'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description5
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE5'.
      int_fcat-reptext_ddic = 'Material Long Description5'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description5
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE5'.
      int_fcat-reptext_ddic = 'Material Long Description5'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description6
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE6'.
      int_fcat-reptext_ddic = 'Material Long Description6'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description7
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE7'.
      int_fcat-reptext_ddic = 'Material Long Description7'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description8
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE8'.
      int_fcat-reptext_ddic = 'Material Long Description8'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description9
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE9'.
      int_fcat-reptext_ddic = 'Material Long Description9'.
      int_fcat-datatype = 'CHAR'.
      int_fcat-outputlen = '75'.
      APPEND int_fcat .
    Material Long Description10
      int_fcat-tabname = 'INT_OUT_NEW'.
      int_fcat-fieldname = 'TDLINE10'.
      int_fcat-reptext_ddic = 'Material Long Description10'.
      int_fcat-datatype = 'CHAR'.
    int_fcat-outputlen = '75'.
      APPEND int_fcat .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = sy-repid
          it_fieldcat        = int_fcat[]
        TABLES
          t_outtab           = int_out_new
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
    ENDFORM. "display_data
    Regards
    Nik.

    Nikhil,
    Instead of declaring 10 lines, please declare a variable of type STRING.
    Then append each line of your material text and concatenate it into the string.
    Then you can comfartably have one long text and have it displayed to the user.
    Please let us know if any further information is required.
    Thanks
    Ganesh.S

  • Need help in dynamic report for a range of year and period

    Dear all,
    I need help in creating an ALV report with dynamic columns based on the Year and period entered on the selection screen. for example if in the year we enter 2002 and period range from 10 to 12 then we should get the 3 columns display for cost(example) for period 10/2002, 11/2002 and 12/2002.
    Can anyone help me in achieving this dynamically since the user can enter the year also in intervals along with the period and data also needs to be populated in the corresponding columns.
    An example code would be of great help.
    Thanks,
    Amit

    Hi,
    Use field symbols as follows.
    TYPE-POOLS : SLIS.
    TABLES : MARC,T001W.
    DATA : BEGIN OF ITAB OCCURS 0,
           MATNR LIKE MARC-MATNR,
           END OF ITAB.
    DATA : FIELDSTAB TYPE LVC_T_FCAT,
           STAB      TYPE LVC_S_FCAT,
           T_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           S_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
           NEW_LINE TYPE REF TO DATA,
           NEW_TABLE TYPE REF TO DATA,
           INDEX(3) TYPE C,
           STR(70),
           TEXT(6),
           CNT(1),
           TEXT1(16),
           REPID LIKE SY-REPID.
    FIELD-SYMBOLS : <FS> TYPE STANDARD TABLE,
                    <WA> TYPE ANY.
    SELECT-OPTIONS : S_WERKS FOR MARC-WERKS NO INTERVALS,
                     S_MATNR FOR MARC-MATNR NO INTERVALS.
    INITIALIZATION.
      REPID = SY-REPID.
    START-OF-SELECTION.
      SELECT * FROM MARC
               INTO CORRESPONDING FIELDS OF TABLE ITAB
               WHERE MATNR IN S_MATNR
               AND   WERKS IN S_WERKS.
      SORT ITAB BY MATNR.
      DELETE ADJACENT DUPLICATES FROM ITAB COMPARING MATNR.
      STAB-FIELDNAME = 'MATNR'.
      STAB-DATATYPE  = 'CHAR'.
      STAB-INTLEN    = '18'.
      APPEND STAB TO FIELDSTAB.
      CLEAR CNT.
      LOOP AT S_WERKS.
        CLEAR TEXT.
        CNT = CNT + 1.
        CONCATENATE  'EISLO' CNT INTO TEXT.
        STAB-FIELDNAME = TEXT.
        STAB-DATATYPE  = 'CHAR'.
        STAB-INTLEN    = '16'.
        APPEND STAB TO FIELDSTAB.
        CLEAR S_WERKS.
      ENDLOOP.
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = FIELDSTAB
        IMPORTING
          EP_TABLE        = NEW_TABLE.
      ASSIGN NEW_TABLE->* TO <FS>.
      CREATE DATA NEW_LINE LIKE LINE OF <FS>.
      ASSIGN NEW_LINE->* TO <WA>.
      PERFORM MOVE_DATA.
      CLEAR S_FIELDCAT.
      S_FIELDCAT-FIELDNAME = 'MATNR'.
      S_FIELDCAT-TABNAME = ITAB.
      S_FIELDCAT-SELTEXT_M = 'Part Number'.
      S_FIELDCAT-NO_ZERO = 'X'.
      S_FIELDCAT-DDICTXT   = 'M'.
      APPEND S_FIELDCAT TO T_FIELDCAT.
      CLEAR CNT.
      LOOP AT S_WERKS.
        CLEAR T001W.
        CNT = CNT + 1.
        SELECT SINGLE * FROM T001W WHERE WERKS = S_WERKS-LOW AND SPRAS = SY-LANGU.
        CLEAR TEXT.
        CONCATENATE 'EISLO' CNT INTO TEXT.
        S_FIELDCAT-FIELDNAME = TEXT.
        S_FIELDCAT-SELTEXT_M = T001W-NAME2.
    S_FIELDCAT-NO_ZERO = 'X'.
        S_FIELDCAT-DDICTXT   = 'M'.
        APPEND S_FIELDCAT TO T_FIELDCAT.
        CLEAR S_WERKS.
      ENDLOOP.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          IT_FIELDCAT = T_FIELDCAT[]
        TABLES
          T_OUTTAB    = <FS>.
    *&      Form  MOVE_DATA
          text
    FORM MOVE_DATA.
      LOOP AT ITAB.
        CLEAR STR.
        CONCATENATE ITAB-MATNR ' ' INTO STR SEPARATED BY SPACE.
        LOOP AT S_WERKS.
          CLEAR MARC.
          SELECT SINGLE * FROM MARC WHERE MATNR = ITAB-MATNR AND WERKS = S_WERKS-LOW.
          IF SY-SUBRC EQ 0.
            CLEAR TEXT1.
            TEXT1 = MARC-EISLO.
            CONCATENATE STR TEXT1 INTO STR SEPARATED BY SPACE.
          ELSE.
            CONCATENATE STR '0' INTO STR SEPARATED BY SPACE.
          ENDIF.
        ENDLOOP.
        <WA> = STR.
        APPEND <WA> TO <FS>.
        CLEAR ITAB.
      ENDLOOP.
    ENDFORM.                    "MOVE_DATA
    Reward points if helpful.
    Regards,
    Sankar..

  • A bug in a web based BW report with BSP frontend

    Hi all,
    We are facing an issue with a BW report whose front end is designed using a BSP application created in the BW system. This report is accessed from a java based portal which has a link to one of the pages of BSP application.
    The report is a list of contract line items for a particular billing partner, which is the selection criterion. On clicking the report link on portal, users are prompted to select the billing partner. Clicking ‘OK’ on the partner selection displays multiple contract lines with a check box against each. Users select one or more of the contract lines and click on ‘Print Preview’ which is link to another BSP page that shows the print preview. After viewing the preview, users can select ‘Back’ to navigate to the previous page which is the report main page.
    The issue is that when user selects some contract lines and selects ‘Print Preview’ for the first time, none of the selected items is displayed in the preview. When the user selects ‘Back’, re-selects the items and chooses print preview again then it is displayed correctly.
    The same report works fine in the development system but has the above issue in the quality system. We compared each layout and event handler of each page of the BSP application in dev system with its own copy in the quality system. Both seem to be exactly identical.
    We have debugged in both the systems to see the control flow and how data is fetched. When control goes from one of the event handlers to the layout, some internal tables seem to get filled. But we could not locate the logic of this as this seemed to happen outside the BSP application.
    Can some one throw some light on where the error can possibly be. Or if anyone can provide some guidance on the control flow of BSP application and what other components might be involved, it will be highly appreciated.
    Enjoy SAP...
    Regards,
    Ketan Dave

    HI,
    Check here: Re: Web RRI
    Happy

  • Web based Crystal Report not appearing

    Hi
    Hope this hasn't been asked before, had a look in the forum but couldn't find it specifically.
    I am developing a web application with one CR in it.
    VS 2010 + CR for VS installed on development machine.
    The development environment is all fine, works a treat. The problems started when I tried shipping to our staging environment, and also a test area on our live server.
    Our live web server is running Windows Server 2008 Web edition R2 with dotnet V4 x86 runtime installed.
    After overcoming 'Type Initializer' error, 'log4net.dll' error and 'LoadReport' error on the live server, the live server now just displays a blank page.
    When I had this problem on the staging server I found that this was caused by the 'aspnet_client\system_web\4_0_30319\crystalreportviewers13' folder not existing or in the right place. It works on the staging server when I'm browsing using http://localhost etc.
    Things I have done to get the report working on the live server:
    1. Install CR Runtime 32bit V13
    2. Set security settings on C:\Windows\Temp to allow web user (actually set to 'Everyone' until it's all working properly) read/write access
    3. Moved  folder 'aspnet_client\system_web\4_0_30319\crystalreportviewers13' to the application folder and the www root folder (have tried in various places also)
    I have to say that the report is displayed when I'm on the live web server and browse using http://localhost etc., and I can repeat the problem by moving the crystalreportviewers13 folder out of where it should be.
    After getting all this done over the past 2 DAYS I believe that the problem lies with the location of the 'crystalreportviewers13' folder. Although it could be something else.
    Any help in this matter would be greatly appreciated.
    Cheers
    Julian

    OK, apologies. posted in haste!
    It seems that the report is working, it's just the browser I was viewing it from simply doesn't display it. No idea why yet, but not too worried as all other machines I try it on, it works.
    A little annoyed however at the amount of time I've wasted trying to get this working. Is it documented anywhere for instance that C:\Windows\Temp needs special privileges set up to make a web crystal report work?
    Anyway, please ignore this, and the last post!
    Cheers
    Julian

  • Browser based dynamic report generation

    Here is what i want to do.
    I want to allow our customers the ability, through an IE browser, authenticated to ColdFusion, to create their own reports through their own ColdFusion webpage.
    -We will list or enable certain databases, certain tables and certain columns with in a table that a customer will have access to
    -These columns will appear on a web page that our customers can access
    -The customer will be able to see the table headings and drag and drop them into a query
    -Once all of the columns are identify the customer can then create their own report
    -This should work exactly the way that excel 7 works where you can attach the spreadsheet to a ODBC driver and pull all of the data from a database. the only difference here is that the customer can only see certain fields and although they are working in a hosted environment they can create their own database queries through their browser.
    thank you.

    It can be done.  We do this where I work everyday.  We call them Ad Hoc Reports.  We have a table that holds all the tables and views they can report against (including columns).  We have a interface allowing the users to enter report titles, subtitles, widths of columns, etc...  We even have a parameters section where they can define items like [column] [equal to / like / less than / etc...] [value] with the columns being a drop down of valid columns.  Based on the parameters they defined we build the SQL.  We also show the SQL so that if they are fluent they can just enter in SQL and not bother with the parameters (which are basically just wizards for creating the SQL).
    Its very powerful and complex but can be done.  We use iText to generate our reports, cfdocument tag is way limiting.  Hope this helps.  Break it down to a wizard process for your first crack at it.
    1.  User selects table/view, enters report title, subtitle
    2.  Now that you have table, on the second page you can display columns they can select, give options to change label that appears on screen, so instead of seeing DOCNO they could enter in "Document Number" or something.  On this page we also let them define sorting and if certain columns are numbers should they be sum'ed/averaged, etc  at end of report
    3.  Define any additional paramerters or SQL editing
    4.  A detail screen showing everything, save it to database so the Ad Hoc can be ran by others "if marked public" and they don't have to keep entering in this stuff, especially if its a report they run often.

  • Web-Based ALV Report

    I have an ALV report that is using one of the controls technology tools (it is using the class CL_GUI_ALV_TREE). Now my user wants to enhance this report so that they can access this report thru the web. Is this possible? How?
    Thanks in advance!

    Hi Beth,
    I have done this before. Created a report which displays the result as ALV. I assigned a transaction to this report and made it an easy web transaction. This can then be viewed through the ITS. Take care that all the GUI status options are actual buttons in your screen as EWT removes the std GUI status when it displays on the web.
    Hope this helps
    Regards,
    Vani

  • SSRS web based report viewer control rendering issues - text getting clipped chopped off

    Hi,
    I am using web based SSRS report viewer control to display SSRS reports in browsers like Chrome, FF, IE, Safari etc. My issue is some text is getting chopped off (clipped) in all cells of some reports. I investigated on my end by analyzing generated HTML
    and I could see a problem in the HTML that report viewer control is generating. But I am afraid to apply any HTML or Javascript hacks at the moment considering we have hundreds of reports.
    You can see in above image how text got chopped off. The problem in HTML (given below) is the text has been wrapped in a div tag with a fixed height. If I remove the height and also padding on parent TD, the text appears properly.
    <td class="A23dfe7c5f99245f2a0db522a22a6035597c" style="HEIGHT:5.00mm;background-color:#d3d3d3;"><div style="HEIGHT:3.24mm;overflow:hidden;"><table lang="en-US" cellspacing="0"
    cellpadding="0" border="0" class="Pd9776e5f7eaf4df696265b8b49d1da39_1_r17"><tbody><tr><td class="A23dfe7c5f99245f2a0db522a22a6035597" style="word-wrap:break-word;white-space:pre-wrap;">MyType11</td></tr></tbody></table></div></td>
    Please let me know if you have faced a similar scenario before.
    Here is link to stackoverflow thread -
    Stackoverflow thread
    Regards
    Murtaza

    Hi Murtaza,
    According to your description, when you display the report with Report Viewer control, the data within the text is cutoff.
    Based on my research, the issue could cause by that Arial Unicode MS font hasn’t been installed on the server where Reporting Services run. Besides, when we use ReportViewer control to render report, we’d  better set
    AsyncRendering="true" in the Report Viewer control. Also please run the IE with compatibility mode. For more information, please refer to similar threads below:
    Data in column getting cut-off in report viewer control
    SSRS Rendering Issues
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • The site reporter tool does not work

    There is an item in Firefox Help where you can report a Web site that does not work.  Originally, a report database was available on line and you could review existing submissions.  The database access site was officially [http://blog.mozilla.com/website-archive/2010/12/08/mozilla-reporter/ retired] and the data gathered were expurgated and dumped for everybody to download. It is 1.3 GB uncompressed; install with { gzcat | mysql mozrep; } to avoid doubling the space. 
    The [https://support.mozilla.com/en-US/kb/Menu%20Reference#w_report-broken-web-sitead site reporter tool] does not seem to work any more.  It just submits the report forever.   It seems that Mozilla has broken functionality in a supported browser, disregarding all users.   The original reporter site redirects to a new feedback site.   The problem with that site is that you have to install version 4 beta to use it, which is not nice at all.  To add exploitation to disrespect, Mozilla tries to turn all customers into beta testers.

    Hi there
    Sorry, but you need to give us more information. For starters, you *ARE* using Adobe Captivate, right? And what exactly are you trying to do where you are seeing the eyedropper isn't working? Can you post a screen capture or a small video recording of it? You can use Jing http://www.jingproject.com or maybe Screenr http://www.screenr.com.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for

  • XML Publisher Template Builder for Adobe Acrobat

    Need a XML Publisher Template Builder for adobe acrobat as is available for word.

  • Word to pdf

    Hi, Can i have some help here? I have been creating froms with word and save them as pdf. But when i open them in reader or Acrobat 9 pro, i am not able to use checkboxes and so on. Checkboxes loses their function. I know i can do them all from the b

  • Problem in publishing the messgae

    Hi, I am publishing the object in the AQ using JMS APIs.But it is throwing a JMS exception stating JMS-108: Messages of type ObjectMessage not allowed with Destinations containing payload of type SYSTEM.NEW_MESSAGE_TYPE. Can anybody suggest me where

  • Replicate Mat. goups with DNL_CUST_PROD1 from a new Z-table

    Hi I am trying to replicate material groups from backend to SRM with DNL_CUST_PROD1. Standard the replication will be from table T023 but I want to replicate from a new table Z023. Our new table is a copy of T023 and we have to maintain UNSPSC codes

  • Problem with CVS conflict in .jpr file

    Hi, we have a project that approx 4 people will work on. We use CVS to do this. We have a workspace with several projects. Now, if 2 people work on a project and both add some new entity objects, and person A commits his changes, person B will get CV