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

Re: Tables like "VIVEDA"

$
0
0

Hi Lakshmipathi Sir,


I think TSTCT table contains information for transaction code and transaction text.

It doesn't contain table information.

Correct me if I am wrong.


Re: UDF for selecting a queue of values.

$
0
0

Sorry if this is obvious - as may have misunderstood what you are expecting as a reply;

 

You'd need to create a UDF of type "All Values of Context" with your inputs.  Loop through these inputs with your logic above.  eg. for (int i = 0; i < in_parm1.length; i++)

You  output values required with result.addValue(in_parm1.toString());

You can do such things as suppress nodes with result.addValue(ResultList.SUPPRESS) and context changes with result.addValue(ResultList.CC).

Re: Problem using FM 'RH_READ_INFTY'

$
0
0

Hi,

 

Thanks for your reply, but this solution doesn't fix my problem

Restrict a user creating a Service Entry Sheet

$
0
0

Hi Experts,


I want to restrict a user creating a Service Entry Sheet for a service that is to be consumed within a period of time as it was found that service users create Service Entry Sheets for respective services even before the consumption of services. So, please let me know if it is possible to restrict a service user creating a Service Entry Sheet before end of the consumption of the service by defining a date after which users may create Service Entry Sheets for respective services being used.


Thank you in advance for your time.

Re: BEx-Excel local formula ignores reverse sign from query display?

$
0
0

Hi Al,

 

I think this will not work:

 

When I change the sign og KF1 in the query, the values displayed in BEX for the first twoe rows (for first column) will be wrong?

 

Gregor

Re: Can we hide any tab in production/process order

$
0
0

Hello

 

If the question was answered, please close the thread.

 

BR

Caetano

Re: Issue with KOMP field in Billing for Pricing

$
0
0

Hi Sunny,

 

In KOMP Structure,

 

Material Number - MATNR and Plant - WERKS are availble,

 

Check VBRK has any enteries...like VKORG and VTWEG.if not available fetch AUBEL (Sales Document) From KOMP at the Time of invoice creation, with that from VBAK fetch VKORG and VTWEG.

 

Pass MATNR,VKORG and VTWEG to MVKE and fetch MTPOS. and store it in KOMP-MTPOS(or to MTPOS...which you added)....Just try this.

 

if it works...then ok...

 

Regards,

Vairavan.

Displaying # values in query

$
0
0

Hi experts,

 

we are facing an issue with query output. it is displaying # values for Billing document field instead of showing its actual value.

 

In Multiprovider the Value for billing document is fine. In query only am getting # values . checked in RSRT  also.

 

ex: 8124005894  is actual value in Multiprovider for a material.

 

     But in query output it is showing as P2XM508# .

 

    THE VALUE P2XM508 is coming for all records  in our Billing document field.

    P2X is our production name.

 

so please give some inputs...

 

Thanks.

 

 

regards,

Ravi.


Re: Add value to Asset

$
0
0

Hi,

 

Kindly share the error screen shots and steps you are following for posting to asset. Also can you let me know whether you are trying to make addition to already acquired asset or you are doing first acquisition. As it may be possible that for further addition the depreciation key assigned to asset master is such that it only allows acquisition in year of capitalization of Asset.

 

Regards,

Malhar.

Re: error_number () data services designer

$
0
0

we cant load duplicate record to database.

eg: Assume you have loaded the combination of primary key of custmer- C001 and Material-M001 to target.we cant load the same combination of primary key to target.

Accounting entries for Mid year Asset Conversions ina live company code

$
0
0

Hi,

 

There is asset conversion for a live company code.

 

I just wanted to know, how the accountings entries should be posted(through OASV/FB01(after OAMK settings))

 

Say the APC value is 3400 . The useful life is 5 years. Dpereciation (previous year(453.35)+current year(340)) is 793.35 .

In current year depreciation is posted for 6 months.

 

I just wanted to know, how the journal entry should be posted.

 

Is it as below?

 

Asset Recon account debit 3400

Accumulated depreciation account credit 793.35

Asset load account credit 2606.65

 

Also please let me know, if we need to split current year and previous year values while posting the journal entry ?

 

Regards

SR

Re: SOAP issue after SP12 implementation - can't check SAP host agent and created JAVA users SAPSUPPORT/SM_COLL_

$
0
0


Hi Mike,

 

This sounds like it could be an authorisation issue.

 

Have you checked the user to ensure the roles are correct?

 

 

Thanks

Michael

Re: PI large message handling

$
0
0

Hi,

 

check the below screen shot for configuration.Untitled.png

 

Regards

Srinivas

Fields in Input Ready Query and Aggregation Level

$
0
0

Hi All - New to IP. What if we dont include all the fields of Aggregation level in Input Ready Query.

Supose there are 4 fields in Aggregation level and we are including only two in Input Ready Query.

Is communication between two model classes in bsp application possible?

$
0
0

Hi Experts,

 

I want to use a variable of one model class in another model class, is it possible. I know that application class varibles are available in all model classes but I want to use a model class variable in another class.

 

In case if it is not possible. Is it possible to model binding for applcation class varibles. We do model binding for model class varible like

<htmlb:inputField id      = "TICKET" value   = "//MODEL/MV_TICKET" />  this. But i want to bind application class varibles.

 

Thanks and regards,

Santosh.


Re: ALV Webdynpro Output

$
0
0

Hi

code is  as-

method ONACTIONACTION_DISPLAY .


   DATA: node_node_ekpo TYPE REF TO if_wd_context_node,

     elem_node_ekpo TYPE REF TO if_wd_context_element,

     stru_node_ekpo TYPE if_input_view=>element_node_ekpo .



* navigate from <CONTEXT> to <NODE_VBAK> via lead selection

   node_node_ekpo = wd_context->get_child_node( name = if_input_view=>wdctx_node_ekpo ).



* get element via lead selection

   elem_node_ekpo = node_node_ekpo->get_element).



* get all declared attributes

   elem_node_ekpo->get_static_attributes(

     IMPORTING

       static_attributes = stru_node_ekpo ).





   DATA: lv_where TYPE string,

         lt_where LIKE TABLE OF lv_where,

         lt_ekpo TYPE STANDARD TABLE OF zstr_alv.



* create where condition

   IF NOT stru_node_ekpo-ebeln EQ''.

     CONCATENATE 'EBELN = ''' stru_node_ekpo-ebeln '''' INTO lv_where RESPECTING BLANKS.

     APPEND lv_where TO lt_where.

   ENDIF.

*  IF NOT stru_node_ekpo-erdat EQ '00000000'.
*
*    CONCATENATE 'ERDAT = ''' stru_node_ekpo-erdat '''' INTO ls_where.

     IF stru_node_ekpo-ebeln NE''.

       CONCATENATE 'AND' lv_where INTO lv_where SEPARATED BY space.

     ENDIF.

     APPEND lv_where TO lt_where.

*  ENDIF.



   SELECT EBELN EBELP LOEKZ AEDAT MATNR LGORT

   FROM ekpo INTO TABLE lt_ekpo WHERE (lt_where).





   DATA:

     node_node_alv TYPE REF TO if_wd_context_node,

*    elem_node_alv TYPE REF TO if_wd_context_element,

     stru_node_alv TYPE if_input_view=>element_node_alv .



* navigate from <CONTEXT> to <NODE_ALV> via lead selection

   node_node_alv = wd_context->get_child_node( name = if_input_view=>wdctx_node_alv ).





* get all declared attributes

   node_node_alv->bind_table( lt_ekpo ).

endmethod.


Regards

varun

Re: MC1B transaction dedicated costcenter for material

$
0
0

Hi Khan,

 

Ok. My 2 material have different profitcenter in master data.

Does this mean that if i put in OKB9

Costelement A with profitcenter of material A and put costcenter A and

Costelement A with profitcenter of material B and put costcenter B this would solve my issue?

 

This means we have 2 times costelement  with different PC and CC in OKB9?

 

 


Re: LSMW- change measurements

$
0
0

Hey,

 

you canot change existing measurements by changing the valid from field. It is key field in the table that gets updated, so it is not changeable.

 

If you want to add new timeslice for existing measurement types, you have to update (=U) the old one by setting valid to date, and you have to insert (=I) the new one with new valid from date.

 

Regards
Michael

SMP3.0 SP04 Agentry App installations

$
0
0

How to install define agentry applications in the SMP Server?

 

Tags edited by: Michael Appleby

Re: Where T163E (external confirmation) is used

$
0
0

Hi Hans,

I am not sure whether this is what you expect. Pls check report

/WSW/SPEEDI_REP168

 

Rgds,

K.S.

Viewing all 8676 articles
Browse latest View live




Latest Images