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

Re: QM Control Chart and Hazardous Material Management

0
0

So is there any possible that graphic can display multiple inspection lot in the same time?

If the answer is yes, could you please tell me how to setting corresponding parameter and also show me the graphic.

 

The graphic as my thought is like the following picture, I'm not sure it's correct or wrong...

2014-07-27_15-05-17.png


Re: Incorrect results with design-time artifacts

0
0

Hi Krishna,

 

This POC was kept aside. This was more of product bug. I not checked yet in SPS 8.

 

Regards

Raj

Re: I want to get write a logic to get CST no and VAT no in on Report level

0
0

You can maintain this fields in Excise master data under the t code J1ID,  in that Excise indicator for plant if you click you will find the below screen shot. Check in your case also in the same place might have been maintained, if so please take the below logic.

 

1. VAT number : J_1IMOCOMP-J_1ILSTNO From VBRP-VBELN take WERKS field and pass this information to  table J_1IMOCOMP and get the J_1ILSTNO and display this field in to output of the report.

 

2. CST number :J_1IMOCOMP-J_1ICSTNO (From VBRP-VBELN take WERKS field and pass this information to  table J_1IMOCOMP and get the J_1ICSTNO

 

 

J1ID.png

 

If the VAT and CST numbers belong to customer then the table and fields would be as below

 

VAT number of customer :J_1IMOCUST-J_1ILSTNO

CST number of customer : J_1IMOCUST -J_1ICSTNO and the logic need follow accordingly.

 

thanks,

Srinu.

Re: How much SAP - SD has placement chances & potential ?

0
0

Hi Tulsidas,

 

SAP SD is core bread and butter of Supply Chain Management running companies.  There is no end for SAP SD Module but there are lot of guys entered in SAP SD and heavy competition in India.  If you want to stand out from crowd and your aspiration to go to onsite then you have to stand out from crowd to learn new dimensional products SAP CRM Sales or Service. 

 

Get the advise from others also, but if you are not in new dimensional product then it takes time to achieve a place what you want.  This is my personal experience as I am also in SD and move into multiple modules then landed in SAP Event Management.

 

So, we need to stand out from crowd if you want achieve fast.

 

Regards

 

GGOPII

Re: Earmarked funds from contracts ?

0
0

Hi Claudio,

 

Of course, you can debug the process, checking what is missing in your configuration (though, as I said, at the first glance everything is in order). You can set a trace (via ST05), introduce your contract and then analyse the trace in ST05, checking where the system is verifying the configuration for EMF integration and setting breakpoint there. Then, you can repeat the registry of the contract and, hence, discover what is wrong. This requires a bit of debugging skills in ABAP, though.

 

Regards,


Eli

Re: Wrong error message no. F6556 - Fund Centre does not exist but it do exists

0
0

Thanks Eli and Jandoval for support.

 

There was an issue in PS module which has been resolved now.

 

Regards

Rohit Goel

Document Numbering Formats for Extended Fields

0
0

Hi, experts.

     I want to create a document numbering formats for my extended fields.

     1) I want to add my document numbering format to Fine Tune Activity.

     fine tune.png

       doc for countries.png

          2) I want something like this. But I want to add more fields to the following screen like a prefix and some other validations.

          numbering formats.png

          3) I want to use that numbering formats for my extended fields.

             Are those possible?

  Regards,

  Fred.

Re: SAP not coming up after shutdown

0
0

Also share trans.log file for analysis.


Re: cuid url in crystal reports

0
0

Re: REGARDING CALCULATION

0
0

Hi, this is the problem.

 

    If you mark this checkbox, all calculations in the program will use

    fixed point arithmetic.

 

    If you do not, packed numbers (ABAP/4 type P, Dictionary types CURR, DEC

    or QUAN) will be treated as integers when they are used in assignments,

    comparisons and calculations, irrespective of the number of decimal

    places defined. Intermediate results in arithmetic calculations will

    also be rounded to the next whole number.

 

MATERIAL.png

 

To resolve, docalculationsoutside thefunction group, in a custom program with this flag set.

 

I hope you help.

 

 

 

 

Re: Wrong error message no. F6556 - Fund Centre does not exist but it do exists

0
0

Can you specify (for the sake of other users with similar problem) what the issue was?

How to get ETA date in vf02

0
0

Hi Experts,

 

I have a requirement to fetch ETA date in standard program for VF03,So i have return my logic inside the include program RV60AFZC and user exit FORM USEREXIT_FILL_VBRK_VBRP. end form but its not working.Any one can suggest me how i can fetch that ETA date and where i have implement logic for that below i give my current logic.

 

FORM USEREXIT_FILL_VBRK_VBRP.

ENHANCEMENT ZSD_ETA_DATE.    "active version

* Begin Of Change PP96 |  D01K976566 | RQST0019290

DATA :wa_catalog    TYPE zcatt_catalog,

       l_from_value  TYPE zzcade_from_value,

       l_to_value    TYPE zzcade_to_val,

       l_aubel_in    TYPE vbeln_va,

       l_aubel       TYPE vbeln_va,

       l_zzledeetadate TYPE zzledeetadate.

 

CONSTANTS : lc_crm_area         TYPE zzcadesolution_area  VALUE 'CRM',

             lc_spart            TYPE spart                VALUE '50',

             lc_conv_name        TYPE zzcadeconv_name      VALUE 'PTRSDETA',

             lc_c                TYPE char01               VALUE 'C'.

*Doc type

l_from_value = vbrk-fkart.

*Payment term

l_to_value   = vbrk-zterm.

 

*Check if the combination is maintained in ZCATT_CATALOG

SELECT SINGLE *

   FROM zcatt_catalog

   INTO wa_catalog

  WHERE solution_area EQ lc_crm_area

  AND   spart         EQ lc_spart

  AND   conv_name     EQ lc_conv_name

  AND   from_value    EQ l_from_value

  AND   to_value      EQ l_to_value.

*If maintained, then proceed

IF sy-subrc EQ 0.

  l_aubel_in   = vbrp-aubel.

   SELECT SINGLE aubel

     FROM vbrp

     INTO l_aubel

   WHERE aubel = l_aubel_in

   AND   autyp = lc_c.

   IF sy-subrc EQ 0.

     SELECT SINGLE ZZETADATE

       FROM vbkd

       INTO l_zzledeetadate

     WHERE vbeln = l_aubel.

     IF sy-subrc EQ 0.

       vbrk-valdt = l_zzledeetadate.

     ENDIF.

   ENDIF.

ENDIF.

* End  Of Change PP96 |  D01K976566 | RQST0019290

ENDENHANCEMENT.

*$*$-End:   (1)---------------------------------------------------------------------------------$*$*

ENDFORM.

Re: IResourceACLManager.getInheritedAcl(resource) is returning NULL

0
0

Thanks Lawrence for helping the above issue. Issue was closed.

Re: Secondary Index Missing in DB02 Alerts.

0
0

Hi Vamsi,

 

The secondary indexes will be dropped in BI systems usually, you can also rebuild them in DB02.

 

If it did not work try to build it from DB20 or using brtools.

 

If it is a Z index you can build them using SE14.

 

Thanks,

Pavan

Re: Sales order status unapproved

0
0

Hi Nagarajan,

 

Thanks it's work.

 

Do you know why a sales order have a status filtered in B1if please?

 

Thanks

 

Best regards,

 

sarah


Re: Sales order - auto enable of procurement in logistic

0
0

Ok thanks

 

 

Customer wants to procure material while post sales order if stock is not there.  Our concern is if end user forget to mark procurement document tick? so how to stop this?

 

therefore it is clear gap and we need to address it through SDK right?

 

Asu

Re: BCWP and BCWS values not updating in CNE5 Report.

0
0

Hi Amit,

 

According to your reply I have checked the report"CHECKREPORT_PROGRESSANALYSIS"  and there it doesnot show any error.Also I have used budget overall as my base for earned value analysis.I have already gone through the links suggested by you and I fail to  get the desired solution.


Regards,

Dheerendra

Re: Responsibility rules : Agent determination only works after restarting the WF

0
0

Hi Himanshu

 

When the first call goes at runtime, what is the EXACT value of Company code and Position......check the WF container for values....see if any spaces/leading zeros etc are missing !!!

 

This does seems to be a one off (but nasty) issue.

Also, how are the plants and positions determined? In a separate WF step before call to the rule? Maybe that step is not doing the right job in the first run, but is executing fine in the restart run.

 

Regards,

Modak

Index outside the bounds of the array

0
0

Hi there,

 

I've created the csv file and need to import it into BPC but I keep getting the following message.  Any ideas?  The data file has no large numbers in - I've even changed it to just have 1 number but the same error message keeps appearing.

 

 


TOTAL STEPS  2
1. Convert Data:     Failed  in 1 sec.
2. Import:           completed  in 1 sec.

[Selection]
------------------------------------------------------------
FILE=\EBIQUITY\CONSOLIDATION\Team Files\Users UK Finance\DataManager\DataFiles\\2014-15\FD DATA Jul 14.csv
TRANSFORMATION=\EBIQUITY\CONSOLIDATION\DataManager\TransformationFiles\\FD_LEDGER_TRANS.xls
CLEARDATA= Yes
RUNLOGIC= Yes
CHECKLCK= Yes

[Messages]
------------------------------------------------------------

Index was outside the bounds of the array.

 

 

Thanks

Amanda

Release Strategy for Purchase Requisition

0
0

Hi SAP MM Experts,

 

I have a issue in moving Release strategy for PR from development to production.

 

The changes were as follows.

 

1. There are two existing release strategy A1 and B1

2. There was two company code 0309  and 0322 in one of the strategy say A1, one of the company code 0309 was to be moved to other release strategy say B1.

3. There was changes were also made in the range (price range) in the release strategy B1.

 

All these were saved in TR and the Tr was successfully transported.

 

But in Production the changes are not refelecting. specially the change of company code from 0309 from A1 to B1.

 

Please suggest.

 

Regards,

Manjunath K

Viewing all 8713 articles
Browse latest View live




Latest Images