In PM or QM modules how to link the smartforms to standard transections.

Hi ABAP gurus,
     i am facing the problem how to link the smartforms to Standard transections, like
     QGA3 in this T-code i am give the Inspection lot no only, then this Lot number go to the smartforms
    it will pick the total data relavent to lot no, my problem is how to link between the T-Code to smartforms, 
thanks.
raj.

hi,
you have to configure in NACE. first identify the application type in NACE.
thanks,
anupama.

Similar Messages

  • Did you know how to link the text in two or more text boxes?

    Did anyone know how to link the text in two or more text boxes in Pages 5.0? Thanks for your answer.
    Qualcuno sa come collegare il testo in due o più caselle di testo nella versione 5.0 di Pages. Grazie per le vostre risposte.

    It's just one of the many, many features that have been eliminated or changed. Leave feedback for the Pages team using the link in the Pages menu and review & rate the new versions in the Mac App Store.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • How to link the reports to portal

    Hai Friends...
    I generated reports using discoverer plus and i viewed the reports using discoverer viewer . I am new to discoverer viewer.
    Any body done please give me steps for how to deploy the reports in discoverer viewer and how to link the reports to portal.I wouid appreciate any help.
    Cheers
    Gopi

    hi gopi,
    u can store ur reports in the database using Discoverer user edition. these stored reports can then be viewed in the discoverer Viewer. here i am assuming that u have configured ur discoverer viewer correctly.
    bye..
    naresh

  • How to link the main site menu to an anchor on a subpage?

    How to link the main site menu (masterpage) to an anchor possition on a subpage? Is that possible. I would like the the contact menu to link to specific anchors  location contact FAQ hours. The way I do it now. I have to create seperate html pages, I would rather do it on one page. Thanks
    http://beta.tmj-sleep.ca/index.html

    Hello,
    To link a website Menu to anchors on any page in the website, you need to create a manual menu using the Menu Widget. You can change Menu to a manual Menu by clicking on the white arrow in Blue Circle which comes up at the top right of the Menu (Menu properties) and select the Menu type as Manual. Please have a look at the screenshot below :
    Now you can add change/add the text there and when you select the text/menu item then from the Hyperlink drpdown at the top in the toolbar, you can select the name of the anchor on any page of your website.
    Anchors are listed in Hyperlink dropdown in this format - Page Name:Anchor Name.
    Hope this helps.
    Regards,
    Sachin

  • How to link Return PO to standard po

    We are doing some  SAP IS Retail Purchase cycle., with return process , but we are not able to link both the PO.
    After completing return PO process from 161 mvt. type how to check the status of standard po linked wth return PO

    Hi
    It can be done, but the configuration object is different,Configuration available under SPRO-> MM-> 
    Purchasing -> Purchase Order-> Returns Order-> Store Return / Return Plant to Plant
    In this step, you define shipping-specific data for the store returns, which is the return delivery of goods from one plant to another.
    For the return delivery types, you have to make settings for the item category determination.
    Partner schema must be assigned to the return delivery types.
    The relevant goods movement types must be assigned to the schedule line categories (for the returns in Sales). The following schedule line categories are also available in the system:
    NR - Replenishment Returns and
    NS - Replenishment Cross Company Returns
    Assign the required return delivery type to
    purchasing document category F (purchase order),
    purchasing document type (NB - standard purchase order, UB - stock transport order),
    the supplying plant (the one to which the goods are being returned)
    The following return delivery types are available in the system:
    NLR - intra-company-code store returns (purchasing document type UB for replenishment and return orders, delivery type NL for the replenishment delivery)
    NCR - cross-company-code store returns (purchasing document type NB for replenishment and return orders, delivery type NLCC for the replenishment delivery)
    Thanks & Regards
    Kishore

  • How to link the Business Partner with the SAP User ID.

    Hi,
    We are working on a scenario wherein the resources are created as Business Partners in R/3.
    now How to link the Business Partner with the SAP User ID.

    HI AP,
    Maintain the business partner in role Internet User - BUP005.
    Now assign the existing user to this BP .(you can make this assignment in tab "internet user'. Just enter the user name in the field User and save).
    You can now see the link in table HRP1001.
    Cheers,
    Rishu.

  • HT1349 how to link the songs that are in itunes to my account so i can to me sales

    how to link the songs that are in itunes to my account so i can to me sale

    You'll need to copy the content on your iPod back to your iTunes library first.  Once you have successfully done that you can safely erase and sync your iPod.
    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • How to call our smartform in standard report

    Hi friends,
    How to call Zee smartform from standard report without affecting stadard flow.
    Thanks,
    Yogesh

    Hi,
      do it this way.
    in the ALV function call
    give in
    exporting
    I_CALLBACK_USER_COMMAND = 'user_command '
    write a subroutine
    FORM user_command USING whatcomm TYPE sy-ucomm whatrow TYPE
    slis_selfield.
    case whatcomm.
    when 'print'.
    call 2 function modules here
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING FORMNAME = P_FORM "Your form name
    variant = ' '
    direct_call = ' '
    IMPORTING FM_NAME = FM_NAME
    EXCEPTIONS NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    EXIT.
    ENDIF.
    calling the generated function module
    CALL FUNCTION FM_NAME
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS = CPARAM
    OUTPUT_OPTIONS = OUTOP
    USER_SETTINGS = SPACE
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    IMPORTING
    JOB_OUTPUT_INFO = TAB_OTF_DATA
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endcase.
    endform.
    This is an example in the function gereated call give you own importing and exporting parameters.
    Regards
    Kiran Sure

  • How to save the instance in standard lead from custom business object

    Hi Experts,
              I am unable to save the instance(Record) in standard Lead business object from custom business object.
    Steps:
    created one custom business object with mandatory fields for creating instance in standard lead.
    in quick create screen i bind  data elements to standard lead business object elements.
    issue:
    when i click on preview i am getting exception as Arguments not found
    can you please tell me that How to save the instance in standard lead from custom business object with step by step .

    Hi Vijay,
    Please refer this link under that mentioned that how to create lead using ABSL code
    Web 2 Lead in SAP Cloud for Customer, step by step - Part 1 - myCloudDoor myCloudDoor
    Under the "Action-CreateLead.absl" mentioned how to create lead
    the above link for convert web 2 lead functionality and under they create lead using web data from ABSL code.
    Regards,
    Mithun

  • How to Debugg the smartforms

    Hai genious
    I am a new of the smartforms, please tell me , how to debugg the smartforms,

    hi,
      kindly find the below links this mite give u a start
    [Debugging smartforms and scripts;
    [smart forms;
    [Debugging smartforms;
    Edited by: ROBIN C on Nov 4, 2008 11:35 AM

  • How to get the output of Standard HR forms in PE51

    Hi Experts,
    How to get the output of standard HR forms available in PE51 Transaction for coutry grouping 99.
    Please advice.
    Regards,
    IFF

    Hi
    Use the t code for country grouping 99....PC00_M99_CEDT - Remuneration Statement. to get the variant in tcode PC00_M99_CALC_SIMU - Simulation.
    Like this test for all the standard forms, what all are the available in PE51 for country grouping 99

  • How to improve the performance of Standard Extractors

    Hi All,
    Can you please let me know how to monitor the performance of Standard Extractors. For one of the extractor which have 350K records in source, it is taking 4hrs to load to BI.
    I want to know which part of the program is taking more time.
    Thanks in Advance
    RK

    No, that exception is thrown when the underlying
    socket (tcp/ip) implementation cannot reserve buffer
    space for new sockets afaik. I get it on windows
    machines when the concurrent connection load reaches
    17-18k connections. I do believe it's configurable
    though.And what happens if your max server load is 7-8 connections an hour and you never close the connections?

  • How to add the BexAnalyser as standard radio button to the add-ins?

    HI All,
    how to add the BexAnalyser as standard radio button to the add-ins.
    Thanks
    Vasu

    What do you want to do? Pls give some more details.

  • How to do the modification in standard ESS/MSS business packges using NWDI?

    Hi Gurus,
    I have requirement where in which set up is ready ESS/MSS business packges are available in NWDI now my question is......
    How to do the modification in certain ESS/MSS standard iviews? using your local machine NWDS?
    How will you download the ESS/MSS iviews that are available in NWDS?
    My EP server version is EP 7.0 and backend ecc5.0......
    Can you guys tell me how to do the changes in standard ESS/MSS stuff that are avaiable in NWDI using your local machine NWDS.
    once the changes is done how you will upload the same into NWDI to reflect the changes globally.
    Its an urgent requirement....Please provide me step by step approach of the same.
    Thanks in Advance,
    Dharani

    Hi Dharani,
         Have a look at my weblog,
    For your 1st Question:
    "How to do the modification in certain ESS/MSS standard iviews? using your local machine NWDS?" -
    1.After you configured your track for ESS/MSS business package in NWDI try importing the track in NWDI by configuring NWDI server in NWDS, goto Windowsàpreferences-Java Development Infrastructure-Development Configuration
    and specify the URL where you have configured your NWDI
    2. create a project for the views which you want to modify.
    3. Checkout and create a new activity for the DC
    4. Make the changes as per your requirement
    5. Checkin the activty once you are done with the changes
    6.Activate and release
    These are all the steps involved in customization of any business package.
    Mail me back if you have any doubts.
    Hope this helps,
    Regards,
    Vinoth.M
    Edited by: Vinoth.Murugaiyan on Feb 13, 2008 3:14 PM

  • How to link the ALRTINBOX in a ABAP Web Dynpro application?

    How can I link the ALRTINBOX window in a web dynpro application view?

    Hi Rahki,
    The status of what?
    There are traffic light icons that you can use, or you can set  the cell design (which changes the background colour of a cell (if you are in a table).
    I often use this to indicate on a review step whether a cell/row has been inserted, modified or deleted from a table.
    Chris

Maybe you are looking for

  • Does anyone know how to select multiple files in photoshop cs6 on macbook pro lion

    I'm new to Mac operating system. Can anyone tell me how to select multiple images in cs6 photoshop? Without having to hold down a shift or cmd key and clicking on each one.

  • Logic based on Date on Selection-Screen

    Dear friends, I've been writing a report in which I have the date field on selection-screen. By default I have been displaying the system date on the selection-screen. The reqiurement is that the user cannot execute the code for a date in past (less

  • JBO-27122 error in ADF mobile client application for blackberry

    Hi, I am trying to develop a simple ADF mobile client application for blackberry. Currently, working only with Blackberry 9700 simulator. I am using the following for development: - Jdev 11.1.1.3 - Oracle database lite 10.3.3 I have done all the step

  • My Systems Preferences window is now a menu??????

    I am accustomed to clicking the Systems Preferences icon on the dock and getting a window with things lined up in rows. Just recently when I click it, it will say "System Preferences, Edit, View, Window, Help" at the top of the screen, and the only w

  • WPA2 support for c6380

    I'm thinking in buying a c6380 wireless printer. Does it support the following setup? Auth> WPA2-psk Encryption>AES In the specs, it doesn't show WPA2 support, only WPA and WEP with AES encryption. I guess it's supported as it is the standard nowaday