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

Re: Crystal Reports Server XI Installation Issue


Re: Affordable Care Act (ACA)

$
0
0

Re: 2474

 

Hi, Margaret,

 

We tried to apply SAP Note 2317500 and the UDO note 2322726;  However, we got an error message that the program for the UDO note 2322726 doesn't exist.


Can you provide any guidance?

Thanks,

Debbie B

2317500.jpg2322726.jpg

Re: Product Master in Aii

$
0
0

Hello Rose,

 

Gopi provided needed information. Just wanted to add few things in addition.

 

Program - COM_PRODUCT_DELETE_ALL - to delete all product masters from AII

Program - COM_PRODUCT_DELETE_SINGLE - to delete single product master from AII

 

Before running this program you have to add entry in table COMC_PR_TOOL_REG, for program name, user ID & date. Without these entry it will not allow you to execute above programs.

 

Hope this helps.

 

Thanks,

NRS

Solman 7.1SP14 BPMon Templates

$
0
0

Hi,

I need some information about the templates for BPMon. I am working on setting up BPMon for SD,FICO and MM process. I am trying to download standard SAP order to cash Template from http://www.service.sap.com/bpm =>Media Library Templates is not available now. Can you please guide me where to find standard template.

 

 

Thanks,

 

Vijay.

DS 1.6 Tooltip Percent and Value at the same time

$
0
0

Hi all,

 

We want to show a percent and a value at the same time on a tooltip of a pie chart.

 

The pie chart shows only values on tooltip. Is it possible to enable the percentage on the tooltip of a pie chart? If it is possible, then how?

 

I look through CSS classes but I couldn't find anything.

 

I also checked the link below, but it seems like it is outdated. I know that this was possible DS 1.2 version, but with 1.6, I don't think this is possible.

 

Pie Chart - Way to highlight Percentages!

 

 

pic_02.png

 

 

 

Thanks a lot.

Re: HCI Configuration - for ERP and C4C integration

Re: DS 1.6 Tooltip Percent and Value at the same time

Re: DS 1.6 Tooltip Percent and Value at the same time

$
0
0

Another idea is to show the % as labels, and the amount as a tooltip, using the pie infochart feature

zhaid.png


Re: How different is C_HANAIMP_11 from C_HANAIMP151? Which certification is better for preperation?

$
0
0

It is always recomended to make the latest exam release available.

 

If you are looking to be certified on SAP HANA modeling, we recommend the C_HANAIMP_11 exam which is available for SPS11.

To prepare the C_HANAIMP_11 exam, you need the HA100_11 & HA300_11 course materials (or equivalent elearning course: HA100E_11 & HA300E_11).

 

Certification coding was changed (starting from SPS11), which contains as suffic the SPS release instead of the year of exam edition (C_HANAIMP_11).

 

Best regards,

Haythem

please help me to filter PA0001~PERNR by month

$
0
0

Hi, I want to write condition in select to filter selection by month

this my select statement:

 

SELECT DISTINCT  PA0001~PERNR

     FROM  PA0001

             INTO  TABLE PERNR_IT .

"SELECT DISTINCT" for internal tables - contest opened!

$
0
0

"Cultural Appropriation" being the new SJW buzz word in America, I am doing in the public some "New ABAP syntax features appropriation" to get accustomed to them. I didn't find yet a really satisfyingly simple expression for the simple task

 

"Given an internal table, create an internal table containing all the distinct values that appear in a certain column"

 

So this really is something very simple, similar to a SELECT DISTINCT in SQL.

 

In a good programming language, a simple task must have a simple solution.

 

So let's try.

 

I select some arbitrary 100 rows from a database table VBAK (sales order headers) into a standard table of line type VBAK. Now I want to have a standard table of elementary line type ERNAM, containinig the distinct values for ERNAM that appear in my selection. (See my pastebin for the SELECT statement and the frame around the following code snippets).

 

Solution with COLLECT

 

Using the idiom COLLECT for standard tables (which is not encouraged by the documentation, but works fine), I get this readable solution:

 

form with_collect using it_vbak type vbak_tab                   changing ct_ernam type ernam_tab.
 clear ct_ernam.   loop at it_vbak assigning field-symbol(<ls_vbak>).     collect <ls_vbak>-ernam into ct_ernam.   endloop.
endform.

COLLECT uses an internal auxiliary hash table for achieving uniqueness.

 

Using an auxiliary hash table explicitly

 

The hash can be made explicit, then I have the following solution:

 

form with_explicit_aux_hash using it_vbak type vbak_tab                             changing ct_ernam type ernam_tab.   data: lt_ernam type hashed table of ernam with unique key table_line.   loop at it_vbak assigning field-symbol(<ls_vbak>).     insert <ls_vbak>-ernam into table lt_ernam.   endloop.   ct_ernam = lt_ernam.
endform.

Now for the new ABAP syntax idioms (not so new any more, by the way).

 

Using the VALUE operator

 

I found a solution with the VALUE operator:

 

form with_value_for using it_vbak type vbak_tab                     changing ct_ernam type ernam_tab.   ct_ernam = value #( for <ls_vbak> in it_vbak                       ( <ls_vbak>-ernam )  " Inserting into a hash table will dump on multiple values.                                            " No way to avoid this                      ).   sort ct_ernam.   delete adjacent duplicates from ct_ernam.
endform.

Which is readable, but it's not nice that the implicit insert of table line ( <ls_vbak>-ernam ) throws an exception if the target table has a unique key. This can't be trapped inside of the expression. So we can't use an auxiliary hash table, like in the last example. We have to collect all the ERNAM's firstly, and then have to delete the duplicates later on.

 

Not nice. But I didn't see a better way to do it with VALUE. Do you?

 

Using the REDUCE operator

 

Just for curiosity, I also tried the REDUCE operator. I found a combination of REDUCE and COND to give the desired result. But the final expression is far too complicated for such a simple task:

 

form with_reduce_for using it_vbak type vbak_tab                      changing ct_ernam type ernam_tab.   ct_ernam = reduce #( init names type ernam_tab                        for <ls_vbak> in it_vbak                        next names =                          cond #(                            when line_exists( names[ table_line = <ls_vbak>-ernam ] ) then names                            else value #( base names ( <ls_vbak>-ernam ) )                            )                        ).
endform.

Using the GROUP BY keyword

 

But even with the GROUP BY idiom, which seems to be tailored for situations like the given, the solution is too long for my taste:

 

form with_grouping using it_vbak type vbak_tab                    changing ct_ernam type ernam_tab.     clear ct_ernam.     loop at it_vbak assigning field-symbol(<ls_vbak>)                     group by <ls_vbak>-ernam                     ascending                     assigning field-symbol(<lv_group>).       append <lv_group> to ct_ernam.     endloop.
endform.

Other suggestions?

 

Find my complete example report ZZ_EXTRACT_SUBTABLE on pastebin

 

Maybe I am blind for quicker and better solutions! Any suggestions are welcome!

Re: Conditional formatting in a scorecard DS 1.6

SAP BPC 10.1 NW - uja_data_checker error

$
0
0

Hi expert,

 

My system is: BPC 10.1. SP LEVEL 0009  NW 7.4 SP0014

 

I run TX SE38 UJA_DATA_CHECKER and a message is shown at the bottom of the window: "System error: RSDU_INFOCUBE_TABLE_SIZE_DB6/ DB6" ,

 

See attached Image

 

No message error or DUMP where found in TX ST22.

 

Thanks for your help.

Re: Cannot generate Initial Scorecard

Re: different types of templates in webi

$
0
0

Default templates are not available in the webi.based on the requirement you need to create own.templetes are specific to customer to customer need.check with your customer what they are looking in the all report

 

like header/footer details and any default font?

 

normally templetes contain the headers and footers information along with table cross tab font styles.

 

you can create own custom style from the CSS file.


Re: Search help on MAT1_A(length of the search help field)

$
0
0

It's what I understood, but I have the same thing and it's okay for me, and you still don't explain exactly what happens. Screen capture helps. Is it a field of only 40 characters? Is there a truncation of the value you have entered? On which screen? At which moment?

 

Let me guess... It's in the  "dialog box for value restriction" of the search help, right? Restricted to 45 characters maximum? (not 40) Okay, that's the limit, no other choice.

Re: different types of templates in webi

Re: Personas: 2 flavor for the same transaction how to choose 1 automatically

Re: different types of templates in webi

Re: Rework Order for Process Manufacturing

$
0
0

Hi Gaurav surana,

 

The financial Impact is same for production order or process order, I am very much familiar with production order so explaining the course of action at production order for rework.

 

Create an operation in routing for rework by selecting the control key relevant for rework, and confirm the rework operation... by giving materials and activities to the selected operation. the cost related to the unexpected rework order will be posted as variance for materials as Input Resource usage variance and for activities as Input Qty variance. and settled to PRD account while settling the variances. no change to standard cost estimate. working with Production or process order doesn't change the Std cost estimate.


and there are other options are also available for rework of production order.... please find the below link.


Rework in Cost Object Controlling - Cost Object Controlling (CO-PC-OBJ) - SAP Library

 

For Material ledger - For raw materials consumption ML document will be posted as consumption to Production order and For Finished Goods as Receipt against production order/material. we need to run revaluate consumption , WIP revaluation and Post closing to update the variances to FG and need to execute mark material prices for revaluation of Std cost by considering variances, if you want to consider the new periodic unit price created by actual costing as Standard price for your FG.

 

 

Thanks and Regards,

Surendra kumar kotha FICO.

Viewing all 8594 articles
Browse latest View live




Latest Images