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

Re: How to use in INVALIDATE method WD_CONTEXT.

$
0
0

Hi Ankita,

 

1)First you need to get the node :

 

lo_nd_importing_1    = lo_nd_time_timesheet->get_child_node( name = wd_this->wdctx_importing ).

 

2) Call the invalidate method of node :

 

lo_nd_importing_1->invalidate( ).

 

3)Get the elements of the node:

 

lo_el_importing_1     = lo_nd_importing_1->get_element(  ).

 

4) Clear the structure which you want to bind and Call the Set_static_attributes method :

 

CLEAR ls_importing_1.

lo_el_importing_1->set_static_attributes( EXPORTING static_attributes = ls_importing_1 ).

 

And you will be able to clear the selection screen.


Re: ALV Table - editable only for specific cells

$
0
0

HI RK ,

 

 

Following code will help you to create Input field,

 

 

   DATA lo_cmp_usage TYPE REF TO if_wd_component_usage.

   DATA lo_interfacecontroller TYPE REF TO iwci_salv_wd_table .

   DATA lv_value TYPE REF TO cl_salv_wd_config_table.

   DATA  input   TYPE REF TO cl_salv_wd_uie_input_field.

   DATA  column TYPE REF TO cl_salv_wd_column.

 

*& Get the ref of interface controller

   lo_cmp_usage =   wd_this->wd_cpuse_my_alv( ).

   IF lo_cmp_usage->has_active_component( ) IS INITIAL.

     lo_cmp_usage->create_component( ).

   ENDIF.

 

*&get component reference

   lo_interfacecontroller =   wd_this->wd_cpifc_my_alv( ).

   lv_value = lo_interfacecontroller->get_model).

 

*& prepare input field

   CREATE OBJECT input

     EXPORTING

       value_fieldname = 'DOB'.

 

*& get the ref of the column

   CALL METHOD lv_value->if_salv_wd_column_settings~get_column

     EXPORTING

       id    = 'DOB'

     RECEIVING

       value = column.

 

*& set cell editor

   CALL METHOD column->set_cell_editor

     EXPORTING

       value = input.

 

*& Set DOB column to editable

   CALL METHOD lv_value->if_salv_wd_table_settings~set_read_only

     EXPORTING

       value = abap_false.

 

Capture.PNG

 

In Your Situation you have find the condition , where you can put the Input field enabled.

Is this helpful?

Re: Use of the Tr Codes KKRC and KKBC_HOE

$
0
0

Hello Surya,

Transaction KKRC is used for data collection for drill down reports. The KKBC_HOE only display the summarization data collected during execution of KKRC.

 

Thanks and regards,

Ronghua fan

Re: More Field Help on UI Input Element - Can you customize it?

$
0
0

thx Krishna,   I read through this and I did not see anything that would allow me change the "More Field Help"  text (i.e.,g click click on UI Element and select More Field Help).  Or did I miss something?

Re: Row Not Getting Selected in Web Dynpro Table

$
0
0

Hi Narayan,

 

Check your cardinality selections.

 

0-1 :Zero or one element permitted

0-n :Zero or more elements permitted

1-1 :Exactly one element permitted

1-n : One or more elements permitted.

 

Thanks,

Satya Srinivas.

Re: Design Question

$
0
0

Hi venkat,

 

on which tables you created a view, have you thought to go for data source enhancement?

 

Thanks

Re: ALV Table - editable only for specific cells

Re: Download to Xls or XLSX Row grouping

$
0
0

Hi Sreenivasa Rao ,

 

What you have said is perfectly right , when binding to Table UI element.

When I click on Download in below picture I want to get the Data to Excel as it is . 

Need your valuable Input.

 

tree.PNGtree1.PNG

 

Thanks In Advance

Nagarjun


Re: Fix Item cost by performing a Stock Revaluation

$
0
0

Hi,

 

If end user had posted a goods issue already, it means the stock is 0 qty. Is that your situation now? Check your Inventory Audit Report.

 

Thanks,

Gordon

Sample size in Report RSANAORA

$
0
0

Hi Team ,

 

I am supposed to update stats on a table . I am using report  RSANAORA to update the stats.

Could you please explain how exactly the Sample Size  values is  used for calculation of stats statistics.?

If I am choosing 10% , does it mean only 10% of table rows will be used to calculate stats of

complete table .

 

 

 

Regards ,

Abhinav

Re: How to Un-deployed and Re-deployed war files using wDeploy

$
0
0

Hector,

 

      I would suggest if you want the WDEPLOY to work 101% without any issues, here are some steps to consider:

 

- Go to the BOBJ install folder

\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\wdeploy\conf\

config the " config.tomcat6 " file properly.

- Run the WDEPLOY does version of the command located in

\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\wdeploy\

 

This is much more efficient that the GUI version.

 

Regards,

 

Ajay

Re: How does Web Dynpro ABAP deal with duplicate HTTP request query parameters?

$
0
0

Hi Simon

 

I know you're asking a generic question about how Web Dynpro *should* handle duplicate parameters... unfortunately, I'm not clever enough to answer that one.

 

But I think can answer the specific question about how Web Dynpro *does* handle duplicate 'sap-wd-configId' parameters.

 

 

The 'sap-wd-configId' parameter is actually read in method CL_WDR_CLIENT_ABSTRACT_HTTP=>CREATE_APPLICATION:

  l_config_id = request->get_form_field( cl_wdr_client_constants=>config_id ).

 

 

The GET_FORM_FIELD method uses:

  system-call ict did ihttp_scid_get_form_field

to read the specific config parameter and this system-call seems to return only the first parameter value if there is more than one parameter with the same id. This is why your Web Dynpro app would not be receiving the second config id.

 

 

Just for clarification, the bit of code you found in CL_WDR_CLIENT_ABSTRACT_HTTP=>GET_FORM_FIELDS_EXTENDED retrieves all of the query parameters at once using:

  system-call ict did ihttp_scid_get_form_fields

but it does this for a different purpose (I think it stores it in the WD window object for later use, or something...)

This system-call will return all parameters, even the duplicates, but this is not how Web Dynpro is specifically handling the WD config id parameter.

 

I hope this helps a bit.

 

Regards

Glen

Re: Confirm Button for Service desk 7.1 workcenter

$
0
0

Hello Artem,

 

We are a VAR partner but we would like to use "New" as the initial status.

 

Are status are as follows:

New

In Process

Customer Action

Proposed Solution

Sent to SAP

Confirmed

 

Do you mean we cannot modify the (pre-delivered/copied from standard) status profile?

 

regards,

Grace

Re: Item inward either through GRPO or Good Receipt

$
0
0

Hi Sri kumar....

 

yes you are right pls close the thread with correct and helpful answers

 

Regards

Kennedy

Re: FAGL_FC_VAL

$
0
0

Hi Gordon,

 

Oss Note had implement but still error in same message.

 

Capture1.JPG

system status SAP ECC6.0, SAP_APPL 605,SAP_BASIS 702,EA_APPL 605.

 

any OSS note should be implement after for this problem ?

 

Thank You,

 

Iwan Siahaan


Re: Which version of SBO &/or SBO mobile supports Crystal reporting with parameters

$
0
0

Hi David Gunny,

 

Please check with below SAP notes:

 

1606567 - Company Database concept in SAP Business One Mobile
App

 

 

1602674 - SAP Business One for iPhone and iPad -
Troubleshooting and compatibility information

 

Hope helpful.

 

Thanks & Regards,

Nagarajan

Middleware - Product Pricing Information not replicated

$
0
0

Hi All,

 

does anybody know where to look at in case of following scenario:

 

Product is created in ECC and replicated successfully to CRM but Pricing Condition Information is missing for this product.

 

BR/

 

Oliver

Re: Verifying a signature with included certificate

$
0
0

Testing Digital Signatures is possible with the System PSE, no need to create new PSEs or install certificates.

 

I'm assuming you are using report SSF02 to test? Although SSF02 calls SSF01, it is used to test the Application Server. You can call SSF01 directly to test the Frontend, see the attached link for details.

 

http://help.sap.com/erp2005_ehp_06/helpdata/en/43/b948d4f32c11d2a6100000e835363f/frameset.htm

 

To verify the Digital Signature created in systemA, it is sufficient to import the certificate of systemA to systemB. For complex Digital Signature scenarios SSF Application PSEs should be used, that way you can have different private keys and certificate lists.

Re: UDF - Journal Transactions

$
0
0

Hi Maria,

 

Please post screen shot above window with UDF field.

 

Thanks & Regards,

Nagarajan

Re: Upgrade SUSE patches

$
0
0

Hi Rudi,

 

For the scenario which you explained

After the upgrade, we have an issue everytime we restart the server, it seems to be freeze during a certain step, after we do some manual steps, the system is up and running normally

It is purely a hardware problem. So best person to contact is the respective hardware vendor for the solution.

 

Hope this helps.

 

Regards,

Deepak Kori

Viewing all 8713 articles
Browse latest View live




Latest Images