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

Re: Needed Suggestion for Career in SAP ABAP.

$
0
0

MANOJ,

 

Dev has given good advice!

 

SAP is all about - becoming an expert and serving the client. Focus on one module, for years & try to become an expert.

 

Knowing little of something and little of another thing would not help at all!


Re: Cutom Business document tab's name changed after SP upgrade

$
0
0

I have checked in under localized resources. Since I am unsure it comes under which localized resource, manually checked randomly and identified relvent. Under one localized resource ID, the value 'Requests' found in 'Override value'. I mean the value 'Requests' is already in tact.

 

1) I have cleared value 'Requests', kept 'Override v'alue blank and saved localized resource ID

2) Reopened same localized resource ID, entered 'Requests' in 'Override value' and saved

 

I think the issue resolved by doing so. How ever, I would like to know the more optimized / best practice to handle this case. I appreciate if you could advice.

 

With regards,

Prabhakar

Invoice posting error

$
0
0

Quality Accepted Quantity is only 15.000

Message no. 00398

Diagnosis

Placeholder for batch input error text, this message is not output.

Quality Accepted Quantity is only   15.000

Re: MEB1 Problem

$
0
0

You can change the rebate in MEB2 based on your existing agreement.

Re: difference between modeler and sap hana development?

$
0
0

The HANA Modeler existed before the HANA Development Perspective.  It uses direct editing but specialized editors that require an online connection to HANA.  For SPS5 we wanted to introduce additional development artifacts which were source code based (XSODATA and XSJS for instance).  For this we wanted to be able to use standard Eclipse editors and debuggers.  Therefore the HANA Development Perspective was introduced. This uses a different workflow of Check Out and editing of local files which then are committed back to the Repository.  This all sits upon standard Eclipse Team Provider infrastructure.  In SPS6 the modeler editors were also integrated into this Development Perspective (Project Explorer), so you could have a single project with all development artifact types.

Re: process on value request is not working

$
0
0

hi,

 

PROCESS BEFORE OUTPUT.

   MODULE STATUS_9001.

  PROCESS AFTER INPUT.

  MODULE USER_COMMAND_9001.

 

PROCESS ON VALUE-REQUEST.

FIELD IT_ZPP-MATNR MODULE FILE_SEARCH.

MODULE FILE_SEARCH INPUT.

DATA: BEGINOF IT_MARA OCCURS0,

          MATNR TYPE MATNR,

      ENDOF IT_MARA.

 

 

*  CLEAR WA_MARA.

DATA : T_RETURN TYPESTANDARDTABLEOF DDSHRETVAL WITHHEADERLINE,

L_RETFIELD TYPE DDSHRETVAL.

   SELECT MATNR  FROM MARA INTO CORRESPONDING FIELDSOFTABLE IT_MARA .

   SORT IT_MARA BY MATNR.

 

     CALLFUNCTION'F4IF_INT_TABLE_VALUE_REQUEST'

       EXPORTING

         ddic_structure = 'MARA'

         RETFIELD              = 'MATNR'

         DYNPPROG              = SY-REPID

         DYNPNR                = SY-DYNNR

         DYNPROFIELD           = 'IT_ZPP-MATNR'

         VALUE_ORG             = 'S'

 

       TABLES

         VALUE_TAB             = IT_MARA

         RETURN_TAB = T_RETURN

      EXCEPTIONS

        PARAMETER_ERROR        = 1

        NO_VALUES_FOUND        = 2

        OTHERS                 = 3

               .

       DATA: lt_dynpfields        LIKE dynpread OCCURS5WITHHEADERLINE.

 

 

     READTABLE T_RETURN INTO L_RETFIELD INDEX1.

        IF sy-subrc = 0.

          MOVE L_RETFIELD-fieldval TO IT_ZPP-matnr.

          lt_dynpfields-fieldname  = IT_ZPP-MATNR.

          lt_dynpfields-fieldvalue = L_RETFIELD-fieldval .  "wa_ekpo-ebelp.

          APPEND lt_dynpfields.

 

 

          CALLFUNCTION'DYNP_VALUES_UPDATE'

            EXPORTING

              dyname     = sy-repid    "Program name

              dynumb     = '9001'           "Screen number

            TABLES

              dynpfields = lt_dynpfields

            EXCEPTIONS

              OTHERS     = 0.

        ENDIF.

       IT_ZPP-MATNR = T_RETURN-FIELDVAL.

some doubts on SAP(PMS)?

$
0
0

Hi Team,

 

 

I am new to PMS, my client planning to implement pms, regarding I have some doubts in PMS, please help me

 

 

  1. for example 1500 employees only 1000 employee only
    appraisal eligible for this appraisal period how and where can we restrict
    these list of employees?
  2. In PMS project BASIS guy any help required?
  3. What activates of ABAP persons in PMS project?
  4. What is functional person working PMS project?
  5. What is the difference between Flexible & Predefine
    appraisal templates? which one is suggestible?

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Thanks,

srini

Re: APD limit of 1 million records

$
0
0

Hi

 

No the limitation is stil the same this is driven by the query result. Make sure you supress sum rows and totals you don't need.

hope that helps

Martin


Re: HCM_TM_Attendance Option in ESS

$
0
0

Hi Gagan

 

let me answer u the for following questions

 

1) Yes, In ESS Record working time & leave request are both separate services and u can use them without any issues. for those both the workflows will be different. for leave request u can set the workflows in V_T554S_WEB & for Recording Working time in CAC1.

R1.png

2) u can set the period type settings in CAC1, where u can restrict to weekly or monthly or daily.

cac1.png

3) Normally CATS life cycle goes like this.. Initially employee book his attendance in CAT2(here ESS), after that manager approves/rejects it from CAT4(here MSS). now to transfer the data we must use CAT6. unless u don't use the data won't get updated in HR. Normally we run a background job for this program RPTEXTPT (CAT6) and set a frequency for this. so then the system will automatically updates the record in HR & corresponding Infotypes.

 

CAT6.png

4) for CATS config u need to use CAC1 & CAC2 for maintaining all the required settings. and to run complete life cycle in CATS check 3) ans.

 

Kindly close the thread (by clicking correct answer) if u feel that u have got ur answers, as this will be helpful for all SDN users to find/reply  answers to ur thread.

 

Hope this Information will be sufficient

 

Cheers

Pradyp

Re: Delete enhancement implementation and class through program.

$
0
0

Hi Satish,

 

Thanks for your answer with detail steps

 

I know how to delete the enhancement implementation manually. i want to delete it though code at run time.

Let me explain the requirement again.

 

i have one report. and depending on some condition i want to delete the BADI.

foe . e.g

IF sy-subrc <> 0.

 

     <DELETE IMPLEMENTATION>

 

ENDIF.

 

So is there any function module or class method exist to delete the implementation though code.

 

 

Thanks,

Arati.

Re: ole2_object + clipboard_export issue if same file name give

$
0
0

Can you Post your Code .

 

Regard's

Smruti

Re: Inspection lot for customer returns

$
0
0

Hi Nitin,

 

Maintain inspection type 05 in material master and movement type 655 in VOV6.

 

Make sure that QM not active indicator for movement type 655 should not be selected in SPRO --> Quality inspection --> Inspection for Goods movement --> Deactivate Quality inspection for a Movement type.

 

Successfully we are using the same scenario.

 

Rgds,

Surya

Re: EEM @ SAP Solution Manager 7.1 SP8 - Tutorial or Demo

$
0
0

Hello community,

 

as I already found out, for "SAP Solution Manager 7.1 SP08", I have to install at least "SMD-Agent 7.11" on my local workstation and "SAP Host Agent 7.20 SP147" on our "SAP Solution Manager 7.1 SP08".

 

Can you please tell me, how to find out, which version of "SAP Host Agent" is installed on our "SAP Solution Manager 7.1 SP08"?

 

 

Thank you very much for replying and best regards.

Printing Approved document as a draft in print layout

$
0
0

Hi all,

 

I'm using SAP Business One PL 04 for and we have set approval templates for Purchase Order and A/R Invoices. We usually "Add" above approved PO's and A/R invoices and print those but when printing some of those it shows as draft in crystal print lay out and document status shows as "Open - Printed" and to resolve that user need to re log in to SAP.  We have upgraded to 9.0 PL 04 from 8.81 PL04.

Please any one can give solution.

Re: Goods received or not

$
0
0

Hi Venkat,

 

I guess, it is the better way to do it.

 

SELECT EKBE WHERE

                          EBELN = 'PO'

                          VGABE = '1'  Goods receipt happend

 

if sy-subrc ne 0.

GR has not happend!

else.

GR done for PO.

endif.

 

* there are different movement types at the time of doging GR, we can't assess based on the movements.

 

What do you think?

 

RG, Kiran


Re: Unflag the Closed Indicator Purchase Requisition

$
0
0

No am talking about another SAP customer. Consider Two SAP customer A & B . We have Implemented end to end on Customer A  above logic is Working Well but For Customer B Not working. i think configuration  on MRP . yeah Reduced tab also shows in  500 PC  on status bar.

Re: ALV Filter Issue

$
0
0

Hello Nabheet,

 

Yes I have asked the developer to make these changes in the field-catalog. As suggested we can try with 'NO_CONVEXT = C_X'  Or NO_CONVEXT = space. I will update based on the o/p.

 

Regards,

Tanmoy

Re: Child component quantity default value during 543

$
0
0

Hi,

 

Scenario 1

 

Please check the component qty maintained in the SA schedule line via ME38 as there is possibilities to changes the qty  at SA level .

 

Scenario 2

 

When you do GR system displays required qty for component  from PO/SA, when you click the check icon that time only system checks the qty available at vendor location. if there is any deficit stock, you will get error message .

 

Regards,

Renuga.A

Re: BW role to be made non transportable

$
0
0

Hi,

 

I think , not possible. better to write some comments like"Do not transport" at transport request   then no one will capture into transport.

 

If you won't transport bw role then what is purpose to use at dev system only.

 

Thanks

Re: Get key combination based on access sequence for Pricing conditions

$
0
0

Hi All,

 

There is a similar FM in ECC with the name 'RV_GET_CONDITION_TABLES'. So, Can I get a similar FM which meets the requirement in CRM?

 

Regards,

Pradeep.

Viewing all 8713 articles
Browse latest View live




Latest Images