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

Re: ESR Mapping changes are not reflected @ Output

$
0
0

Hello,

I hope u have not changed the proxy structure, but just altered the mapping logic?

BTW, Goto pimon -> Adapter engine -> Cache Monitor -> and synchronize OM and ICO and then check?

 

Thanks

Amit Srivastava


Re: saving contents of screen in HWC

$
0
0

So the application is on 2.3, Can you check whether the method saveScreen(mvc1, 'Screen name'); is present inside the API.js file inside the project to be called inside custom.js.

 

-Midhun VP

Re: Error: Insufficient privilege

$
0
0

I had faced a similar issue. In that case I went to HANA  System Privileges, and assigned  “Create R Script” permission granted. I stopped getting the above error after that.

Re: Tips for finding the field group number for a field in BP BDT

$
0
0

Hi -

 

Please check the table TBZ3R in SE16 transaction , it may help you.

 

Regards,

Atul Mohanty

Re: document splitting rule for reverse document

$
0
0

Hi Naseem,

 

The original document was posted with a different document type for which the item category is included and it allowed to post the document.

 

NO Gl accounts were changed.

 

i just like know how the system reverse the document as document splitting is not active for that item category.

 

Rgds

Shashi

Re: Block Customer Code to perform IW31 and DP90 (Service Module)

$
0
0

Hi Moazzam,

 

As per double confirm with you . This error message can be configure to as Error Message .

Will this program change on Message affect other TCode as well.

 

Appreciate your guide. Thank you very much.

 

Re: SAP Hana Certification

$
0
0

Hi All,

 

 

1) Could you please help me in getting (HA350 - PDF) for getting certification on C_HANAIMP131.

 

 

2) Could you please help me to get the Questions & Answers for the certification (C_HANAIMP131)..Probably any dumps or suggest me the best Online website for getting the Questions for paid also..!

 

 

Your recommendation and suggestions are sincerely appreciated..! Thank you..!

 

 

Thank you so much,

 

Bhanu

Re: Type of users

$
0
0

Many thanks for your time.Can you help me in this. I am not aware of all those?


Re: Employee's personal data, past experience, education, leave and attendance data should display for Managers in ESS/MSS

$
0
0

Hi Nayak,

 

Configuration here is required for the services such as Time accounts - 2006,2007 quota balance i think if you have already configured the leave request application in ESS you must have done this also.

 

Then regarding the Team view application under the MSS role you can can change the launchpad's - MSS EMPLOYEE_MENU , MSS ORGANIZATION_MENU if needed .

 

In case of any other clarifications revert back to us.

 

Regards,

Mithun K

Re: ESS&MSS

$
0
0

Hi John,

 

There is now where OADP and PCR comes into picture in regards to the Leave request application in ESS.

 

If you want the maternity leave to be applicable only for the female employees this you can restrict through the BADI - CL_PT_ARQ_REQ and include the explicit enhancement/validations in the method - IF_EX_PT_ABS_REQ~SIMULATE_VIA_BLOP .

 

Hope this solves the issue.

 

Regards,

Mithun k

Re: ESS&MSS

$
0
0

Hi John,

 

This is a customer specific logic where if the manager is not there then the system must escalate to next level .

 

As per the standard workflow id it supports only one level of approval and i hope in your case its more than one level so you must have copied the standard workflow id and created a custom one.

 

Now here you must include a custom logic in workflow that if the work item is not been approved/rejected by the approver for certain period then you can escalate to next level. This can be done by the workflow consultant and at the next level approver can approve through the universal work list in portal.

 

Hope this solves the query.

 

Regards,

Mithun k

Re: PT/BR - Canal de aprendizagem ABAP  - Proposta

$
0
0

Olá Cleber,

 

Primeiro, discordo TOTALMENTE sobre não ter informação para todos os níveis. Tem para todos os gostos, é só procurar. O que pode acontecer é alguém que não sabe inglês não conseguir aproveitar o material, mas isso é outra discussão.

 

Acredito ser possível alguém estudar 1 ano e não explorar o SCN, mas quando você tivesse seu primeiro problema "cabeludo", tenho certeza que o SCN (via google ou similares) seria sua fonte primária em busca da solução.

 

E para esclarecer, a minha resposta baseou-se em duas coisas: você ter dito que "criou muito material ao longo do tempo", perguntando se a comunidade teria interesse (entendi que era material SAP), e a sua conta ter sido criada em 2009. A impressão que deu é que você já estava envolvido com SAP há bastante tempo, porém totalmente alheio ao SCN.

 

Fica a recomendação para você explorar muito, muito mesmo todo o material aqui disponível.

 

Abs,
Mauricio

Re: Is there a way to upload free part (MBN1) from a text file to SAP

$
0
0

Thx Dëv Päträ .

 

If using LSMW recording, i need to make sure the free parts for each article, however , in my case, different article can have different no of free parts.

Pls feel free to suggest. thanks a lot.

 

q3.png

Re: Type of users

Re: Material not in use sales process at company code Level!

$
0
0

Hi Santosh,

 

Thanks for suggestion, We are planning to do so.

 

Thanks&Regards

Ritesh


PDF truncation using CONVERT_ABAPSPOOLJOB_2_PDF

$
0
0

Hi All,

 

I am facing a problem in PDF conversion, i have a custom program which converts spool to PDF and writes to server using CONVERT_ABAPSPOOLJOB_2_PDF. when i download loaded pdf file from server the file is truncated and also font size is increased than previous.

 

it was working fine previously, from past few days it's getting truncated and reported to be font size is increased. from program side there are no recent changes. below is the code.

 

  if lv_otf is initial .

    call function 'CONVERT_ABAPSPOOLJOB_2_PDF'

      exporting

        src_spoolid              = lv_spool

        get_size_from_format     = 'X'

        pdf_destination          = 'X'

      importing

        bin_file                 = lv_pdf

  else.

     call function 'CONVERT_OTFSPOOLJOB_2_PDF'

      exporting

        src_spoolid              = lv_spool

        no_dialog                = ' '

        pdf_destination          = 'X'

      importing

        bin_file                 = lv_pdf

   endif.

 

 

*** Converting XString format to SOLIX format ----

    lt_pdf = cl_document_bcs=>xstring_to_solix( lv_pdf ).

 

 

  open dataset lv_fname for output in binary mode .

 

 

  if sy-subrc = 0.

    loop at lt_pdf into ls_pdf.

      transfer ls_pdf to pv_fname.

    endloop.

    close dataset lv_fname .

  endif.

 

I am not able to get any clue, please help.

 

Regards,

shiva.

Re: Custom Dashboard in Solman

$
0
0

Hi Karthik

 

In SAP Teched there was a good hands on workshop where this is covered using Xcelsius BO integration with solman

 

But if you want to use dashboards in Solution Manager and design of your own then you need to have knowledge of BI ....Solution Manager has inbuilt BW system so it is easy to copy or create a new infocube or a dashboard report as per your requirements

 

Regards

Prakhar

Re: Dynamic Labels

$
0
0

HI

Tharanggany Krishnamurthy Meena ,


Please explain it so i can help you.........



Re: How to install SAP Mobile platform SDK for creating iOS Mobile Application?:

$
0
0

Thanks All,& Thanks Midhun for help,

 

Anyhow i tried many different ways from the Sybase forum guide could not get some of the required tools/frameworks even though they given proper implementation guide.

Calculation View and engine Conecpt

$
0
0

Hi,

This question has been discussed many times but I could not found a clear answer.

If a calculation view contains join operation, which engine will execute that?

 

is it that joins will be executed in JOIN engine and rest of the part of calc view in calc engine? Or everything will be executed in calc engine?

 

-Raja

Viewing all 8573 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>