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

Re: Installation of TREX on same Machine.

$
0
0

Hi Jon,

 

as I understand you want to install TREX instance , that supposed to be running with local account (the domain in the log is the same as hostname).
It means that the installation can be started with a local account too. But this one should have administrator rights on the server .
Please use the REV 65 for installation directly.As the sapinst isn't supported anymore you need use the script. It means you need to start CMD.EXE with option "run as administrator"(!!!) and execute the command line "install.cmd --sid=TRE --instance=05 --action=install --password=<some password>
It could be possible that the issue related to the password you wanted to set. Most likely this wasn't accepted by Windows - too short , doesn't contain scpecial characters. Could you please try the installation with a password containing at least 12 characters (letters, digits, special characters) .

 

And last one  - as I see from log you have already a lot of SAP instances on the host. Does the server enough resources for TREX (memory, disk space)? Usually we don' recommend to install TREX on the same host as the other SAP applications.

 

Best regards,
Mikhail


Call BAPI_MATPHYSINV_COUNT

$
0
0

Hi I call  BAPI_MATPHYSINV_COUNT fine , but is not work on Materials with serial Number ( Serial Number Is not save and when I try to change Count in Mi05 ,Serial Number list is Empty ) whats my problem ?

 

 

 

DATA UNI TYPE I.

 

      UNI = 1.

 

     SELECT  SERNR

       FROM EQUI INNER JOIN EQBS

       ON EQUI~EQUNR = EQBS~EQUNR

       INTO  I_SN-SERIALNO

       WHERE EQBS~B_LAGER = ITB-LGORT

        AND  EQUI~MATNR = I_COUNT-MATERIAL.

 

       I_SN-UII = UNI.

       I_SN-ITEM = ITB-ZEILI .   --------> All serial numbers Item set by same Item number ( material Item Number in physical INV Doc )

 

       SHIFT I_SN-UII LEFT DELETING LEADING ''.

       APPEND I_SN.

       UNI = UNI + 1.

       ENDSELECT.

 

 

         CALL FUNCTION 'BAPI_MATPHYSINV_COUNT'

           EXPORTING

             PHYSINVENTORY = ITB-IBLNR

             FISCALYEAR    = PYEAR

             COUNT_DATE = PDATE

           TABLES

             ITEMS         = I_COUNT

             RETURN        = I_RETURN

             SERIALNUMBERS = I_SN .

 

        COMMIT WORK .

Re: Maintain custom form for Ticket Summary

$
0
0

Hi Shalini,

 

I have observed the attached screen shot and found under the master template for Ticket (Service Request) which is United States - English does not exist in the system.

 

 

 

Please add a variant of United States - English by any existing variant. The dump will not occur anymore.

 

 

 

United States - English is the master template and it will be the fallback if the specific language variant does not exist.

 

Regards,
Sandeep

Re: webdispatcher

Weekends exclusion in SAP BW

$
0
0

Hi,

 

We have a requirement to calculate the difference between 2 dates.

The weekends should not be included, they must be excluded in the calculation.

We have the FM RKE_SELECT_FACTDAYS_FOR_PERIOD to calculate the difference between dates excluding the weekends based on factory calendar. But unfortunately this FM is not available in the SAP BW system.

Please let me know if there is any such FM available in the SAP BW system.

Thanks.

Re: Transport Themes created using UI Theme Designer

$
0
0

Hi Sandip

 

You just need to transport You just need to transport the theme semantic object

You don’t need to collect the WRR files (it happened without your involved)

 

Regards

Gadi

exportNewLessTheme.PNG

ABAP Technical Documentation

$
0
0

Dear All,

 

Is there an SAP / ABAP tool that allows us to produce a technical document from the code in the ABAP.  I can recall Java has this technique!!

 

Regards

 

 

Waza

Re: Can anyone help me on below absence quota issue ?

$
0
0

Hi Ananda,

 

Your issue is not very clear to me but as per my understanding I think you should check assignment details of IT0001 and check Base Entitlement and Generation rule.

 

Thanks


Re: How to display the selected menu text name in the input control ?

$
0
0

Hi All,

Please find the code below code , for setting the selected menu text name in the input control.

//create the input control

var mInput = new sap.m.Input({ showValueHelp: true, showSuggestion: true, valueHelpOnly: true, placeholder: "Choose value", });

//change helpicon of the input control

mInput._getValueHelpIcon().setSrc("sap-icon://slim-arrow-down");

//create the menu list

//oData.FullNodes contains details abt the menu

var filterMenuList = this.constructFilterMenu(oData.fullNodes, null, mInput,oData.dimensionId);

mInput.addStyleClass("sapUiPopupWithPadding");

var oModel = new sap.ui.model.json.JSONModel();

oModel.setData(oData);

mInput.setModel(oModel);

mInput.attachValueHelpRequest(function (oEvent) {

var eDock = sap.ui.core.Popup.Dock;

filterMenuList.open(

          true /*First item already highlighted*/,

          mInput.getFocusDomRef()/*Dom reference which gets the focus back when the menu is closed*/,

          eDock.BeginTop, /*"Edge" of the menu (see sap.ui.core.Popup)*/

          eDock.BeginBottom, /*"Edge" of the related opener position (see sap.ui.core.Popup)*/

          mInput.getDomRef() /*Related opener position (see sap.ui.core.Popup)*/

      );

}, this);

constructFilterMenu: function (data, parentMenu, oLabel,dimensionId)

{ var that = this;

var mainMenu = new sap.ui.unified.Menu();

var parentLabel = oLabel;

if (parentMenu!= null) {

parentMenu.setSubmenu(mainMenu);

} else {

var oModel = new sap.ui.model.json.JSONModel();

oModel.setData(data); mainMenu.setModel(oModel);

mainMenu.attachItemSelect(function (oMenuSelect)

{ var s = parentLabel;

if (oMenuSelect.getParameter("item").getMetadata().getName() == "sap.ui.unified.MenuItem") {

parentLabel.setValue(oMenuSelect.getParameter("item").getText()); }

});

}

for (var key = 0, l = data.length; key < l; key++)

{

var item = data[key];

var menuItem = new sap.ui.unified.MenuItem({tooltip: item.caption, text: item.caption});

mainMenu.addItem(menuItem);

var oMenuItemModel = new sap.ui.model.json.JSONModel();

oMenuItemModel.setData(item);

menuItem.setModel(oMenuItemModel);

if (item.children.length > 0) {

this.constructFilterMenu(item.children, menuItem, oLabel,dimensionId);

}

} return mainMenu;

}

 

Thanks, Hemapriya

Re: UDF value should come in Outgoing payment

$
0
0

Hi,

 

you are right , until we save the document we will not get DocEntry. But , it is not possible to update row level in outgoing payment.

 

Thanks

MG

Unable to Design Custom Crosstab in SAP Design studio

$
0
0

Hello BI Experts,

 

Here I am facing a problem to design custom crosstab and below are the points in my dashboard.

 

- I have created a dashboard using crosstab and I have a written script in CSS file I saved it in repository folder.

- I have written file name in css class tab which is in crosstab property.

-  If I execute the dashboard my crosstab is not changed.

 

And I have attached screen shots below, have a look and please suggest me something about it.

 

 

Thanks

Raju.Koora

Re: relation between table T554S_Q and T554S

$
0
0

Hi Jagan,

 

Yes I have changed the counting rule form 01.12.2015 and assign it to absence type in the table v_t554s_q than split get formed in both the table (t554s and v_t554s_q).

 

if an employee applying the particular absence type than system throwing an error-

 

end date xxxx after the valid to date 30.11.2015 of the absence type xxxx

 

so as per your suggestion we can not remove this error except apply the particular absence type in two part.

 

thanks

Sachin

Re: Adding Nominations infotype in Personal profile

$
0
0

Hello Namsheed,

 

Yes this structure is not availalbe in AE country, you can check if you could use the Indian scenario as HCMT_BSP_PA_IN_R0591 is available , you can make a copy of the same then try to use it , If it works.

 

Best Regards,
Deepak..

Re: Unable to perform file upload with sap.ui.unified.FileUploader

$
0
0

Hello Imran,

 

I tried this option also. But, still the same error.

 

Does your OData service implemented the method to send new csrf token?

 

I am getting same token always.

Re: User decision steps have agents in log and SWI5 but not appearing in SBWP

$
0
0

Hi,

 

   Please share the screenshot of User Decision steps, Agents and sm58.


Re: AP Invoice is created in foreign currency, payment is being made in another foreign currency

$
0
0

Hi,

 

Confirm your Business Partner currency is set to All Currency ? Otherwise it will not show.

 

Thanks,

Harshal

Re: Auto PR Creation problem for MRP Type ND

$
0
0

Dear All,

 

Creation indicator is "R Realtime (manual)" but created by field is "workflow systems"

Re: RSMIPROACT not sending PR info to SNC

$
0
0

Hi Guru,

 

Could you please provide your contact email address ?

 

Thanks,

Kathir

Different roles but single name ?

$
0
0

Hi all,

i want to disply multiple roles under single name.

top level navigation name will be unique to all users.and the roles under that name will be different.

if it is possible please tell me the exact process.

thank you in advance

Re: HUM in MIGO - Delivery

$
0
0

if the putaway quantity is in display mode then it seems you have the warehouse management active please have a look on the attached screen and the filed highlighted do you see any value there

 

Untitled.jpg

Viewing all 8676 articles
Browse latest View live




Latest Images