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

Re: APO DP Planning book cell entry or exit - macro way to validate business rules

$
0
0

Hi Srini

 

You need a default macro. SAP Help Says following about default macro -

Default  ( )  - A default macro is executed when the planner opens the planning desktop and loads data, regenerates the screen (for example, by choosing Enter or Tab  ), or saves the plan. If other types of standard macros can be executed, these are executed before the default macros.

CELL_BG() function can be used to set the background color of a cell. Any digit between 1 to 64 represents the color.

 

Please give a try.

 

Thank you

Satish Waghmare


Re: unable to load data from DS to infocube

$
0
0

For Issue A: The transformation seems to be working correctly because in DTP properties, instead of PSA, if I choose to load directly from the flat file, it is giving me correct calweek in the loaded data for the cube. Only when I load from PSA, it does not load anything. I even tried loading directly from PSA to a DSO and that is also having the same issue. It does not load anything.

 

 

For Issue B: I checked in rsa3 and the extraction seems to be having 28 records. But it is not loadng when I create an infopackage for the data source replicated and activated. I also checked the logs for iDocs and I read the message saying "iDocs transferred successfully".

 

Can someone please help. Appreciate it!

SAP interface to ADP : Sevral countries and file formats

$
0
0

Hi ,

 

We did setup SAP interface to ADP for USA , and now to also use the SAP interface to ADP for UK and France . A file format will be different by countries .... The standard SAP setup allow for one file format / interface . We have one instance of SAP running all the different countries .

 

What is the best way to have simultaneous several countries with different file format for the SAP interface to ADP process ?

 

Thank you.

Issue with Theme Designer - sapUiMarginTiny is undefined

$
0
0

Hello,

 

I am trying to make a new custom theme for Fiori, based on the sap-blue-crystal theme. Umfortunately, I am constantly getting a popup error dialog that says that a variable cannot be found in a .less file (please have a look the attached screenshot). I noticed in chrome's debugger that many other resources cannot be found too and I assume that these are caused by the improper compiling of the .less file to .css. The result is that I cannot even preview my changes in the Theme Designer and, consequently, when I try to build my custom theme, even without changes, it can't be created correctly. The preview of the custom theme is just an unformatted LaunchPad due to lack of a proper .css file, I guess.

 

The UI5 version is 1.26.6 and we have installed the latest support package for UI Addon (SP 11)

 

I would appreciate any help.

 

Thank you.

Re: Reset company code data before changing the chart of accounts

$
0
0

Hello,

 

 

hmmm

hard to know what to do....

 

You have entered COA = CAUS with SM35

 

Now you want to replace COA = CAUS with VOOA.

Say I am right

 

br erwin

Re: Modelo 347 y Criterio de Caja

$
0
0

Hola! yo tengo otra consulta sobre el Modelo 347.

Tengo algunos clientes que utilizan indicadores de iva exentos o al 0% en algunas operaciones que no deben aparecer en el modelo 347, como por ejemplo, las dietas. Estos indicadores, también figuran en documentos que sí tienen que aparecer en el informe, por tanto, no se pueden excluir los indicadores en los parámetros de selección del modelo.

Me dicen, que la manera de diferenciar estas operaciones es por tipo de documento. Según tengo entendido, desde la actualización, el modelo no tiene en cuenta las clases de documento, sólo los indicadores, ¿sabéis si estoy en lo cierto?

Por otro lado, ¿se os ocurre alguna manera de distinguir las operaciones?

Gracias!

How to get the Heading for desciption coloumn of the employee

$
0
0

Hi All,

 

Generally if we display the Employee Value as Key and Text in Bex report.

 

Employee no:

 

22222                   Rajesh

33333                   Ramesh

 

I need heading for Description Column as Employee name, so is it possible to get like this in reporting level? or we need to add new field in cube only and add in report? Can anyone advise me.

 

Thanks

Update DB2 from ChangelogDifferences of DB1

$
0
0

Hello Dear everyone,

 

I wrote some code to get the differences between two ItemMasterdata, log instances to use this information to update the same ItemCode on a seconda Database.

 

    Dim oCompany As SAPbobsCOM.Company = SBOAddonProject1.oCompany

            Dim cl As SAPbobsCOM.ChangeLogsService

            Dim GetChLgParam As GetChangeLogParams

            Dim rs As SAPbobsCOM.Recordset = oCompany.GetBusinessObject(BoObjectTypes.BoRecordset)

            Dim rs2 As SAPbobsCOM.Recordset = oCompany.GetBusinessObject(BoObjectTypes.BoRecordset)

 

 

            Dim DifCLParams As SAPbobsCOM.ShowDifferenceParams

            Dim RetParams As SAPbobsCOM.ChangeLogDifferencesParams

            Dim ItemCode As String = "31002094"

            Dim day As Date = Now.Date

            Dim i As Integer

          

 

 

            cl = oCompany.GetCompanyService.GetBusinessService(SAPbobsCOM.ServiceTypes.ChangeLogsService)

            GetChLgParam = cl.GetDataInterface(ChangeLogsServiceDataInterfaces.clsGetChangeLogParams)

 

 

            GetChLgParam.Object = BoChangeLogEnum.clItems  'BoChangeLogEnum.clCards

            GetChLgParam.PrimaryKey = "31002094" '// Card Code

          

 

 

            DifCLParams = cl.GetDataInterface(ChangeLogsServiceDataInterfaces.clsShowDifferenceParams)

            DifCLParams.Object = BoChangeLogEnum.clItems

            DifCLParams.PrimaryKey = ItemCode.ToString

 

 

            DifCLParams.LogInstance = 19

            DifCLParams.LogInstance2 = 24

 

 

            RetParams = cl.GetChangeLogDifferences(DifCLParams)

            For i = 0 To RetParams.Count - 1 Step 1

                Dim array As Integer

                Dim str As String

                Dim Xml As String

 

 

               

                str = "User Name: " & RetParams.Item(i).UserName & _

                    ", Date:" & RetParams.Item(i).Date & _

                    ", Field: " & RetParams.Item(i).ChangedField & _

                    ", New: " & RetParams.Item(i).NewValue & _

                    ", Old: " & RetParams.Item(i).OldValue & _

                    ", Line: " & RetParams.Item(i).LineNumber & _

                    ""

 

 

                Application.SBO_Application.MessageBox(str, 1, "OK")

                array = RetParams.Item(i).ArrayOffset

                Xml = RetParams.ToXMLString

                Xml = RetParams.GetXMLSchema(i)

                RetParams.ToXMLFile("C:\gll.xml")

                Xml = RetParams.Item(i).ArrayOffset

 

 

            Next

 

I tried with no success to find any attribute, with the DB Name Field of the changed Field, does anyone know howto get the DB FieldName, so I can use that information to update the same changes on another DataBase?

 

 

Kind Regards,

 

Gabriela


Re: SAP ERP (UAP) term projects for undergraduate students?

$
0
0

I agree.  ERPsim is a great learning tool.  Most definitely recommend it.  There are several levels of the game:  a simple distribution (buy/sell) game that can be completed in 3-4 hours to very sophisticated manufacturing/logistics games that take 8 - 12 hours.

 

Simha

Re: SAP ERP (UAP) term projects for undergraduate students?

Re: Convert Timestamp to Date foarmat

$
0
0

Hi Anil,

 

In your code, you do not have any derivation of month. Please make following changes to your code and you should be good.

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

Source Field-->RESOLVE_Time(15)

BI Field----->BRESLD(08)

 

 

data: lc_timestamp type timestamp,

 

RESOLVE_TIME type  SY-TZONE,

 

   /BIC/BRESLD(08)  type sy-datum.

data: lv_mon type c length 2.

 

 

lc_timestamp = RESOLVE_TIME

 

   CONVERT TIME STAMP lc_timestamp  TIME ZONE sy-zonlo INTO

DATE /BIC/BRESLD .

 

   /BIC/BRESLD = SOURCE_FIELDS-RESOLV_TIME+0(8).

 

lv_mon = /BIC/BRESLD+4(2).

 

     RESULT = /BIC/BRESLD.

RESULT = lv_mon.

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

 

Let me know if I understood your requirement incorrectly.

 

Thanks

Amit

How can we see the results of Survey?

$
0
0

Hi All,

 

I had filled up the survey and submitted in Opportunity. 

survey_oppt.PNG


Now where can we see the results of the Survey?

I have opened the Results tab in Survey, but it is showing the below error, why?

survey_results.PNG

 

Please help me.

 

Regards,

Maddy

SAP BO Business View Manager verify database keeps asking for login credentials

$
0
0

Good morning

 

I hope someone could have some useful information regarding an error I'm facing now.

 

I have a BO Crystal Reports Report, which is based on a Business View. Such BV in turn, is based on a SAP BW Query. Such a BV was modified recently, so that it returns 2 more columns needed in my report.

 

The problem: If I go the Business View, and open the Data Foundation related to the BV, I can open it up, but then, when I Verify the Database (Menu Tools-> Verify Database), a login window appears so that I provide the user and password for retrieving the new BW Query structure from the BW server (based on the SAP Logon entries I have on my local machine). I provide the user and password and then, the login window asks for extended data parameters (to generate Followup RFC files and Show empty data options).  However, after I provide such login credentials and options, the login window shows up again, asking for the login credentials. I can go on and on, writing the login credentials, but the login window comes up and up again (no error message gets displayed at any point).

 

 

 

SAP BW logon screen.png

I tried to generate a brand new Crystal Reports Report, by using  a SAP BW MDX Query connection, and I could get the new structure for the SAP BW Query I need to use (including the 2 new columns I need), so I can see data for them coming into the report. With this, at least I got to know that the login credentials I provide via SAP BO Business View Manager,  for the SAP BW server, are correct. I tried to use this brand new report (the one with the SAP BW MDX Query connection in it), but I had not success when putting it to work in the BOE Server (when I execute it , the BOE Server asks for the BW login connection parameters even though I have explicitly set up the report to work with the DB connection used at design time).

 

Since it was very time consuming I need to go back to the original plan (to get the report to work by using a Business View), but I'm stuck in the step of providing the login credentials for refreshing the SAP BW Query Structure.

 

Hint: A coworker who signs up in a different network, is able to do the verify database process with no problem at all. So I signed up to the network he works, via VPN, using his credentials, but the problem keeps happening. I was not able to locate any logs for the BO BVManager tool so I feel I can not ad up any more valuable information

 

My Environment Technical Reference

 

BOE Server 4.0 SP 10 Patch 1

Crystal Reports 2011

Client Tools 4.0 SP 10 Patch 1 applied locally

 

Any help is very welcomed.

Best regards

Re: XML format for SAP b1 Form

$
0
0

Hi Lakshmi,

 

SAP provide two different design tools for creating custom forms. There is an addon called Screen Painter which is included in all patches of SBO and, for version 9.0 onwards, there is an addin for Visual Studio called B1 Studio. Both of these tools offer a graphical interface for creating your forms which can be saved in the required XML format.

 

Kind Regards,

 

Owen

Re: Custom Translation of Fiori tiles not working

$
0
0

Is the tile translation not changing to spanish version when user logins with spanish?

 

 


Re: MSS UI5 landing page -Approvals

$
0
0

Do you get any error in /IWFND/Error_log CL_HRMSS_GW_RT_LEAVE_APPROVAL.

 

This lane displays the workflow-based Leave Approval, CATS Approval, Clock In/Clock Out Approval, and other approvals available to the manager. The features are as follows: The expanded lane displays the Business Process Management inbox.

 

This lane can also be configured to provide an overview of the inbox queries of Web Dynpro ABAP Personal Object Worklist (POWL).The user can navigate to thePOWL Inbox application from this summary view.This lane also acts as a starting point for the user to access theTravel Approval application. To configure this lane, activate the required OData services and configure the ICF nodes in your SAP NetWeaver Gateway system. For more information, see SAP Library for SAP ERP underSAP ERP Central Component ->Human Resources ->Shared Services ->Manager Self-Service ->Manager Self-Service (SAPUI5) ->Landing Page ->Configuring the Landing Page ->Activating SAP NetWeaver Gateway OData Services andConfiguring ICF Nodes. This information is also available in the Administrator's Guide for HR renewal .

 

 

 

Requirements You have made the settings inSAP NetWeaver ->Gateway Service Enablement ->Content ->Workflow Settings ->Maintain Task Names and Decision Options.You have installed IW_PGW 100 SP03 in the remote SAP NetWeaver Gateway system or on the application server. Activities For the decision options maintained for each task, you must implement theWorkflow BAdI Used Before Update (/IWWRK/ES_WF_WI_BEFORE_UPD_IB) BAdI. In theApprovals expanded lane, to open an approval application by clicking a work item, you must have made the necessary settings in transaction SWFVISU. Example For example, forLeave Approval, make the settings as follows: 1. Go to transaction SWFVISU. 2. For the task TS2150003, change the Visualization Type toBSP Standard. 3. Select the task TS21500003 and in the lane on the left, double-click the folderVisualization Parameter. 4. Remove the existing parameters. 5. Maintain the Visualization Parameter APP_PATH and the Visualization Parameter Value /sap/bc/ui5_ui5/sap/HRMSS_LR_APPR_G/index.html and save the changes."

Re: ESS Time-Off Overview detail pop-up request does not exist IT2002 records.

$
0
0

Sorry Sid meant to add that info.

 

We are on EA-HR 607 0016 HR renewal FP3 running NWBC for HTML only. The first note you mentioned did not apply and the other 2 notes I had already applied but the search led me to http://service.sap.com/sap/support/notes/2063429 which I applied but that did not solve the issue yet. Looking at the FM's you mentioned but its odd to me that I have 2001 records looking just fine seems like they should be in the same boat?

 

Thanks,

 

Martha.

Re: EL16, Meter Read Order is downloading incorrect, upper limit and lower limit at EL31 page 1 screen shows correct but while downloading in file this value does not match with EL31 page1 upper lower limit

$
0
0

Hi All,

 

I suspect this can be the memory issues, what you all suggest?

If this is memory issues then how to proof that?

 

I am saying this can be a memory issues because when i re-run same EL16 T-code with same set of variant all the reads are getting downloaded correctly.

The issues i am facing is during batch job run time. when i am running the same job in different window, i am not facing this issues.

 

Please provide your valuable input.

Re: How to get the Heading for desciption coloumn of the employee

$
0
0

Hi,

 

We need Medium Description from the text table..

 

Thanks

Re: A question on licensing

$
0
0

so

 

what is the meaning of the below table, does it mean i ran out of license ??

 

                       Selected Key          Total Licenses

Named Users:      5                            5

Viewing all 8667 articles
Browse latest View live


Latest Images