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

Legacy Plan and Actual for Projects

0
0

Hello,

 

Our client has a requirement related to Project Legacy expense revenue during cut-over. How the cost / revenue for completed part of the project can be posted in Project.

 

We are going in New financial year and there will be no balance on P&L cost center to re-posting from CO.

 

 

Regards

Gaurav Ahuja


Re: Indirect labor

0
0

Kamal-- Thanks a million for all your support and the detailed solutioning like I said I will try my best to fit this inputs ..... Thanks once again !!!

Re: Can i add Icon to sap.ui.table.Table RowSelector

0
0

Thanku Jamie,

 

It helped.....

keystore access as java

0
0

Hi,

 

I'm trying to write the udf for the access for the keystore as java in PO.please find the below code and error's I am getting.can anyone help out this waiting for your reply.

 

 

 

Capture.PNG

 

Capture.PNG

 

Capture.PNG

 

could you please share me the code I don't know the java and what are the jar i have to import.

 

 

 

Thanks

Software Upgrade Manager! FATAL ERROR Checking job DBCLONE1/12084500 returned 1

0
0

Dear Experts,

 

I am upgrading SAP Solution Manager 7.1 SPS with SUM tool.

 

During PreProcessing Phase ABAP>MAIN_SHDCRE/DBCLONE Server Down.

 

During this step SUM created 3 background jobs DBCLONE1,DBCLONE2 & DBCLONE3 during this phase our SAP Sytem gone down due to cloud issue. After we started our SOLMAN system job was cancelled in SM37 with status red, i deleted the job with this assumption that SUM will repeat the step n create the job unfortunately SUM is looking for these jobs and giving FATAL error (Screenshot & logs attached)

 

Please suggest the solution??  i reach to this prepossessing step after 4 days and don't want to scratch SUM.

 

Waiting for your solution.

 

Regards,

Qazi

Re: Authorization Test Fail

0
0

HI Omkar

 

Have you tried to on the trace on your id in the managed system and then try to logon with trusted RFC (make the current user settings as that is prefer way to do that).

 

Also S_RFCACL ,S_RFC,S_RFC_ADM are the authorization objects which facilitates this.

 

Thanks

Rishav

Re: SAP Solman SPS Upgrade Error on Extraction Phase PRE_INPUT_CHK/READCVERS_DUMP

Re: to change treeview item label color and size dynamically

0
0

I think your only hope is a treeview datawindow


Protect selected range of rows & Columns in excell using OLE

0
0

Hi,

 

I want to protect only selected range of rows & columns in excell sheet using OLE Concept. I tried using Locked and Protect properties but whole sheet is getting protected. Please find my below code.

 

 

 

TYPE-POOLS: soi,ole2.

DATAlo_application   TYPE  ole2_object,

        lo_workbook      TYPE  ole2_object,

        lo_workbooks     TYPE  ole2_object,

        lo_range         TYPE  ole2_object,

        lo_worksheet     TYPE  ole2_object,

        lo_worksheets    TYPE  ole2_object,

        lo_column        TYPE  ole2_object,

        lo_row           TYPE  ole2_object,

        lo_cell          TYPE  ole2_object,

        lo_font          TYPE ole2_object.

 

   DATA: lo_cellstart      TYPE ole2_object,

         lo_cellend        TYPE ole2_object,

         lo_selection      TYPE ole2_object,

         lo_validation     TYPE ole2_object.

 

Datagh_zl TYPE OLE2_OBJECT,

        gh_f  TYPE OLE2_OBJECT.

 

   DATA: lv_selected_folder TYPE string,

         lv_complete_path   TYPE char256,

         lv_titulo          TYPE string.

 

     CALL METHOD cl_gui_frontend_services=>directory_browse

       EXPORTING

         window_title    = lv_titulo

         initial_folder  = 'C:\'

       CHANGING

         selected_folder = lv_selected_folder

       EXCEPTIONS

         cntl_error      = 1

         error_no_gui    = 2

         OTHERS          = 3.

   CHECK NOT lv_selected_folder IS INITIAL.

 

   CREATE OBJECT lo_application 'Excel.Application'.

   CALL METHOD OF lo_application 'Workbooks' = lo_workbooks.

   CALL METHOD OF lo_workbooks 'Add' = lo_workbook.

   SET PROPERTY OF lo_application 'Visible' = 0.

   GET PROPERTY OF lo_application 'ACTIVESHEET' = lo_worksheet.

 

*Fill data

 

PERFORM FILL_CELL USING 1 1 1 'TEST1'(001).

PERFORM FILL_CELL USING 1 2 1 'TEST2'(001).

PERFORM FILL_CELL USING 2 1 1 'TEST3'(001).

PERFORM FILL_CELL USING 2 2 1 'TEST4'(001).


*Select range of rows columns

CALL METHOD OF lo_worksheet 'Cells' = lo_cellstart

EXPORTING

#1 = 1

#2 = 1.

 

CALL METHOD OF lo_worksheet 'Cells' = lo_cellend

EXPORTING

#1 = 1

#2 = 2.

 

CALL METHOD OF lo_worksheet 'RANGE' = lo_range

EXPORTING

#1 = lo_cellstart

#2 = lo_cellend.

 

CALL METHOD OF lo_range 'select'.

CALL METHOD OF lo_application 'selection' = lo_selection.

 

SET PROPERTY OF lo_selection 'Locked' = 1.

CALL METHOD OF lo_worksheet 'Protect'

EXPORTING

#1 = 0

#2 = 0.

 

CONCATENATE lv_selected_folder '\Test' INTO lv_complete_path.

 

   CALL METHOD OF lo_workbook 'SaveAs'

     EXPORTING

     #1 = lv_complete_path.

 

   IF sy-subrc EQ 0.

      MESSAGE 'File downloaded successfully' TYPE 'S'.

   ELSE.

      MESSAGE 'Error downloading the file' TYPE 'E'.

   ENDIF.

 

   CALL METHOD OF lo_application 'QUIT'.

   FREE OBJECT lo_worksheet.

   FREE OBJECT lo_workbook.

   FREE OBJECT lo_application.

 

   FORM fill_cell USING    i j bold val.                   "For filling data in excel.

 

   CALL METHOD OF

       lo_application

       'CELLS' = gh_zl

       NO

       FLUSH

     EXPORTING

       #1      = i

       #2      = j.                             "Transferring data to row = i and    column   = j.

 

   "For handling automation error.

   PERFORM ERR_HAND.

 

   SET PROPERTY OF gh_zl 'VALUE' = val no flush.

   PERFORM ERR_HAND.

 

   GET PROPERTY OF gh_zl 'FONT' = gh_f no flush.

   PERFORM ERR_HAND.

   SET PROPERTY OF gh_zl  'NumberFormat' = '@'.

   PERFORM ERR_HAND.

   SET PROPERTY OF gh_f 'BOLD' bold no flush.

   PERFORM ERR_HAND.

ENDFORM.

 

FORM ERR_HAND.

*return message in case of error.

   IF SY-SUBRC <> 0.

     WRITE: / 'OLE ERROR: RETURN CODE ='(I10), SY-SUBRC.

     STOP.

   ENDIF.

ENDFORM.


Thanks in advance.

Re: Alteração cálculo DIFAL - MG

0
0

Bom dia,

Estamos aguardando também uma solução da SAP para este assunto.

 

Veja resposta da SAP:

2259931 - FAQ of EC87 and NT003 solutions

 

C41 - ICMS calculation for Minas Gerais state:

Minas Gerais (MG) state has changed the calculation (reduction) for the ICMS basis calculation in DIFAL operations with customers that are ICMS tax payers. This scenario is under analysis by the product managers and the development area of SAP. Currently this scenario is not supported by SAP, and in case a solution is delivered in the future, we will update this topic in this SAP KBA.

Re: J1IN IS SAME AS J1IIN

0
0

Hi Rohit,

 

If you have to select cancel exc.inv option in J1IH, then only it hits to CEIV. If you select other adj.then system will look for OTHR type.

 

Regards,

Mukthar

Re: Vendor evaluation based on storage location

0
0

There is no such option, as it does not make any sense from my point of view. You evaluate a vendor, lets say as example one person, if this person has really 2 faces to you then you create either 2 vendors, or different purchasing organizations which are responsible for either the one or other storage location to enable different evaluation.

 

But you have much more power over your vendor if you do your evaluation like any other company using SAP. Tell him that he may loose the entire business with you if he does bad for one location.

 

And how to evaluate vendors where your purchase order does not have a storage location? this is not a mandatory field at all for NLAG items.

Re: Assignment of Employee sales area data in New Account/Prospect

0
0

Hi Fred,

 

Thanks for your reply !!

 

Could you please check if I have added ELEMENT in correct place in .XBO definition because I am still getting same error:

 

import AP.Common.GDT;

import AP.FO.BusinessPartner.Global;

 

[Extension] businessobject AP.FO.BusinessPartner.Global:Customer {

               

           node AddressInformation {

           }

  

           node Common {

        element IsCreated : Indicator = false;

           }

  

           node CurrentEmployeeResponsible {

 

      

      

           }     

}

 

 

Here I have written code in Script

 

import ABSL;

import AP.FO.MOM.Global;

 

if(!this.IsCreated){

 

var sa: elementsof SalesArrangement;

 

sa.CustomerUUID=this.UUID;

 

sa.DistributionChannelCode.content="01"; // direct sales

 

var fu= FunctionalUnit.Retrieve("2004"); // 123 is just an example

 

if(fu.IsSet()){

 

     sa.SalesOrganisationUUID = fu.UUID;

 

     var testInstance = SalesArrangement.Create(sa);

 

     this.IsCreated=true;

 

}

 

}

 

Error : Identifier 'IsCreated' does not exist.



Regards

Nitin

 

 

:

Re: Script logic issue while loading data for the first time

0
0

P.P.S. But I agree with Gersh/Bishwajit that the script itself is strange

Custom Fiori app loads shifted

0
0

Hi Experts,

 

We have a running fiori app, it was developed like a year ago, everyting was fine. Now we have upgraded the gateway to NW 7.5, and this app loads like this:

 

app.png

After refreshing it it get's into its place, but it's really frustrating becouse everytime I reopen it from the launchpad I see this.

 

Any ideas?

 

Thanks

David


Re: IN india payroll pointof view the difference between infotype14&15 in depth level?

0
0

Hi,

 

Infotypes 14 & 15 are not country specific. Infotype 15 is used for making one time payments while 14 is used for payments/deductions which are to be made on continual basis.

 

Example of IT 14 wage types:

 

monthly Bus recovery

furniture monthly recovery

monthly loan recovery

monthly allowances

 

Example of IT 15 wage types:

 

One time payments/allowances

one time deductions

holiday payment

shift allowance

leave encashment

 

It is possible to prorate IT14 wage type (since it is having from date & to date) while it is not possible to prorate IT 15 wage type (since it pertains to a single date).

 

You can have plenty of threads/helps/wiki on this topic.

 

regards,

Bala.

Re: EHP 7 MSS - ON Behalf of services: Applications are not getting open

0
0

Hi Siddarth, Sorry I did not get you

I have uploaded PFCG role of MSS on portal however I have assigned MSS add on role to user on portal which comes from Content provided by sap -> line manager - Add on

 

Is that okay ? Or how can I assign both PFCG role and add on simultaneously to user?

Kindly assist me.

Its quite urgent for me

 

Many thanks,

Re: Exchange online (O365) Integration / Compatibility

0
0

Hi,

One other information I've found is that you can do a bulk upload in O365.

So you can export a CSV file in a predefined by O365 format from IDM and import in O365.

Add several users at the same time to Office 365 - Admin Help - Office 365

This would create users with different passwords which need to be sent to the users.

Further you can continue to configure SAML 2.0 Single Sign-On for users using these guidelines

 

https://msdn.microsoft.com/en-us/library/azure/dn641269.aspx

 

Best wishes,

Fedya

Re: Need help with a material valuation issue

0
0

But if you enter the only one available valuation type before you hit enter, then I am pretty certain that you can create this PO, and it has then the same effect, you created it with domestic instead of import.

So the only solution is to extend the material master with valuation type for import via MM01

Re: KE27 not updating Actual COGS Value Field and its Components

0
0

Hi Krishna,

 

I think you have hit the right nail. Actual Cost Component Split is only activated on Production Plants but not on Selling Plants and all sales were made from selling plants

 

30.PNG

 

Let me fix that that and analyze the results and i will get back to you on this.

Viewing all 8594 articles
Browse latest View live




Latest Images