Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

interactive reports

Former Member
0 Likes
771

hi can any tell me this is uregent requirement to me

1.how can i call more than 20 secondary lists in interactive reports.

2. and how can i print page numbers like ( 1 0f 20, 2 of 20) in interactive reports.

3. what is solution manager.

5 REPLIES 5
Read only

Former Member
0 Likes
738

1. if sy-lsind = '19'.

sy-lsind = '01'.

endif.

2.

Please see the following post for the answer.

Read only

Former Member
0 Likes
738

Hi

1.how can i call more than 20 secondary lists in interactive reports.

***we cannot cal more than 20 secondary list in interactive report ..the maximum is 20 including basic list it is 21.

3. what is solution manager.

Now a days solution manager is mandatory.

1. it is used for generating keys and downloading support packages

2. it is used to document user requirments and preparing senarios what needs to to be adopted using solution manager, where the blue print is the part of solution manager

3. it is used for reporting, solution desk,to manage the change requests and use to monitor entire landcape Central message processing in the SAP Solution Manager:

- Display customer data, problem description, priority, attached documents, Service Level Agreements (SLA)

- Assign processor

- Send messages to the creator and other processors

- Forward message to other processors or support units

- Create documents and URLs

- Attach documents

- Status assignment and monitoring

- Create a worklist with selection conditions

Read only

Former Member
0 Likes
738

Hi Karthik,

1. We can have morethan 20 interactive lists. But at the sametime the system paramater sy-lsind cannot be morethan 20. then after 20 interactive lists the code should be included in another program and call that program using call program or call transaction statement (i.e, Case sy-lsind when '20') where the control moves from these peogram to that program and in this way have any number of secondary lists we want but we have to make sure that sy-lsind should not be grater than 20.

2. Solution manager is the standard process which is provided by the SAP where you can get the standard material it is same which has been posted by the previous person.

Read only

Former Member
0 Likes
738

1.how can i call more than 20 secondary lists in interactive reports.

Ans: there is a poosibility to generate more than 20 secondary list.

1) when Sy-lisnd = '20'.

make sy-lisnd = 1.

2) call another dummy program using Submit statement then u will have another 20 secondary lists.

2. and how can i print page numbers like ( 1 0f 20, 2 of 20) in interactive reports.

Ans: for this we can display as Page: 1...... but not as Page 1 of 20..........Because the list generation is at dynamic i.e. at run time only.........

3. what is solution manager.

Ans: The SAP Solution Manager application management solution facilitates technical support for distributed systems – with functionality that covers all key aspects of solution deployment, operation, and continuous improvement. A centralized, robust application management and administration solution, SAP Solution Manager combines tools, content, and direct access to SAP to increase the reliability of solutions and lower total cost of ownership.

With SAP Solution Manager, you can be sure your entire SAP solution environment is performing at its maximum potential. The toolset addresses your entire IT environment, supporting SAP and non-SAP software and covering current and forthcoming SAP solutions. And, as a customer of SAP, you have full access to the core SAP Solution Manager for no extra charge.

SAP Solution Manager targets both technical and business aspects of your solutions, focusing strongly on core business processes. It supports the connection between business processes and the underlying IT infrastructure. As a result, it eases communication between your IT department and your lines of business. And it ensures that you derive the maximum benefits from your IT investments.

SAP Solution Manager features and functions include:

SAP Business Suite implementation and upgrades – SAP Solution Manager provides content that accelerates implementation. Configuration information and a process-driven approach to implementation speed the blueprint, configuration, and final preparation phases. SAP Solution Manager enables efficient project administration and centralized control of cross-component implementations.

Change control management – SAP Solution Manager controls all software and configuration changes of the IT solution. This includes the approval process for change requests, the deployment of changes, and later analysis of changes. This ensures quality of the solution and enables traceability of all changes.

Testing – SAP Solution Manager speeds test preparation and execution. It provides a single point of access to the complete system landscape and enables centralized storage of testing material and test results to support cross-component tests.

IT and application support – The service desk included in SAP Solution Manager helps you manage incidents more efficiently and eases the settlement of support costs. Centralized handling of support messages makes the support organization more efficient.

Root cause analysis – The diagnostics functions in SAP Solution Manager allow identification, analysis, and resolution of problems, even in heterogeneous environments. This helps to isolate general performance bottlenecks, to isolate exceptional situations, to record the activity of single users or processes, and to identify changes to the productive landscape. As a result, problem resolution is accelerated and business availability increased.

Solution monitoring – SAP Solution Manager performs centralized, real-time monitoring of systems, business processes, and interfaces, which reduces administration effort. It can even monitor intersystem dependencies. Proactive monitoring helps you avoid critical situations, while automatic notifications enable fast response to issues.

Service-level management and reporting – SAP Solution Manager allows easy definition of service levels and provides automated reporting. Service reporting covers all systems in the solution landscape and provides a consolidated report containing the information you need to make strategic IT decisions.

Service processing – SAP Solution Manager makes appropriate service recommendations and delivers SAP support services. These include SAP Safeguarding, which helps you manage technical risk; SAP Solution Management Optimization, which helps you get the most from your SAP solutions; and SAP Empowering, which helps you manage your solutions.

Administration – Administration tasks are mainly executed locally on the involved systems, but can be accessed and triggered from a central administration console. The administration work center in SAP Solution Manager offers a central entry point and unified access to all SAP technology.

Read only

Former Member
0 Likes
738

Hi,

1. using interactive lists you can only have 20 secondary lists and 1 basic list.

2.

End-of-page

DATA: PN LIKE SY-PAGNO. ...

sy-cpage of DESCRIBE LIST NUMBER OF PAGES PN.

The variable PN now contains the number of pages in the displayed list (i.e. the contents of the system field SY-PAGNO after the list has been generated!).The system field SY-CPAGE contains the page number for the first displayed line in the list.

3.