google-code-export / saplink-plugins

Automatically exported from code.google.com/p/saplink-plugins
0 stars 1 forks source link

Short Dump while adding Table Technical Attribute in ECC6 #22

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Add Table technical Attribute to Nugget in ECC6 and it will give dump.

Seems FM DDIF_TABT_GET is called in method CREATEIXMLDOCFROMOBJECT of 
class ZSAPLINK_TABLE_TECH_SETTINGS with paramter LANGU.

What is the expected output? What do you see instead?

Change the code to remove LANGU paramter .. it worked..

  CALL FUNCTION 'DDIF_TABT_GET'
    EXPORTING
      name          = _tabtname
*      langu         = sy-langu
    IMPORTING
      gotstate      = gotstate
      dd09l_wa      = dd09l_wa
    EXCEPTIONS
      illegal_input = 1
      OTHERS        = 2.

What version of the product are you using? On what operating system?

SAPlink_install-0.1.4.zip
NUGG_SAPLINK_DDIC-0.1.0.nugg 

Please provide any additional information below.

Original issue reported on code.google.com by pawankes...@gmail.com on 21 Dec 2009 at 2:35