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

Re: Need to confirm actual time for 2 persons on one operation  in work order( PM)

$
0
0

am using code iw41 for confirmation . is this true ?? or you have another code  ??


Re: sapmmc stays yellow when starting server

$
0
0

No license issue. When the license expires it's still totally possible to turn on the server.

Re: Special Stock table and F.01

$
0
0

thanks a lot Jurgen for the answers, now i know there is no table for the summary, so i should using some tables to make the summary

 

 

Regards,

Ferry

Re: How to hide the user interface dialog in ME21N?

exception aggregation at data base level

$
0
0

Hi All

 

As we know we can do exception aggregation at query level for special analysis,  but when we defined exception aggregation at query it will take more time to display output so leads to poor query performance.

 

1.so question is that it is possible to define exception aggregation at database level? if yes how can we define?

2. if it's allowed to define at data base level , is it stored physically at data base level as normal kf?

 

 

Thanks

Bhaskar

Re: Transport protocol version for File adapter

$
0
0

Hi Ameet,

 

Can you please let me know if you were able to resolve this transport protocol version error in communication channel creation through Integration Directory API.

 

Thanking you in advance.

 

Regards,

Yashu Vyas

 

Message was edited by: Yashu Vyas

Re: Upgrading Portal 7.3 – and work ESS/MSS

$
0
0

Yes, your current role will work fine, it will not have any issues.

Looks like in ur current you using Java based ESS/MSS apps. They will not have any impact.

 

You can use the current role, you need not migrate until you want to use any WDA EhP6 based applications. For one of the client, we have implemented the similar approach, the countries which were in live with ESS/MSS continued to use the WDJ applications and for new roll-outs we created new role with WDA apps.

Re: i need information about FICO

$
0
0

HI

in sap fi/co(financial information and controlling)

in this general ledger for accounting transaction

account receivable(customer),account payable(vendor) during the financial year transaction,

down payment for customer and vendor,dunning notice for customers,party account statement for customer and vendor,re caring documents every month,bills of exchange account,automatic payment program for vendor.and cash discount for customer and vendor with in the date payment,

ASSETS

in this including assets class and depreciation calculation for assets,and asset class in this number of assets having,asset master records,depreciation keys and multilevel dip key for assets,chart of depreciation in this all depreciation calculation  stored.assets explorer,dip run,asset purchased from vendor  and sale of asset with customer, asset sale without customer.scrap an sale of asset account,

CONTROLLING

in this controlling areas,number ranges for controlling area.make a five years version planing,cost elements in this primary cost elements and secondary cost elements,cost center groups ans cost centers,manual re posting cost centers and cost centers planing,assessment and distribution for cost centers transfer to one cost center to another cost centers. internal orders for expenses,profit centers, and profitability analysis

thank you

              this is suman


Re: Plant not assigned to Controlling area

$
0
0

Hi Supriyo,

 

Hope you have created a new Plan , it is recommended to Copy standard Plant (1000) when creating new Plant which will copy all the standard table entries

 

As you have already defined OX19 and OX18 settings, please check in transaction Code OKKP under control indicators dialog , check sales order indicator is set or not?

 

check these settings and revert if still issue persists

 

thanks

santosh

Re: ALV EDITABLE IN WEBDYNPRO ABAP

$
0
0

Hello All,

 

I also faced similar problem, Most of the posts replies goes out of topic. Just to keep it simple, I would like to categorize it like this.

 

ALV always creates all the columns as TextView. So common to all, we must change the cell editor of columns to make individual column editable

 

There are two ways of doing it

 

Way1: Get object of individual column and set editor to input field

For example i want to make my client column editable in alv (MANDT)

Write below code


data : lr_inp type REF TO cl_salv_wd_uie_input_field.

   create OBJECT lr_inp

     exporting

       value_fieldname = 'MANDT'

     .

   lv_value->if_salv_wd_column_settings~get_column( 'MANDT' )->set_cell_editor( value lr_inp ).


Way2: Use standard API to make the cell editor changes to ALV

 

cl_wsrs_tools_wd_alv_table=>set_table_column( EXPORTING

                                                               io_column              = <Pass Object of Column>

                                                               iv_editor_type          =  cl_wsrs_tools_wd_alv_table=>co_cell_editor-<choose your editor type like inpu field etc>

                                                               iv_read_only            = abap_true/abap_false

                                                               iv_column_text          = <header text>

       ).

 

Now comes to making rows editable

Case 1: To keep all the rows as read only use below method of model object

 

lv_value->if_salv_wd_table_settings~set_read_only( ABAP_TRUE ).

 

Case 2: When you want all the rowseditable in an ALV and user can enter data wherever they want. Use below two methods of ALV model instance

**Allows mass edit of data

lv_value->if_salv_wd_table_settings~set_edit_mode( IF_SALV_WD_C_TABLE_SETTINGS=>edit_mode_mass ).

**Makes read only mode to false

   lv_value->if_salv_wd_table_settings~set_read_only( ABAP_FALSE ).

 

The advantage is, you don't need to worry about adding additional rows as and when user fills. ALV will automatically adds the rows.

 

Case 3: When you want only the filled rows to be editable use edit mode as STANDARD

 

**Allows mass edit of data

lv_value->if_salv_wd_table_settings~set_edit_mode( IF_SALV_WD_C_TABLE_SETTINGS=>edit_mode_standard ).

**Makes read only mode to false

   lv_value->if_salv_wd_table_settings~set_read_only( ABAP_FALSE ).


Case 4: When you want entire ALV in disable mode with some specific CELLS only enabled, we need to use additional fields in context of table node. For every table column attribute create another attribute with some name for eg. MANDT i create one more attribute MANDT_R of type WDY_BOOLEAN.


Now set the read only field name for this cell using below API call


cl_wsrs_tools_wd_alv_table=>set_table_column( EXPORTING

                                                               io_column              = <Pass Object of Column>

                                                               iv_editor_type          =  cl_wsrs_tools_wd_alv_table=>co_cell_editor-<choose your editor type like inpu field etc>

                                                               iv_read_only            = abap_true/abap_false

                                                               iv_column_text          = <header text>

                                                                iv_readonly_fieldname   = 'MANDT_R'

       ).


Now if you want only this cell to be editable. Use context programming to change the attribute flag value in that particular row to ABAP_FALSE.

Lets say i want to make MANDT cell to be enabled in 3 rd row


data : lo_element TYPE REF TO if_wd_context_Element.


lo_element = wd_context->get_child_node( 'TABLE_NODE_NAME' )->get_element( 3 ).

lo_element->SET_ATTRIBUTE(

Exporting

     Name = 'MANDT_R'

      Value = ABAP_FALSE

).


Webdynpro ALV is the most flexible control to show and edit mass data, We just need to use the right API.

Hope this helps.


Regards,

Anurag.

How do you remove STATEFUL components from memory in EAServer?

$
0
0

This is from one of the books on Powerbuilder/EAServer:

 

"So the major difference between stateless and stateful components is that stateless components

automatically invoke the component deactivate event when a method call ends and the component

is logically removed from memory. A stateful component remains in memory until physically re-

moved by the caller."

 

What does the caller (client Powerbuilder program) do to physically remove a stateful component from EAServer?

 

Thanks,

 

Mark

Implementation of ByD in United Arab Emirates (Dubai)

$
0
0

Hello

 

Has anyone implemented Business byDesign in Dubai?

 

Did you create a customer specific localization, or did you use an existing SAP provided localization?

 

What are the major areas of concern?

 

Regards

 

Jeff?

Re: Categorize Half day leave into First Half and second half

$
0
0

I found something in this regard - if someone can assist if my approach is correct?


Define field selection: SM34> VV_FLDSEL_NAM

 

and add this field to the absence in which I want it to appear using V_T544S_WEB

 

So can I add AM, PM options using the define field if SAP has not provided any standard option to choose AM, PM for half day leave?

 

Thanks,

Saurabh

Drag and drop function in web dynpro

$
0
0

Hi Experts,

 

I have an ALV table.

 

I want to drag the row from a standard table to the ALV table.

 

I can drag the row but I can't drop the row in ALV table

 

 

The following code is written in method WDDOINIT in the view.

 

Code

Data lo_cmp_usage type ref to if_wd_component_usage.

   lo_cmp_usage =   WD_THIS->wd_cpuse_ALV_TABLE( ).

   if lo_cmp_usage->has_active_component( ) is initial.

     lo_cmp_usage->create_component( ).

   endif.

 

   DATA:

    lr_salv_wd_table TYPE REF TO iwci_salv_wd_table,

    l_value TYPE REF TO cl_salv_wd_config_table,

    lr_table_settings TYPE REF TO if_salv_wd_table_settings,

    lr_input_field type ref to cl_salv_wd_uie_input_field,

    value TYPE REF TO IF_SALV_WD_DROP_TARGET_INFO.

 

 

   DATA lo_INTERFACECONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE .

   lo_INTERFACECONTROLLER = wd_this->wd_cpifc_alv_table( ).

 

   l_value = lo_interfacecontroller->get_model( ).

 

 

   CALL METHOD l_value->IF_SALV_WD_DRAG_AND_DROP~CREATE_DROP_ROW_TARGET_INFO

     EXPORTING

       id      = 'ALV_TABLE'

       name    = 'from'

       enabled = abap_true

       tags    = 'from'.

 

   l_value->if_salv_wd_drag_and_drop~set_drop_row_name( 'from').

   l_value->IF_SALV_WD_DRAG_AND_DROP~SET_DROP_ROW_NAME_FIELDNAME( 'fight_no').

 

 

 

I have created an event handler method for the drop but the method never gets called

 

(the event handler on click also have same problem) .

 

Pls help whats missing?

 

Thanks

Re: Saint stucks - DDIC_ACTIVATION error

$
0
0

Hi all,

 

Thanks for all your kind suggestion, i have found a solution for my matter.

 

 

 

 

 

Find below steps to Reset the OCS queue while applying add on / support packs.

 

 

At command line on prompt

 

 

Run below command

 

 

tp r3i all pf=/usr/sap/trans/bin/TP_DOMAIN_.PFL tag=spam -Dclientcascade=yes -Drepeatonerror=8

 

 

After this it will again come on your prompt.

 

 

Then go in se37 run below program

 

 

ocs_reset_queue

 

 

Hit F8

 

 

Give following parameter

 

 

IV_TOOL = SPAM / SAINT

 

 

IV_FORCE = X

 

 

Hit execute.

 

 

Now run SPAM or SAINT and redefine your queue.

 

I also think it may be the solution Cinu wanna to share with me, but the provided link is unavailable.

 

Thank you all.

 

KR

Spencer Fang


Re: How to delete production order permanently?

$
0
0

Hello Fauzan Rachman.

     You make use of CO02 tcode and set deletion flag.

Regards.

Re: GATP & PPDS for capability to promise in Steel Industry

$
0
0

Dear Alfred,

your detail explanation about CDP is very nice

 

I have one question in this

 

"Dependencies between characteristics can be reflected in a variant table. This is not available in APO, so it must use object dependencies there. The maintenance of such data is much more complex than maintaining the variant table and the question remains if business people who usually have the need to change such data can still maintain it "


My understanding from above APO does  not support variant table and it is recommended to used object dependency correct me if I am not wrong


if Variant table can be used in ECC DMIP is it possible to CIF to APO ?


if you are not clear about what I am asking please let me know


Thanks




Regards

Raj

Re: Can I change the universe using Data Manager

$
0
0

Hello Arijit,

 

Thanks for the response. Do I open any report by browsing through the system? Is that how a report is can be opened in deski?

Re: SAP ERP System - slow system

$
0
0

Hello Samid,

 

 

 

Before any upgrade,kernel patch etc, Always take backup of  parameters from table TUO2

Freight in Info record Vs Frieight on PO header level

$
0
0

Hi,

 

I have a requirement..

So, far we used Freight only at Item level in PO. FRA1/FRB1/FRC1 used for this.. They are manual conditions per the pricing procedure.

 

Now, we need freight condition available on the PO header level as well..

For this, FRA2/FRB2/FRC2 has been maintained as Group and Header level condition in this respective Condition type config and included in the pricing procedure as manual conditions.

 

Some business units even maintain Freight in the Info records.

Requirement is that, in case of raising POs for those materials that have an info record and freight maintained as a condition, the header condition should over ride the info record freight condition.

 

Possible?

 

Regards,

SS

Viewing all 8667 articles
Browse latest View live


Latest Images