TEM - SAP Forms

In order to use the Correspondence option, I understand that apart from running the Correspondence Wizard, we need to modify Forms also. Is there some reference material available which would help working with Forms. How important is knowledge of SAP Script, in order to make necessary changes in these Forms...

Hello Sasidhar,
I got the same issue. did you find something in the standard ?

Similar Messages

  • How to get an user field in a sap form

    SBO2004
    I'm trying to get an user field in a sap form(651).
    My code is:
    Dim FrmT As SAPbouiCOM.Form
    Dim Itm As SAPbouiCOM.Item
    FrmT = GestorSAP.SBO_Application.Forms.GetForm("651", 1)
    If (Not FrmT Is Nothing) Then       
       Itm = FrmT.Items.Item("U_Project")
    End If
    Frmt is not nothing, but itm is ever nothing and gives me an exception(item not valid). If i go to sap and look at this form, with debugging info activated, i see:
    Form=651 Itm=U_Project Variable=1 OCLG,U_Project
    What am i ding wrong?

    Hi Miguel Angel.
    Try with form "-651".
    UDF form is the negative sap form.
    HTH
    Juli
    P.S:I'm not sure your code works, I never work with GetForm method, but yes with UDF form

  • Printing in Hindi on SAP Form

    Hi Guru's,
    I have requirement to print some hindi text in SAP Form , please advise how to do that. I have gone through several posts which were posted for the same requirement but somehow don't see any concrete solution on it.
    As hindi language is not available in SAP, Is it possible to print in Hindi on SAP Forms by uploading hindi fornt !! I need to print both variable and constant values.
    Please advise.
    Regards,
    Anoop

    check this sap note 895560

  • How to draw line on SAP form

    Hi everyone,
    Who have a good way to draw lines on SAP form?
    I created a Wizard form, and use Rectangle (Height=0) as the two lines between title and bottom button, but I met a problem, when show another form which cover the line, after close this form, some part of lines disappear, I have tried using SAP form refresh, it still can not restore showing line completely, who have good way to workaround the problem or give me another way to draw line.
    Thanks in advance!
    Kathy

    The only way I found to get a form looking really close to a standard B1 Wizard form is to use bitmaps.  I use 3 - one each for the top, bottom and left hand side.  The bitmaps include the line drawing and appropriate pictures/background colours.  I normally define these in the XML used to create the form as in the following example:-
    <item uid="PTOP" type="117" left="0" width="566" top="0" height="80" visible="1" enabled="1" from_pane="0" to_pane="0">
            <AutoManagedAttribute/>
            <specific picture="AZU_SPC_WIZ_TOP2.bmp">
                    <databind databound="0" table="" alias=""/>
            </specific>
    </item>
    <item uid="PBOT" type="117" left="0" width="566" top="336" height="40" visible="1" enabled="1" from_pane="0" to_pane="0">
            <AutoManagedAttribute/>
            <specific picture="AZU_SPC_WIZ_BOT.bmp">
                    <databind databound="0" table="" alias=""/>
            </specific>
    </item>
    <item uid="PLEFT" type="117" left="0" width="100" top="0" height="336" visible="1" enabled="1" from_pane="1" to_pane="1">
            <AutoManagedAttribute/>
            <specific picture="AZU_SPC_WIZ9.bmp">
                    <databind databound="0" table="" alias=""/>
            </specific>
    </item>
    John.

  • Problem with designing a table in sap form

    Hello Gurus, i am trying to modify a sap form, i have to add to the table in the main window a new column. In the second column i have a description text Char lenght 45, the problem is that the rest of the columns after the second column get disorded, i tryed to use CONDENSE on the text variable but it won`t help. I need to line up the rest of the columns. Please help !

    Hi Ioan,
    You will see ",," between each column. These represent a tab and are defined in the paragraph definition. Probably you new column is too wide to fit into two tabs. So go to the definition of the paragraph and adjust the tab settings.
    Regards,
    John.

  • Crystal Report Viewer ActivX Control into an SAP Form

    Hi
    I need to show an Crystal Report Viewer in a SAP form This code show an blanck from.
    I know that only ATL activX are supported by SB1, but I don’t have more information about the Crystal ActivX.
    Dim oFormTST As SAPbouiCOM.Form
    Dim oCreatP As SAPbouiCOM.FormCreationParams
    oCreatP = oApp.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
    oCreatP.UniqueID = "TEST"
    oCreatP.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Sizable
    oCreatP.FormType = "TESTFtype"
    oFormTST = oApp.Forms.AddEx(oCreatP)
    Dim oItemX As SAPbouiCOM.Item
    Dim oActivX As SAPbouiCOM.ActiveX
    oFormTST.Height = 400
    oFormTST.Width = 400
    oItemX = oFormTST.Items.Add("TEST01", SAPbouiCOM.BoFormItemTypes.it_ACTIVE_X)
    oActivX = oItemX.Specific
    oActivX.ClassID = "CrystalReports11.CrystalReportViewer.1"
    Dim oRep As CrystalDecisions.Windows.Forms.CrystalReportViewer
    oRep = oActivX.Object
    oRep.ReportSource = "E:\DevLoc\App\bin\FICHETECH.rpt"
    oItemX.Height = oFormTST.Height
    oItemX.Width = oFormTST.Width
    oFormTST.Visible = True
    Some one as an idea ?
    Thks

    Vishal,
    I would like to let you know of an SBO addon that we have created called CrystalWave. This addon integrates Crystal reports with B1. This might save you a some time trying to recreate the wheel. Please take a look at the following link:
    http://www.twbs.com/CrystalWave.html
    YOu can download a fully functional copy at http://www.twbs.com/selectcwversion.html
    This will work only on the SBODEMO_US company.
    Let me know if you have any questions.
    Gopal Viswanathan

  • Crystal Report Viewer Control on SAP Form?

    We are using Crystal Report XI to create custom SAP reports.  We have integrated this into our Add-On by adding the Report Viewer Control to a Windows form and setting it's report source at runtime.  This works ok but is a bit cludgy looking and causes some focus and redraw problems with SAP.  I have tried for weeks to figure out how to get the ActiveX control onto an SAP form but with no luck.
    Here is my code sample:
    SAPbouiCOM.Item oItemX;
    SAPbouiCOM.ActiveX oActX;
    CrystalDecisions.Windows.Forms.CrystalReportViewer oCRX;
    oItemX = this.sboForm.Items.Add("U_CRCtl", SAPbouiCOM.BoFormItemTypes.it_ACTIVE_X);
    oItemX.Left = 0;
    oItemX.Top = 0;
    oItemX.Height = this.sboForm.Height;
    oItemX.Width = this.sboForm.Width;
    oActX = (SAPbouiCOM.ActiveX) oItemX.Specific;
    oActX.ClassID = "{5E093535-5A5D-4E72-ACCD-F10B6D065BC9}";
    oCRX = (CrystalDecisions.Windows.Forms.CrystalReportViewer) oActX.Object;
    oCRX.ReportSource = @"c:\Test\Test.rpt";
    I am not sure why this will not work.  I always get either 'Specified cast is not valid' or 'Invalid Class ID'.  If anyone has done this successfully or has any suggestions that would be great!  Thanks for your help!
    David

    Hi Ibai,
       Thank you for your interest in CrystalWave. I tried sending this info to the email address you gave but got an undeliverable message.
    The links are as follows:
    (please use Internet Explorer while accessing the download link)
    1. CrystalWave info: http://www.twbs.com/CrystalWave.html
    2. CrystalWave download: http://www.twbs.com/cwrfiv2004.asp (You need to fill in your info and the download will start.)
    Please do let me know if you are not able to access these links and I can setup a temporary link for you to download the program.
    Thanks,
    Gopal Viswanathan

  • How to call existing sap form

    Hi All,
    I have created one addon for MRP in this addon when client click on menu i have to display "Order recomandation"  form which will dispaly in existing MRP functions.
    How to display existing sap form in our menuclick. please help me as soon as possible.
    Regards,
    sri

    Hi Sri,
    This related to SDK so post this thread on SAP Business One SDK. You will get solution asap.
    Thanks
    Sachin

  • How to make changes in Existing SAP form

    How I can make changes in existing SAP form . I want to make changes in delivery form <b>matrix row enable or disable</b>

    Hi Sagar,
       If you want to disable a row, you can close that row using DIAPI.
    HTH
    B.Ravi Shankar
    null

  • How to display existing sap form in our menuclick

    Hi All,
    I have created one addon for MRP in this addon when client click on menu i have to display "Order recomandation" form which will dispaly in existing MRP functions.
    How to display existing sap form in our menuclick. please help me as soon as possible.
    Regards,
    sri

    Thanks Teun,
    Thanks for giving reply.
    i am not getting any ActivateMenuItem method in menuclick event
    But here i am addding one menu item from my addon when i click on my menu 20.2.orderrecomnds i have to populate same screen which is coming in mrp order recomonds which form id is 65215
    if ((pVal.MenuUID == "Submenuordrecom") & (pVal.BeforeAction == false))
    // code
    in above menu click event i have to populate order recomonds screen so how to do that.
    Regards,
    sri
    Edited by: dns_sap on Jul 28, 2010 12:09 PM

  • User Specific Items Visibility in all SAP Forms

    Hi Experts,
    Greetings Of The Day!!!!
    I have a requirement where i need to show the item master list according to the user on all sap forms.
    For example GRPO :Some specific groups of items should be shown in CFL of item according to the user currently logged in in the system.
    How can we manage this in SAP?
    Thanks
    Amit

    hi Amit,
    your requirement requires SDK since SBO standard authorization is in Form Level.
    regards,
    Fidel

  • 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

  • SAP Forms : table cut short when too many entries

    Hi all,
    I have an issue with tables in sap forms. Normally the sap form printout is 1 page, but when many entries exist in a table, the table-list is cut short when the page ends. ie. it does not continue on a 2nd page.
    What is missing here?
    thanks for your help.
    faB

    Hi Fab,
    what problem you are facing? you will have Page up, Page Down buttons in the toolbar.
    or press key borad page up,page down buttons to navigate to next page.
    Regards
    vijay

  • Opening Sap Form(cfl) on top of windows form added in an adddon

    Hi
    On a click of sapForm button,I have opened a windows form containing a buton on it .
    Now on a click of this button I have opened the Cfl created on Sap form.but its opening at the back of the Windows  form .I need to minimize my Windows form to view the Cfl opened .I want this cfl to be open on top of windows form on whose button click i have opened it.
    your suggestions are urgently required.
    Regards
    Mandeep

    Hi Mandeep,
    This thread may be a useful reference for you: Why the open file dialog form goes to SAP background.
    Regards
    Aravind

  • Arab language in SAP form

    Hi Friends,
    I have issue regarding arabic font in sap form. How does it works in SAP.
    Awaiting for your reply
    regards
    Pk

    Hi,
    For an example, please select one absence type>go to utilities>Select choose language-->You will find Arabic in the list.
    Regards.

Maybe you are looking for

  • IC WebClient startup error

    Hi all, When I launch IC webclient from SAP Standard roles after assigning to some users its working fine. But I created a new role and when i launch IC webclient form that role I am getting HTTP_COMMUNICATION_FAILURE error. Any authorization issue?

  • Skype 7.4 crashing Winhadnt.dll?

    Hello peeps thank you ahead of time for reading this. I seem to be having an issue with skype right when I try and start it up it crashes and gives this error log. Problem Event Name: APPCRASH Application Name: Skype.exe Application Version: 7.4.0.10

  • Data Base block field

    Hi All, I need simple query which i found difficult to solve please guide. I have one database block in which five database field 1. item1 2. item2 3. item3 4. item4 5. item5 in which i just replace data from i field to another is such a way that eac

  • Best external backup for photos?

    I currently have more then 32,000 photos on iPhoto. I am very aware that iPhoto starts acting sluggy when you throw that many pictures at it. I need some advice on the best portable hard drive for my photos. I have Passport, but it backs up my entire

  • Macbook air reboot freezes with maverick

    After updating my Macbook air and during the reboot process the computer froze up at the "Updating your Settings..." screen. However, I am able to use it through the "Guest" account, but I can't access my files from there. I've trie rebooting a numbe