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

Re: About Crystal Report for Visual Studio licensing

$
0
0

Hello Noel

 

 

You do not need addtional license for CR - win apps, or web apps - if used within your organization. If a web app will be deployed external to your organization, you will have to obtain additional licensing. Contact sales for more details; 866-681-3435

 

CRVS can be downloaded from here:

http://scn.sap.com/docs/DOC-7824

 

The licensing is the same as for 'Crystal Reports Basic for Visual Studio 2008"

 

 

 

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Got Enhancement ideas? Try the SAP Idea Place

Share Your Knowledge in SCN Topic Spaces


Re: Sub-Report Log on parameter missing error

$
0
0

No, it is not mandatory to install visual studio 2010 in development server. It is mandatory to install the CR runtime though - if your app uses the CR SDK...

 

 

 

- Ludek

Re: Talent Group - Trex 7.10 - Search Is Currently Unavailable

$
0
0

Hi Ana,

 

The search you suggest does not return anything : is this because I forgot to configure something in my autorisations ?

 

Best regards,

 

Luc

Re: Cumulative value for comparison purpose.

$
0
0

Hi,

 

For the fields which are in rows pane, select cumulative value display in the display proeprties in the right hand side in your query. this will show all KF values in a cumulative fashion.

 

As you are looking for just some comparison purpose, you can save the report(excel) after you follow the above suggestion.

 

Regards,

Suman

Re: Nakisa Embedded Org Chart not rendering in Internet Explorer

$
0
0

Hi Luke,

          I have checked the SAP note 1668909 but it seems like this note is not relevant to our system as we don't have the EA-HR_MSS support package in our system. We only have the
EA-HRRXX & EA-HRGXX on level 23 in the system and hence this note cannot be implemented.

 

Is it obligatory that we need to have the EA-HR_MSS installed? As per our current scenario, we are only using the webdynpro component HIER_VIS_UI_WRAPPER for the org chart view.

 

Thanks,

Sarath.

Re: Talent Group - Trex 7.10 - Search Is Currently Unavailable

$
0
0

Hi Luke,

 

Thank you for taking the time to answer my problem.

 

Does your user have a 741 relationship between its position and one or more OrgUnits? That would affect the front-end searches, but searching with HRTMC_SEARCH_OBJECTS with just the SEARCH_CONFIG_ID parameter maintained with SAP_TALENT should return objects irrespective of whether you have a 741 relationship or not.

 

The user I used did not have any 741 relationship.

I created one between the Central Person attached to him and an Organizational unit, then searched again with HRTMC_SEARCH_OBJECTS :

- only with SEARCH_CONFIG_ID set with SAP_TALENT

- with SEARCH_CONFIG_ID set with SAP_TALENT and with UNDER_RESPONSABILITY_AREA set with X

 

None of them returned any result.

 

If you navigate to transaction TREXADMIN do you get any errors in the 2nd tab (I believe it's called "Status" or something similar)? Also check in the "Alerts" tab.

In the 2nd tab, I had 1 alert (yellow triangle), corresponding to the following message in the "Alerts"  tab : "You run a Non- BIA scenario. Switch off the parameter merge_deltas in section [memwatch] of TREXIndexServer.ini. See SAP Note 11"

 

I modified the TREXIndexServer.ini accordingly, switching the parameter "merges_deltas" from "yes" to "no".

 

The alert desapeared, but when I searched again with HRTMC_SEARCH_OBJECTS and ESH_TEST_SEARCH, I still get the same result as in my first message.

 

I would check these SAP Notes to see if any of them are relevant:

 

  • 1523648 - The search does not find any hits
  • 1609868 - Search does not work during real-time indexing
  • 1555950 - Indexing of HRTMC_AUTHORITY_VIEW: Data packages are too big
  • 1659322 - TMC search: Package size when indexing HRTMC_AUTHORITY_VIEW

Apparently, all the notes above are already part of our system.

Also, ensure that your user has an organizational assignment, even if not assigned a 741 relationship. It is best to simulate a real-life scenario as much as possible.

The user is already assigned to an organizationnal unit and now has a 741 realationship.

Once everything was done, I also deleted and indexed again all the search object connectors, just in case, and retried the different searches, but to no result.

No errors was displayed during the new indexation.

 

I also tried to give my user various authorisations, such as SAP_TMC_SUPER_TALENT_MANA_SPEC, but nothing changed.

 

Is it possible my problems come from the initial TREX installation ?

 

Best regards,

 

Luc

Re: Business Objects 4.0: BW descriptions in multiple languages in 1 report

$
0
0

Hello Guy,

 

and you want to use the already translated text from BW and that means you need 2 connections with different logon languages

 

Ingo

DNL_PLANT download


Re: SAP Script Check printing Layout, Line Items to display twice in First Page

$
0
0

Hi

 

I had the same request for a check form in Canada. I solved it by writing the line item output into variables and print these variables in a second window. It was ~10 hours of effort, not a real nice technical solution but it worked.

 

If you require I can send you a PDF of the sap script form definition. You can contact me at jk_downunder@yahoo.com. Answers can take 1 week or more. 

 

Best regards

 

JD

Re: Webi issue

$
0
0

Hi dd,

 

Please use the below logic for the Columns IMEI and Mobile and leave the other columns as is, and you would get then as expected. Please see below sample where it was achieved with similar data set.

 

IMEI Column=[Value] Where([Type]="IMEI")

Mobile Column=[Value] Where([Type]="mobile")

 

Thanks

Mallik

Issuewith splitting columns.jpg

Re: Problem in creating Input parameter

$
0
0

Hi Jain,

 

According to your explanation, I think that you need to create one calculation column "FYWEEK" base on "Fiscal_Year_Week_Name" as well,

such as "FY10W03" convert to 1003, then you fetch top 5 from analytic view or calculation view where "FYWEEK" <1003 order by FYWEEK desc.

Regarding as input parameters, you can create static list or base on column to input parameters.

 

hope this can help you.

 

Regards,

Jerry

Re: Load Table and Delimiters Issue

$
0
0

Jim,

 

When using the LOAD TABLE statement there is a FORMAT clause that can be specified.  If you don't specify the FORMAT, the default is ASCII.  In ASCII mode, the data is expected to be in this format:

     12345|12345|

     12345|12345|

 

Notice the column delimiter after the last column .  In the IQ world column delimiters exist after every column, by default.  Some databases or extraction utilities don't follow this method.  That is our default which is what the FORMAT ASCII default enforces.

 

That means that your load table must look like this:

 

    load table x ( col1, col2 )

     from 'my_file'

     format ASCII

     delimited by '|'

     row delimited by '\n'

 

If your data looks like this (this is how ASE extracts data):

     12345|12345

     12345|12345

 

Then we must change the FORMAT clause.  This is what we call FORMAT BCP.  BCP being the the tool that extracts data from ASE.  When data is extracted in BCP format there is no column delimiter after the last column, only a row delimiter.

 

To load this kind of data you would need to use this statement:

 

 

    load table x ( col1, col2 )

     from 'my_file'

     format BCP

     delimited by '|'

     row delimited by '\n'

 

Notice the only difference is the FORMAT line.  This tells the IQ loader that the | delimiter will exist after every column EXCEPT the last column.

 

Of course, you can change the format of the statement and put the delimiters inline with each column, too.  I don't like that method simply because it is more work.  As the number of columns increases so does the work you have to do and the likelihood that something will get missed.

 

Mark

Re: "Limits" tab (Overall limit) in requisitions and PO

$
0
0

Hi,

Limits - Used to  procure consumable materials or services with a value limit. (Account assignment necessary, GR not possible, IR necessary.)

Limit is mainly used in Blanket order process and for Unplanned services.

Document type - FO ( Framework order )

Item Category - B

Expected value is the order value with the vendor , this value also serves as the basis for release strategy.

Overall Limit--> Maximum value that the total ofallunplanned services (or the value of the material) covered by this document item may not exceed.

Please refer the following thread to understand more about Blanket order process - http://scn.sap.com/thread/1089124

 

 

Regards,

Sheetal

 

Message was edited by: Sheetal Premnath

Re: BAPI_OUTB_DELIVERY_CHANGE change valuation type?

$
0
0

Yes you don't see it.

As I specified you can change only the fields you find in that table: qty, weights, or delete the item.

Basically, you cannot change the valuation type in an Outbound Delivery with this BAPI. For my knowledge, there isn't a standard SAP tool to do it.

 

Michele

Re: What exactly is "Character output size"?

$
0
0

Hi,

 

"what "Character output size" actually means? Is it a cell, a column, or what is the actual definition of this?"

 

Maximum Character Stream Size (MB):   5

Maximum size of a text stream (for example: HTML, XML) that will be transferred to the application server. If a text stream sent to the application server is greater than this limit, the generation is stopped to protect the server and an error is returned. 

 

•     Default: 5 MB

•     Range: 1 to 65535 MB

 

Note that

1. If your application server needs to convert XML to HTML for display, set the value of this parameter to less than 1/5 of the memory available on the application server for the XML transformation.

XML transformation requires:

5 * (size of XML) * (number of users for whom the transformation is executed)

 

For example, an XML file of 5 MB transformed for 10 users requires:

5 * 5 MB * 10 users = 250 MB of memory

 

2. If the Maximum Character Stream Size property is exceeded, then the Web Intelligence document will not be created and the client will receive an error message.

 

Hope this helps,

Jin-Chong


Re: From Non-Unicode ERP to Unicode BW

$
0
0

Hi

 

Yes, it is possible!

You will have to check out the RFC connections so that they work correctly

 

I connected a unicode BW 7.3 on top of HANA to an ECC6, a CRM, an ISU that were not unicode.

Worked perfectly

 

PY

Re: Consolidation based on multiple Group Currency in BCS

$
0
0

I never seen consolidation with two different currencies. We have a currency translation task in the monitor. I think we need to awnser following questions before proceeding.

 

Do you know how will the totals records be updated in this scenario?

Will you define consolidation tasks by currency filter?

Re: How to create External facing portal with screen shot example

Re: EXTENSIONIN table to pass Oil specific data in BAPI_MATERIAL_SAVEDATA

Best practice on master data distribute

$
0
0

Hi Folks,

 

There is a requirement for a client where  Employee master data need to be distributed to  multiple applications

 

AS-IS

 

SAP HR(Flat File) -> FTP->(Flat file) to various systems.(System 1,System 2....,System 10)

 


The as-is process is as below/

 

Since each system needs different sets of data , there are 10 different program created in SAP HR ( although there are some re usability in the programs) and each program create a full extract of active employee data ( 5-20 MB File each  )   and those are FTPd to various system

 

 

TO-BE

 

SAP HR -> PI -> to various systems.(System 1,System 2....,System 10)

 

 

We have checked with various systems and found that few system can manage with incremental data and few system can't survive without full data.

 

What we want to achieve in the to be process is

 

1)  Create a single program in SAP HR and extract all data relevant for all the  Systems

2) In the SAP PI mapping level distribute the data to various systems.

 

the issue is

 

1) How to send incremental data

2) How to send files if file is lost for some system.

3) Shall we create 2 interface, one for full and one for incremental

4) if only incremental interface then how we handle the initial Load ( there will be new HR system- so all employee no will change0

 

Thanks.

Viewing all 9062 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>