Include the COPY TO Option in User Define form

Hi Experts
How can we include the COPY TO Option in User Define form
Thanks In Advance
A S VAMSI KRISHNA

Hi,
In SAP B1 i think there is no default functionality  for copy to in user defined form. As Parminder said you can use the control button combo and write your own method for populating  data.
Regards
Arun

Similar Messages

  • How to include the insert picture option in the PDF form?

    Hi, Can some one please help How to include the insert picture option in the PDF form? I am using acrobat XI pro and trying to use an evaluation form which requires to insert product pictures.

    Here's a link to a previous topic where this was discussed: http://forums.adobe.com/message/6050458

  • Item - The item is not a user-defined item

    I have added a user defined field in Marketing Documents -> Title.In short I have added a user defined field at the header level.I have used this field for certain calculations while adding inventory transfer.I have created a combo for this field and added values as,
    Private Sub AddSeries()
            Dim ddlSeries As SAPbouiCOM.ComboBox
            Dim objDTSeries As New DataTable
            Dim intI As Integer
            Try
                objForm = SBO_Application.Forms.GetForm("-940", 1)
                ddlSeries = objForm.Items.Item("U_ProdSeries").Specific
                strQuery = "Select Series,SeriesName FROM NNM1 WHERE ObjectCode=13"
                objDTSeries = GetData(strQuery)
                If objDTSeries.Rows.Count > 0 And ddlSeries.ValidValues.Count = 1 Then
                    For intI = 0 To objDTSeries.Rows.Count - 1
                        ddlSeries.ValidValues.Add(objDTSeries.Rows(intI).Item("Series"), objDTSeries.Rows(intI).Item("SeriesName"))
                    Next
                End If
            Catch ex As Exception
                SBO_Application.MessageBox("AddSeries()=" & ex.Message)
            End Try
        End Sub
    Also,I want to clear the combo for certain condition.For clearing the combo I have used the code as,
    Private Sub DeleteSeries()
            Dim ddlSeries As SAPbouiCOM.ComboBox
            Dim intI As Integer
            Try
                objForm = SBO_Application.Forms.GetForm("-940", 1)
                ddlSeries = objForm.Items.Item("U_ProdSeries").Specific
                While ddlSeries.ValidValues.Count > 0
                    ddlSeries.ValidValues.Remove(0, SAPbouiCOM.BoSearchKey.psk_Index)
                End While
            Catch ex As Exception
                SBO_Application.MessageBox("DeleteSeries()=" & ex.Message)
            End Try
        End Sub
    While Removing the value it gives error as,
    Item - The item is not a user-defined item

    Hello dilip
    try this code .i hope yure problem may be solved
    Private Sub AddSeries()
            Dim ddlSeries As SAPbouiCOM.ComboBox
            Dim objDTSeries As New DataTable
            Dim intI As Integer
            Dim oItem As SAPbouiCOM.Item
            Dim Rs As SAPbobsCOM.Recordset
            Try
                objForm = SBO_Application.Forms.GetForm("-940", 1)
                Rs = objMain.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                oItem = objForm.Items.Item("ITEM ID").Specific
                ddlSeries = oItem.Specific
                strQuery = "Select Series,SeriesName FROM NNM1 WHERE ObjectCode=13"
                Rs.DoQuery(strQuery)
                Rs.MoveFirst()
                For k As Integer = ddlSeries.ValidValues.Count - 1 To 0 Step -1
                    ddlSeries.ValidValues.Remove(k, SAPbouiCOM.BoSearchKey.psk_Index)
                Next
                If (ddlSeries.ValidValues.Count >= 0) Then
                    While Rs.EoF = False
                        ddlSeries.ValidValues.Add(Rs.Fields.Item("Series").Value, Rs.Fields.Item("SeriesName").Value)
                        Rs.MoveNext()
                    End While
                End If
            Catch ex As Exception
                SBO_Application.MessageBox("AddSeries()=" & ex.Message)
            End Try
        End Sub

  • Error erase Queries in Query Manager- The query is used with user-define...

    Hello Experts
    I have deleted a User Field that had a Formatted Search and now I can not remove it because it is linked according to a UF, the error message is as follows:
    "The query is used with user-defined values [Message 952-23]"
    There will be a way to resolve this issue???
    Thanks in advance

    Hi Juan,
    I have tried this very limited, but the formid, is this a number in your case?
    SELECT * from cshs t0 inner join ouqr t1 on t0.queryid = t1.intrnalkey
    where t1.qname = '[%0]'
    Running this query I can get the form id that I need to recreate, but I have a feeling you already know the form id, is this correct?
    - Is there an error when you try to recreate the form id?
    - Will it not let you recreate the same form id because the id is given by the system?
    If it is not possible to recreate the form id, please prepare a backup and log a message. Support should be able to correct the entry in table cshs.
    Hope it helps.
    Jesper

  • To copy an arrangement section - verse, chorus etc - I click the verse or chorus I want to copy/move in the arrangement line. But when I open edit the copy/cut options are gray and won't let me do it. Same w/command 'C'

    To copy an arrangement section - verse, chorus etc - I click the verse or chorus I want to copy/move in the arrangement line. But when I open the edit tab the copy/cut options are gray and won't let me do it. Same w/command 'C' and 'V'.
    Also, how do I send a song from my MacBook GB to my iPad GB so I can utilize the Smart Instruments in my song.

    Use the alt key to create a copy of an Arrange section by dragging it.

  • Why isn't the Copy CSS option displaying?

    I'm a Creative Cloud member, downloaded Photoshop from the Apps and Services page, and have downloaded all the available updates. I still can't see the Copy CSS option when I right click on a layer. What am I missing/doing wrong. Seriously, this one option is the only thing I need.
    Muchas gracias!

    Does the layer contain the necessary properties/styles?
    Check this short video:
    http://www.youtube.com/watch?v=J0J9mz8qpK0

  • Base Document and Target Document Menu for User Defined Forms

    Hi Experts,
    I am facing a problem regarding enabling the menu "Base Document" Menu UID="5898" and "Target Document" Menu UID="5899" . Both of these menu Items are not enabled for User Defined Form .Actually I have developed a user Defined form for Purchase Requisition that targets Purchase Order . User can Copy Line Items From Purchase Requisition to Purchase Order and I am tracking the DocEntry and LineId of PR into PO Item's using UDS . I want to Open this PR Document upon Click of BaseDocument Menu .I have tried all the options. I have used Form.enableMenu() method also . But none of those options work for this menu . I ahve also searched about this problem i this forum also but there is no soultion so far posted regarding this.
    I really want to confirm whether it is possible or not using SDK for User Defined Forms . Is there any possiblity of implementing any WorkArounds and Having this feature implemented .
    I am Expecting a true solutions as this Forum has so many Experienced Experts .
    Thanks and Regards,
    Pooja Singh.

    Hello Poja,
    It is not possible, because the requested menus are depending on the forms, and the are not exists,
    WorkAround:
    add the menus to the User Defined forms, and use right click to activate them:
    oForm.Menu.Add("5898", "Base Document", BoMenuType.mt_STRING, oForm.Menu.Count)
    oForm.EnableMenu("5898", True)
    And hanle the menu event when you clicked them and the form is your custom form.
    Regards,
    János

  • Opening a Crystal Report in B1 8.8 in a User Defined Form representing UDO

    Hi Experts,
    Is it possible to open a Crystal Report from a User Defined Form representing my UDO?
    I had developed a 'Vendor Quotation' UDO and its  User Defined Form
    I wanted to show the report while clicking the Preview menu in SAP B1 8.8 toolbar.
    I have created the Crystal report and used the record selection as {@OVQT.DocEntry} = {DocKey@}
    Please help
    Also, is it possible to add Print layout and assign a default Print layout to this User Defined Form?
    Thanks in advance
    Regards
    Arun

    Hi,
    I also face the same problem. I make a master type using UDO. But i want to print it.
    In my opinion ( i haven't tried this way ). If we make a UDO ( master or document type ) , we will find the docentry and object field in our UDT. Both of these will connect between SAP form and Crystal report. In crystal report we select the tmsp_doclinetypelayout. It is a store procedure which will connect between SAP form and CR. Before that try to modify this SP by adding the udo object.
    Fyi, if i'm not mistake dockey is connected to docentry SAP form.
    Thanks
    regards
    bodhi86

  • User Defined Form problem...

    Hi,
    I have the Item Master Data form opened with the User Defined Form opened.
    Now the Form has the focus and I'm trying to get an User Defined Item control on the User Defined Form
    but it says Form not found and I did try to select it or to use the GetForm with the "-" + TypeEx of the current form but nothing seems to work.
    Any idea how I can switch from the form to the User Defined Form on which I need to get the control ?
    I havfe to mention that I'm trying it on a second opened Item Master Data form so the FormTypeCount = 2  Could it be a BUG ?
    Edited by: Marc Roussel on May 28, 2009 4:20 PM

    if (mo.ItemUID.IndexOf("U_") != -1)
        oCurrentForm.PaneLevel = 1; // I tought this could help since the UDF form has a pane level of 1 but it does nothing.
        oCurrentForm = _SBOApplication.Forms.GetForm("-" + FormType.ToString(), FormTypeCount);
        // I get a Form not found here............ HUH WHY ??????? It's there and visible.  I DON'T UNDERSTAND...
        // and FormType is really "150" which is the actual form opened......

  • Give authorisation To User defined form

    How to give authorisation to User defined form
    Regards,
    Pravin

    hi,
    After you have created the additional Authorization in Additional Authorization Creator window you still need to define the authorization in the Authorization Window located at Administration -->> System Initialization -->> Authorizations -->> General Authorizations. then select your desired user and assign your desired Authorization.
    regards,
    Fidel

  • Type property for user defined forms

    Hi,
    When creating a user defined form using Screen Painter,
    how can we assign Type property for the form so that we are sure it will not clash with system forms in the future?
    Thanks,
    Satish.

    Thanks Juli
    Just one last question. It it be alright to assign a text value(Partner namespace in front) for the form type property.Does it have any drawbacks?
    Thanks,
    Satish

  • Regarding query generation to user defined forms

    Hi all,
    i had created user defined form with some fields and tables
    tables in the sense matrix
    i had entered the data in that table
    and added that data
    after that i came back to that form and used the fields that are below the table to calucalate the maximum and minimum from the columns of matrix
    so to get the data of that particular form only i used the $ command to extract data depending on the report number
    but iam unable to get the result
    any one help me regarding this
    it is required urgent
    Thanks And Regards
    sravanth.sm

    Sravanth,
    Let's see if I can help you.
    Assume your form's title table is called @TITLE and the matrix table is called @ROWS. In the form's title you have the record key DocEntry. In the Matrix you have a column COLUMN from were you are going to get some value. ok?
    Maximum of the column
    SELECT Max(T0.COLUMN) FROM [dbo].[@ROWS] T0 WHERE T0.DocEntry=$[@TITLE.DocEntry]
    To get the minimum, just use the Min() function.
    Regards,
    Vítor Vieira

  • SQL Query for user defined form

    Hi experts,
    I want query to update some fields in my user defined form using stored procedure on clicking of ADD button.
    Explanation:
    I have User Defined form call "DC request" with Object 'DCLM'..On click of Add button, it is saving my record info into the form. But in one field if value in not entered then it is saving as 'Null'.
    Addon is already made, can not change in coding.
    I want to update this field with '0' value through query in stored procedure on click of Add Button. Can anyone help me out to achieve this.
    Thanks

    Hi Team Bone.
    Please try below Transaction Notification which will Restrict User to ADD if Field_Name is NULL and then User Need to Enter ZERO i.e. 0 for Adding.
    IF @OBJECT_TYPE = 'DCLM' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U')
    BEGIN
    If Exists (Select T0.DocEntry from [Table_Name] T0 Where ( T0.Field_Name is null  OR  T0.Field_Name = ' ' ) AND T0.DocEntry  = @lisT_of_cols_val_Tab_del )
    begin
    SET @error = -100000
    SET @error_message = 'Filed_Name is NULL then So, Please enter ZERO Value i.e. 0 in Filed_Name'
    End
    End
    Please change Table_Name and Field_Name with with UDO field.
    Hope this help
    Regards::::
    Atul Chakraborty

  • Problem When Try to add Master data record for User define form

    Hi,
    I have made one user define form. And assign UDO and fields proerly in form.
    But when I try to add the record from the form it will give me error
    Invalid Code [Operation Master  -Code] [Message 173-36]
    I have already bind the code field of the table to one field in the screen painter.
    Please give me the reply.
    Regards,
    Gunjan Shukla.

    Dear Shukla
    Can you please try to do the binding in the code (after loading the from).
    Doing that, do you still have the problem?
    Best regards,
    Miki

  • I can't copy and paste text into photoshop because the copy paste option is acting up

    Let me explain. I found some text on a website I wanted to us for my project so I copied it into a text box that I made in photoshop. I edited the text to my liking and then hilighted the entire text. When I go to copy the text by right clicking and then clicking on copy it just pastes the original text from the website I got it from instead of copying the edited text. I even tried ctrl+ C and it still pasted the original text not copy the one I edited. Last resort- I re-edited my text and go to edit and click copy. Still no fix it just pastes the original text. For some reason photoshop is thinking that the copy option is a paste option. I have no idea why this is or how to fix this. This was not happening about an hour ago so I have no idea why this is happening. I even tried restarting my laptop and I even tried a test in a completely new photoshop document and it still does this. How do I fix this? I have photoshop CS4 currently installed. Help is appreciated.

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • Code ran fine in Eclipse, no output as a Jar file..help!

    I have been working on a piece of code that reads an excel spreadsheet, and writes xml files based on that. (I'm to cheap to buy the numerous software out there) The code ran beautifully in Eclipse, and all the right dialog windows and console output

  • Saving a file from a website to the local drive

    From New To Java thread - nobody knew the answer, i guess! :( Hi people, I have a number of URLs at hand that point to certain class files, e.g. http://www.mywebsite.com/classes/MyClass.class What i would like to do is to download MyClass.class into

  • Loading Photos-won't complete

    iPhoto won't load photos while attempting to open program. I loaded about 150 pics today from Koday EasyShare program. I also had a "iPhoto crash" today while attempting to share these photos. Since then, I've loaded iLife 05 and upgraded iPhoto, but

  • Temporary Files  delete problems

    thanks , I can't delete the Temporary Files this is the code: //at my servlet .............File tmpFile = File.createTempFile("000000book", ".pdf");String path = tmpFile.getAbsolutePath();tmpFile.deleteOnExit();path = path.replace('\\', '/');session.

  • Passing in parameters to Data Instance

    Hi I read in OSM 7.2 Release Notes on vf:instance : You can now add explicit parameter values from within an XQuery or XPath that augment or override the parameters defined in the OSM data dictionary using vf:instance() My question is, how do I make