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

How to create barcode from formula?

$
0
0

Hello

 

I have a formula field:

 

tonumber('29'+{Artigo.CDU_gs1}+{@fxPeso})

 

where 29 is a fixed value, {Artigo.CDU_gs1} is a nvarchar  and {@fxPeso} is a parameter field.

 

This returns 29+04704+0093 = 29047040093 and I want to tranform this result into a barcode.

 

Thanks in advance.

 

Manuel Duarte


Re: Problem With a user

$
0
0

Do you have single system or app servers as well.

Is the load balance configured.

check SM50, SM66 which server is getting overload.

AL08 which server has too many users logged on.

Any jobs running.

anyone extracting / loadind data.

check CPU/Memory utilization.

check the database server CPU/Memory and disk IO.

GRC beginner

$
0
0

Hi Everyone,

 

How are you all.

 

As always with lots of expectation and hope from SCN experts . I am posting here to seek valuable advises and suggestions from you all.

 

I got an opportunity to work in GRC, fresher in GRC. I am basically from technical background I have good exposure in SAP BW BI.

Please advice guide me for below.

 

1.To start up plan road map to learn, develop, configure GRC,

2. What are the areas where i have to concentrate.

3.What activities I would be performing,what are the challenges i have to face as GRC consultant.

4. Also please share documents, tutorials, videos, materials for GRC.

 

 

Thank you in advance

Waseem

Re: SUM patching failed in phase MAIN_NEWBAS/XPRAS_AIMMRG

$
0
0

Hello martina,
her the solution
run the sql command to show inactive components on hana studio
 
SELECT DISTINCT(T2."DELIVERY_UNIT") FROM "_SYS_REPO"."ACTIVE_OBJECT" AS T1 LEFT OUTER JOIN "_SYS_REPO"."PACKAGE_CATALOG" AS T2 ON T1."PACKAGE_ID" = T2."PACKAGE_ID" WHERE T1."PACKAGE_ID" like 'sap.erp.%' AND T1."OBJECT_STATUS" = 1

  
If show the output so

HCO_ERP_SAPPL_PPH_V02_RD_SDM


Than run the report SNHI_NHDU_POST_PROCESS in SE38 and use the following settings: First select 'Activate Delivery Unit content'
and deselect 'Actuvate HTC', afterwards enter 'HCO_ERP_SAPPL_PPH_V02_RD_SDM' as 'Name' and exeute the report. If the activation is successful
you should see only green log lines after report execution. If this is the case and all is green, you can repeat the failing SUM step.

Regards
Gustavo Gonzalez

Re: Input control that affects all tabs

$
0
0

Hi,

 

try appending ", ' at the end of both [Selected products] and [Products], like

=If(Match([Selected Products]+",";[Products]+",*") Or Match([Selected Products]+",";"*, "+[Products]+",*") Or [Selected Products]="") Then 1 Else 0


Regards,

Rogerio

Re: CM25 - wrong scheduling for external operation

$
0
0

Hi Rupesh and Kiran,

the work center is marked for fine scheduling and setted whit a valid FC. In the overall profile "planning in non-work periods" in not flagged.

 

Do you have other suggestions?

 

 

Best Regards

Giuseppe

Re: Web Intelligence is hanging at "Launching New Document"

$
0
0

Hi Carmelette,

 

For Launching the Web Intelligence you need to have the Java installed on your Machine and JVM should be supporting version with the  BI 4.0 and the browser. You can try to Launch the Document using BI Launch Pad and Web Intelligence client Tool.

 

If its working in of the about you need to check according to that.

 

and one more thing you need to to see if Which try of Universe is it. (UNX or Unv). If it is Unv you need to cross check the linked Universe and proceed.

Re: SUM patching failed in phase MAIN_NEWBAS/XPRAS_AIMMRG

$
0
0

Hello
her the solution
run the sql command to show inactive components on hana studio
 
SELECT DISTINCT(T2."DELIVERY_UNIT") FROM "_SYS_REPO"."ACTIVE_OBJECT" AS T1 LEFT OUTER JOIN "_SYS_REPO"."PACKAGE_CATALOG" AS T2 ON T1."PACKAGE_ID" = T2."PACKAGE_ID" WHERE T1."PACKAGE_ID" like 'sap.erp.%' AND T1."OBJECT_STATUS" = 1

  
If shows the output so

HCO_ERP_SAPPL_PPH_V02_RD_SDM


Than run the report SNHI_NHDU_POST_PROCESS in SE38 and use the following settings: First select 'Activate Delivery Unit content'
and deselect 'Actuvate HTC', afterwards enter 'HCO_ERP_SAPPL_PPH_V02_RD_SDM' as 'Name' and exeute the report. If the activation is successful
you should see only green log lines after report execution. If this is the case and all is green, you can repeat the failing SUM step.

Regards
Gustavo Gonzalez


Re: how to read data from the xml in pi

$
0
0

Hi Mrudula

 

In your abap program read the table 'SXMSPHIST' and find out the unique message id's that has been processed in PI.

 

Then take each message id and call the standard function module 'SXMB_GET_MESSAGE_PAYLOAD' to get the payload for that message id.

 

Sample code

 

CALL FUNCTION 'SXMB_GET_MESSAGE_PAYLOAD'

    EXPORTING

      im_msgkey      = ls_msgkey

      im_archive     = ' '

      im_version     = '000'

    IMPORTING

      ex_msg_bytes   = lv_bin_xml

    EXCEPTIONS

      not_authorized = 1

      no_message     = 2

      internal_error = 3

      no_payload     = 4

      OTHERS         = 5.

 

Once you have the payload xml, parse it to get the order number and then display the same in your report.

 

Hope this is clear.

 

Thanks,

Indrajit

Re: Changing Table Space of Existing Table from SE11

$
0
0

If you would change DATACLASS in SE11/SE14 directly, then you have to activate the table.

Activating table from? (SE11,SE14 or some where else?) I did it from SE14 and SE11 for a table - Table activated, Data is safe - but no changes to table space at data base level.

 

Regards,

Naveen

SAP HR segregation of data

$
0
0

Hi all,

We have a customer with a SAP HR system with many thousands of employees.

 

Part of the business has been split into two different companies.

 

Their goal is that each user can manage (create, modify, display) data (mainly PA) of his own company.

 

Supposing that the company concept is related to personal area field of infotype 001, we can manage it through P_ORGIN authorizations for standard transactions (PA30, PA20, ...).

 

This it not true for SE16, SM30 transactions since they go directly to the database tables.

A partial solution could be using the S_TABU_LIN for table P0001 (for infotype 0001) but it will not works fr other infotypes tables.

 

Any suggestions for SE16 and SM30 limitaions?

 

Thanks in advance.

 

Andrea

Re: What writes to monitor.txt?

$
0
0

Yep.  They all connect just fine.  That's why I was wondering if maybe something other than the repositories is writing to that monitor.txt file.  I really wish it had timestamps included because I can't tell how old these errors are.  The date stamp on the file itself is current but that could be misleading.

Re: Error in phase RSVBCHCK.ER2 during SAP ERP update.

$
0
0

Hello Zeljko,

 

 

don't skip the step!

 

You mentioned that report RSM13002 failed to resolve this issue. Can you please elaborate why it failed? What was the error?


Regards,



Tomas Black

Re: Make a column of Checkboxes simulate a column of Option Buttons

$
0
0

Hi Pedro,

 

This is a good idea, better than mine!

 

I was thinking of unchecking all boxes and then check the current box.

But this would necessitate looping through rows.

 

It seems that your suggestion does not require looping. Am I right?

 

Best Regards,

Leon Lai

Problem with Variants in Background processing

$
0
0

Hi All,

 

I have created a Report with multiple selection Screens. Main selection Screen 1000 contains Sub Screens 101, 102 and 103.

 

In SE38 i have created a variant 'Znormal' Here, i have specified selection Screen 101 and entered the values, saved the variant. Also used Option only for Background processing.

 

But now when i execute this Report in bckground with this variant, it is not workinig perfectly. I waited for 7 minutes but still Job is not finished and it is active, normally for executing subscreen it takes around 10 seconds.

 

Can some one please provide me some help on this?

 

Note: When i execute pprogram normally with this variant(removing Background processing for variant), it is executing perfectly.

 

 

Thanks & regards,

NarsiReddy Cheruku


Re: IF NOT -Select option

$
0
0

Hi Sarath,

 

Thank you for your reply but I cant use in LOOP statement I want in IF condition.

Re: Archiving BPM Processes extremly slow

$
0
0

Since we're getting desperate here, because the archiving is still very slow and the most time-consuming part seems to be the deletion of entries in BC_BPEM_BL_ENTRY which contains half a billion entries:

 

Am I correct when I assume that this table contains all the business logs that can be seen in the process monitoring perspective in the NWA?

If so, wouldn't it be an option to delete entries from this table directly in the database, e.g. "delete from BC_BPEM_BL_ENTRY where OCCURRED_ON < [some date 6 months in the past]" and then use the standard archiving.

 

Would this only influence the process monitoring in the NWA, because detail information for processes that were older than 6 months wasn't present anymore, or might that cause other problems?

 

My hope is, that the system would behave like if the business logs log level had been set to "error" or "none" in the first place.

Re: Issue with QTD flow data for balancesheet accounts

$
0
0

What is the type of BPC cube - YTD or Periodic?

Error message when executing WITH statement in HANA on HCP

$
0
0

I tried to execute this statement:


WITH COOL AS (select 1 from dummy)

select * from COOL

 

on your factory account on HCP with SAP HANA  91 Version installed. It gives the followin error message:

13:59:57 (SQL Editor) Could not execute 'WITH COOL AS (select 1 from dummy) select * from COOL' Error:

(dberror) 585 - operation is not permitted

 

Any idea why?

 

Thanks Frank

Re: Old DB2 tablespace name during SP update ( SUM ), step failure

$
0
0

Hi Manu

 

Thank you for your lates reply.

 


There seems no  %DMD% or %ZMD% in ddstorage-table or syscat, paste in below,

 

  

db2 => select * from sapdmd.ddstorage
where upper(text) like upper('%DMD%') ;

 

 

 

 

 

DBSYSABBR
TABNAME                                                                                  
INDEXNAME USEFLAG POSNR   SIGN
PARNAME                                                                                  
TEXT                                                                                                                                      
                                                     

 

 

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

 

 

 

 

 

  0 record(s) selected.

 

 

 

 

 

db2 => select * from sapdmd.ddstorage
where upper(text) like upper('%ZMD%') ;

 

 

 

 

 

DBSYSABBR
TABNAME                                                                                  
INDEXNAME USEFLAG POSNR   SIGN
PARNAME      
                                                                            TEXT                                                                                                                                                                              
             

 

 

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

 

 

 

 

 

  0 record(s) selected.

 

 

 

 

 

db2 =>

 

 

 

 

 

En select af det delete statement der er angivet returnerer heller ikke nogen rækker:

 

 

db2 => select * from sapdmd.ddstorage where tabname in ( select distinct(tabname)from

sapdmd.ddstorage where upper(text) like upper('sapdmd#%') );db2 (cont.)
=>

 

 

 

 

 

DBSYSABBR
TABNAME                                                              
                    INDEXNAME
USEFLAG POSNR   SIGN
PARNAME                                                                                  
TEXT                                                                                                            
                                                                               

 

 

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

 

 

 

 

 

  0 record(s) selected.

 

 

 

 

 

db2 =>

 

 

 

db2 => select substr(tbspace,1,32) from syscat.tablespaces where
tbspace like 'DMD%'

 

 

 

 

 

1                             

 

 

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

 

 

 

 

 

  0 record(s) selected.

 

 

 

 

 

db2 => select substr(tbspace,1,32) from syscat.tablespaces where
tbspace like '%BTABD%'

 

 

 

 

 

1                             

 

 

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

 

 

ZMD#BTABD                     

 

 

 

 

 

  1 record(s) selected.

 

 

 

 

 

db2 => select * from SAPDMD.DDSTORAGE where tabname like 'DMD%' or indexname like 'DMD%'

 

 

 

 

 

DBSYSABBR
TABNAME                                                                                  
INDEXNAME USEFLAG POSNR   SIGN
PARNAME                                                                                  
TEXT                           
                                                                                                                                                                                                           

 

 

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

 

 

 

 

 

  0 record(s) selected.

 

 

 

 

 

DBSYSABBR
TABNAME                                                          
                        INDEXNAME
USEFLAG POSNR   SIGN
PARNAME                                                                                  
TEXT                                                                                                        
                                                                                                                              

 

 

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

 

 

 

 

 

  0 record(s) selected.

 

 

 

 

 

db2 => select * from SAPDMD.DDSTORAGE2 where tabname like 'DMD%' or indexname
like 'DMD%'

 

 

 

 

 

DBSYSABBR
TABNAME                                                                                  
INDEXNAME USEFLAG POSNR   SIGN
PARNAME                                                 
                                 TEXT                                                                                                                                                                                                                         
             

 

 

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

 

 

 

 

 

  0 record(s) selected.

 

 

db2 => select * from SAPDMD.tsdb6

 

 

 

 

 

TABSPACE                                                                                 
INDSPACE                                                                                

 

 

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

 

 

ZMD#STABD                                                                                
ZMD#STABI                      
                                                        

 

 

ZMD#BTABD                                                                                
ZMD#BTABI                                                                               

 

 

ZMD#POOLD     
                                                                           ZMD#POOLI                                                                               

 

 

ZMD#CLUD                                                                                
ZMD#CLUI                                                                                

 

 

ZMD#DIMD                                                                                 
ZMD#DIMI                                                               
                

 

 

ZMD#FACTD                                                                                
ZMD#FACTI                                                                               

 

 

ZMD#ODSD                                              
                                   ZMD#ODSI                                                                                

 

 

ZMD#SOURCED                                                                              
ZMD#SOURCEI                          
                                                  

 

 

ZMD#DDICD                                                                                
ZMD#DDICI                                                                               

 

 

ZMD#DOCUD           
                                                                     ZMD#DOCUI                                                                               

 

 

ZMD#EL731DX                                                                              
ZMD#EL731IX                                                                             

 

 

ZMD#LOADD                                                                                
ZMD#LOADI                                                                    
          

 

 

ZMD#PROTD                                                                                
ZMD#PROTI                                                                               

 

 

ZMD#ES731DX                                                 

                             ZMD#ES731IX                                                                             

 

 

ZMD#USER1D                                                                               
ZMD#USER1I                                 
                                            

 

 

 

 

 

  15 record(s) selected.

 

 

 

 

 

db2 => select * from SAPDMD.iadb6

 

 

 

 

 

TABART        
TABSPACE                                                                                

 

 

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

 

 

APPL0         
ZMD#STABI                                                                               

 

 

APPL1         
ZMD#BTABI               
                                                               

 

 

APPL2         
ZMD#POOLI                                                                               

 

 

CLUST         
ZMD#CLUI                                                          
                     

 

 

DDIM          
ZMD#DIMI                                                                                

 

 

DFACT         
ZMD#FACTI                                                                               

 

 

DODS          
ZMD#ODSI                                                                                

 

 

POOL          
ZMD#POOLI                                                                               

 

 

SDIC          
ZMD#DDICI                                  
                                            

 

 

SDOCU         
ZMD#DOCUI                                                                               

 

 

SLDEF         
ZMD#EL731IX                                                                          
  

 

 

SLEXC         
ZMD#EL731IX                                                                             

 

 

SLOAD         
ZMD#LOADI                                                                               

 

 

SPROT         
ZMD#PROTI           
                                                                   

 

 

SSDEF         
ZMD#ES731IX                                                                             

 

 

SSEXC         
ZMD#ES731IX                                                   
                         

 

 

SSRC          
ZMD#SOURCEI                                                                             

 

 

TEMP          
ZMD#PROTI                                                                               

 

 

USER         
ZMD#USER1I                                                                              

 

 

USER1         
ZMD#USER1I                                                                              

 

 

 

 

 

  20 record(s) selected.

 

 

 

 

 

db2 => select * from  SAPDMD.tadb6

 

 

 

 

 

TABART        
TABSPACE                                                                                

 

 

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

 

 

APPL0
          ZMD#STABD                                                                               

 

 

APPL1         
ZMD#BTABD                                                                               

 

 

APPL2         
ZMD#POOLD                     
                                                         

 

 

CLUST         
ZMD#CLUD                                                                                

 

 

DDIM          
ZMD#DIMD                                                                
               

 

 

DFACT         
ZMD#FACTD                                                                               

 

 

DODS          
ZMD#ODSD                                                                                

 

 

POOL            ZMD#POOLD                                                                               

 

 

SDIC          
ZMD#DDICD                                                                               

 

 

SDOCU         
ZMD#DOCUD                                        
                                      

 

 

SLDEF         
ZMD#EL731DX                                                                             

 

 

SLEXC         
ZMD#EL731DX                                                                             

 

 

SLOAD         
ZMD#LOADD                                                                               

 

 

SPROT         
ZMD#PROTD                                                                               

 

 

SSDEF         
ZMD#ES731DX               
                                                             

 

 

SSEXC         
ZMD#ES731DX                                                                             

 

 

SSRC          
ZMD#SOURCED                                                         
                   

 

 

TEMP          
ZMD#PROTD                                                                               

 

 

USER          
ZMD#USER1D                                                                              

 

 

USER1         
ZMD#USER1D                                                                              

 

 

 

 

 

  20 record(s) selected.

 

 

 

 

 

 

Thanks, Hanne

 

 

Viewing all 8594 articles
Browse latest View live




Latest Images