Suppressing the printing of Item Master record remmarks.

Hello
How do I disable the printing of the Item Master Data Remmarks from the Marketing Documents when a Text Line is present.  Example - When a Text line is added to a Sales Order, the PLD priints the remmarks on the Item Master record in addition to the Text entry.  I will like to suppress the printing of the Item Master record's remmarks.
Thanks.
Man

Hi,
Please apply the following workaround:
+Hide the field "item Details(INV1,text)
+Link every existing field in the Repetitive Area to itself (this
inlcudes hidden fields as well)
+Add the following fields to the Repetitive Area:
(Before adding the fields,Increase the Height of the Repetitive Area to
allow placing the following field vertically below the exisiting fields
of the Repetitive Area - tick Height Adjustment for the Area)
      Field_1:
      General Tab
      untick visible
      Left = 0 / Width = 0 / Top = 0 / Height = 0
      Content Tab
      Source Type: System Variable
      Variable No.: 157
      Field_2:
      General Tab
      untick visible
      Left = 0 / Width = 0 / Top = 0 / Height = 0
      Content Tab
      Source Type: Formula
      Field_1 !='T'
      Field_3:
      General Tab
      untick visible
      Left = 0 / Width = 0 / Top = 0 / Height = 0
      Content Tab
      Source Type: Formula
      Field_1 =='T'
   Field_4:
   General Tab
   Link to: Field_2
   untick visible
   Left = 0 / Width = 0 / Top = 0 / Height = 0
   Content Tab
   Source Type: Formula
   LineNum()
   Field_5:
   General Tab
   Link to: Field_3
   untick visible
   Left = 0 / Width = 0 / Top = 0 / Height = 0
   Content Tab
   Source Type: Formula
   LineNum()
   Field_6:
   General Tab
   Link to: Field_3
   Left =  / Width =  / Top =  / Height =(Remain as it is)
    => place vertically below the top row in the Repetitive Area
   Format Tab
   Line Break: Divide into Rows
   tick Field Height Adjustment
   Content Tab
   Source Type: Database
   Table:  A/R Invoice - Rows
   Column: Text
I hope the above steps will solve your issue.
Regards,
Abhinav Banerjee
SAP Business One Forums Team

Similar Messages

  • PO closed, but item master record still shows on order

    SAP B1 8.8 SP00, PL 15
    In all my PO history, I have only ordered this item twice: one PO for 10,000 for WHS1 and one PO for 8,800 to WHS2. Both orders were over-received (10,222 and 8,890). They were copied to Goods Receipt PO and the POs were closed automatically. But when I look at the item master record, WHS1 still shows 10,000 still on order.
    How can this be and how can I clean up the whs record record?

    Hi Cindy,
    Sounds like a bug for me. Changing quantity in GR-PO won't and shouldn't broken the link between PO and GR-PO. Even if you change the item in GR-PO which resulted in broken link, your PO shouldn't altered into closed status.
    You explain that the status of PO closed, only 2 PO for this particular item and on order still 10,000, smells like a bug. IMO, make sure for the last time that you only have 2 PO and all PO status with this item already closed. If you already confirm this true, you need to escalate this matter to SAP and let SAP fix the database for you.
    Best Regards,
    Hendry Wijaya

  • How can we delete item master records in B1?

    Hi everyone,
    Can anyone tell me to how can we delete item master records in B1?
    Regards,
    Ronauk

    Hi Ronauk,
    Item Master Data --> Right click and Remove Items
    Before that check the items
    1.Item was '0' qty
    2.Item Master Data--Inventory Data-->Check all the warehouse-->Instock-->Commitment->Order Qty
    Removal items is fresh nothing problem for removing process.
    Is there any postings, the all related data's are abused.
    Regards,
    J.M.Halik

  • How to suppress the Print Dialog Box?

    Running an (ASP.NET /Crystal Reports 2008) application and using CrystalReportViewer control. Is there way to suppress the print dialog box when I click the print icon on the report tool bar?
    Edited by: juRamz on Aug 26, 2009 2:54 PM

    Hello,
    Sort of, CR needs the info. Only option is to create your own print button that has all the info filled in. It's a Windows Framework Common dialog box that CR calls so it's the OS that is prompting for the info.
    Using ReportClientDoc here's a possible solution, note that this too has a dialog box to select the printer:
    private void button1_Click(object sender, System.EventArgs e) // Print To Printer button
        System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();               
        PrintReportOptions rasPROpts = new CrystalDecisions.ReportAppServer.Controllers.PrintReportOptionsClass();
        CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions newOpts = new PrintOptionsClass();
        //CrystalDecisions.CrystalReports.Engine.PrintOptions newOpts = new PrintOptionsClass();
        pDoc.PrinterSettings.PrinterName = cboCurrentPrinters.Text;
        rasPROpts.PrinterName = cboCurrentPrinters.Text;
        rasPROpts.PaperSize = (CrPaperSizeEnum)
            pDoc.PrinterSettings.PaperSizes[cboCurrentPaperSizes.SelectedIndex].Kind;
        rasPROpts.PaperSource = (CrPaperSourceEnum)
            pDoc.PrinterSettings.PaperSources[cboDefaultPaperTrays.SelectedIndex].Kind;
        // new API added to allow changing printing options
        newOpts = new CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions();
        newOpts.DissociatePageSizeAndPrinterPaperSize = true;
        rptClientDoc.PrintOutputController.ModifyPageMargins(0, 0, 0, 0);
        rptClientDoc.PrintOutputController.PrintReport(rasPROpts);
        MessageBox.Show("Printing report.", "RAS", MessageBoxButtons.OK,MessageBoxIcon.Information );
    Thank you
    Don

  • Access the form of Item master

    I want to add a text box in the form of item master.Is it possible to access it thorugh .net. I access the newly created forms as,
    SBO_Application.Forms.ActiveForm

    Hi Dilip,
    The following code provide u an example for accessing system form.Try this Code:
    Public Class SystemForm
        '// At the begining of every UI API project we should first
        '// establish connection with a running SBO application.
        Private WithEvents SBO_Application As SAPbouiCOM.Application
        Private oOrderForm As SAPbouiCOM.Form
        Private oNewItem As SAPbouiCOM.Item
        Private oItem As SAPbouiCOM.Item
        Private oFolderItem As SAPbouiCOM.Folder
        Private oOptionBtn As SAPbouiCOM.OptionBtn
        Private oCheckBox As SAPbouiCOM.CheckBox
        Private i As Integer '// to be used as a counter
        Private Sub SetApplication()
            '// Use an SboGuiApi object to establish the connection
            '// with the application and return an initialized appliction object
            Dim SboGuiApi As SAPbouiCOM.SboGuiApi
            Dim sConnectionString As String
            SboGuiApi = New SAPbouiCOM.SboGuiApi()
            '// by following the steps specified above, the following
            '// statment should be suficient for either development or run mode
            sConnectionString = Command
            '// connect to a running SBO Application
            SboGuiApi.Connect(sConnectionString)
            '// get an initialized application object
            SBO_Application = SboGuiApi.GetApplication()
        End Sub
        Private Sub AddItemsToOrderForm()
            '// add a user data source
            '// bear in mind that every item must be connected to a data source
            oOrderForm.DataSources.UserDataSources.Add("OpBtnDS", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 1)
            oOrderForm.DataSources.UserDataSources.Add("CheckDS1", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 1)
            oOrderForm.DataSources.UserDataSources.Add("CheckDS2", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 1)
            oOrderForm.DataSources.UserDataSources.Add("CheckDS3", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 1)
            '// Adding Items to the Order form
            '// and setting their properties
            '// Adding Check Box items
            '// use an existing item to place youe item on the form
            oItem = oOrderForm.Items.Item("126")
            For i = 1 To 3
                oNewItem = oOrderForm.Items.Add("CheckBox" & i, SAPbouiCOM.BoFormItemTypes.it_CHECK_BOX)
                oNewItem.Left = oItem.Left
                oNewItem.Width = 100
                oNewItem.Top = oItem.Top + (i - 1) * 19
                oNewItem.Height = 19
                '// set the Item's Pane Level.
                '// this value will determine the Items visibility
                '// according to the Form's pane level
                oNewItem.FromPane = 5
                oNewItem.ToPane = 5
                oCheckBox = oNewItem.Specific
                '// set the caption
                oCheckBox.Caption = "Check Box" & i
                '// binding the Check box with a data source
                oCheckBox.DataBind.SetBound(True, "", "CheckDS" & i)
            Next i
            '// Adding Option button items
            '// use an existing item to place youe item on the form
            oItem = oOrderForm.Items.Item("44")
            For i = 1 To 3
                oNewItem = oOrderForm.Items.Add("OpBtn" & i, SAPbouiCOM.BoFormItemTypes.it_OPTION_BUTTON)
                oNewItem.Left = oItem.Left
                oNewItem.Width = 100
                oNewItem.Top = oItem.Top + (i - 1) * 19
                oNewItem.Height = 19
                '// set the Item's Pane Level.
                '// this value will determine the Items visibility
                '// according to the Form's pane level
                oNewItem.FromPane = 5
                oNewItem.ToPane = 5
                oOptionBtn = oNewItem.Specific
                '// set the caption
                oOptionBtn.Caption = "Option Button" & i
                If i > 1 Then
                    oOptionBtn.GroupWith("OpBtn" & i - 1)
                End If
                oOptionBtn.DataBind.SetBound(True, "", "OpBtnDS")
            Next i
        End Sub
        Public Sub New()
            MyBase.New()
            '// set SBO_Application with an initialized application object
            SetApplication()
            '// send an "hello world" message
            'SBO_Application.MessageBox("Hello World")
        End Sub
        Private Sub SBO_Application_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
            If ((pVal.FormType = 139 And pVal.EventType <> SAPbouiCOM.BoEventTypes.et_FORM_UNLOAD) And (pVal.Before_Action = True)) Then
                '// get the event sending form
                oOrderForm = SBO_Application.Forms.GetFormByTypeAndCount(pVal.FormType, pVal.FormTypeCount)
                If ((pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD) And (pVal.Before_Action = True)) Then
                    '// add a new folder item to the form
                    oNewItem = oOrderForm.Items.Add("UserFolder", SAPbouiCOM.BoFormItemTypes.it_FOLDER)
                    '// use an existing folder item for grouping and setting the
                    '// items properties (such as location properties)
                    '// use the 'Display Debug Information' option (under 'Tools')
                    '// in the application to acquire the UID of the desired folder
                    oItem = oOrderForm.Items.Item("138")
                    oNewItem.Top = oItem.Top
                    oNewItem.Height = oItem.Height
                    oNewItem.Width = oItem.Width
                    oNewItem.Left = oItem.Left + oItem.Width
                    oFolderItem = oNewItem.Specific
                    oFolderItem.Caption = "User Folder"
                    '// group the folder with the desired folder item
                    oFolderItem.GroupWith("138")
                    '// add your own items to the form
                    AddItemsToOrderForm()
                    oOrderForm.PaneLevel = 1
                End If
                'If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK And pVal.Before_Action = True Then
                'oOrderForm.PaneLevel = 5
                'End If
                If pVal.ItemUID = "UserFolder" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED And pVal.Before_Action = True Then
                    '// when the new folder is clicked change the form's pane level
                    '// by doing so your items will apear on the new folder
                    '// assuming they were placed correctly and their pane level
                    '// was also set accordingly
                    oOrderForm.PaneLevel = 5
                End If
            End If
        End Sub
        Private Sub SBO_Application_AppEvent(ByVal EventType As SAPbouiCOM.BoAppEventTypes)
            Select Case EventType
                Case SAPbouiCOM.BoAppEventTypes.aet_ShutDown
                    '// Take care of terminating your AddOn application
                    SBO_Application.MessageBox("A Shut Down Event has been caught" & _
                        vbNewLine & "Terminating 'Order Form Manipulation' Add On...")
                    End
            End Select
        End Sub
    End Class
    Regards
    Mohana

  • Restrict the creation of customer master records at sales area level

    I know that you can supress fields at the company code and sales area level in customer master, but, is there a way in configuration to restrict the creation of a customer master record at the company code and sales area levels?  Only the general data level is needed for this customer account group. 
    Any help would be greatly appreciated!!

    Hi
    Create the Customer Master without entering the Company Code and sales Area. The system will allow and ask you to fill only the General Data.
    The other way is that Create a Account Group and suppress its all Fields of Accounting View and Sales Area View, so that for that account group you will have to maitain only the General view.
    Regards
    Amitesh Anand

  • How to include the UDF of items master data into PLD (Inventory in Warehouse Report (Detailed))

    Hi,
    Is there a way to include the UDF in the items master data into the <<Inventory In Warehouse Report (Detailed)>> PLD?
    I checked the default layout and found out all the column source type is "free text" and the content is #Item, how do I know the value of the UDF?
    Thanks

    Hi,
    Some of the standard reports are hardcoded in sap. Not possible to add UDF field in PLD.
    Also refer this thread Variables -  Sap business one
    Thanks & Regards,
    Nagarajan

  • How to suppress the Print Popup in the output ..Please Help Me.

    Hi All,
    <b>My customization is going in Adobe forms.</b>
    when i execute the print program,i am getting  the print popup and asking to enter Output Device.But i don't want to display this <b>Print Popup</B> .How to supress this .i want  to get direct print preview without asking Output Device.
    Please help me.
    I APPRICIATE(REWARD) IF ANY ONE HELPS ME...
    regards,
    Suresh.

    Hi
    See this sample code
    SAMPLE CODE FOR PRINTING
    data: carr_id type sbook-carrid,
    cparam type ssfctrlop,
    outop type ssfcompop,
    fm_name type rs38l_fnam.
    DATA: tab_otf_data TYPE ssfcrescl,
    pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE,
    tab_otf_final TYPE itcoo OCCURS 0 WITH HEADER LINE,
    file_size TYPE i,
    bin_filesize TYPE i,
    FILE_NAME type string,
    File_path type string,
    FULL_PATH type string.
    parameter: p_custid type scustom-id default 1.
    select-options: s_carrid for carr_id default 'LH' to 'LH'.
    parameter: p_form type tdsfname default 'ZAMIT_SMART_FORM'.
    data: customer type scustom,
    bookings type ty_bookings,
    connections type ty_connections.
    start-of-selection.
    <b>************ suppressing the dialog box for print preview*****
    outop-tddest = 'LP01'.
    cparam-no_dialog = 'X'.
    cparam-preview = SPACE.
    cparam-getotf = 'X'.</b>
    select single * from scustom into customer where id = p_custid.
    check sy-subrc = 0.
    select * from sbook into table bookings
    where customid = p_custid
    and carrid in s_carrid
    order by primary key.
    select * from spfli into table connections
    for all entries in bookings
    where carrid = bookings-carrid
    and connid = bookings-connid
    order by primary key.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting formname = p_form
    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_parameters =
    control_parameters = cparam
    mail_appl_obj =
    mail_recipient =
    mail_sender =
    output_options = outop
    user_settings = SPACE
    bookings = bookings
    customer = customer
    connections = connections
    importing
    document_output_info =
    job_output_info = tab_otf_data
    job_output_options =
    exceptions formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    others = 5.
    if sy-subrc <> 0.
    error handling
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    endif.
    tab_otf_final[] = tab_otf_data-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 132
    ARCHIVE_INDEX = ' '
    COPYNUMBER = 0
    ASCII_BIDI_VIS2LOG = ' '
    IMPORTING
    bin_filesize = bin_filesize
    BIN_FILE =
    TABLES
    otf = tab_otf_final
    lines = pdf_tab
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    err_bad_otf = 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.
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
    EXPORTING
    WINDOW_TITLE =
    DEFAULT_EXTENSION =
    DEFAULT_FILE_NAME =
    FILE_FILTER =
    INITIAL_DIRECTORY =
    WITH_ENCODING =
    PROMPT_ON_OVERWRITE = 'X'
    CHANGING
    filename = FILE_NAME
    path = FILE_PATH
    fullpath = FULL_PATH
    USER_ACTION =
    FILE_ENCODING =
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2
    NOT_SUPPORTED_BY_GUI = 3
    others = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ************downloading the converted PDF data to your local PC*******
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    bin_filesize = bin_filesize
    filename = FULL_PATH
    filetype = 'BIN'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = ' '
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    CONFIRM_OVERWRITE = ' '
    NO_AUTH_CHECK = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    WRITE_BOM = ' '
    TRUNC_TRAILING_BLANKS_EOL = 'X'
    IMPORTING
    filelength = file_size
    TABLES
    data_tab = pdf_tab
    FIELDNAMES =
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3
    invalid_type = 4
    no_authority = 5
    unknown_error = 6
    header_not_allowed = 7
    separator_not_allowed = 8
    filesize_not_allowed = 9
    header_too_long = 10
    dp_error_create = 11
    dp_error_send = 12
    dp_error_write = 13
    unknown_dp_error = 14
    access_denied = 15
    dp_out_of_memory = 16
    disk_full = 17
    dp_timeout = 18
    file_not_found = 19
    dataprovider_exception = 20
    control_flush_error = 21
    OTHERS = 22
    IF sy-subrc <> 0.
    ENDIF.
    Regards
    Anji

  • Can I suppress the print immediately flag?

    I have a smartform that I am calling with the tdimmed set to spaces - so that it does not print immediately. I would like to remove that flag entirely from the dialogue, but I DO need to call the dialogue (I need to be able to do a preview).
    Is there any way to suppress the flag on the dialogue so that the users are not able to set it?

    Hi,
    1.In output parameters ,you can Set  this check box.Itcpp-tddimm-->print immediately.
    2.Totally,you cannot suppress this.
    Regards,
    Shiva Kumar

  • Suppress the Print dialog box in Air /Flex

    Hello,
    I am trying to print the pdf files(which is located in my system) directly in the printer without showing print dialog box .
    I tried to print the screen without displaying print dialog box using flash.printJob.start2().
    but am not able to print pdf files in the printer its printing dark screen only also it just printing the UIcomponent size only. its not printing all d pages available inside pdf file.
    Can you please help me to resolve this issue.

    Hi
    I tried to open a new bug report , that screen itself not displaying properly and I couldnt able to enter any comments there ,I can see only the option buttons.
    and I am trying to print the documents which is having mutiple pages using flash printJob . the following code I have used . here i am trying to Print Textfield .
    Could you please me how can I add document/pdf file/text file instead of TextField.
    va txt:TextField = new TextField();
    txt.text = "Hello Test" ;
    var sheet:Sprite = new Sprite();
    sheet.addChile(txt);
    and in printing
    If(PrintJob.start2(null,false))
    PrintJob.addPage(sheet);
    PrintJob.send();

  • Need to know the details on the change logs on the invoice output condition master records

    All,
    Recently, there seems to be a change made in VV32 transaction for Billingoutput types with regard to printer device names,
    I am unable to track down these changes. NACH provides information about created by & created on information, but i am not able to track the changes that were made against output condition records, is there any ways of identifying such changes using easier methods or even through CDHDR/ CDPOS tables.
    I tried executing CDPOS, but unable to proceed as i was not sure / do not know the ways of entries that i need to provide in CDHDR / CDPOS tables for my scenario.
    Can some one please help. Thanks in Advance.
    Regards
    Ilango

    Hi Ilango,
    if you don't activated the change logs, you just can find the chances made by identify the last two transports. So you need to go the way you started. Unfortunaly it could be, that you can't find the old settings anyway because there might be a * in...
    I know an easier way to find the old values.
    You can talk to your basis-guys if they got an older backup available and can backup it in an extra system. But that includes some extra work and the additional host.
    ~Florian

  • Is it possible to suppress the print dialog in Forms

    Hello,
    I would like to know if anybody here has some experience with printing from
    Forms.
    In my case, I want to give a Forms user opportunity to make a hardcopy
    e.g. to document Forms errors, to have a feedback for further development.
    I have a button that invokes PRINT; when it is pressed, several Dialogs
    appear:
    "page setup -> print -> do not move until print was made and so on...
    How could this be suppressed, so if a printer is defined, then
    pushing PRINT would just do that.
    Any tips are appreciated. ThanX in advance.
    Jan=)
    BTW: we still use Forms 5 , unfortunately.

    Nope.

  • Problem with the creation of asset master record

    Hi Gurus,
    i am having problem in creation of a new asset master with the use of existing man asset number and different asset sub number. I am trying to create the asset in the same company code but different depriciation area, but the system is not allowing me to do that. Is there a setting in the SPRO by which I can allow the use of creation of the asset number by using the already existing asset number with the new asset sub number. This is actually happening in the system for one type of equipments but not for other.
    Can any one tell me what settings are to be made to allow this for all containers.
    Thanks in advance
    Anoop Sharma

    Hi,
    A sub asset master can be created with AS11 only.
    You cannot create a asset sub number under a main asset number, in the case, where different set of dep areas needs to be maintained.
    When you create a sub asset, all the dep areas will be copied to sub asset's master from main asset master. Since this set of dep areas cannot be different from main asset to sub asset.
    Hopw you understood this.
    Thanks,
    Srinu.

  • Fms on item master record

    hi,
    i want to get item location info from oitw, udf field and set it in oitm table to use in pld for stockinventory list
    i use this fms, but is not working
    SELECT u_bl_location from oitw where itemcode = $[$5.0.1] and whscode = '01'
    and autorefresh on itemnumber
    can somebody help me?
    thx mark

    Hi Mark....
    Try this.....
    SELECT T0.U_bl_location FROM OITW T0 WHERE T0.[ItemCode] =$[OITM.ItemCode.0] And T0.[WhsCode]='01'
    Hope this works for you...
    Regards,
    Rahul

  • How to change the field sequence in Customer master record.

    Dear Friends,
    We are required to chage the sequence of customer master record fields that are available under different tabs of 'General Data', 'Company Code Data' and Sales Area Data.
    Our client requirement is to place all mandatory fields in the first screen of customer master record. Here the intention is to save the user time instead going and clicking multiple tabs/screens to fill information on only one or two tabs. Please suggest us the availabe solution in SAP for this requirement.
    Thank you
    Raghu Ram.

    Hi
    Step 1: Take help of a FI guy and:
    The fields can be suppressed by configuring through Financial accounting > Business Partners > Customers > Account groups.
    Step2 : The challenge inyou project is to have a single tab with the allowed fields
    A technical guy can only help you out on this . Again This would be a huge effort since first you need to change the code for customer master. As customer master is a source of data for various documents in SD , at each place you will have to do changes in th code...I don't think it is feasible.
    Instead of doing this , create an external interface for transferring the value to SAP through BAPI. this would involve integration and may be as per defined SAP standards you can use CSV files or XML files for the integration process.
    This would be a better option than fiddling with SAP system
    Regards
    Nikhil

Maybe you are looking for

  • External drive crash, disk utility unable to repair

    I have a 250GB LaCie external disk. I use it to store files that I use with Final Cut. Unfortunately I had a Final Cut crash while the disk was running (or maybe it was the external disk that crashed). This has caused my disk to cease operation. Mac

  • Should I install 5.0.1 on iPhone 3?

    I have an old iPhone 3, currently running 4.3.5. When I sync it to my computer iTunes suggests I upgrade to 5.0.1. Is this a good or bad idea? In other news, my phone is becoming increasingly slow and feeble, really not sure why. But apps take foreve

  • .htaccess support in DW9

    Hi Adobe, If you're monitoring these channels, please include editing support for .htaccess files in Dreamweaver 9. I'm sure there are plenty of people developing on Apache webservers who would love to make a quick edit from the Files panel without h

  • How to improve the query

    Guys, I have the following query which seem to take quite a lot of time. About 7 hours It is spending significant amount of time on doing the max(dt), as the table has about a million records. Any know a better way of writing this query ? SELECT   AB

  • Pre-order arrival date

    If I pre-order on the Verizon website is it possible to pick up my iphone in the store on the 14th???? If I do preorder on the 7th and choose to have it shipped any guess on the arrival date? Will it ship on the 14th or arrive on the 14th?