How to get bttoken in SAP BI 4.1 SP3 ?

Hi Experts,
Can anyone tell me how to get bttoken in BI4.1 SP3?
In BI4.0 we used  "CafParameters.getFormTags()" , this is not working in BI4.1.
Thanks in advance.
-Deepa

refer the below thread and raise you issue in Java SDK Application Development
How to get bttoken on long for BO 4.0

Similar Messages

  • How can I get bttoken in SAP BI 4.1 SP3 ?

    Hi Experts,
    Can anyone tell me how to get bttoken in BI4.1 SP3?
    In BI4.0 we used  "CafParameters.getFormTags()" , this is not working in BI4.1.
    Thanks in advance.
    -Deepa

    refer the below thread and raise you issue in Java SDK Application Development
    How to get bttoken on long for BO 4.0

  • How to get requisitioner's sap id (username)

    Hi All,
    I need to send a mail to the requisitioner's SAP inbox. For this I need to know the requisitioner's username/sap id.
    I can the requisitioner from ME23N / MIR7 t-codes. But there the field (EKPO-AFNAM) which is a free-text. So, not sure from where can I get the requisitioner.
    Can someone please tell me how to get that.
    Regards,
    Namrata

    Hi Namrata,
    As far as I could understand you need to send an email when the requisitioner parks the PO using transaction  ME23N / MIR7.
    well the easiest way of doing is to first find out the event which gets triggered when PO is parked after that create a workflow wherein you need to putin the event as the starting condition of the workflow.
    after that you need to include the email task in the workflow where in you need to assign the agent of the workflow as workflow initiator which will be automatically containing the id of the requisitioner and the email will be sent to the SAP inbox(SBWP) of the user.
    Please try it and let me know if you face any issues.

  • How to get this  com.sap.portal.admin.wizardframework_api.jar file

    Hi this is related to the wizard creating component required .jar file. Can any body tell me , how to get this jar file. I have searched in my IDE plug-in's folder. But i have nt find this.
    com.sap.portal.admin.wizardframework_api.jar
    how to get thid jar file.
    REgards
    Vijay

    Hi,
    You should have com.sap.portal.admin.wizardframework in your SharingReference:
    <property name="SharingReference" value="com.sap.km.application, com.sap.portal.admin.wizardframework"/>
    Pls check this link,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/42/bf4172cb951d66e10000000a1553f6/content.htm
    Hope this helps !
    Regards
    Srinivasan T

  • How to get the com.sap.portal.admin.wizardframework_api.jar file

    Hi this is related to the wizard creating component required .jar file. Can any body tell me , how to get this jar file. I have searched in my IDE plug-in's folder. But i have nt find this.
    com.sap.portal.admin.wizardframework_api.jar
    how to get thid jar file.
    REgards
    Vijay

    Vijay,
    You can access the above mentioned par file from this location,
    System Admin -> support -> Support Desk->ROOT/WEB-INF/deployment/pcd (download this folder)
    ->com.sap.portal.admin.wizardframework.par.bak->extract the file
    alternatively,
    u can find the same in,
    \j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\com.sap.portal.admin.wizardframework\lib
    Thanks & Regards,
    Ramganesan K
    Keane Inc

  • How to get Data from SAP B1 through Journal Entries objects (Excel VBA)

    Hi Genius
    i had try to login SAB B1 thorugh MS Excel VBA code and it worked well. but i need some questions regards getting the data from after login. that means i want the Posting date, Transaction No, account code, debit and credit amount from Journal entries posted in a particular day through MS excel VBA into excel sheets 1 cell A1:E1
    how i get it if any possible ways to do that
    here my code to login
    Public Sub login()
        Sheets("Login").Select  'access the login tab
        Worksheets("Login").Range("B1").Activate 'put focus on cell B1 (manager)
        B1UserID = Trim(ActiveCell.Value2) 'set Businsss One user
        ActiveCell.Offset(1, 0).Activate
        B1Password = Trim(ActiveCell.Value2) 'set Business One password
        ActiveCell.Offset(1, 0).Activate
        sqluser = Trim(ActiveCell.Value2) 'set SQL user
        ActiveCell.Offset(1, 0).Activate
        sqlpass = Trim(ActiveCell.Value2) 'set SQL password
        ActiveCell.Offset(1, 0).Activate
        Db = Trim(ActiveCell.Value2)      'set Database name
        ActiveCell.Offset(1, 0).Activate
        Server = Trim(ActiveCell.Value2)  'set Server name
        Set company1 = New SAPbobsCOM.Company  'initialate DI company object
        company1.DbServerType = dst_MSSQL2005
        company1.Server = Server
        company1.DbUserName = sqluser
        company1.DbPassword = sqlpass
        company1.CompanyDB = Db
        company1.UserName = B1UserID
        company1.Password = B1Password
        'connect to the database
         lRetCode = company1.Connect
            If lRetCode <> 0 Then
                sErrMsg = company1.GetLastErrorDescription
                MsgBox (sErrMsg)
            Else
                MsgBox ("Connected to: " & company1.CompanyName)
            End If
    End Sub
    pls help me
    advance thanks to solvers

    Gordons way is the easiest - just query the OJDT table for journal entry headers and JDT1 for journal entry lines if needed.
    But if you want to work with the business objects:
    'Journal entry
       Dim oJE As SAPbobsCOM.JournalEntries
       Set oJE = company1.GetBusinessObject(oJournalEntries)
       oJE.GetByKey(1234)
       Dim postingDate as String
       postingDate = oJE.DueDate
    'etc etc

  • How to get documents from SAP KM in java

    Hi Everyone
                    I want to get  the SAP KM data to a simple java class......I am able to get this with servlet but i want not a servlet but a simple java class that can get the Documents stored in SAP KM repository..................
    I am thinking of using any java Driver in some code like
    Class.forName ("com.sap.dbtech.jdbc.DriverSapDB");
                        String url = "http://host name :port";
                        Connection con = DriverManager.getConnection (url, "", "");
                        Statement stmt = con.createStatement ();
                   IUser serviceUser = WPUMFactory.getServiceUserFactory().getServiceUser("cmadmin_service");
                   ResourceContext c = new ResourceContext(serviceUser);
                   IResource r = ResourceFactory.getInstance().getResource(RID.getRID("/documents/Public Documents/"), c);
                   System.out.println("Current user   "+r.getContext().getUser().getDisplayName());
                   System.out.println("Current user  : "+r.getContext().getUser().getDisplayName());
                   System.out.println("Access RID  : "r.getAccessRID().toString()"<br>");
    But the above code is giving an exception---java.sql.SQLException: No suitable driver
    Can anyone tell me the suotable Lava driver to access SAP KM repository..Or any simple java code that can connect to SAP KM...
    Waiting for Ur reply
    Thanks & Regards
    Rupesh

    I am not sure why you need a JDBC driver for doing that.. You can get it using the following itself. If you have a DB only repository, the underlying API of KM will make the DB connection for you and get the content.
    Here is what you should be doing
             IUser serviceUser = WPUMFactory.getServiceUserFactory().getServiceUser("cmadmin_service");
             ResourceContext ctx = new ResourceContext(serviceUser );
             RID resRid = RID.getRID("<yourfilepath>");
             IResource resource = ResourceFactory.getInstance().getResource(resRid, ctx);
             //Finally you can read the stream from the resource
             resource.getContent().getInputStream();

  • How to Getting ABAP through SAP NetWeaver XI

    Hi all,
    Please, Help me for the following secenario,
    I Installed SAP Netweaver 2004 in my system ( ABAP stack and J2EE Stack ),both are working fine.the thing is i am not able to access all the tables in abap.example MARA,MARC ,VBAK like that lot of tables and functions.
    When i am accesing this tables i am getting following messages
    MARA does not exist. Check name
    Plz,help me
    Thanks & Regards
    Mahesh
    919885856520

    <b>>>>Wht i will do for getting all those Tables?</b>
    y u need those tables in XI. u can have it provided u create a Zmara instead of mara and using ale config's u can populate the data in xi table.
    if u are looking to extract those values for any reference then u can check on rfc api lookup instead of creating one in xi server.

  • How to get a "com.sap.tc.webdynpro.progmodel.api.IWDView" object

    hi,everybody,
         As we all know, there is a com.sap.tc.webdynpro.progmodel.api.IWDView object in wdDoModifyView() parameters.We can use the IWDView object in the method or after the method.But in my project, I want to use the IWDView object before wdDoModifyView() method.I don't know how to create a IWDView object. Would you please help me.Thank you!

    Hi daniel,
                   wdModifyView is called by framework while rendering the view &  IWDView is used for it. Before wdDoModifyView its not possible according to me , may be u can check with armin.
    Hi Manoj,
                   First of all, even if u declare a variable , u can't initializae it before weDoModifyView. Apart from that its always suggested , not to access the IWDView outside the wdModifyView . i think that's why wdDoModifyView is static & called everytime ,u do anything with the view.
    regards
    Sumit

  • How to get started with SAP FI

    Hi guys,
    I am a technical consultant and  I want to shift into SAP FI, it needs accounting background, how can a IT background person to start a career in FI? what kind of perparation should I do ?
    (Do not tell me to take an accounting/finance degree, it will take too long, I am going to have internal shift to FI position in 4/5 months

    Hi FI Experts,
    I found a part-time course for Finance & Accounting. (I am a Technical consultant with IT background), These are the course content, are these subjects provide enough knowledge for me to handle SAP FI?
    B115016 Financial Accounting
    B115017 Corporate Finance
    B115018 Management Accounting
    Semester 2
    B115019 Investment Analysis
    B115409 Personal Financial Planning
    B115410 Law and Taxation
    Financial Accounting
    Provides an understanding of key accounting principles, and skills to prepare and interpret financial statements. The topics include fundamental accounting concepts, structure of financial statements, group accounts and analysis of financial statements.
    Corporate Finance
    Provides an understanding of the business financial planning process and the use of analytical tools in the context of corporate financial objectives. Topics include capital budgeting, management of working capital, various sources of financing and other financial strategies in the management of funds and other financial resources.
    Management Accounting
    Teaches the use of accounting information for management planning and control. Topics include cost concepts and behaviour, activity-based management, cost-volume-profit analysis, budgeting, responsibility accounting and evaluation of divisional performance.
    Investment Analysis
    This subject covers the whole range of common investment instruments such as stocks and bonds, as well as derivatives like options, warrants and convertibles. Participants are introduced to the Economic-Industry-Company framework as an investment decision-making process and the various capital market theories required as the basis for the formulation of an optimal investment portfolio.
    Personal Financial Planning
    This subject is gaining increasing prominence. Wealth management has been identified as a sunrise area in the financial services industry. The subject covers key aspects of financial planning, encompassing cash and credit management, insurance planning, investment planning and retirement planning. Latest developments in the financial planning industry will be discussed. This subject provides preparation to participants who wish to sit for the Associate Financial Planners (AFP) Program.
    Law and Taxation
    Law and taxation affect every enterprise. The subject will provide participants with useful and practical knowledge on contract law, company law and income tax law. Latest developments such as the Enron and WorldCom debacles will be discussed. Topics include how a contract is formed and discharged, key characteristics of a company, duties of directors, taxability of receipts, deductibility of expenses, loss relief and personal reliefs.
    Thanks a lot,

  • How to get started in sap b1

    HI guys,
    im sap abap developer , i would like to learn sap business one ,
    please help me in how to start up .
    im really interested in learning this subject, iam sap abap consultant and i have real good coding skills.
    but i dont know what it requires to learn sap b1, but read some articles and got to know a little bit about sapb1.
    will this be suitable for a developer,please let me know.
    iam sorry if i posted this thread at a wrong place,but please help me in knowing this.
    really appreciate your help.

    Hi,
    Welcome you post on the B1 forum.
    You may check here first: Free SAP Business One eLearning available.
    Thanks,
    Gordon

  • How to Get Training for SAP Business One Certifications

    Training paths for the C_TB1200_88 Implementation and Support Consultant certification:
    Classroom Training                               
                                     -  TB1000 Logistics  (multiple languages)
                                     -  TB1100 Acccounting (multiple languages)
                                     -  TB1200 Implementation and Support (multiple languages)
    Self Study
                                    -   Product Training e-learning
                                     -  Study Guide
    Guided Self Study                
                                     -  Virtual Course for TB1000 and TB1100 combined with Product Training e-learning
    A Practice Test is available for the C_TB1200_88 certification.
    Training paths for the C_TB1300_88 Development Consultant certification:
    Classrom training                       
                                    -  TB1300 Software Development Kit
    Self Study       
                                    -   Development Consultant e-learning
    More details can be found on the channel partner portal on the Education page for SAP Business One. Choose the Role-Based Training link.

    Hello Daniel,
    Don't know whether this link will help. It contain all the tables in SBO
    https://websmp203.sap-ag.de/~sapidb/011000358700003984512006E.pdf
    XL Reporter 2005 SP01 - Meta Data Description (valid for for SAP Business One A SP01)
    Chris au st.

  • How to start career in SAP MM domain

    Hello Veterans,
    Need your advise..!
    I, shivakumar completed BBM in 2007 and have done MBA (marketing) thru open univeristy while working in MNC.
    I have total 3.8 year domain work experience (worked in order Mgt & supply chain mgt & BPO) and currently working for Hewlett packard as a Process associate.
    i also well trained for SAP MM module with my own interest & love to start my career in that.
    But i can see there are no much opening for SAP MM freshers with domain exp.
    Could you please advise that how can i go through for job in SAP?
    Hope i expect some of your experience those can may help me!
    Thank you very much for considering & advising me.
    Best Regards,
    Shivakumar

    Hi,
    Thank you very much for your kind reply.
    Could you suggest me how to get certified in SAP MM? Is this through Online or offline.
    Thank you again for your information
    Best Regards,
    Shivakumar

  • How to get purchasing data from SAP R/3 to OWB (Oracle warehouse builder).

    Hi,
    My name is Pavan Tata. I work as a SAP BW developer. Here is the situation at my client place. Client decided to retire BW system and wants to replace with OWB(Oracle warehouse). In all this currently we have purhchasing application in BW production system and wants to move this application to OWB for the same type of reporting what they are getting currently.
    Here is my question:
    How to get purchasing data from SAP R/3 to OWB(Warehouse) with initial full loads and deltas mechanism in the same way as we do in BW.
    Please help on this, also send me any documentation about this if you have.
    Thanks,
    Pavan.

    Hello,
    here is a short report which converts S012 entries to strings with separator semicolon. Perhaps this will help you?
    Regards
    Walter Habich
    REPORT habitest2 LINE-SIZE 255.
    TYPES:
      strtab_t TYPE TABLE OF string.
    CONSTANTS:
      separator VALUE ';'.
    DATA:
      it_s012 LIKE s012 OCCURS 0,
      wa_s012 LIKE s012,
      strtab TYPE strtab_t,
      strele TYPE string.
    SELECT * FROM s012 INTO TABLE it_s012 UP TO 100 ROWS.
    PERFORM data_to_string
      TABLES
        strtab
      USING
        'S012'. "requires it_s012 and wa_s012
    LOOP AT strtab INTO strele.
      WRITE: / strele.
    ENDLOOP.
    *&      Form  data_to_string
    FORM data_to_string TABLES strtab TYPE strtab_t
                        USING  ittab TYPE any.
      DATA:
        h_zaehler TYPE i,
        line_str TYPE string,
        l_tabellenname(10) TYPE c,
        l_arbeitsbereichsname(10) TYPE c,
        h_string TYPE string,
        h_char(255) TYPE c.
      FIELD-SYMBOLS: <l_tabelle> TYPE ANY TABLE,
                     <l_arbeits> TYPE ANY,
                     <feldzeiger> TYPE ANY.
      CLEAR strtab.
      CONCATENATE 'IT_' ittab INTO l_tabellenname.
      ASSIGN (l_tabellenname) TO <l_tabelle>.
      CONCATENATE 'WA_' ittab INTO l_arbeitsbereichsname.
      ASSIGN (l_arbeitsbereichsname) TO <l_arbeits>.
      LOOP AT <l_tabelle> INTO <l_arbeits>.
        CLEAR: h_zaehler, line_str.
        line_str = ittab.
        DO.
          ADD 1 TO h_zaehler.
          ASSIGN COMPONENT h_zaehler OF
            STRUCTURE <l_arbeits> TO <feldzeiger>.
          IF sy-subrc <> 0. EXIT. ENDIF.
          WRITE <feldzeiger> TO h_char LEFT-JUSTIFIED.          "#EC *
          h_string = h_char.
          CONCATENATE line_str separator h_string INTO line_str.
        ENDDO.
        APPEND line_str TO strtab.
      ENDLOOP.
    ENDFORM.                    "data_to_string

  • How to get the list of materials from Sap r/3

    Hi Experts,
    I have one doubt, here iam implementing
    HTTP TO RFC scenario.
    My doubts are------
    1. Should we create DT MT MI and all (OR) not
    2.In Request DT how the message structure wil be to get the list of materials from sap r/3 system as Response(Ex: Fields in the source structure).
    3.Or the second thing is how to get the list of materials start with some alphabate.
    Please reply me for each and every questions mentioned above. Please clarify me.
    Helpful answers wil be rewarded.
    Reagards
    khanna

    Hi Khanna,
    <i> 1. Should we create DT MT MI and all (OR) not</i>
        Yes U need to create for HTTP site...for RFC U need to import..
    <i>2.In Request DT how the message structure wil be to get the list of materials from sap r/3 system as Response(Ex: Fields in the source structure).</i>
        You create your own structres for Request and respoce.. and Map it with RFC..
    <i>3.Or the second thing is how to get the list of materials start with some alphabate.</i>
        I think it will come with acending order....
      for more help go through this link
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    regards,
    Ansar.

Maybe you are looking for