Copying standard KANBAN adobeform in SAP SNC

Hi,
We have a requirement where we need to copy standard adobeform and add barcode to that for KANBAN process.
I have following questions regarding this:
1. while copying standard adobeform whether we need to copy Interface also?
2. How to find print program to that form i.e., where data is getting fetched for this form-the form is getting triggered from SNC system..menu path is as followsSNC Supplier role --->SNC Supplier View . When we click on Supplier view it is leaving to WEB UI and from there the Adobeform is getting triggered.
Can anyone explain how and where it is fetching data...
3.Where is the configuratgion done for this form(like in NACE in ECC)?
4.If there is any webdynpro component then where can we find the link for this web ui and form?
Thanks,

Hi Nilson,
The business processes mentioned can be used for any industry. There is not restriction as such.
These business processes are more relevant for those industry.
e.g. Outsourced Manufacturing / WO Collaboration is extensively used by High-Tech companies. Even the recent enhancement requirements have come from High-Tech companies.
Similarly, Kanban / SMI is extensively used by Automotive. But SMI is also popular with High-Tech.
CP industry is biggest consumer of Responsive Replenishment process.
Regards,
Sandeep

Similar Messages

  • Copying KANBAN adobeform

    Hi,
    We have a requirement where we need to copy standard adobeform and add barcode to that for KANBAN process.
    I have following questions regarding this:
    1. while copying standard adobeform whether we need to copy Interface also?
    2. How to find print program to that form i.e., where data is getting fetched for this form-the form is getting triggered from SNC system..menu path is as followsSNC Supplier role --->SNC Supplier View . When we click on Supplier view it is leaving to WEB UI and from there the Adobeform is getting triggered.
    Can anyone explain how and where it is fetching data...
    3.Where is the configuratgion done for this form(like in NACE in ECC)?
    4.If there is any webdynpro component then where can we find the link for this web ui and form?
    Thanks,
    Edited by: NEED  HELP on Sep 28, 2010 2:42 PM

    Hi,
    You can copy the standard form and update or create from scratch based on the requirement. You will need to use SCA/DM_KANBAN BAdi to specify the new form.
    Regards
    Naveen

  • How to add new fields in sap copied standard form using itcsy structure

    hi guys,
      i want add some fields in sap script copied standard form using itcsy structure.
    let me know the procedure with any example.
    thanks,
    anitha.

    Hii anitha
    plz c code below
    Syntax goes like this
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    Example:
    In script form
    /: PERFORM READ_TEXTS IN PROGRAM 'Z08M1_FORM_EKFORM1'
    /: USING &EKKO-EKORG&
    /: USING &EKPO-WERKS&
    /: USING &EKKO-EKGRP&
    /: USING &EKKO-BSTYP&
    /: CHANGING &COMPNAME&
    /: CHANGING &SENDADR&
    /: CHANGING &INVCADR&
    /: CHANGING &COMPADR&
    /: CHANGING &COVERLTR&
    /: CHANGING &SHIPADR&
    /: CHANGING &REMINDER&
    /: CHANGING &REJECTION&
    /: CHANGING &POSTADR&
    /: CHANGING &LOGO&
    /: ENDPERFORM
    In program
    FORM Read_texts - To extract the standard texts from the table *
    FORM READ_TEXTS TABLES IN_PAR STRUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA : L_EKORG TYPE EKORG,
    L_WERKS TYPE WERKS_D,
    L_BSTYP TYPE BSTYP,
    L_EKGRP TYPE BKGRP.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKORG' .
    CHECK SY-SUBRC = 0.
    L_EKORG = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKPO-WERKS' .
    CHECK SY-SUBRC = 0.
    L_WERKS = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-EKGRP' .
    CHECK SY-SUBRC = 0.
    L_EKGRP = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY 'EKKO-BSTYP' .
    CHECK SY-SUBRC = 0.
    L_BSTYP = IN_PAR-VALUE.
    CLEAR Z08M1_ORG_TEXTS.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = L_BSTYP.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
    AND WERKS = L_WERKS
    AND EKGRP = L_EKGRP
    AND BSTYP = SPACE.
    ENDIF.
    READ TABLE OUT_PAR WITH KEY 'COMPNAME'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COMP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SENDADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_ADRS.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'INVCADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_INVC.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COMPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_CPAD.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'COVERLTR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COVR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'SHIPADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_SHIP.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REMINDER'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RMDR.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'REJECTION'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RJCT.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'POSTADR'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_POST.
    MODIFY OUT_PAR INDEX SY-TABIX.
    READ TABLE OUT_PAR WITH KEY 'LOGO'.
    OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_LOGO.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    reward points if useful
    regards
    Jaipal

  • Copying Standard SAP form

    hi all,
    curently I'm copying standard SAP form into Z* form then try to modify.
    Hopefully I face the problem can not add new window in new form.
    can any body have me how to solve it?
    regard,
    Hengky

    Hi
    U can change them only in the master version.
    If you have copied the sapscript from a standard one, probably you've copied all versions (for the main languages), but only one version is the master one.
    The master version is the language used to create the sapscript, so I suppose the German (DE) as your sapscript is copy of standard one.
    So if you need to change objects like window, paragraph,.... u can do it in the master version only.
    U can update the text elements only in the other versions.
    Anyway if you need you can assign another version as master one: trx SE71, insert your sapscript press change and go to Utilities->Convert the original language
    Max

  • Error in the Report Painter standard reports delivered by SAP library 1VK

    Hi,
    The Report Painter standard reports delivered by SAP contain the following errors, after the upgrade from 4.6C to ECC 6.0,in the report 1LMA-001 (library 1VK, report group 1LMA), actual for activity types
    are missing.
    I already copy from client 000 and generated, but still missing the actual for the activity types.
    Thanks in advanced for you support,
    Susana

    Hi,
    Firts of all thanks for you answer.
    Process flow:
    1. production order confirmation CO11N
    2. after production confirmation if we check the in order CO03 cost/analysis, the actual for the activity is there.
    3. afterwards with we execute report S_ALR_87013646, the actual for the activity type is missing.
    Report group 1LMA-001 library 1VK. 
    I already did:
    1. GR59
    2. Report RGRJBG00
    3. OKB6
    Regards,
    Susana

  • SAP SNC Portal DCM screen performance is very slow and times out

    Friends,
    SAP SNC Portal DCM screen performance is very slow and times out when user trying to pull data using customer location
    What are the cleanup activites we can do to improve the overall SNC performance ?
    We did open OSS message but so far no reply from SAP , Is there any one faced performance issue ?
    User/vendor is complaining about slowness , query is standard SAP and its taking more time  .(table - /LIME/NTREE) , It looks like number of data are huge causing this problem related to LIME/NTREE table. What are the options to improve the performance ?
    Thanks in Advance
    Hanuman Choudhary

    hi Team,
    Pls . note the advise from SAP below, IS there any have experiance of archiveing /LIME records ?
    Please advise how to start & what the steps in archiving ?
    Thanks in advance
    I had a look at the DCM query performance in PH1 system and figured out
    that most of the time is spent at the LIME layer of database. The
    following LIME tables are having far too many entries and is causing
    the bottleneck during the query execution.
    /LIME/NLOG_QUAN - 38,165,467
    /LIME/PN_ITEM - 19,116,518
    /LIME/PN_ITEM_TB - 19,154,124
    These tables are storing the historical information about LIME(stock)
    updates. Since these table grow with each change/update of stock
    information, it will slow down the performance of the system over a
    period of time. And to avoid the slow responses, the tables should
    ideally be archived on a periodic basis to keep the data volume as
    minimal as possible. You may have to discuss with the Business to
    determine the number of days of LIME record you would want to retain
    in the system. I would strongly recommend you to consider the LIME
    archival retaining the minimum days (<=60 days) of historical
    information. You can find more information about the Lime Archival
    in the Sap Help link:
    http://help.sap.com/saphelp_scm2007/helpdata/en/44/2a83121dde23d1e10000000a1553f7/frameset.htm.
    Kindly get in touch with your BASIS consultant for the LIME archival.
    The application performance should definitely improve after the LIME
    archival. Please do not hesitate to get in touch with me in case you
    require any further clarification in this regards.
    Best Regards

  • Which option to choose:idoc user exit or copy standard idoc?

    Hi gurus,
    We are using idoc technolody to implement the interface between R3 and 3rd party system.
    Most of idocs are inbound processing, and it seems standard idoc can't meet our all requirements.
    So we are considering the option:i choose doc user exit or create new idoc by copying standard idoc.
    Which way do you like better?What are the advantages and disadvantages of them?
    Any help will be appreciated.
    BTW, our customer will upgrade their R3 4.7 system to ECC6.0 after this project the next year.

    Hi,
    By making changes in the User-Exits, if you can achieve what you are looking for then I would recommend to use user-exits. SAP programs are not bug free and SAP keeps on updating them by releasing hundreds of notes every day. If customer is upgrading to new version in near future then using standard programs are the best option.
    Cheers,

  • SAP SNC: Invoice Collaboration

    Scenario:
    The vendor creates a paper invoice, scans it and sends it to the customer. The customer scans it and using softwares like Readsoft/Opentext posts it in SAP ERP.
    Question:
    Can SNC possibly have a role here? How will SNC work with paper invoice? Can Readsoft/Opentext be eliminated without eliminating paper invoice?
    Rgds
    Alok Srivastava

    Hi Alok,
    Supplier can use SNC invoice collaboration if they want to use if they don't want to use then Supplier can use C-folder functionality with SNC integration in which they can upload scan copy of invoice.
    SAP cFolders is an optional application that you can install and use together with SAP SNC. For more information about the integration of cFolders and SAP SNC, see the SAP SNC documentation. For more information about SAP cFolders functions, see the SAP cFolders documentation on SAP Help Portal at http://help.sap.com then go to   SAP Business Suite then go to   SAP Project and Portfolio Mgmt  then go to  SAP cProject Suite  .
    Let me know for any clarification.
    Thanks,
    Nikhil

  • Copying Standard SAPScript to ZSapscript...

    Hi,
    I want to copy standard sapscript to zsapscript.
    I go in SE71 and enter the name of Z sapascript form and then create. Now when I go to Menu-> Form-> copy from: I give form name as MR_PRINT and give language as EN.
    It says MR_PRINT LANGUAGE EN is not available in client 120.
    But when I again go to se71, and type MR_PRINT with labguage EN in the same client, it dispalys the form but says MR_PRINT from client 000 dispalyed.
    How do I resolve this ?
    Do I need to copy the script from client 000 to 120 ?
    How do I do this ?
    Thanks.
    Regards,
    Thomas.

    hi Rajesh,
    first of all copy the script from 000 to 120
    here is the procedure
    SAP Script is client dependent.
    So you can use SCOT transaction to copy Transport request of SAP Script from one client to another.
    You can use program RSTXSCRP also to transport SAP Script from one client to another.
    Or from SE71 as SE71-> utlities->copy from client .
    then u can copy from standard to z
    if u find it useful mark the points
    Regards,
    Naveen

  • Business scenarios in SAP SNC and aplication

    Hi experts,
    Looking for informatios about SAP SNCi in SAP web site, I found some documents and one that show the business process in SAP SNC and industry tthat are recomended.
    I would like to know what are the reason to use the business scenarios with this specifc industries?
    Supplier Managed Inventory  - Automotive
    Release Processing  - Automotive
    Web-Based Supplier Kanban  - Automotive
    Web-Based Supplier Kanban with MRP  - Automotive
    Responsive Replenishment  - Consumer Products
    Supply Network Inventory  - High Tech
    Contract Manufacturing Procurement  - High Tech
    Work Order Collaboration  - High Tech
    Thanks
    Nilson

    Hi Nilson,
    The business processes mentioned can be used for any industry. There is not restriction as such.
    These business processes are more relevant for those industry.
    e.g. Outsourced Manufacturing / WO Collaboration is extensively used by High-Tech companies. Even the recent enhancement requirements have come from High-Tech companies.
    Similarly, Kanban / SMI is extensively used by Automotive. But SMI is also popular with High-Tech.
    CP industry is biggest consumer of Responsive Replenishment process.
    Regards,
    Sandeep

  • Copying standard transaction to Z-Transaction

    Hi,
    I need to copy standard transaction to Z-Transaction,
    i.e., MIRO to ZMIRO.
    And then I need to insert some code in one of the include program of ZMIRO.
    please tell me the various steps involve for copying a standard transaction.

    While copying a standard transaction may at first seem the easy way to achieve the functionality you need, there are a number of longer term negatives with this approach.
    If you copy major parts of SAP code like this, your copies will not be kept up to date as SAP OSS Notes are applied to the original using SNOTE.  You can manually apply such changes, but this is nearly always forgotten as the person applying the note does not always realise there is a local copy.
    This also applies when support packs are loaded - the SAP code can be changed without these changes being reflected in your copy.  In the worst case scenario, the change may result in your copy of the transaction performing invalid updates to data and causing data integrity issues in your system.
    When the time comes to upgrade the system, there will be a major amount of work in comparing the Z version of the code with the standard code to identify what is in the new version and to update the Z code - in a lot of cases this will mean a complete rebuild of the Z version is required.
    It is far better to use available BADIs, user exits, enhancement points and even repairs using the object key to achieve the desired result so that tools like SNOTE, SPAU, etc can keep the basic code up to date with the latest patches.
    Another option for some types of change is to build a custom screen that calls the standard transaction using BDC / Call Transaction or using a BAPI so that the data is presented as desired by the customer, but the updates still use the SAP supplied code.
    Andrew

  • Can anyone provide me the SAP SNC Config guide.

    Hi Experts,
    Can anyone provide me the SAP SNC Config guide.
    Thanks & Regards,
    Sreeni.

    Hi Lokesh,
    Kanban processing, SCM setting, Supplier, Contract Manufacturing Procurement.
    I want above config guides.
    Thanks & Regards,
    Sreeni

  • SAP SNC Work Order Screen modification

    Hello,
         I have a request to remove all but the Accept Request in the Negotiate drop down on the Delivery Overview section in the Tracking tab for SAP SNC Work Order.  Is it possible to either remove or gray out the other four options (Reject Request, Change date and qty, Split Delivery, Cancel Confirmation).   
    Thanks for you assistance,
    Jeff Hnatiak

    Hi Jeff,
    WO Details screen is maintained as a Web Dynpro application by the name /SCF/REWO_DETAIL. To remove the unwanted options under the Negotiate dropdown, you will need to enhance the standard application. Screen enhancements can be done like, adding custom fileds, removing standard fields, blanking out standard fields etc.
    This will need a ABAP WebDynpro programming effort. An enhancement implementation will need to be created for this application.
    Kedar

  • If i try to copy standard Adobe form to Custom developed

    Hi Guys,
    If I try to copy Standard Adobe form to Custome developed ' iam gettng the 'internal error occured SAP FP API '.
    please let me know what to do ..
    Thanks
    Prabhu

    Hey,
    Instead of copying the Adobe Form,
    First try to save the form on your desktop.
    Open the form with Adobe Live Cycle Designer.
    Click on XML Source tab.
    Copy the XML Source.
    Now create a new empty form in Adobe Live Cycle Designer.
    Click on XML Source tab.
    Select the XML Source.
    delete the XML Source.
    And now paste the XML Source what you have copied previously.
    Hope this is better instead of copy.

  • COPY STANDARD PROGRAM

    WHEN I TRY TO COPY STANDARD SAP PROGRAM IN ENGLISH LANGUAGE BUT IT IS COPIED INTO DE LANGUAGE.HOW TO CHANGE IT INTO ENGLISH.
    THANKS IN ADVANCE

    Go to menu painter 'SE41' and put your program name into the field (The z program).
    Then press the matchcode for status. Watch the names that appear they must start with Z. Select one of them (display), they shurely appear in DE.
    So, do the same thing for those of the standard program. Those will appear in english.
    Delete the status of your Z program. And copy with the same name from the standard (Obviously with the leadding Z ).
    Reggars

Maybe you are looking for

  • BlackBerry 10.2 OS Begins Roll Out, for the Q10

    Read more here: BlackBerry 10.2 OS Begins Roll Out 1. If any post helps you please click the below the post(s) that helped you. 2. Please resolve your thread by marking the post "Solution?" which solved it for you! 3. Install free BlackBerry Protect

  • Premiere 1.5.1 HDV capture questions ( Can't render, can't open in after effects )

    I downloaded the patch which allowed Premiere Pro 1.5 to work with HDV footage. I hooked up my Canon XL1s and captured the footage. Everything seemed to be working fine. I moved into After Effects to begin doing some work  on a shot, and After Effect

  • Why my program on SAX doesn't work?

    Hi, I am learning SAX by myself. I read the article on this page: http://java.sun.com/xml/ jaxp-1.1/docs/tutorial/sax/2a_echo.html And I pasted the program Echo.java and slideSample.xml And I downloaded the crimson.jar jaxp.jar and xalan.jar when I r

  • HR Context-Sensitive Based Security

    Dear All, Wondering if anyone implemented Context Sensitive based security in HR. That is using P_ORGINCON auth object instead of P_ORGIN for HR Master data. If so, were there any issues? Looking for some pros and cons to convince our Steering Commit

  • BDC for CJ20N

    Hi Sapgurus, I written one bdc program for CJ20N. My requirement is to create project defination by using existing project defination. In recording iam clicking network overview buttton but that ok-code is not capturing what might be the reason. Iam