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

hi

$
0
0

Can any one say benefits integration with payroll and how the process in payroll run?which processing class is used in US benefits  ?

 

How do we do third party payroll posting?


Regards

Jagadish


Re: Passing parameters from ITS URL to module pool

$
0
0

Hi Kevin,

Since you are able to fetch this value, then there are some other options like:

  1. EXPORT TO MEMORY ID...IMPORT FROM MEMORY ID
  2. Shared memory
  3. Batch-input (create a simple screen for module-pool global values and a custom transaction code to populate them)
  4. Static attributes of the class

 

Hope that helps.

 

Cheers,

KS

Documentación (RFUMSV50) para México

$
0
0

Hola todos, alguien tiene documentación para el RFUMSV50 para México !  Ya lo estan utilizando ?

 

Saludos

    Rogelio

Re: Mensageria MasterSaf - não GRC - Problema - PARTNER_ID_EMIT

Re: SAP B1 Upgrade from 8.82 PL17 to V9 PLXX

Re: Marketing attributes visibility

$
0
0

Its the assign one but use both,in the pfcg role assign both the auth object C_KLAH_BKL & C_KLAH_BKP with value 111 (the one which you want to show) so the other attribute set which has the key 222 will not be visible.

Re: printers stuck

Re: Wrong Payer determination in billing doc

$
0
0

Check once in customer master for customer A had u assigned payer/bill to party B.

 

In standard For Sold party 0001 customer has all partner functions but you want to add one more SH or BP or PY create by using relevant account groups and assign. While creating sales order if we have more than one SH or BP or PY system will give one pop to select the same.


Re: Include Gross Weight and Net Weight in WMTORD Idoc

$
0
0

Yes, you are right in the WMTORD we don't have standard field which shows Weight  (to the best of my knowledge) you need to go for custom segment if you want to add that

 

One more query

you mentioned that

The sub-system needs to have the weight information of the pallet - i hope that you are aware that the weigh  in LTAP is basically the material weight only(excluding the packing material weight) and not the  Pallet weight ( in SAP terminology Pallet means Handling Unit (which is a combination of Material + packaging material) )

Re: OO ALV: changing of fieldcatalog

$
0
0

Hi Alessandro,

 

thank you very much for the feedback but let me may be try to concretize what I need:

 

So I create my container, my alv as my fieldcatalog like this and everything is great:

 

IF rf_custom_container IS NOT BOUND.

 

       CREATE OBJECT rf_custom_container

         EXPORTING

           container_name = 'CUSTCONTROL'.

 

       CREATE OBJECT rf_alv

         EXPORTING

           i_parent = rf_custom_container.

       "Feldkatalog aufbauen

       CLEAR st_fieldcat.

       st_fieldcat-fieldname = 'MATNR'.

       st_fieldcat-hotspot   = abap_true.

       st_fieldcat-outputlen   = 18.

       APPEND st_fieldcat TO ta_fieldcat.

       st_fieldcat-fieldname = 'MTEXT'.

       st_fieldcat-hotspot   = abap_true.

       st_fieldcat-outputlen   = 48.

       APPEND st_fieldcat TO ta_fieldcat.

       st_fieldcat-fieldname = 'KWMENG'.

       st_fieldcat-hotspot   = abap_true.

       st_fieldcat-edit      = abap_false.

       st_fieldcat-outputlen = 15.

       APPEND st_fieldcat TO ta_fieldcat.

       st_fieldcat-fieldname = 'VRKME'.

       st_fieldcat-hotspot   = abap_true.

       st_fieldcat-outputlen   = 3.

       APPEND st_fieldcat TO ta_fieldcat.

 

       st_layout-cwidth_opt = abap_true.


CALL METHOD rf_alv->set_table_for_first_display

         EXPORTING

           i_structure_name = 'ZWH_RESERVIERUNG'

         CHANGING

           it_outtab        = ta_alv

           it_fieldcatalog  = ta_fieldcat.


No I have some subroutine and I just need to have the same alv and field catalog but only with one change (see below) and I do this like this:



FORM my_subroutine


CREATE OBJECT rf_alv

       EXPORTING

         i_parent = rf_custom_container.

     "Feldkatalog aufbauen

     CLEAR st_fieldcat.

     st_fieldcat-fieldname = 'MATNR'.

     st_fieldcat-hotspot   = abap_true.

     st_fieldcat-outputlen   = 18.

     APPEND st_fieldcat TO ta_fieldcat.

     st_fieldcat-fieldname = 'MTEXT'.

     st_fieldcat-hotspot   = abap_true.

     st_fieldcat-outputlen   = 48.

     APPEND st_fieldcat TO ta_fieldcat.

     st_fieldcat-fieldname = 'KWMENG'.

     st_fieldcat-hotspot   = abap_false.

     st_fieldcat-edit      = abap_true.

     st_fieldcat-outputlen = 15.

     APPEND st_fieldcat TO ta_fieldcat.

     st_fieldcat-fieldname = 'VRKME'.

     st_fieldcat-hotspot   = abap_true.

     st_fieldcat-outputlen   = 3.

     APPEND st_fieldcat TO ta_fieldcat.

 

     st_layout-cwidth_opt = abap_true.

 

     "Ereignisbehandler

     CREATE OBJECT evt_handler.

     SET HANDLER evt_handler->handle_toolbar      FOR rf_alv.

     SET HANDLER evt_handler->handle_user_command FOR rf_alv.

     SET HANDLER evt_handler->handle_event_click  FOR rf_alv.

 

 

     CALL METHOD rf_alv->set_table_for_first_display

       EXPORTING

         i_structure_name = 'ZWH_RESERVIERUNG'

       CHANGING

         it_outtab        = ta_alv

         it_fieldcatalog  = ta_fieldcat.

 

     rf_alv->refresh_table_display( ).


But my fieldcatalog is even not showed....what do I wrong?


BR


Denis





PI 7.0 unable to import class

$
0
0

Hello,

 

I'm trying to create a UDF to accomplish almost exactly like: how to Extract  characters from a string

We've attributed the issue below being that the "import" of java.util.StringTokenizer, isn't working...

 

Here's the sample code:

 

code.png

 

Here's the error message I get:

 

error_message.png

 

 

From what I can tell, our PI system is utilizing Java 1.7, so the class should be there.  Has anyone else run into this issue?  Is there additional configuration that's required?

 

Regards,

 

Jose

Re: . Is there any option to download the free trial version for Build version 5609 of Power Builder 12.5.2.

$
0
0

Hi.

 

Even in the past the available free trial was the last release. If you really need to have the previous release I believe you will have to ask it from SAP or your local reseller.

 

Andreas.

Re: Content Server - SAP HTTP error: 500 Internal Server Error Cannot prepare server info: Configuration profile for Repository

Re: PI 7.0 unable to import class

$
0
0

Correction, we're using Java 1.5 on SAP PI 7.0

Re: 0fi_gl_4 data mismatch for a GL Account in bi at dso level

$
0
0

Hi Ramesh,

 

  Can you please explain with sample data for that mismatch GL account in both the DSOs.

 

Check settings in DTP extraction tab for second DSO, whether you are fetching data from change log table or Active table.

When full load DSO1 to DSO2 DTP setting should be Active Table(Without Archive).

When delta load DSO1 to DSO2 setting should be Change log Table.

 

 

Thanks,

Somesh.


Re: How to check the Object is locked or not in Code or in UI Designer

$
0
0

If the object is locked by another user, the current user should not be able to edit the screen or press buttons. This is an automatic behavior.

Re: Business Partner in LMDB

$
0
0

Hi Jose, nice to see you fighting with solman also ;-)

 

 

I just check on one of our systems, and we have a more field update with sold-to-party, in that system I don't have the technical monitoring so I can't check if it can be solved with that fields.

 

 

I see that there is a tab for update the sol-to-party on a different levels, technical system, product system, logical component header and logical component instance.

 

 

Check if all that fields are update, i hope that can solve your problem.

 

 

I found time ago that on the logical component, there is a problem and the BP ( sold-to-party ) are not stored correctly after click on save button, tell me if you found that and I will search the SAP Note that solve that problem. I also will check that on another system where technical monitoring is running to check if there is a problem like you.

 

 

Big hugs Friend Jose,

 

cap.png

Re: Process order_Target Cost_Resource usage variance

$
0
0

Hi Ravi

Thanks for your input.

There is one material, that's in BOM but it have not got issued.That had resulted in resource usage variance.

 

But, if you have observed the cost analysis that I have attached, I see an amount that only got posted in TARGET COSTS (without origin).

This is what I am trying to find the calculation behind it.

 

On cost element derivation, correct me if I am wrobg.

cost component structure is used to group our costs into different buckets.

I think it will not be used in any cost element derivation.

 

Thanks

Kalyan

Re: Related to data extraction via INIT load from R/3

Re: solman 7.0 to 7.1 upgrade issue in execution Phase

$
0
0

Hi,

 

Could you please share SAPCPESTD.OUT log file as an attachment for analysis.

 

Regards,

Gaurav

Viewing all 8713 articles
Browse latest View live




Latest Images