SNC Information

Hello
We have installed Access Enforcer 5.2 on SAP system. AE can able to update all the information in SU01 tab except SNC information.
Can any body please let us know how to configure SNC tab with appropriate string. We have also looked at User Provisioning --> Field Mapping options. We can find all the fields of SU01 which can be mapped with AE fields except SNC field. Please suggest how to overcome this situation.
Thanks & Regards,
Rohan

This is quite interesting.
First of all AE populates all the fields which are mandate in the conventional SU01 screen. If you need any other field to be populated then that has to be defined.
In your case SNC is the additional tab you are getting since you configured that way. So this will not be populated by default.
To make this work., follow the steps.,
- Define custom fields in AE
- Do field mapping in provisioning
Define custom fields in AE
Click option custom fields in the configuration tab, give name to the field and a field label and a field type.
Field mapping in provisioning
Populate the initial screen with group name, short desc, connector type and version. Also select the default application and click continue.  Next screen map the custom AE fields to the Application fields.
There will be a list of application fields available in this dropdown., but not sure whether it will give option for SNC related fields. There are 2 ways to look into it.,
1. The possible fields are predefined in AE and cannot be appended with new fields
2. The possible fields are selected based on the application you select in the previous screen. Example : if you have your system defined for SNC then those related fields will get picked on the fly and get displayed in the possible dropdown.
If the second case is true then you should be able to achieve what you want to and if not you should verify with SAP.
Regards,
Muthu Kumaran KG

Similar Messages

  • Configuration related to PO colabration in ECC and SNC

    Hi
    Can anybody throw light configuration related to PO colabration in ECC and SNC.
    Regards
    Raj

    Hi Raj,
    Below link provide you SNC information about Integration ECCPISNC and functionality of SNC
    link http://help.sap.com/saphelp_snc70/helpdata/EN/b4/f20483605b0d4fa856354a986e900d/frameset.htm but if you want configuration document then Click on below link
    http://help.sap.com/bp_bblibrary/500/BBlibrary_start.htm
    A07_BB_ConfigGuide_EN_DE.doc (Kanban processing)
    S32_BB_ConfigGuide_EN_DE.doc (SCM setting)
    S34_BB_ConfigGuide_EN_DE.doc (Supplier)
    S55_BB_ConfigGuide_EN_DE.doc (Contract Manufacturing Procurement)
    hope this documents are useful.
    Thanks,
    Nikhil

  • New to SNC

    Dear all,
    I am bascially MM consultant and i have got a project of SNC to handle.
    How to start with SNC?
    What TCodes and Tables are there?Where to do the configuration?
    How SNC works bascially?What is the connection between SAP R/3 and SNC?
    Please explain?
    Regards

    Hi Venkat,
    Below link provide you SNC information about Integration ECCPISNC and functionality of SNC
    link http://help.sap.com/saphelp_snc70/helpdata/EN/b4/f20483605b0d4fa856354a986e900d/frameset.htm but if you want configuration document then Click on below link
    http://help.sap.com/bp_bblibrary/500/BBlibrary_start.htm
    A07_BB_ConfigGuide_EN_DE.doc (Kanban processing)
    S32_BB_ConfigGuide_EN_DE.doc (SCM setting)
    S34_BB_ConfigGuide_EN_DE.doc (Supplier)
    S55_BB_ConfigGuide_EN_DE.doc (Contract Manufacturing Procurement)
    hope this documents are useful.
    Thanks,
    Nikhil

  • Regading getting data to and forth between 2 programs through SUBMIT

    Hi All,
    I have a issue regarding fetching internal table data from one program to another.
    Actually I have <b>Main Program</b> from that through SUBMIT statement i am calling another program and executing it for every 100 records - Actually this program is having BAPI running in it, By result i will get an internal table data. Now i want to get that internal table data back into my MAIN Program so that i can use it for next process.
    <b>EXPORT & IMPORT statements are working from MAIN Program to Other Program.</b>
    <b>EXPORT & IMPORT statements are not working from Other Program[SUBMIT'ed Program] to MAIN Program.</b>
    So can anybody tell me how can i get that data in other program into MAIN Program[Back].
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    When you submit the program is then running in parallel with the program which submitted it.  There is no mechism that you are using to stop the calling program and wait for the submitted program to finish and bring back some data.   Most likly program 1 ends before program 2 is finished updating the material master. You can do this kind of thing with Function modules.   You would put your call to the submitted program inside of a function module,  then call that function module saying STARTING IN NEW TASK,  then you can wait for it to be done and get the results using the RECIEVING statement.
    Here is the F1 Help.
    +
    CALL FUNCTION
    Variant 2
    CALL FUNCTION func ...STARTING NEW TASK task name.
    Additions:
    1. ... DESTINATION dest
    2. ... DESTINATION IN GROUP group name
    3. ... DESTINATION IN GROUP DEFAULT
    4. ... PERFORMING form ON END OF TASK
    5. ... EXPORTING  p1 = f1    ... pn = fn
    6. ... TABLES     p1 = itab1 ... pn = itabn
    7. ... EXCEPTIONS syst_except = rc MESSAGE mess
    Effect
    Starts the function module func asynchronously ina new session. In contrast to normal function module calls, the callingprogram resumes processing as soon as the function module is started inthe target system. It does not wait until the function module hasfinished. Through CALL SCREEN,the called function module can, for example, display a screen and thusinteract with the user.
    Notes
    This variant applies only from R/3 Release 3.0, so boththe client system and the server system must have Release 3.0 orhigher.
    With this variant, the called function module must also be flagged inthe Function Builder as externally callable, even if it is executedlocally (without the addition DESTINATION).
    There can be no function call to the destination 'BACK' in thecalled function module (for more information about the destination 'BACK', see CALLFUNCTION func DESTINATION dest).
    This variant does not support the execution of externalprograms accessible via the destination of the TCP/IP type asasynchronous calls (see the Transaction Tools ¨Administration, Administration ¨ Network ¨ RFC destinations formaintaining destinations).
    You cannot display screens (screens or lists asamodal windows in RFC communication using SAP Router.
    From Release 4.0, you can check the load of each RFC destination moreclosely (in the RFC destination maintenance for an R/3 connection, choose Destination -> ARFC options). This checks whetherthe target host has sufficient resources before the function module isexecuted. If the target host is overloaded, the system delays executingthe function module. The algorithm for calculating the load on thetarget host is the same one used in an asynchronous RFC call using the DESTINATION IN GROUP addition. Note that this option can only beused with target hosts running Release 3.1H or higher. Note also thatit is the default setting.
    In principle, parallelization makes sense whenever applicationservers have the necessary resources. In this case, the applicationservers must be configured with at least 3 dialog work processes.
    A program that is run in the background and uses RFC parallelizationrequires at least 1 dialog work process per application server becausedialog processes use parallel execution.
    If the instance profile parameter 'auth/rfc_authority_check'is set (to 1), the system automatically performs an RFC authorizationcheck. The authorization check refers to the relevant function groupfor the function module to be called. If no authorization is found, aruntime error occurs. You can check the authorization in advance withthe function module AUTHORITY_CHECK_RFC. If the communication takes place in the same system with thesame user context (same client and user ID), there is no authorizationcheck. For further information, refer to the RFCAuthorization Concept.
    When you are using asynchronous RFC to implement parallel windows,all these windows are closed if the caller session is the only sessionand terminates.
    ABAP_ADDITION_1&
    ... DESTINATION dest
    Effect
    Executes the function module externally as a RemoteFunction Call (RFC); dest can be a literal or a variable.The R/3 System where the function module is executed depends on thespecified destination. Externally callable function modules must beflagged as such in the Function Builder (of the target system).
    Note
    If the destination is not explicitly specified, the systemuses the default destination 'NONE'.
    Note
    If, during a RemoteFunction Call, an error occurs in the target system, detailsof the error message are passed bac to the calling system in thefollowing system fields: SY-MSGNO, SY-MSGID, SY-MSGTY, SY-MSGV1,SY-MSGV2, SY-MSGV3, and SY-MSGV4. These fields areinitialized before every RFC. If a short dump or a type X messageoccurs, the short text of the dump is transferred to the caller, andthe contents of SY-MSGID, SY-MSGTY, SY-MSGNO, and SY-MSGV1 assigned by the system.
    In RFC-enabled function modules, no ABAP statements are allowed thatwould end the RFC connection (for example, LEAVE, SUBMIT or the ANDRETURN addition).
    Note
    Note that a database commit occurs at eachRemote Function Call (RFC). Consequently, you may not use RemoteFunction Calls between pairs of statements that open and close adatabase cursor (such as SELECT ... ENDSELECT).
    Addition 2
    ... DESTINATION IN GROUP group name
    Addition 3
    ... DESTINATION IN GROUP DEFAULT
    Effect
    You use this addition to perform parallel execution offunction modules (asynchronous calls) on a predefined group of R/3System application servers.
    You use addition 2 (DESTINATION IN GROUP group name) toperform parallel execution of function modules on a predefined group ofapplication servers. To maintain the RFC groups, choose Tools ¨ Administration ¨ Administration ¨ Network ¨ RFCdestinations ¨ RFC ¨ RFC groups. The application programmer isresponsible for the availability of RFC groups in the productionsystem.
    You use addition 3 (DESTINATION IN GROUP DEFAULT) to performparallel execution of function modules (asynchronous calls) on all currently available R/3 System application servers. However,instead of this variant, you are recommended to use an RFC group withappropriate resources for parallel processing of asynchronous calls (atleast for performance reasons). Please note that the additionDESTINATION IN GROUP ' ' has the same effect as the additionDESTINATION IN GROUP DEFAULT.
    When you first call a function module with these additions, thesystem initializes the specified RFC group (provided no explicitinitialization has already been performed).
    To obtain current information about resources (that is, the number ofresources available to process function modules), you can alsoinitialize the RFC group explicitly in the program via the functionmodule SPBT_INITIALIZE. You must perform this actionbefore the first function module call.
    In both cases, the system first determines the number of currentlyavailable resources (work processes) on the available applicationservers (either a group of servers or all servers). By checking thecurrent system load of each application server, the system determineshow many work processes are available to execute asynchronous calls.
    After determining the available resources, the asynchronous call isexecuted at one of the destinations. If no resources are available atthat particular time, the system executes the exception routine RESOURCE_FAILURE (see the addition EXCEPTIONS). In thecase of an asynchronous function module call, this exception must be handled by the application program (see example).
    Parallel processing cannot take place if any of the resourcethresholds are exceeded.
    Notes
    In order to be taken into consideration for RFC parallelprocessing, an application server must have at least 3 freedialog processes.
    The system triggers the exception RESOURCE_FAILURE only forasynchronous RFCs with the additions DESTINATION IN GROUP groupname and DESTINATION IN GROUP DEFAULT.
    At present, only one RFC group per program environment issupported for parallel execution of asynchronous calls. Using both theadditions DESTINATION IN GROUP group name and DESTINATION INGROUP DEFAULT in a program is thus not allowed.
    To find out which destination was automatically selected, call thefunction module SPBT_GET_PP_DESTINATION immediately after thefunction module call with the two additions. This returns the selectedRFC destination.
    If you want to delete an application server from the list of theconfigured RFC group at runtime (for example, when the applicationserver is not accessible for technical reasons), use the functionmodule SPBT_DO_NOT_USE_SERVER.
    Addition 4
    ... PERFORMING form ON END OF TASK
    While the parameters for receiving results (i.e. IMPORTING andTABLES parameters) are specified directly as additions in thecase of "conventional" function modules (see variant 2), these arelogged in the FORM routine form when making anasynchronous call (see RECEIVE).
    Notes
    If a function module returns no result, and you are notinterested in error messages that arise when executing the functionmodule, this addition (... PERFORMING form ON END OF TASK) canbe omitted.
    If you want to handle the error messages that arise when executingthe asynchronous function module call, you must use thisaddition. Also, when receiving the results in the FORM routine(see RECEIVE), you must reactaccordingly to the system exceptions SYSTEM_FAILURE andCOMMUNICATION_FAILURE.
    With asynchronous RFC, the task name uniquely identifies theasynchronous connection and thus the context called.
    If several asynchronous function modules are executed consecutivelyto the same destination, you must assign a different task name to each.
    A calling program that starts an asynchronous RFC with PERFORMINGform ON END OF TASK cannot switch roll areas or change to aninternal session. This is because the asynchronous function module callreply cannot be passed on to the relevant program. You can perform aroll area switch with SUBMIT or CALL TRANSACTION.
    If a calling program makes asynchronous calls, finishes, and thenexpects responses, these responses cannot be delivered.
    To wait for the reply to a started asynchronous function module, usethe WAIT command with the additionPERFORMING form ON END OF TASK. Here, WAIT must be in thesame program context (session).
    Note that the execution of the asynchronous calls involves a changeof roll area. This means that the FORM routines for receivingthe external calls can be processed while you are making furtherexternal calls. This means that the developer must ensure thatthe FORM routines can be executed at any time. You cannotmake any assumptions about the processing sequence.
    Addition 5
    ... EXPORTING p1 = f1 ... pn = fn
    Effect
    EXPORTING passes values of fields and fieldstrings from the calling program to the function module. In thefunction module, the formal parameters are defined as importparameters.
    Addition 6
    ... TABLES p1 = itab1 ... pn = itabn
    Effect
    TABLES passes the contents of internal tables.
    Addition 7
    ... EXCEPTIONS syst_except = rc MESSAGE mess
    Effect
    While any exceptions arising in the called functionmodule are handled by the second addition (in the FORM routine),this addition can handle two special system exceptions, as withfunction module calls with the addition DESTINATION:
    SYSTEM_FAILURE
    is triggered, if a system crash occurs on the receiving side.
    COMMUNICATION_FAILURE
    is triggered if there is a connection or communication problem.
    In both cases, you can get a description of the error with theoptional addition
    ... MESSAGE msg
    Note
    In principle, you should always react to these twosystem exceptions, whether you are making an asynchronous functionmodule call or receiving results.
    Examples
    Asynchronous call to a transaction and display in a separate session.
    DATA: MSG_TEXT(80) TYPE C. "Message text
    Asynchronous call to Transaction SM59 -->
    Create a new session
    CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK 'TEST'
      DESTINATION 'NONE'
      EXPORTING
          TCODE = 'SM59'
      EXCEPTIONS
        COMMUNICATION_FAILURE = 1 MESSAGE MSG_TEXT
        SYSTEM_FAILURE        = 2 MESSAGE MSG_TEXT.
      IF SY-SUBRC NE 0.
        WRITE: MSG_TEXT.
      ELSE.
        WRITE: 'O.K.'.
      ENDIF.
    Using RFC groups to parallelize function module calls (RFC parallelprocessing)
    TYPES: BEGIN OF TASKLIST_TYPE,
           TASKNAME(4) TYPE C, "Task administration
           RFCDEST LIKE RFCSI-RFCDEST
           END OF TASKLIST_TYPE.
    DATA: INFO LIKE RFCSI, C,  "Message text
          JOBS TYPE I VALUE 10,  "Number of parallel jobs
          SND_JOBS TYPE I VALUE 1,  "Sent jobs
          RCV_JOBS TYPE I VALUE 1,  "Received replies
          EXCP_FLAG(1) TYPE C,  "Number of RESOURCE_FAILUREs
          TASKNAME(4) TYPE N VALUE '0001',  "Task name administration
          TASKLIST TYPE TABLE OF TASKLIST_TYPE,
          WA_TASKLIST TYPE TASKLIST_TYPE.
    DO.
      CALL FUNCTION 'RFC_SYSTEM_INFO'
           STARTING NEW TASK TASKNAME DESTINATION IN GROUP DEFAULT
           PERFORMING RETURN_INFO ON END OF TASK
           EXCEPTIONS
             COMMUNICATION_FAILURE = 1
             SYSTEM_FAILURE        = 2
             RESOURCE_FAILURE      = 3.
      CASE SY-SUBRC.
        WHEN 0.
    Administration of asynchronous tasks
          WA_TASKLIST-TASKNAME = TASKNAME.
          CLEAR WA_TASKLIST-RFCDEST.
          APPEND WA_TASKLIST TO TASKLIST.
          WRITE: /  'Started task: ', WA_TASKLIST-TASKNAME COLOR 2.
          TASKNAME = TASKNAME + 1.
          SND_JOBS = SND_JOBS + 1.
          JOBS     = JOBS - 1.  "Number of existing jobs
          IF JOBS = 0.
            EXIT.  "Job processing finished
          ENDIF.
        WHEN 1 OR 2.
    Handling of communication and system failure
        WHEN 3.  "No resources available at present
    Receive reply to asynchronous RFC calls
          IF EXCP_FLAG = SPACE.
             EXCP_FLAG = 'X'.
    First attempt for RESOURCE_FAILURE handling
             WAIT UNTIL RCV_JOBS >= SND_JOBS UP TO '0.01' SECONDS.
          ELSE.
    Second attempt for RESOURCE_FAILURE handling
             WAIT UNTIL RCV_JOBS >= SND_JOBS UP TO '0.1' SECONDS.
          ENDIF.
          IF SY-SUBRC = 0.
            CLEAR EXCP_FLAG.  "Reset flag
          ELSE.  "No replies
            "Endless loop handling
          ENDIF.
        ENDCASE.
    ENDDO.
    Receive remaining asynchronous replies
    WAIT UNTIL RCV_JOBS >= SND_JOBS.
    LOOP AT TASKLIST INTO WA_TASKLIST.
      WRITE:/   'Received task:', WA_TASKLIST-TASKNAME COLOR 1,
            30  'Destination: ', WA_TASKLIST-RFCDEST COLOR 1.
    ENDLOOP
    FORM RETURN_INFO USING TASKNAME.
      RECEIVE RESULTS FROM FUNCTION 'RFC_SYSTEM_INFO'
        IMPORTING RFCSI_EXPORT = INFO
        EXCEPTIONS
          COMMUNICATION_FAILURE = 1
          SYSTEM_FAILURE        = 2.
      RCV_JOBS = RCV_JOBS + 1.  "Receiving data
        IF SY-SUBRC NE 0.
    Handling of communication and system failure
        ELSE.
          READ TABLE TASKLIST WITH KEY TASKNAME = TASKNAME
                              INTO WA_TASKLIST
          IF SY-SUBRC = 0.  "Register data
            WA_TASKLIST-RFCDEST = INFO_RFCDEST.
            MODIFY TASKLIST INDEX SY-TABIX FROM WA_TASKLIST.
          ENDIF.
        ENDIF.
    ENDFORM
    Note
    If you encounter problems, refer toTypical RFC problems and theirsolutions.
    Note
    Runtime errors:
    Note
    Runtime errors:
    CALL_FUNCTION_NO_RECEIVER:
    Data received for an unknown CPI-C connection.
    CALL_FUNCTION_DEST_TYPE:
    Destination type not allowed.
    CALL_FUNCTION_NO_DEST:
    Specified destination does not exist.
    CALL_FUNCTION_NO_LB_DEST:
    Specified destination (in load distribution mode) does not exist.
    CALL_FUNCTION_TABINFO:
    Data error (info internal table) in a Remote Function Call.
    CALL_BACK_ENTRY_NOT_FOUND:
    The called function module is not released for use in RFC.
    CALL_FUNCTION_FIELD_NOT_FOUND:
    The function parameter that you passed is not recognized on therecipient side.
    RFC_NO_AUTHORITY:
    The user does not have RFC authorization.
    CALL_FUNCTION_SINGLE_LOGIN_REJ:
    No authorization to log on as a trusted system. The error codeshave the following meanings:
    0) Valid security key but wrong logon data 1) Calling system is not a trusted system, or security key is invalid 2) User either does not have RFC authorization (authorization object S_RFCACL), or logged on as one of the protected users 'DDIC' or 'SAP*' 3) Timestamp of the logon data is invalid
    CALL_FUNCTION_DESTINATION_NO_T:
    Missing communication type (I for internal connection, 3 for R/3) in anasynchronous RFC
    CALL_FUNCTION_NOT_REMOTE:
    The function module called is not flagged as "RFC supported"
    CALL_FUNCTION_REMOTE_ERROR:
    An error occurred during the Remote Function Call. This has been loggedin the target system.
    CALL_FUNCTION_SIGNON_INCOMPL:
    The logon data for the user is incomplete.
    CALL_FUNCTION_SIGNON_INTRUDER:
    You cannot log onto a target system using an internal call.
    CALL_FUNCTION_SIGNON_INVALID:
    External RFC without a valid user name.
    CALL_FUNCTION_SIGNON_REJECTED:
    Attempt to log onto a target system without a valid user name. Theerror code can have the following meanings:
    1) Wrong password or invalid user ID
    2) User locked
    3) Too many logon attempts
    4) Error in authorization buffer (internal error)
    5) No external user check
    6) Invalid user type
    7) Validity period of user has expired
    CALL_FUNCTION_SYSCALL_ONLY:
    RFC without a valid user name only allowed when calling system functionmodules. For the meaning of the error codes, refer toCALL_FUNCTION_SINGLE_LOGIN_REJ.
    CALL_FUNCTION_TABLE_NO_MEMORY:
    No memory available for a table to be imported
    CALL_FUNCTION_TASK_IN_USE:
    Asynchronous RFC only: Task name already in use.
    CALL_FUNCTION_TASK_YET_OPEN:
    Asynchronous RFC only: The specified task is already open.
    CALL_FUNCTION_SNC_ERROR:
    Error reading the SNC information for the destination.
    CALL_RPERF_SLOGIN_READ_ERROR:
    No valid trusted system entry for the calling system.
    CALL_RPERF_SLOGIN_AUTH_ERROR:
    No trusted authorization for the RFC caller and trusted system.
    +
    Regards,
    Rich Heilman

  • Webshop Configuration Related?

    I need to configure certain properties in the configuration files in webshop.
    I know one way to do this is using tools like Tuning Pack
    However if one were to not use the tuning pack how do i go about making
    the changes.
    If any one has any idea about this please let me know asap?
    P.S any other links to webshop information and tutorials will be appreciated.
    the information can be send to [email protected]
    Points will be awarded whereve appropriate.

    Hi Raj,
    Below link provide you SNC information about Integration ECCPISNC and functionality of SNC
    link http://help.sap.com/saphelp_snc70/helpdata/EN/b4/f20483605b0d4fa856354a986e900d/frameset.htm but if you want configuration document then Click on below link
    http://help.sap.com/bp_bblibrary/500/BBlibrary_start.htm
    A07_BB_ConfigGuide_EN_DE.doc (Kanban processing)
    S32_BB_ConfigGuide_EN_DE.doc (SCM setting)
    S34_BB_ConfigGuide_EN_DE.doc (Supplier)
    S55_BB_ConfigGuide_EN_DE.doc (Contract Manufacturing Procurement)
    hope this documents are useful.
    Thanks,
    Nikhil

  • Sending GR information to SNC

    Hi,
    We do not want to use rpeort RSMIPROACT to send the  GR information to SNC for PO.
    When GR is done though Inbound delivery (VL32N) we want to send through Message Type.
    Please let me know the steps what we need to do.
    Regards
    Raghavendra Pai

    Hi Raghavendra ,
    Click on below link
    http://help.sap.com/bestpractices/BBLibrary/documentation/S34_BB_ConfigGuide_EN_DE.doc
    Go to page number 22  to send GR using output type OPOD.
    Let if you are not able do send GR using above document configuration.
    Regards,
    Nikhil

  • RSMIPROACT not sending the GR information to SNC

    Hello SNC Experts .
    Need your help on the below issue .
    I have make the below setting in We20.
    partner type LS (logical system) and create outbound parameter:
    Message Type:STPPOD
    Receiver Port:<XI> which connects to PI from ECC
    Transfer IDoc Immed checked with Output mode=2
    Basic type:DELVRY03
    Checked Cancel Processing After Syntax Error.
    No other setting is required in above outbound parameter.
    When I execute RSMIPROACT report then  get this message "No transfer
    exists for goods. I have do the GR against ASN and I did not found any I doc created for this .
    Is there any setting I am missing ? .
    With Regards
    Mahesh

    Hi Mahesh,
    You are using scheduling agreement?
    if you have scheduling agreement and ASN created then RSMIPROACT will trigger GR.
    Regards,
    Nikhil

  • SNC - Need more information

    Hello,
    I would like to install a saprouter using SNC. But I have several questions whose answers I haven't found yet:
    - Can I install niping / saprouter / sapcrypto.dll on a front-end PC? Would it be supported? Does it have to be a Server-OS or can it also be a Workstation OS like WinXP Prof?
    - What kind of encryption does SNC use? What exactly is the method? Diffie-Helman? AES? RSA? How many bit? It is only said to use the "state-of-the-art encryption", but what exactly does that mean? Is there any technical document showing more details than the presentations on sap.com?
    Thank you in advance
    Michael
    PS: Links or direct Notes would be very helpful!

    I am pretty sure that saprouter is just a simple routing program, controlling network packet routing by either denying or passing the packet.  I am not aware of any SNC which can be installed/enabled in saprouter.  As for the front-end, yes, depends on what you mean by front-end (SAPGUI, customized app, web browser), there are various ways to install the required SNC bits in the front-end.
    More info here:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/32/431c3aadda4f25e10000000a11402f/content.htm

  • I have an Iphone4 and 3gs using the same apple id and same itunes account. is it possible for them to not share photos,contacts,and other information. I'm afraid to sync one and lose the info the other phone has

    I have two iphone users sharing one apple id and itunes account. Can I snc both phones to the itunes account without sharing each others info i.e. photos, music, contacts? I am afradi to sync one and lose the information the other one has.

    A solution would be to use Apple's iCloud to sync instead of iTunes. This requires the latest operating system, iOS 5. Now backups will be done to the cloud, and you can choose what gets synced across your devices by turning them off in iCloud settings (i.e. turn off Calendars, Photos, etc.).

  • ABAP PROXY - how to load a new field into SAP SNC system

    I am also curious about the proxy process. Please let me know if you know of a post that has mentioned this before.
    We have to customize our Delivery Schedule Notification proxy. I already regenerated the standard one into a Z proxy name. I already put in my custom code to load Z fields into a Z table.
    Here is my new problem. The users wants more additional fields.
    Here is the standard proxy generated layout for this structure:
    /SCA/BIF_S_DELIVERY_SCHEDULE
    CONTROLLER
    ID
    TYPE_CODE
    CREATION_DATE_TIME
    BUYER_PARTY
    VENDOR_PARTY
    BILL_TO_PARTY
    NOTE
    ITEM
    Here is the new proxy generated layout for this structure:
    ZDELIVERY_SCHEDULE_NOTIFICATIO
    CONTROLLER
    ID
    TYPE_CODE
    CREATION_DATE_TIME
    BUYER_PARTY
    VENDOR_PARTY
    SUPPLYING_VENDOR
    BILL_TO_PARTY
    NOTE
    ITEM
    Notice that SUPPLYING_VENDOR is the new field. VENDOR_PARTY is already loaded into the system. How can I get SUPPLYING_VENDOR loaded into the database?
    Thank you in advance for your assistance.
    Edited by: DAVID CRAIG on Jul 29, 2009 2:16 PM

    Hello.
    Thank you for the information.  I need to clarify my situation.
    I understand there is a PROVIDER CLASS.  Within that PROVIDER CLASS there is a METHOD.   Inside that METHOD there is a place for me to put my code in.  I have already done that work for a previous requirement.  I moved Z fields to a Z table.
    My new requirement has a field SUPPYING_VENDOR that was inserted into one of the SAP structures.  It was placed next to VENDOR_PARTY.
    Here are my steps of execution:
    1.  Go to transaction /N/SCA/ICH_S (SNC Supplier View)
    2.  Click on RELEASE
    3.  Click on RELEASE OVERVIEW
    4.  Click on GO
    5.  Click on DETAILS
    6.  Click on the SHIP-FROM LOCATION tab
    The SHIP-FROM LOCATION field is currently being populated by the VENDOR_PARTY field from the proxy.  This is done automatically by SAP.
    1.  How do I find the table and field name for that field?  This is in the Supply Network Collaboration screen, not normal SAP transaction.
    2.  How do I get that SUPPLYING_VENDOR data to populate SHIP-FROM LOCATION instead of VENDOR_PARTY?

  • SNC : Error while creating Subcon PO with Order (F) account assignment cat

    Hi,
    I am trying to implement Outsourced Manufacturing scenario with ECC 604 and SNC 7.0
    We would like to demonstrate "Real Time Consumption" once a phase has been completed for WO in SNC.
    For this, it is necessary create Subcon PO with A/c assignment category F. While trying to create PO, i get the following error:
    1. Acct assignment determination is not poss.in the account assgnmnt manager
    Message no. IAOM220
    Diagnosis
    Errors occurred during the determination of the account assignment in the account assignment manager. Thus it is not possible to determine the account assignment.
    2. Characteristics for Controlling object have errors
    Message no. IAOM034
    Diagnosis
    There are errors in the characteristics that are transferred when creating or changing a Controlling object.
    System Response
    Processing stopped.
    Procedure
    Look at the messages prior to this object in the error log. They give an indication as to which characteristics have errors.
    3. Hierarchy level 01 not defined in business scenario Outsourced Manufacturing
    Message no. IAOM027
    Diagnosis
    In business scenario 'Outsourced Manufacturing', hierarchy level 01 was accessed. There is no key characteristic defined for this hierarchy level.
    System Response
    Processing is terminated.
    Procedure
    Inform SAP or the provider of the business scenario, if the business scenario was not provided by SAP.
    If you are responsible for the business scenario yourself, check the definition of the business scenario.
    Settings specific to CO order that have been maintained:
    IAOM1 - Maintain Controlling Scenario
    IAOM2 - Maintain Controlling Integration
    KA02 - Default Cost assgnmnet
    Tick RT consumption in ME11 (Vendor Purchasing Info Record).
    Any idea???
    Regards,
    Sandeep

    Dear,
    Did you also experience the following?
    We are at the following step in the scenario:
    Supplier confirms production progress =>Manufacturingworkorderproductionprogressnotification XML is generated => POST component consumption is executed in the R/3 system (ECC 6 EHP4).
    We see the following problems after posting the component consumption
    -     table EKBE_SC is not filled
    -     in transaction kkf3 => CO production order => no booking/posting of progress
    -     Component consumption is reflected in an outbound delivery with movement type 543, but it is missing the link with the purchase order+item (see screenshot below) => as a result any post issue booking is not possible.
    Thanks for your help.
    Kindr regards,
    Stefan Hemeryck

  • Java GUI 7.20 and SNC on Windows 7

    Hello
    Just trying out the preview version of GUI 7.20 on Windows 7 OS, and tried to setup a SNC logon. Error message is "Unable to load GSS-API DLL named "sncgss32.dll" ...
    I've done a search and there is no sncgss32.dll file anywhere on the computer. I cannot find it in the installation package either.
    Maybe it is not included in the preview version... Has anyone setup SNC logon functionality on Windows 7?
    A.

    Hello,
    SAPGUI for Java (and Windows) come(s) with a kind of plug-in infrastructure to use security products for Secure Network Connections, but not including a SNC product itself.
    Did you install the library required for using SNC and are pointing to it using the SNC_LIB environment variable? The error message looks like it tries to load a default library, but it is not there.
    You might want to read the information about SNC in general available at
    http://help.sap.com/saphelp_nw70/helpdata/en/69/b0bbd6dde71141bee8806586144796/frameset.htm
    and regarding SAP GUI
    http://help.sap.com/saphelp_nw70/helpdata/en/dd/2e029250f64ed682e1b2f3eda66fca/frameset.htm
    Best regards
    Rolf-Martin

  • Configure SSO for ITS to R/3 using SNC/Kerberos

    Our R/3 systems had been configured for SSO using SNC and Kerberos for awhile now.  We now have a requirement to configure SSO between ITS and R/3.  Since our R/3 env. has been using kerberos library, we won't be able to use SAP Cryptographic library.  I had modified the registry, environment and services in itsadmin to point to the kerberos library and principal names for agate and r/3 servers as described in SNC User Guide; also, I updated table SNCSYSACL with the Agate SNC name.  That seems to work fine.  From the trace file, it recognized GSS-API library for Kerberos and the SNC name for Agate.  However, when I tried to logon to R/3 from ITS, I still am being prompted with the logon screen to enter my SAP account/password.
    I found several whitepapers and documentations stating that ITS does support Kerberos for SSO but I couldn't find any procedure on how to implement it.  Following is the error I'm getting from the sapbasis.trc file but I can't find any document on this error:
    =====================================================
    [Thr 5284] SncInit(): Initializing Secure Network Communication (SNC)
    [Thr 5284]       PC with Windows NT (mt,ascii,SAP_UC/size_t/void* = 8/32/32)
    [Thr 5284] SncInit(): Trying environment variable SNC_LIB as a
          gssapi library name: "C:\WINNT\system32\gsskrb5.dll".
    [Thr 5284]   File "C:\WINNT\system32\gsskrb5.dll" dynamically loaded as GSS-API v2 library.
    [Thr 5284]   The internal Adapter for the loaded GSS-API mechanism identifies as:
      Internal SNC-Adapter (Rev 1.0) to Kerberos 5/GSS-API v2
    [Thr 2888] Sun Jan 15 22:44:59 2006
    [Thr 2888] <<- ERROR: SncSetParam()==SNCERR_PARAM_DENIED
    [Thr 2888] *** WARNING => NO Domain! domain==NULL means: No domain at all within the cookie. [sapss1_loctr 333]
    [Thr 2888] Sun Jan 15 22:45:29 2006
    [Thr 2888] *** WARNING => NO Domain! domain==NULL means: No domain at all within the cookie. [sapss1_loctr 333]
    =====================================================
    Does anyone know what am I missing?  Any help is greatly appreciated.
    Thank you!
    Diem

    Hi Markus,
    I also just installed/configured PAS for LDAP authentication using the "PAS for External Authentication Mechanisms" documentation.  I think the domain problem probably due to not having the external authentication mechanism install (in this case - PAS).  Does that sound right to you?
    I tried both options for ~extid_type parameter = "LD" and "UN".  I added the DN information to table USREXTID when ~extid_type="LD" but both options gave me error of "LDAP authentication failed".  I increased the trace level for sapextaut.trc but I don't see enough detail information.  Following are the errors/data from the trace file.  Can you please let me know how I can tell what string is being passed for authentication? 
    I'm quite sure the LDAP host and port data is correct since we've been using the same information for the SAP LDAP connector and we've been using our LDAP connector between MS AD and R/3 for a long time without any problem. 
    To logon to R/3 through ITS, I entered the AD account (CN attribute in AD) when I got the errors.
    Thank you very much for all your help.
    Diem Tran
    Trace:
    =====================================================
    2006-01-18T01:39:30.734 p001688 t4992 s0158B4E8 [sapextauth,  437]: W sapextauth: PAS session begins...
    2006-01-18T01:39:30.734 p001688 t4992 s0158B4E8 [sapextauth,  456]:     sapextauth: SncNameR3 is:    "p:na1adm/[email protected]"
    2006-01-18T01:39:30.734 p001688 t4992 s0158B4E8 [sapextauth,  462]:     sapextauth: SncNameAGate is: "p:[email protected]"
    2006-01-18T01:39:30.750 p001688 t4992 s0158B4E8 [sapextauth,  468]:     sapextauth: SNC_LIB is:      "C:\WINNT\system32\gsskrb5.dll"
    2006-01-18T01:39:30.750 p001688 t4992 s0158B4E8 [sapextauth,  568]:     sapextauth: XGatConnectSession leaving....
    2006-01-18T01:39:30.750 p001688 t4992 s0158B4E8 [sapextauth,  616]:     sapextauth: XGatHandleLogin called....
    2006-01-18T01:39:30.750 p001688 t4992 s0158B4E8 [sapextauth,  976]:     sapextauth: Entering XGatHandleLogin with LDAP...
    2006-01-18T01:39:30.750 p001688 t4992 s0158B4E8 [sapextauth,  993]: W Either ~login or ~password missing, returning XGDKRCloginrequired.
    2006-01-18T01:39:50.281 p001688 t4992 s00000000 [sapextauth,  398]:     sapextauth: XGatEventOpenSession called...
    2006-01-18T01:39:50.281 p001688 t4992 s0158B4E8 [sapextauth,  616]:     sapextauth: XGatHandleLogin called....
    2006-01-18T01:39:50.281 p001688 t4992 s0158B4E8 [sapextauth,  976]:     sapextauth: Entering XGatHandleLogin with LDAP...
    2006-01-18T01:39:50.296 p001688 t4992 s0158B4E8 [sapextauth, 1059]:     sapextauth: LDAP port ist 389
    2006-01-18T01:39:50.296 p001688 t4992 s0158B4E8 [sapextauth, 1261]: E sapextauth: LDAP authentication failed.
    2006-01-18T01:39:50.296 p001688 t4992 s0158B4E8 [sapextauth, 1277]: E sapextauth: Wrong try for user Tran_Diem
    2006-01-18T01:39:59.140 p001688 t4992 s00000000 [sapextauth,  398]:     sapextauth: XGatEventOpenSession called...
    2006-01-18T01:39:59.156 p001688 t4992 s0158B4E8 [sapextauth,  616]:     sapextauth: XGatHandleLogin called....
    2006-01-18T01:39:59.156 p001688 t4992 s0158B4E8 [sapextauth,  976]:     sapextauth: Entering XGatHandleLogin with LDAP...
    2006-01-18T01:39:59.156 p001688 t4992 s0158B4E8 [sapextauth, 1059]:     sapextauth: LDAP port ist 389
    2006-01-18T01:39:59.156 p001688 t4992 s0158B4E8 [sapextauth, 1261]: E sapextauth: LDAP authentication failed.
    2006-01-18T01:39:59.156 p001688 t4992 s0158B4E8 [sapextauth, 1277]: E sapextauth: Wrong try for user Tran_Diem
    =======================================================

  • Unable to view purchase orders in SNC for the supplier

    Hi folks,
    iam facing the problem of unable to view purchase orders in the supplier portal for my supplier.
    ECC 6.0, PI 7.0, SCM 5.0 are the systems being used.
    scenario is like :
    for plant 1000, purchase order is created on vendor 1100 and idoc sent to PI successfully
    also in PI in the integration builder i find messages saying successfully sent to SCM system
    SLG1 transaction in SCM says message received successfully, (in the log i can see the plant, supplier, order no and order details)
    when i try to login to supplier view with supplier login, iam unable to view the orders,
    please let me know if iam missing any thing in this regard.
    cheers.

    Hi Kiran
    Could you check queues
    smq1 and smq2 ????
    Does your xml posted successfully in SNC(SXI_MONITOR)... Can you open the payload document
    inbound message-payloads-maindocument
    Check thoroughly whether any error information ????
    Check whether commit of xml is proper, or else refresh PI cache
    For your internet user and the xml rfc user(user who is pushing the data into SNC), check whether any update errors are available in so01(inbox)
    It could be a temporary problem, deactivate activate your supplier service in SICF. Could be problem with binding issue
    Just to make sure data is sitting in SNC
    Check this table
    /1OM/ORDR7MP3100
    Give your po number in field order no
    If you find, then it is problem with binding...If you dont find, then the xml update process has issue
    Kindly let us know the results
    Best Regards
    Vinod
    Best Regards
    Vinod

  • What's the difference between SNC and SRM?

    we will sell SNC in Q2.But i don't know what is the difference between SNC and SRM.
    i've heard SNC suit Direct procurement better than SRM...
    Pls give me the advice and information.
    good regards kenji

    Hi Kenji,
    SRM is more of Supplier Identification and SNC work of building
    relationship with Supplier starts after this Supplier identification.
    SNC is very Good tool to handover Inventory replenishemnt
    to Suppliers and it gives Visibility of inventory information over Web UI.
    SNC has many processes like PO Collaboration, SMI, DR,DCM, SNI,
    Invoice Collaboration,Release process...to accomplish above mentioned task.
    SNC is designed for direct materials procurement.
    SRM has contract negotiations,bids,auctions for sourcing to identify suppliers
    SRM is good for basic purchasing fuctionality and suitable for indirect materials.
    In addition to all these SNC has Customer Collaboration functionality also.
    Regards,
    Vasu

Maybe you are looking for

  • Create LOV's for all columns at the time of folder creation

    Hi, I know we can automatically create the LOV's for all the columns of a database table when creating the folder in the EUL. Is this a good practice or should I create LOV's on demand? What is the disadvantage of creating more LOV's than needs to be

  • In which table attributes of program get stored.

    Hi, I want to know in which table or is there any function module which i can make use of to find out attributes of program. I am specifically interested in knowing Logical Database specified during program attribute declaration dynamically in my rep

  • How do I make a Hyperlink in Java?

    Hi! I've made an Image Icon out of a JButton in an applet. When the button is pushed I want to link to a popup html-window. Could you please write some code down to me. Appreciated. Thx.

  • Music Library in iTunes 2.03 & iPod on OS9.2.2 but I want

    to move my library to iTunes 6.0.3 on Mini mac with 10.4.5 and move my iPod (2nd generation) from iMac G3 to Mac mini. How in the name of Apple Macintosh can I make THIS SWITCH? I have stored my original iMac G3 HD with 9.2.2 (and iTunes 2.03) on an

  • Basis type MATMAS02 is unknown

    Hi! How to get the basis type such as MATMAS02 known basis type in tcode IDX2? When I try to load metadata in tcode IDX2 I get the following error: Basic type 'MATMAS02' is unknown Message no. EA224 I already created Ports in tcode IDX1, defined the