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

Re: Batch job scheduling for list of Users

0
0

Your question is not clear to me.

However I would suggest you to check with your BASIS consultant who can help you with the same.


Re: Cost settlement from cost centers to WBS

0
0

Hi,

 

Thanks Gariel. I will test this and give you the feedback. But it seems that it should work as per your suggestion.

 

Regards.

Re: Universe on HANA calculation view with Parameters

Re: How to quickly test custom developments in SAP NetWeaver

0
0

Peter,

 

We only have 1 NWDI system, but this is a remote system managed by another team. Can we somehow develop on this remote system, see the changes we make, without having to always create the sda file and send it to be deployed by that team?

 

Best regards,
Pedro

Re: How to customize sap.ui.commons.Panel header ?

0
0

Hi Sudarshan,

 

I believe you might have to extend and implement a Renderer to achieve such result.. I think on CSS will be painful.

 

 

Cheers,

Dan.

Re: Issues with BPC Consolidation Monitor in BPC 10.1 embedded Model

0
0

Hi Ursula,

 

I am also facing the same issue.

 

Consolidation monitor keep refreshing even after setting up all the required things.

 

Did you resolve this issue?

 

Regards,

Sarvesh

Re: Product Hierarchy Not Refreshed in Material Master

0
0

Hi Jurgen, yes I'm doing MM03 in the same system where I added values in customizing.

Here a screenshot from customizing

 

V/76

Customizing_PrintScreen.JPG

 

MM03

I need to see first level equal to 050..but it is not shown.

 

MM03_PrintScreen.JPG

 

One thing more. I checked table T179 and T179T and new values are present on them.

 

Thank you

M.

Re: Cost settlement from cost centers to WBS

0
0

Hi Ajay,

 

I will check the setting as suggested by Gabriel and then test it as you suggested. Will update this thread soon as I finish.

 

Regards.


Delta load fail from dso to dso

0
0

Hi Folks ,

 

Delta load is failed from DSO1 to DSO2 . But the user made the DSO1 request as GREEN. How can i find the missing delta records and load them ?

I need to know 2 points .

 

1) There is huge number of records. how can i find the missing records

2) How can i load the failed delta request from DSO1. I cannot delete data in DSO1 and do a  full load or anything like that..need only DSO1-->DSO2.

How to load new company code w/o affecting delta ?

0
0

Hi Folks ,

 

we already have a company code in the infopackage selection and DELTA load is running on it.  we have added a new company code in source system.

How can i load the new company code data along with the old data without affecting the delta . ?

Re: Attachment in shift note

0
0

Hi,

in change or display shift note screen system showing file is attached but to view that file,

I want to activate "Display attachment". But not getting any idea how to do it.

 

upload3.PNG

Union Budget changes 2016-17

0
0

Hi Experts,

 

Please provide any clarification regarding below points related to union budget changes 2016-17.

 

     1. PF employer contribution amount to be paid by Govt for 3 years based on conditions- Is it applicable to Only Govt employees or all having PF contribution.

     2. Employer PF contribution to be handled by Govt- how about the posting and contribution from payroll process perspective.

 

     3. PF contribution by Govt is for new joiners- new joining in company or new PF number as starting from fresher.

 

     4. Are the proposed changes being finalized for implementation.

 

Thanks & Regards,

RK.

Re: Link to controlling documents from HR module

0
0

posting from which report?. Please provide more details

Re: How to Add a UDF in header and footer of Marketing Document?

0
0

Hi

 

you have to use an addon to place the fields in this screen.

 

You have to use UI-API.

 

Kind regards.

Agustín Marcos Cividanes

Re: Earliest recalculation for time evaluation exceeded in ESS Portal

0
0

you can

supress this error into warning message in V_HRWEB_TRS_MESS in application area HRTIM00BLPRETRO Please check if the employee has old pending leave requests? Check his It0003 and absence customisation in V_t554s_web


Re: FAIL: process hdbindexserver HDB Indexserver not running

0
0

Hi All ,

 

I am also facing the same issue while start the HANA Database we have getting error like as

 

"fail : process hdbindexserver HDB indexserver not runing".

 

Please attached trace file and provide a resolution.

 

HANA LOGS.rar - Google Drive

 

 

 

Thanks,

Vijay.

v1.32.9 - SearchField issue - default aggregation not defined

0
0

Hi Friends

 

I am using the sap.m.SearchField in my app, it is giving issues with default aggregation - I am using "SuggestionItems" as aggregation. could you please suggest what is wrong here?

 

I see the API, it says the SuggestionItems are available only from 1.34 v - how can I use this control with Autocomplete type.

 

Gets content of aggregation suggestionItems.

SuggestionItems are the items which will be shown in the suggestions list. The following properties can be used:

  • key is not displayed and may be used as internal technical field
  • text is displayed as normal suggestion text
  • icon
  • description - additional text may be used to visually display search item type or category
Since:
1.34

Returns:

{sap.m.SuggestionItem[]}

 

<SearchField                    enableSuggestions="true"                    id="mySearch"                    suggestionItems="{path=/ProductCollection}"                    suggest="onSuggest">                    <suggestionItems>                        <SuggestionItem                            key="{name}"                            text="{name}">                        </SuggestionItem>                    </suggestionItems>                </SearchField>

 

I am following same approach giving in the explore sample - SAPUI5 Explored

 

here is the error message:

Uncaught Error: Cannot add direct child without default aggregation defined for control sap.m.SearchField

Re: HR Renewal 2.0: Issues

Re: SAP SSCE - Introduction or How To Guide

How to code Descriptor Line Below.

0
0

Hi friends,

 

I am not sure how to code this Descriptor line below show in image.

 

It seem simple to other please give some knowledge about it.

 

htc.GIF

 

Component.js code,

 

sap.ui.define([

   "sap/ui/core/UIComponent",

   "sap/ui/model/json/JSONModel",

  

], function (UIComponent, JSONModel) {

   "use strict";

   return UIComponent.extend("suda.Component", {

   

    metadata : {

           manifest: "json"

     },

 

 

      init : function () {

         // call the init function of the parent

         UIComponent.prototype.init.apply(this, arguments);

      // set data model

         var odata = {

            path : {

               name : "World"

            }

         };

         var oModel = new JSONModel(odata);

         this.setModel(oModel);

        

     

          }

   });

});

 

index.html,

 

<!DOCTYPE html >

<html>

   <head>

      <meta http-equiv="X-UA-Compatible" content="IE=edge">

      <meta charset="utf-8">

      <title>Walkthrough</title>

      <script

         id="sap-ui-bootstrap"

         src="resources/sap-ui-core.js"

         data-sap-ui-theme="sap_bluecrystal"

         data-sap-ui-libs="sap.m"

         data-sap-ui-compatVersion="edge"

         data-sap-ui-preload="async"

         data-sap-ui-resourceroots='{

            "suda": "./"

         }'  >

      </script>

      <script>

         sap.ui.getCore().attachInit(function () {

            

        new sap.ui.core.ComponentContainer({

                 name : "suda"

              }).placeAt("content");

         });

      </script>

   </head>

   <body class="sapUiBody" id="content">

   </body>

</html>

 

app structure,

htc1.GIF

 

 

Thanks in advance,

sudarshan

Viewing all 8798 articles
Browse latest View live




Latest Images