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

Re: Proxy Error: Couldn't retrieve inbound binding for standard ES Content

0
0

Hmmm... I'm not sure if we don't have some other issue (not that we won't run into the other one later). 

 

GTS isn't even sending a message to PI so I'm not seeing a PI error at all.  It dies in GTS with a short dump before it can even create the PI message. 

 

The short dump text says: "No Technical Receiver maintained for Service Group /SAPSLL/SGROUP_OUTBOUND".

 

I'm not sure if there is something that isn't set up right on GTS, I've never seen this error before.

 

Anyone seen this?

 

Liz


Re: Font Problem in Document Printing

0
0

Hi Alberto,

 

Your assumption is positive. The Document Printing option will ignore the font type /size created by you.

 

Thanks,

Gordon

Re: Inconsistent Results From BRF+

0
0

I am calling the webservice from within a BizTalk orchestration.  Here is the code from the generated function for the webservice.

 

function zsfn_get_document_references.

   data _vo_factory type ref to if_fdt_factory.

   data _vo_function type ref to if_fdt_function.

   data _vo_dobj type ref to cl_fdt_data_object.

   data _vo_object type ref to object.

   data _vr_data type ref to data.

   data _vr_data_ext type ref to data.

   data _vr_data_res type ref to data.

   data _v_id type if_fdt_types=>id.

   data _vs_parameter type abap_parmbind.

   data _vth_parameter type abap_parmbind_tab.

   data _vs_name_value_pair type abap_parmbind.

   data _vts_name_value_pair type abap_parmbind_tab.

   data _v_timestamp type if_fdt_types=>timestamp.

   field-symbols <_v_ext_any> type any.

   field-symbols <_v_any> type any.

   field-symbols <_v_any_tab> type any table.

   field-symbols <_v_ext_tab> type any table.

   get time stamp field _v_timestamp.

     _vo_factory = cl_fdt_factory=>if_fdt_factory~get_instance( ).

    _vo_function = _vo_factory->get_function( iv_id = '005056B51A8A1EE382E7C02C500DC30E' ).

     clear _vr_data.

   get reference of is_production_order_header into _vr_data_ext.

   cl_fdt_function_process=>move_data_to_data_object(

     exporting

       ir_data        = _vr_data_ext

       iv_function_id = '005056B51A8A1EE382E7C02C500DC30E'

       iv_data_object = '005056B51A8A1EE382E7DC7F890C430E'

       iv_timestamp = _v_timestamp

       iv_trace_generation = ''

     importing

       er_data        = _vr_data ).

    _vs_name_value_pair-name = 'IS_PRODUCTION_ORDER_HEADER'.

    _vs_name_value_pair-value = _vr_data.

    insert _vs_name_value_pair into table _vts_name_value_pair.

     clear _vr_data.

   get reference of it_production_order_components into _vr_data_ext.

   cl_fdt_function_process=>move_data_to_data_object(

     exporting

       ir_data        = _vr_data_ext

       iv_function_id = '005056B51A8A1EE382E7C02C500DC30E'

       iv_data_object = '005056B51A8A1EE382E7F0BF30BE430E'

       iv_timestamp = _v_timestamp

       iv_trace_generation = ''

     importing

       er_data        = _vr_data ).

    _vs_name_value_pair-name = 'IT_PRODUCTION_ORDER_COMPONENTS'.

    _vs_name_value_pair-value = _vr_data.

    insert _vs_name_value_pair into table _vts_name_value_pair.

     clear _vr_data.

   get reference of it_production_order_config into _vr_data_ext.

   cl_fdt_function_process=>move_data_to_data_object(

     exporting

       ir_data        = _vr_data_ext

       iv_function_id = '005056B51A8A1EE382E7C02C500DC30E'

       iv_data_object = '005056B51A8A1EE382E7FEFB3D82C30E'

       iv_timestamp = _v_timestamp

       iv_trace_generation = ''

     importing

       er_data        = _vr_data ).

    _vs_name_value_pair-name = 'IT_PRODUCTION_ORDER_CONFIG'.

    _vs_name_value_pair-value = _vr_data.

    insert _vs_name_value_pair into table _vts_name_value_pair.

     try.

   cl_fdt_function_process=>get_data_object_reference(

     exporting

       iv_function_id = '005056B51A8A1EE382E7C02C500DC30E'

       iv_data_object = '_V_RESULT'

     importing

       er_data             = _vr_data ).

      assign _vr_data->to <_v_any>.

     call method cl_fdt_function_process=>process

        exporting iv_function_id = '005056B51A8A1EE382E7C02C500DC30E'

        importing ea_result = <_v_any>

        changing  ct_name_value = _vts_name_value_pair.

    _vo_dobj ?= _vo_factory->get_data_object( iv_id = '005056B51A8A1EE382E7CDA23913630E' ).

     clear _vr_data_ext.

     clear _vr_data_res.

   get reference of ot_results into _vr_data_res.

    call method _vo_dobj->move_to_external(

     exporting

     ir_internal = _vr_data

     iv_external_type_name = 'ZSWS_00O2TQ6403YTY6PLT89LESD1Q'

     importing

     er_external = _vr_data_res ).

     if _vr_data_res is not initial.

      assign _vr_data_res->to <_v_any>.

     ot_results = <_v_any>.

     endif.

    catch cx_fdt_no_result.

      message id 'SFDT_CODE_COMPOSER' type 'E' number '039' raising cx_fdt_no_result.

    catch cx_fdt_arithmetic_error.

      message id 'SFDT_CODE_COMPOSER' type 'E' number '040' raising cx_fdt_arithmetic_error.

    catch cx_fdt_processing.

      message id 'SFDT_CODE_COMPOSER' type 'E' number '041' raising cx_fdt_processing.

    catch cx_fdt.

      message id 'SFDT_CODE_COMPOSER' type 'E' number '041' raising cx_fdt.

     endtry.

  endfunction.

 

The program is no longer producing the expected results and there is an entry in the FDT_CC_0000 table for the decision table that is causing the problem.  That is the only entry in the table in the client that is being called.

 

Client

010
Universal Unique Identifier 005056B51A8A1EE382E7C02C500DC30E
Time Stamp 99,991,231,235,959
Character Length 1
Time Stamp20,130,918,030,453
Object Type CLAS
Obj. Name /FDT/00O2TQ6403YTY99BL33JJ0T8U
User Name SAPWEB
Time Stamp 20,130,918,174,245
sum of  versions of code composing compo702,082
UsageA
Table Row0

 

I activated the decision table and now the entry in FDT_CC_0000 has disappeared.  The function is now returning the correct results.

 

UPDATE:

It did it again.  This time I ran the function module that was generated for webservice.  It took longer, apparently something was compiling, and came back with incorrect results.  Here is the entry from FDT_CC_0000 that did not exist until this happened.

Client

010
Universal Unique Identifier005056B51A8A1EE382E7C02C500DC30E
Time Stamp99,991,231,235,959
Character Length 1
Time Stamp20,130,918,190,955
Object TypeCLAS
Obj. Name/FDT/00O2TQ6403YTY99IEXW1FU426
User NameTCLARK
Time Stamp20,130,918,200,351
sum of  versions of code composing compo702,082
UsageA
Table Row0

 

 

 

 

Message was edited by: Anthony Clark Removed the irrelevant data from the wrong client.

Re: Aggregation and without aggregates

0
0

Hi Renato


This keeps happening to us too but only in inventory or non cumulative aggregates. As a workaround you can use two abap programs in your processchain wich recreate the aggregates from scratch then the problem doesn't happen.

hope this helps
Martin

Re: BW Issue in MasterData

0
0

Hi

 

Are you missing the descriptions on hierarchy nodes or on the actual masterdata?

The actual masterdata are not part of your upload hierarchy you need to maintain the text datasource for partno.

hope that clarifies

Martin

MB5B Filter Optional disabled

Re: Organizing 0IC_C03 cube data based on Fiscal year

0
0

Yes indeed its really amazing document..My pleasure.

 

Regards,

AL

Re: Organizing 0IC_C03 cube data based on Fiscal year

0
0

Hi Martin,

Thanks for the advise.

I thought of it but even after this i will have 100 million records in each , which is still huge . Hence was thought of using FY.

If this does not work, i will have to follow using Plant .

Rgds,

Sudhir


Re: Enhanced 2LIS_02_ITM data source transport in production

0
0

Hi Anshu,

 

I was aware of every single step and i did it in the past.

 

As i told you we have to do transport in day time because of weeend SAP outage..

I cleared all entried from LBWQ and RSA7... but within 2-3 min there were some entries came in LBWQ that caused all this errors. We couldn't block users in day time.

 

I did this type of job in the past only in night when there is no business,,,

 

Thanks

PK

Re: Count of records in BO Explorer

0
0

Saurabh,

 

      You can test the UNX to make sure all works by creating a WebI report and checking the record count. If WebI work fine then for sure you have a Explorer Index issue.

 

 

Regards,

 

Ajay

 

PS: If steps above helped you with resolution, please mark the blog

Re: value entry in parameters

0
0

Hi,

 

You can modify SCREEN, dynamically,in your ABAP program during the PBO event of a screen. Its contents override the static attributes of the screen fields for a single screen call.

http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm

For this you need to write the below code in one of the MODULEs in PBO event (1000 screen of your program ).

 

LOOP AT SCREEN.

* you can specify IF conditions here according to your screen elements

  screen-input = 0.  " 0 will disable accepting input ; 1 will enable accepting input
MODIFY SCREEN.
ENDLOOP.

 

This link will be helpful to you:

http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm

Re: SAPRFC works on XP not on 2003

IDOC_INPUT_MATMAS01 not updated Material master data for creation

0
0

Hi Revanth,

                     The Material are sent from the PI system. The lines of material for creation & change are dropped in bulk for PI system to SAP.

Re: Enhanced 2LIS_02_ITM data source transport in production

0
0

Hi,

 

Yes the bottom line is that transactions should not happen during the transport time..even though transport window time is very less but still if transactions happen then it can lead to complete mess.

 

Regards,

AL

Re: Validations moved to PRD with the error log - Method Execution (4)Ended with Warning

0
0

Hi Godavari,

 

All validation and substitution rules are created as work bench requests ,which will transport with return code 4 as warning message. All cross client objects will transport with return code 4 ,which are customizable.

 

Regards

Mani


Re: The application name ... is not valid.

0
0

Hi Christoph - I am at a loss; unless someone has ideas I recommend opening a ticket with SAP Support. 

Re: Decimal data in Information Design Tool

0
0

Hi Gerrie,

 

In IDT, right click on the Object and choose "Edit Display Format" and change or create a custom format or use any of the existing formats to have the desired output.

 

 

Thanks

Raghu

Re: Balances from FS10N

Re: From column in UWL

0
0

Hi Rakesh,

 

I checked it and could not find any thing wrong.

 

Regards,

Satish

Re: Variant Configuration issue

0
0

Hello Dear,

 

I have checked in the BOM base quantity set 1 PC (always 1 PC for every dumy material) & in the component dependencies it is 4 pc(some time it is vary like 1 PC,2PC,3PC......so on.) but as per business requirenment, at the time of production order creatoin the quantity maintained in the component dependencies  should appear at the time of production creation.

 

Kindly help me...

 

Thanks in advance...

 

Regards,

Vijay Kumar Singh

Viewing all 8798 articles
Browse latest View live




Latest Images