Structure type conflict

Dear Experts,
My smartform gives dump due to identified reason.
That is
Type conflict of one field in the structure.
The data type of this filed READG is declared as p decimals 2
I am not clear how to define this field (as predefined)  in the structure.
I have tried different types like DEC, NUMC which are not accepted and smartform gives dump.
I know that a proper data type declaration in the structure for field READG (P DECIMALS 2) would solve my problem.
Kindly help
kind Regards
Jogeswaraa Rao

Hi,
no, You are still missing length in declaration.
Correct will be:
DATA lv_readg(10) TYPE p DECIMALS 2.
If You create structure in ABAP code, use above statement.
If You are creating structure in SE11, there is 'Predefined type' button.
You do not need to create domain and data element,
but sometimes it is better then declaring type.
You can also find other matching data element.
Regards,
Przemysław

Similar Messages

  • Type conflict when calling a function module (field length)

    Dear All,
                I am getting this following error while executing:  Type conflict when calling a function module (field length)
    This is piece of coding i have writern in my action button.
    method SEARCH_MATERIAL .
      data:
            node_mat_input TYPE REF TO  if_wd_context_node,
            node_mat_output TYPE REF TO if_wd_context_node,
            material TYPE BAPIMATDET-MATERIAL,
            itab TYPE TABLE OF BAPIMATDOA.
      node_mat_input = wd_context->get_child_node( 'NODE_MAT_INPUT' ).
      node_mat_output = wd_context->get_child_node( 'NODE_MAT_OUTPUT' ).
      node_mat_input->get_attribute( EXPORTING name = 'MATERIAL'
                                     IMPORTING value = material ).
      CALL FUNCTION 'BAPI_MATERIAL_GET_DETAIL'
        EXPORTING
          material                    = material
        PLANT                       = plant
        VALUATIONAREA               =
        VALUATIONTYPE               =
        MATERIAL_EVG                =
       IMPORTING
         MATERIAL_GENERAL_DATA       = itab
        RETURN                      =
        MATERIALPLANTDATA           =
        MATERIALVALUATIONDATA       =
      node_mat_output->bind_table( itab ).
    endmethod.
    Attributes are:
    Node name = INPUT its structure is BAPIMATDET
    INPUT attributes = MATERIAL of type BAPIMATDET-MATERIAL
    Thanks,
    Gopi.

    Hi Amit,
               I have used service call to fetch records from that bapi..
    The following is the code generated by service call:-
    METHOD execute_bapi_material_get_deta .
    declarations for context navigation
      DATA:
        node_bapi_material_get_de   TYPE REF TO if_wd_context_node,
         node_exporting   TYPE REF TO if_wd_context_node,
         node_material_general_dat   TYPE REF TO if_wd_context_node,
         node_importing   TYPE REF TO if_wd_context_node,
          lri_element    TYPE REF TO if_wd_context_element.
    declarations for fuba parameters
      data:
        stru_c_material_general_dat    TYPE if_componentcontroller=>element_material_general_dat.
      DATA:
        attr_material    TYPE bapimatdet-material,
        attr_plant    TYPE bapimatall-plant.
    get all involved child nodes
      node_bapi_material_get_de = wd_context->get_child_node( `BAPI_MATERIAL_GET_DE` ).
      node_exporting = node_bapi_material_get_de->get_child_node( `EXPORTING` ).
      node_material_general_dat = node_exporting->get_child_node( `MATERIAL_GENERAL_DAT` ).
      node_importing = node_bapi_material_get_de->get_child_node( `IMPORTING` ).
    get input from context
      node_importing->get_attribute(    EXPORTING      name = `MATERIAL`
                                                         IMPORTING      value = attr_material ).
      node_importing->get_attribute(  EXPORTING       name = `PLANT`
                                                              IMPORTING       value = attr_plant ).
    the invocation - errors are always fatal !!!
      CALL FUNCTION 'BAPI_MATERIAL_GET_DETAIL'
        EXPORTING
          material =                        attr_material
          plant =                           attr_plant
    "      valuationarea =                   wd_This->Valuationarea
    "      valuationtype =                   wd_This->Valuationtype
    "      material_Evg =                    wd_This->Material_Evg
        IMPORTING
          material_general_data =           stru_c_material_general_dat
    "      return =                          wd_This->Return
    "      materialplantdata =               wd_This->Materialplantdata
    "      materialvaluationdata =           wd_This->Materialvaluationdat
      node_material_general_dat->bind_structure( stru_c_material_general_dat[] ).
    ENDMETHOD.
                                 but the problem is I  am getting the following error while compiling...
    " stru_c_materialplantdata " is not an internal table - the " OCCOURS n"  specification is missing.
    Thanks,
    Gopi.
    Edited by: Yegalaivan on Nov 18, 2009 8:30 AM

  • Dynamic type conflict during the assignment of references. - Error while generating proxy in the backend

    Hi All,
    I get a short dump while generating a proxy in the backend.I give the package and the prefix and end up with a short dump.
    Does any one know why this mught come up
    "Dynamic type conflict during the assignment of references."
    background: I imported a WSDl provided by legacy into PI and created service interfaces and then trying to generate a proxy class while i get this error.
    Thanks.

    Hi Shyamsundar,
    I will explain a problem that I usually see in some developments:
    XSD originally:                                  XSD transformed:
    Root                                                     -> Root
    Tag 1 type int                                    -> Tag 1 type int
    Tag2 type string                               -> Tag2 type string
    Tag3 type  any                                  - Tag3 type  string
    Normally the tag3 should have a XML inside. Then the ABAPers have to construct the tag3 with  a CDATA structure (CDATA is used to put in an XML tag more XML tags inside like a text and no to be interpreted).
    Later in SAP PI you can extract the cdata with an XSL, you can find some examples in the SCN.
    I don’t like to convert the whole XML in only one string tag, because this makes difficult the develop for the ABAPers, although the work inside the PI is very easy because with an XSL you can extract the whole message easily. (You can find some examples in the SCN)
    Regards.

  • Error:Type conflict when calling a function module RFC_ERROR_SYSTEM_Failure

    Hi Experts,
    When I run my Application in Portal, i am getting the following error.
    Type conflict when calling a function module., error key: RFC_ERROR_SYSTEM_FAILURE
    When I execute the BAPI, it is getting executed.
    My Bapi Strucute:
    Import Parameters
    IM_MAT_Search --> ZPTIP_MAT --> Import Parameters
    Tables
    IT_INFO_REC --> ZMM_GET_ITEM --> Output Parameters
    When I import the model, i am getting the structure like this
    BAPI_Name > ZMM_BAPI_Input> IM_MAT_Search(respective Parameters) , Output (respective Tables and their parameters)
                        > ZMM_Input1> Parameters
    This is the way, how i am executing in webdynpro java
    Zmm_Bapi_Ptip_Search_Input eleInput = new Zmm_Bapi_Ptip_Search_Input();
    wdContext.nodeZmm_Bapi_Ptip_Search_Input().bind(eleInput);
    Zptip_Asset eleInputAsset = new Zptip_Asset();
    eleInputAsset.setSearch("ACRS");
    wdContext.nodeZptip_Asset().bind(eleInputAsset);
    eleInput.setIm_Ast_Search(eleInputAsset);
    wdContext.nodeZmm_Bapi_Ptip_Search_Input().bind(eleInput);
    wdContext.nodeZmm_Bapi_Ptip_Search_Input().currentZmm_Bapi_Ptip_Search_InputElement().modelObject().execute();
    wdContext.nodeOutput().invalidate();
    Please let me know, how to do the same.
    Thanks in advance.
    Regards,
    Palani

    Hi David,
    I checked for the Parameter of setIm_Ast_Search, it is of Zptip_Asset.
    Hi Saleem,
    When I changed the same, i am getting the Type conflict error,
    Type conflict when calling a function module., error key: RFC_ERROR_SYSTEM_FAILURE
    Please let me know,what can be done in this regard to solve the problem.
    My BAPI Structure when imported as model
    SearchBAPI
    --> ZMM_BAPI_SEARCH_INPUT
    > IM_AST_SEARCH(zPTIP_ASSET)
    >Zptip_Asset
    >Search (Parameter)
    > OutPut(ZMM_BAPI_Search_Output)
    >IT_Asser_Rec(ZMM_Asset)
    >ZMM_Asset
    >TXT100 (output Parameter)
    --> ZMM_BAPI_SEARACH_OUTPUT
    --> ZPTIP_ASSET
    >Search (Parameter)
    Thanks & Regards,
    Palani
    Edited by: Palani Appan on Nov 11, 2009 5:31 PM

  • Run Time: type conflicts in field symbol

    In this statement i am getting run time error : assign component.
    type conflicts in field symbol
    FIELD-SYMBOLS:
        <fs_tab> TYPE ANY table,
         <wa_tab> TYPE ANY,
         <fs_field> type crmd_orderadm_h.
    DATA:      w_data    TYPE REF TO data.
    CREATE DATA w_data TYPE STANDARD TABLE OF (c_tabname) WITH NON-                     UNIQUE DEFAULT KEY.
        ASSIGN w_data->* TO <fs_tab>.
    SELECT * FROM (c_tabname)
              INTO CORRESPONDING FIELDS OF TABLE <fs_tab>
      LOOP AT <fs_tab> ASSIGNING <wa_tab>.
          DO.
            ASSIGN COMPONENT sy-index OF STRUCTURE <wa_tab> TO <fs_field>.
    *Writeing: fs_field here*
    Enddo.

    FIELD-SYMBOLS: <fs_field> type crmd_orderadm_h.
    <fs_field> type any.
    i cannot pass "
      lv_header_guid =    <fs_field>-guid.
    complete code as follows.
      LOOP AT <fs_tab> ASSIGNING <wa_tab>.
          DO.
            ASSIGN COMPONENT sy-index OF STRUCTURE <wa_tab> TO <fs_field>.
    *i am assining fs_field-guid here. Thats why i am taking this field symbol as type "crmd_orderadm_h"*
    *bold* * <fs_field>-guid.*bold**
            lv_header_guid =    <fs_field>-guid.
            iv_header_guid = lv_header_guid.
            REFRESH: lt_header_guid.
            INSERT iv_header_guid INTO TABLE lt_header_guid.
            REFRESH: im_orderadm_h,im_text.
            CALL FUNCTION 'CRM_ORDER_READ'
              EXPORTING
                it_header_guid       = lt_header_guid
              IMPORTING
                et_orderadm_h        = im_orderadm_h
                et_text              = im_text
              EXCEPTIONS
                document_not_found   = 1
                error_occurred       = 2
                document_locked      = 3
                no_change_authority  = 4
                no_display_authority = 5
                no_change_allowed    = 6
                OTHERS               = 7.
            IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
            ENDIF.
          ENDDO.

  • Type conflict in function module parameters

    Hi All,
    i hve to pass dynamic field <dyn_field> into function module parameters but  it's giving a dump for type conflict.
    where VALUE2  data type in 'AUTHORITY_CHECK' is UST12-VON but if i define <dyn_field> type UST12-VON . then it'll give dump in *ASSIGN COMPONENT  SECURITY_TABLE-FIELDNAME  of structure <wa> to <dyn_field> *.
    SECURITY_TABLE-FIELDNAME  data type is different with UST12-VON .
    pls guide me how to pass *<dyn_field> in fm parameters.
    FIELD-SYMBOLS: <dyn_field> type any.
      LOOP AT <DYN_TABLE_IN> INTO <WA>.
            ASSIGN COMPONENT  SECURITY_TABLE-FIELDNAME  of structure
                 <wa> to <dyn_field> .
            CALL FUNCTION 'AUTHORITY_CHECK'
              EXPORTING
                USER                = QUSER
                OBJECT              = SECURITY_TABLE-AUTHOBJCT
                FIELD1              = 'ACTVT'
                VALUE1              = '03'
                FIELD2              = SECURITY_TABLE-FIELDNAME
                VALUE2              = <dyn_field>

    Hi anuj ,,
    Can you explauin the solution ..
    Regards

  • Type Conflict In Field Symbol

    Hi All,
    We were doing a report to read all major infotypes and displaying the relevant data. It was working fine  until we included Personal data (Infotype 0002).
    We used a field symbol of type any and pnnnn type prelp. It was working fine. But when we included details from PA0002, it is throwing a runtime error stating type conflict between field symbol and pnnnn. (We used pnnnn[] = <f>.
    Note: We are using ECC 6.0 and the program is Unicode enabled
    Kind Regards
    Hari Sankar M

    Hi Prince,
    Yes. You need to change the declaration as follows.
    Field symbols:<wa_ext> TYPE ANY,
                          <f_zname> TYPE any.
    Data: lv_zname type sname.
    ASSIGN COMPONENT 86 OF STRUCTURE <wa_ext> TO <f_zname>.
    lv_zname = <f_zname>.
    Try the above mentioned code. I think this should work.
    Best Regards,
    Ram.

  • Type conflict error when using TS_EngineGetSeqFile

    I was trying to use function TS_EngineGetSeqFile to load a sequence file build in TestStand 4.0, and I got a OLE error showing me that I have a type conflict with "CommonResults". Does anyone know how to solve this problem??

    Hi huizhong,
    The type conflict dialog you are seeing is evidence that the copy of CommonResults (an NI-Installed type) in the sequence file has the same version but different settings than the currently loaded CommonResults type definition. CommonResults
    is stored in almost all of the built in TestStand type palettes which
    automatically get loaded when you open TestStand. Because of this, it
    becomes a part of the global type usage list in the Engine. If you
    didn't make any changes to CommonResults yourself, it is likely you have inherited a type virus from somewhere and I suggest you take measures to correct the problem.
    A
    type virus can spread when you tell TestStand to resolve a type
    conflict by using the version from the file you are currently opening
    (as opposed to the currently loaded type in the global type usage
    list). Once the "new" type is copied over to the type palettes, it will
    then get loaded every time TestStand runs. At this point, if you open
    up more files that use this same type and choose to use the currently
    loaded type when the type conflict dialog shows, TestStand will copy
    the "new" version into the file - thus the spread or viral like
    behavior.
    In order to correct the problem, you can either:
    Manually open each and every infected file and replace the invalid type with the valid type or...
    Use the Type Differ tool that I wrote to inspect each file pair and merge the conflict automatically
    I
    realize that using the Type Differ at this point is still "manual" in
    the sense that you must open each file pair and merge the conflict, but
    hopefully in your case there aren't that many affected files. To that
    end, I am working on a Batch version of the Type Differ that can diff
    and merge entire directory structures automatically. Let me know if you
    are interested in using such a tool and I will post a link when
    development has reached a beta version.
    Regards,

  • Range table type conflict

    Hi!
    Can anybody please tell me what is wrong with this code.
    I am trying to pass a range table to a function that takes a following type of table:
    Range table type: rangetab_tty
    Structured Row Type: ranges_row
    Associated type for LOW/HIGH components: some_element
    Here is my test program:
    DATA:
    lt TYPE rangetab_tty,
    lt_line TYPE LINE OF rangetab_tty.
    lt_line-sign = 'I'.
    lt_line-option = 'BT'.
    lt_line-low = '0'.
    lt_line-high = '1'.
    APPEND lt_line TO lt.
    and now I am passing this table and then I get the runtime error "table type conflict" because it seems I am passing the range table wrong.
    regards

    Hi,
    You can do this way:
    Ranges: lt_line for <table-fieldname>.
    Then fill the values as you are doing
    lt_line-sign = 'I'.
    lt_line-option = 'BT'.
    lt_line-low = '0'.
    lt_line-high = '1'.
    APPEND lt_line .
    Rgds,
    HR

  • CTE : ERRO MONITOR ( Type conflict in program /XNFE/SAPLGROUPING )

    Ola Sap Experts, preciso de uma mão de vcs.
    Estou em um ambiente de um cliente onde o monitor de outbound de CTe, quando se tenta acessar o detalhe da CTe ou qualquer outra ação é gerado o erro "Type conflict in program /XNFE/SAPLGROUPING. (termination; RABAX_STATE)" é gerado um dump na ST22.
    O cliente nao tem qualquer customizacao desse monitor usa de maneira standart e se encontra no sp 16 do SLL-NFe rodando em base de um PI 7.31 dual stack.
    Alguem já passou ou esta passando por isso ?

    Prezados,
    Alguém conseguiu resolver o DUMP?
    Estamos enfrentando o mesmo problema no projeto, mas o erro só ocorre quando testamos um cenário com IPI Return.
    Alguma dica?
    Obrigada,
    Tatiana Augusto

  • Create a structure type at runtime

    Hi friends,
    is it possible to create a local structure type dynamically(at run time).My situation is as follows :
    The user gives a period of time - for Example from "05.03.2009" to "04.03.2010"
    Depending on the number of months between the period of time 
    I have to create a structure with field names as follows:
    I have calculated the number of months between a period of time and the field name also(Mar-09.Apr-09 extra) using function modules.
    The question that is running around my head now is how to create the local structure type at run time with the field names.
    TYPES: BEGIN of st_testStruct
         matnr type string,
         land type string,
         "The above to fields in the structure will always be there but depending on the period of time.
         the following fields have to created dynamically.
         Mar-09 type string,     " as the time period starts from "05.03.2009"
         apr-09 type string,
         may-09 type string,
         ........so on
         dec-09 type string,
         jan-10 type string,
         feb-10 type string,
         mar-10 type string,
    end of st_testStruct.
    depending on the time range the number of field could be more or less in the structure type.Thats why I want to create it dynamically.
    Any sample code for this purpose is useful.....
    Thanks
    P

    ABAP RTTS is what you're looking for - check out this [Wiki page|http://wiki.sdn.sap.com/wiki/display/ABAP/RuntimeTypeServices+%28RTTS%29], which should answer your questions... (here's the link to the [ABAP online docu|http://help.sap.com/abapdocu_70/en/ABENRTTI.htm])
    Cheers, harald
    p.s.: Don't use the hyphen in your field names. This was a bad practice that was used in some old releases. The problem is that fields in a structure are addressed with a hyphen, e.g. like mara-matnr.

  • Type conflict with ASSIGN in program CL_WD_ADOBE_SERVICES==========CP

    I am trying to display an interactive Adobe Form in the webdynpro for abap.
    But i'm getting this error:
    The following error text was processed in system AED : Type conflict with ASSIGN in program CL_WD_ADOBE_SERVICES==========CP .
    The error occurred on application server AIERD_AED_00 and in work process 1 .
    The termination type was: RABAX_STATE
    The ABAP call hierarchy was:
    Method: NODE_2_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: DATASOURCE_2_FM_PARAMS of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF_DDIC of program CL_WD_ADOBE_SERVICES==========CP
    Method: CREATE_PDF of program CL_WD_ADOBE_SERVICES==========CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/CADOBE==================CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C8STANDARD==============CP
    Method: IF_NW7_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program /1WDA/C7STANDARD==============CP
    Method: IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT of program CL_WDR_VIEW_ADAPTER===========CP
    Is there any problem with some Adobe config or somewhere a mistake in my code.

    Follow this thread
    [Displaying a Smartform as PDF in WDA;
    Thanks
    Siva

  • Type conflict with ASSIGN in program in Release time(ESS)

    Hi All,
    On clicking on the link "Release Working Time Data" from EP While releasing working time below exception is being thrown.
    com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Type conflict with ASSIGN in program SAPLHRXSS_CAT_WEBDYNP., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101)
         at com.sap.xss.hr.cat.release.blc.FcCatRelease.rfcExecute(FcCatRelease.java:494)
         at com.sap.xss.hr.cat.release.blc.FcCatRelease.rfcDoInit(FcCatRelease.java:424)
         at com.sap.xss.hr.cat.release.blc.FcCatRelease.onInit(FcCatRelease.java:377)
         at com.sap.xss.hr.cat.release.blc.wdp.InternalFcCatRelease.onInit(InternalFcCatRelease.java:274)
         at com.sap.xss.hr.cat.release.blc.FcCatReleaseInterface.onInit(FcCatReleaseInterface.java:194)
         at com.sap.xss.hr.cat.release.blc.wdp.InternalFcCatReleaseInterface.onInit(InternalFcCatReleaseInterface.java:166)
         at com.sap.xss.hr.cat.release.blc.wdp.InternalFcCatReleaseInterface$External.onInit(InternalFcCatReleaseInterface.java:258)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:922)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:891)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.attachComponentToUsage(FPMComponent.java:1084)
         at com.sap.xss.hr.cat.release.vac.entry.VcCatReleaseEntry.onInit(VcCatReleaseEntry.java:270)
         at com.sap.xss.hr.cat.release.vac.entry.wdp.InternalVcCatReleaseEntry.onInit(InternalVcCatReleaseEntry.java:174)
         at com.sap.xss.hr.cat.release.vac.entry.VcCatReleaseEntryInterface.onInit(VcCatReleaseEntryInterface.java:189)
    Pls help to resolve the isuue
    Thanks,
    JB

    Hard closed

  • Type conflict with ASSIGN in BADI for Virtual Key Figures

    We get the below error dump in ST22 when executing BEx queries that contain virtual key figures.
    error message - 'Type conflict with ASSIGN in
    program "ZCL_IM_THR_RSR_OLAP_BADI======CP".'
    We have a BADI implementation that calculates few virtual key figures included in some infocubes & multiproviders. The error would arise if we execute two queries (containing common Virtual Key figures) one after the other without closing the first query.
    We found a note "Note 1237689 - Virtual chars. and key figures in input-ready querys" that could be relevant to our issue and wanted to apply this note but unfortunately the note is only applicable to SAPKW70016 to SAPKW70018 and we are support pack 15.
    Can you please advise what the problem could be/suggest corrections for the same.

    Hi Kulmohan,
    Did you fix your issue? We are facing the same issue. Could you please let me know if you have any solution for this issue,
    Thank you,
    Mike

  • Assign Type conflict error

    Hi,
    I am trying to load the data from PSA to write optimised DSO in production and it is throwing me an error 'Short dump :Assign Type conflict error".
    I have no routines in the transformations.Source data types are matching with target data types.
    Is there any way I could resolve this issue.
    Thanks,
    Chandra

    Hi,
    I had this problem when i was loading the sales cube. the problem was UOM was not maintained in the system. Then I maintained UOM in the bi and solved the issue. JUst check if your data from the source has got the master data in bi.
    Thanks
    Srikanth

Maybe you are looking for

  • Media Encoder CC (2014) Update Error (U44M1P34)

    Just did a batch of CC updates and Media Encoder CC (2014) failed with error U44M1P34. Any suggestions on how to fix this?

  • Refresh Datagrid After Popup Data Edit

    Hi all, I'm fairly new to flex development, so please keep that in mind when trying to help... I may ask some really stupid questions! Basically what I'm trying to do is to refresh the source data of a datagrid ONLY when the popup window that I'm usi

  • Can't launch an URL with a .pdf extension fron 7.0.1 as i could in earlier version 3.5.x?

    The website target is dropbox.com. One can access a saved pdf file directly using the format: dropbox.com/u/1536975/Schedule_2011.pdf where the all numeric is a filename. This worked from version 3.6.3 but not in 7.0.1 . When l try to launch the URL,

  • Question about Print to Video

    I am using a Sony HC1 HDV camera. I captured some HDV video (using the camera to downconvert) in DV. I edited the sequence and now I want to output a copy of my finished version onto tape in standard definition. The camera is connected via firewire.

  • MDM PUblisher - List of values

    Hello All, I would like to know if SAP MDM Publishers offers the possibility to restrict the proucts to be published (Paper publishing) using a list of values (xould be Product Codes) that would be uploaded using Excel or any similar format ??? The B