Quantcast
Channel: SCN: Message List
Viewing all 8902 articles
Browse latest View live

Crystal Reports 2013 Failed to find an Available Report Application Server.

$
0
0

Hi Experts,

 

I am unable to Publish Crystal Reports 2013 to the BI 4.1 SP2 Enterprise.

 

I have installed SAP CR 2013 on my Laptop and also on our Citrix machine, from both systems I am getting the following error when try to publish:

Failed to find an Available Report Application Server.

 

All the ports and firewall are open, when doing some trace with Wireshark, its assigning some random ports starting with 64960.

 

On the same machine, i have installed Crystal Reports 2008, I could publish reports to Enterprise.

 

Could you please let me know what might be the issue.

 

Is Crystal Reports 2013 need any specific port to be assigned?

 

Thanks,

Kris


Re: Issue with Pinning tabs in SCM /sapapo/sdp94

$
0
0

Hi

 

Could you try to apply the NWBC latest patch and then check the same

 

BR

BADI na criação do documento de Faturamento (VF01)

$
0
0

Olá,

 

Alguém saberia se há uma BADI para um momento antes da criação do Documento de Faturamento?

 

Preciso incluir uma validação no momento em que é montada a tabela de impostos dos itens.

 

Obrigado,

Vinícius Mendez

Re: Question about Note 886102 - Empty the delta queue of the connected SAP source systems

$
0
0

Hi Kate,

 

The probably issue which I could forsee is data getting wrongly updated into production if RFC connection from ECC to BW is not stopped.

 

Solution here could be to disable or deletethe RFC connections between ECC and BW before starting the SAP system at database level.

 

delete from sapr3.rfcdes where rfcdest = '<name>';

Once the system is up and running you can recreate them if required.

 

 

 

Also before starting SAP set the number of batch processes to 0 on the profile at OS level so that any released jobs don't start as soon as SAP is up.

 

Once the SAP system is up execute BDLS and change the logical system name.

 

Hope this helps.

 

Regards,

Deepak Kori

Re: How to mark a rebate condition as statistical

$
0
0

Dear TW,

 

Thanks for your impeccable explanation!

 

Regards,
Anirban

Re: what are simulation versions .generally we get simulation version in sapapo/cdpss0

$
0
0

Hi Virender,

 

To understand the simulation versions, please find below the concept of model and version maintenance in APO:

 

The model in APO represents the complete supply chain. The master data transferred from ECC is automatically assigned to active (000) model. A version is then uniquely assigned to the model which manages the transaction data for the master data of that model. The version which exchanges data with R/3 is called active version 000, assigned to active model 000.

 

For simulation purpose, multiple versions can be created and assigned to the model. Using version management you can copy model/versions and create them manually.

 

Regards,

 

Umesh

Re: Delete Overlapping request Process Chain

$
0
0

I have asked few end users and they have no clue .

 

Okay let me tell you what's going on exactly . I have checked in few infocubes ( full mode )..they have single request for July month in them and for august as no IP was package in variant of delete overlapping request, there are so many requests for each day there .

 

My question is that now if I add IP in that variant of deleting overlapping requests for the month of august and September in process chain, will it delete all the requests for august also or do I need to manually delete the requests from info cubes ?

issue in Load_infoprovider_ui process chain

$
0
0

--------------------------------------------------------------

 

Hi

 

This process chain is working perfectly with the given parameters in DEV. Where as for same parameters It is throwing the below error In Test system.  This issue is only coming when user selects the values in Selection Tab.

 

Any help?

 

 

 

Task name CONVERT:

No 1 Round:

Error occurs when loading transaction data from other model

model: modelname. Package status: ERROR

 

 

 

regards

mahesh


Re: NetWeaver Portal J2EE7

$
0
0

Hi Oliver,

 

Hmm... where to start...

 

OK, first, this is the SCN space for SAP HANA Cloud Platform - it's neither for NetWeaver Portal nor NetWeaver AS Java (which provides the foundation support for Java EE technology).

 

Second, there is no J2EE7. The last J2EE version was 1.4 back in 2003. Assuming you mean Java EE 7.

 

Also there is no "NetWeaver Portal 7.4 on cloud". If you mean SAP HANA Cloud Portal, that's a different product which is *not* based on NetWeaver Portal. You can find more info in the SAP HANA Cloud Portal space.

 

Finally, when you say "We want to integrate J2EE7 under NetWeaver" this assumes you have a server implementing the Java EE 7 standard which you want to somehow integrate with SAP NetWeaver. I don't think you can do that natively. Perhaps you mean instead NetWeaver AS Java to implement Java EE 7? In any case, if you have more specific questions about any of the mentioned products, please feel free to post them in the respective SCN spaces.

 

HTH!

 

--Vlado

SAP Web dispatcher -Public Certificate

$
0
0

Hi Experts,

 

Just i want to know whether SAP Web dispatcher does it supports below scenario or not,if Yes can you please explain how it is and what i have to do in my landscape.


Scenario :      

when user access URL https from mobile or Desktop , web dispatcher should not issue certificate rather we need to generate public certificate using web dispatcher and we need to import this certificate into devices.Now devices with this certificate should access web dispatcher. So do we have a way to generate public certificate to import in mobiles and laptop using web dispatcher?



Thanks,

Syam

Re: Blog Missing..

$
0
0

Thanks Jason. I will follow the suggested way..

Re: SAP Business one Workflow Script writing

$
0
0

any updates?

 

Have you got any documents related to script writing in workflow?

 

 

Thanks in advance,

Re: Problem Converting xml to ABAP

$
0
0

Have a look at below snippets. I have modified standard example so that it looks similar to your case, root structure, root internal table and root variable. Run it in debug to see that ABAP to XML and XML to ABAP transformations are happening successfully.

 

ABAP code

  1. TYPES:
  2. BEGINOF ty_input,
  3.   col1 TYPE d ,
  4.   col2 TYPE t ,
  5. ENDOF ty_input.
  6. ***
  7. DATA: input      TYPE ty_input,
  8.       ls_input2  TYPE ty_input,
  9.       input2     TYPETABLEOF ty_input,
  10.       input3     TYPE string VALUE'asdf',
  11.       xml_string TYPE string,
  12.       result     LIKEinput,
  13.       result2    LIKE input2,
  14.       result3    LIKE input3.
  15. ***
  16. input-col1 = 'ABCDEFGHIJ'.
  17. input-col2 = 111.
  18. ***
  19. ls_input2-col1 = '20040126'.
  20. ls_input2-col2 = '084000'.
  21. APPEND ls_input2 TO input2.
  22. ls_input2-col1 = '20050126'.
  23. ls_input2-col2 = '085000'.
  24. APPEND ls_input2 TO input2.
  25. ls_input2-col1 = '20060126'.
  26. ls_input2-col2 = '086000'.
  27. APPEND ls_input2 TO input2.
  28. TRY.
  29.     CALL TRANSFORMATION zm1
  30.       SOURCE root  = input
  31.              root2 = input2
  32.              root3 = input3
  33.       RESULT XML xml_string.
  34. ***
  35.     CALL TRANSFORMATION zm1
  36.       SOURCE XML xml_string
  37.       RESULT root  = result
  38.              root2 = result2
  39.              root3 = result3.
  40.     WRITE'pass'.
  41.   CATCH cx_st_error.
  42.     WRITE'fail'.
  43. ENDTRY.

 

Simple transformation code

<?sap.transform simple?><tt:transform xmlns:tt="http://www.sap.com/transformation-templates" template="temp" version="0.1">  <tt:root name="ROOT"/>  <tt:root name="ROOT2"/>  <tt:root name="ROOT3"/>  <tt:template name="temp">    <X>      <X1>        <tt:value ref="ROOT.COL1"/>      </X1>      <X2>        <tt:value ref="ROOT.COL2"/>      </X2>      <X3>        <tt:loop name="line" ref="ROOT2">          <ITEM>            <X1>              <tt:value ref="$line.COL1"/>            </X1>            <X2>              <tt:value ref="$line.COL2"/>            </X2>          </ITEM>        </tt:loop>      </X3>      <X4>        <tt:value ref="ROOT3"/>      </X4>    </X>  </tt:template></tt:transform>

 

/.

Compound char and transaction data

$
0
0

Hi experts

 

We have a new characteristic ZCONTRACT.

A few master data datasources delivers this new object with attributes.

 

ZCONTRACT consists of time dependent attributes and additionaly this field ZOBJ_NO (object number).

ZOBJ_NO is compounded to ZCONTRACT, reason:

 

ZCONTRACTZOBJ_NODATETODATEFROMZOBJ_TYZDISCONT
80245202700000045831.12.999901.01.10001
80245202700000046031.12.999901.01.10006
8024520231.12.999901.01.20142

 

Characteristic ZDISCONT is time-dependent and has no relation to compounded field ZOBJ_NO.

ZOBJ_TY (object type) is delivered with ZCONTRACT and ZOBJ_NO from one datasource; at this place the valid dates are set constant.

 

 

ZOBJ_NO and ZOBJ_TY are non-transactional data relevant, meaning that there is no split or logic in the transactional data including these fields.

 

The business requirement is to report over ZOBJ_TY.

The idea was to use ZOBJ_TY as active navigational attribute in the infocube.

 

While assigning ZCONTRACT to the infocube, the compounded field ZOBJ_NO automatically is assigned to the cube.

Now, as there is no logic for this field ZOBJ_NO (and also ZOBJ_TY) in the transactional data, I recognized that it is not possible to solve it through this way.

 

Do you agree? Are there any other ways to realize this requirement?

 

Thanks

Need to disable link in Search Result List

$
0
0

We have a requirement where in the HR Renewal Landing Page --> Search Lane, if we search an employee the result list is displayed. But the name of the employee shouldn't be hyperlink to Employee Profile application.

 

search result list.JPG

 

We have already maintained the configuration for the same in the Maintain Search Categories as below:

config for search result.JPG

It is still leading to the hyperlink of the result list.

Please help in disabling the same.


Re: How to get runtime-statistics for a traced query - without cache

$
0
0

Hi,

 

 

Please find the steps to check run time of all your BW queries in detailed.

 

1. Logon to RRMX and execute your query or through RSRT.

2. logon to T code - ST03N.

3. Change your view mode from Administrator to Expert mode.

4.  Select the BW system load and drill down.

5.  Double Click on today.

6. On Right hand side, you can click on share of your run time tab or any.

7. Now you can view run time by choosing aggregation level either on Info cube or Query along with No - OLAP cache or OLAP Cache.

8. You can further go in detail for any other information.

 

Regards,

Sravan

Re: Adding Traffic Lights to CL_SALV_TABLE (didn't find solution over here)

$
0
0

I'm not sure what you mean exactly. Do you fill the internal table yourself or do you get its content from somewhere else?

 

If the table is already filled you must define a copy of the table definition with an additional field icon. Then you must modify each line by setting the appropriate value for the icon e.g. depending from another field in the line.

 

This could look like:

 

loop at t_your_table into s_your_table.

 

  if s_your_table-field1 = 'XYZ'.

    s_your_table-icon =icon_red_light.

  else.

   s_your_table-icon = icon_green_light.

endif.

 

  modify t_your_table from s_your_table.

 

endloop.

Re: product group settings to have period wise split up of products.

Re: BI platform can't work and tomcat services can't stop normally

$
0
0

Few questions:

 

  • Is there enough disk space available on Tomcat installation drive?
  • What is the user count when the issue occures?
  • Also, may I know the hardware configuration of the server? 

 

- Mahesh

Re: How to create multiple Tab on single screen

$
0
0

Hi Pankaj,

 

So you are talking about creating a custom portal component to have UI with tabs, etc.

You can create such UI using Webdynpro or HTMLB, or better yet , if you have standards mode fw page use HTML5.

The UI's you see above were createted with Webdynpro java.

 

Here are some links to get started:

Welcome to Web Dynpro Java! - Web Dynpro Java - SCN Wiki

Tutorials & Samples for Web Dynpro Java

 

Regarding the levels , still no so clear what is the requirement, but it sounds as if you would need to develop custom component.

 

Best Regards,

Tal

Viewing all 8902 articles
Browse latest View live




Latest Images