SAPGUI_PROGRESS_INDICATOR Class in SDN

I hope this is the right place for the question
Two years ago I downloaded a class that acted as a manager for FM SAPGUI_PROGRESS_INDICATOR.
It had methods for starting, increasing the percentage and stopping. With a little tweaking you could even create specific instances of some text.
I remember I downloaded it here at SDN because it was in a PDF with the format SAP documentation uses.
I'm at a new client, and want to find that class because I got used to it, but I can't find it anywhere
The only thing I remember about the author was that he had an Eastern European name.
I've tried searching with no luck.
Any help will be greatly appreciated.

check the below classes.
CL_PROGRESS_INDICATOR ===> this one will do for you
CL_AKB_PROGRESS_INDICATOR    
CL_RSDMDD_PROGRESS_INDICATOR
CL_EEWA_PROGRESS
hope this helps

Similar Messages

  • Documentation on the BEx classes

    Hello All,
    is there some documentation on the BEx Excel classes (BExExcelApplication, BexItems, etc.).
    I have found some examples using this classes on SDN, but no complete documentation on them?
    Many thanks in advance,
    Kirill

    Hello Syam,
    thanks for your quick answer!
    This how to paper is really useful, but there is no information on the classes that i need...
    I wonder if SAP really does not describe the classes that are valuable to create the complex planning applications.
    On the other side this classes are used in some "How to's" from SAP.
    Regards,
    Kirill

  • Read data from SAP R/3 Class-System

    Hello,
    first of all sorry when I posted this into the wrong subforum, but I wasn't sure about that. My Question is how to read data from the Classystem I have specified in my ABAP report.
    The goal is to read data from my individual class-system as well as data from MM and write them to a table that is to be read by another report. But right now I can't find information about the class system and abap. Maybe you know some tutorials or blogs about right that topic you can suggest?

    What class system have you specified in your report?
    Normally a class can be used by declaring a variable of type of the class in question, if this class can be instantiated this is. If your class can't be instantiated, but it has only class methods, you can call this method directly.
    But there is a lot more to this ABAP Object Oriented Programming, than just this short explanation. Search on SDN for some ABAP OO Tutorials.
    some links:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c3/225b5654f411d194a60000e8353423/frameset.htm
    http://www.sapgenie.com/abap/OO/
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b6cae890-0201-0010-ef8b-f970a9c41d47
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1591ec90-0201-0010-3ba8-cdcd500b17cf
    Transacation ABAPDOCU.

  • ABAP class mapping in PI (7.0)

    I just switched from XI (3.0) to PI (7.0).
    I tried to move one of my interfaces, but in Interface Mapping there is no "ABAP-class" option. How to use ABAP mapping in PI?

    Hi Mariuszu
    you need to enable it as described here
    in the exchange profile
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e3ead790-0201-0010-64bb-9e4d67a466b4
    or you can ask us directly via mail
    Regards,
    michal

  • Acces dynamic configuration variable (e.g. filename) in ABAP mapping class

    Hi experts
    I am searching for a possibility to acces a dynamic configuration variable (DCV) in an ABAP mapping class. Since I could not find a solution in SDN and other sources, I hope somebody in this forum can help me.
    What I already found is the following code which can be used to set a DCV, but what I would be interested in is how to read a DCV.
    Any help is appreciated.
    Markus
    METHOD if_mapping~execute.
    DATA l_record type mpp_dynamic.
    * copy payload
    result = source.
    * add an adapter specific attribute
    l_record-namespace = 'http://sap.com/xi/XI/System/File'.
    l_record-name = 'FileName'.
    l_record-value = 'test.xml'.
    dynamic_configuration->add_record( l_record ).
    ENDMETHOD.

    Hi Markus,
    you can find everything in my blogs
    /people/michal.krawczyk2/blog/2007/04/26/xipi-throwing-generic-exceptions-from-any-type-of-mapping
    Regards,
    michal

  • How to place header and footer  in OO-ALV program using class

    How to place header and footer  in OO-ALV program using class tell me wat r the class we shold use and their attributes as well

    Hi Venkatesh,
    Take a look at this how to [ABAP Objects - ALV Model - Using Header and Footer|https://wiki.sdn.sap.com/wiki/x/xdw]
    it's explaining how to define the classes and use it for display an ALV with Header and Footer.
    Regards,
    Marcelo Ramos

  • Get PricingConditions values from PricingConditionPanel class method?

    Hi,
    The class PricingConditionPanel returns the arraylist of the pricing onditions on the item with method getPricingConditions(); through the interface PricingContainer.
    I am able to get the values in the arraylist returned by the class. It actually i think points to the object of the class PricingCondtion. It returns the size of the array same as it it there in the pricing panel in Order.jsp page. Two inetfaces are there linked:
    IPCPricingConditionSet
    IPCPricingCondition[]
    I want to get the value of Discount added to the item due to the campaign key addded to the item of sales order.
    constructors for both the classes are:
    PricingConditionPanel(   PricingContainer  pricingContainer, 
                                         boolean isSAPEventActive, 
                                         UIContext uiContext)
    PricingCondition(PricingConditionPanel pricingConditionPanel,
                             IPCPricingCondition ipcPricingCondition, UIContext uiContext)
    Kindly help me to link with the both the Classes.
    Please find the code below:
    ipcItemReference.setDocumentId(docID);
    ipcItemReference.setItemId(itemID);
    ipcItemReference.setConnectionKey(connectionKey);
    IPCItem ipcItem = ipcClient.getIPCItem(ipcItemReference);
    PricingContainer prContainer = new PricingItem(ipcItem);
    UIContext uiContextObj = new  UIContext();                              
    PricingConditionPanel priceCondPanel = new PricingConditionPanel(prContainer, true, uiContextObj);
    IPCPricingConditionSet IPCPricingCondSet = prContainer.getPricingConditions();
    IPCPricingCondition[] ipcPricingCond = IPCPricingCondSet.getPricingConditions();
    log.error("Pricing cond set: "+IPCPricingCondSet.getAvailableConditionTypeNames().getDescriptions());
    ArrayList alPriceCondPanel = new ArrayList();
    alPriceCondPanel = priceCondPanel.getPricingConditions();
    int alPriceSize = alPriceCondPanel.size();
    log.error("Size of array for prices: "+alPriceSize);
    Iterator itrPriceCondPanel = alPriceCondPanel.iterator();
    int m = 0;
    int n = 0;
    while (itrPriceCondPanel.hasNext()) {
         m++;
         log.error("Element" + m + " is : " + itrPriceCondPanel.next().toString());
         log.error("Element "+n+" value is: "+alPriceCondPanel.get(n).toString());     
    Thanks
    Ekta
    Edited by: ET on Jan 21, 2009 3:47 PM

    Thanks a lot Ram!
    Please find the code below, useful for others who visit SDN for Pricing conditions details!
                   for (int i = 0; i < ipcPricingCond.length; i++) {
                        IPCPricingCondition ipcCondition = ipcPricingCond<i>;
                        log.error("Condition description for element "+i+" is: "+ipcCondition.getDescription());
                        log.error("Condition type name for element "+i+" is :"+ipcCondition.getConditionTypeName());
                        if (ipcCondition.getConditionTypeName().equalsIgnoreCase("ZCM1"))
                          String condValue = ipcCondition.getConditionValue();
                          String condTypeName = ipcCondition.getConditionTypeName();
                          String ipcCondRate = ipcCondition.getConditionRate();
                          String ipcCondDesc = ipcCondition.getDescription();
                          log.error("Condition value: "+condValue);
                          log.error("Condition type name: "+condTypeName);
                          log.error("Condition rate: "+ipcCondRate);
                          log.error("Condition Description: "+ipcCondDesc);
    Thanks a lot!
    Ekta

  • Shooping cart creation in SRM 7.0 using web dynpro ABAP classes.

    Hi,
    We have recently upgraded to SRM 7.0 from SRM 4.0. We are using customized portal application for the creation of the shopping cart.I am planning to create custom FM which will use the standard Web dynpro ABAP classes to create the shopping cart.
    Could you please guide with the classes that are need to be implemented and the sequence of the classes used in the shopping cart creation.
    I think these are the classes that are used in the standard web dynpro ABAP component.
    CL_FPM_EVENT ->                  Creates an instance of this class based on an event ID.
    CL_BADI_FLT_DATA_TRANS_AND_DB -> Data Handling: Transport and Database.
    CL_EXITHANDLER ->               Class for Ext. Services Within Framework of Exit Technique.
    CL_EX_BBP_DOC_CHANGE_BADI ->     BAdI Class CL_EX_BBP_DOC_CHANGE_BADI.
    CL_BBP_OBJECTS_ACCESS ->         Access Functions for Object Types.
    /SAPSRM/CL_PDO_BO_SC ->          Shopping Cart BO.
    Your expert comments will be appreciated...
    Regards,
    Naresh

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • External requirement from non SAP system created in SRM 7.0 Extended Classi

    Hello SRM Gurus:
    Has anyone created an external requirement using XI ExternalRequirement_Create_In (http://sap.com/xi/EBP).  We are getting a E001 "No company code could be determined for backend  for product##".  I traced the error to FM 'BAPI_SCEC_CREATE' in class "CL_BBPX_EXTERNAL_REQUIREMENT".  What I found is that it check the attributes for BUK and updates a table with the backend EEC system.  Then it checks if any of the entries match our external non SAP system in our external requirement and since it is a non SAP system none do.  Then it sets a return error code.
    I configured our non SAP system in the SLD and in SPRO under "Define System Landscape" as a non SAP system.
    We are running external classic scenario.  We just want to created a shopping cart from an external non SAP system.  Source the shopping cart in SRM and create the PO in SRM/ECC.  We are not using a product master but creating "describe requirement" in our external system.  Our product categories are replicated from ECC and the same codes used in our external non SAP planning system.
    If I change the external planning system to the ECC backend system, the external requirement is created in SRM but when I source it and convert it to a PO, it returns a backend error that the external requirement number does not exist in ECC.  Therefore it appears all of our data from our external system is correct with the exception of how to deternine the backend company code
    According to SAP this should be possible using XI.
    Has anyone been successful doing this or can you please advise any OSS notes or documentation explaining how to do this.  Please advise if you need additikonal info.
    Thanks in advance.
    Bert

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Error calling class methods CL_GUI_FRONTEND_SERVICES

    Hi all,
    I have a requirement in BAPI (integrating solman to portal) to download file from app. server to local directory. I used the below FM to get temp directory of presntation server.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>GET_TEMP_DIRECTORY
       CHANGING
         TEMP_DIR             =  LV_TEMP_DIR
       EXCEPTIONS
         CNTL_ERROR           = 1
         ERROR_NO_GUI         = 2
         NOT_SUPPORTED_BY_GUI = 3
         others               = 4.
       CALL METHOD cl_gui_cfw=>flush.
    It works fine in R3, but when i called it from portal it shows Access not possible using 'NULL' object reference with a short dump .
    st22 shows
    Error in ABAP application program.
    The current ABAP program "CL_GUI_FRONTEND_SERVICES======CP" had to be
    terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    An exception occurred. This exception is dealt with in more detail belo
    . The exception, which is assigned to the class 'CX_SY_REF_IS_INITIAL',
    neither
    caught nor passed along using a RAISING clause, in the procedure
    "GET_TEMP_DIRECTORY" "(METHOD)"
    Since the caller of the procedure could not have expected this exceptio
    to occur, the running program was terminated.
    The reason for the exception is:
    Attempt to access a component using 'NULL' object reference (points
    to nothing).
    An object reference must point to an object (an instance of a class)
    before you can use it to access components (variable:
    "CL_GUI_FRONTEND_SERVICES=>HANDLE").
    Either the reference has not yet been set, or it has been reset to
    'NULL' by a CLEAR statement.
    When i put external break point and the dump comes during execution of CALL METHOD cl_gui_cfw=>flush.
    Is it not possible to use CL_GUI_FRONTEND_SERVICES in RFC ??.
    thanks and regards
    Jijo

    [CL_GUI_FRONTEND_SERVICES|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=cl_gui_frontend_services+portal&adv=false&sortby=cm_rnd_rankvalue] needs a SAPGUI, so it is not possible to use it in RFC, BSP or other portal.
    Regards

  • Class (Priority) change in the background job

    Hi,
    We have a program which will pick up the file from application server and will submit to one more background job by using JOB_SUBMIT. Whenever the automatic background job has submitted from another program, by default it will take the class (priority) as 'C'. Is there any way to change the priority level from C to A throuhg JOB_SUBMIT i.e changing to higher level.
    Please let me know.
    regards,
    Chandra
    null

    (1) Keep in memory that class "A" job must be reserved for system
    (2) Nevertheless
    The class is hard-coded in JOB_OPEN:
    * Jobklasse setzen / NEWFLAG auf 'O'(Open) setzen
    * (der Workflow-Job 'SWWDHEX_' bekommt immer Jobklasse A).
    * Weiterhin bekommt ein spezieller Einplaner immer Jobklasse A
    * wg. der Archivierung auf Datenbankhosts (->F.Hoffmann).
      IF ( JOBNAME EQ 'SWWDHEX' ) OR ( CALLING_ABAP EQ CENTRAL_ADK_ABAP ).
         GLOBAL_JOB-JOBCLASS  = BTC_JOBCLASS_A.
      ELSE.
         GLOBAL_JOB-JOBCLASS  = BTC_JOBCLASS_C.
      ENDIF.
    You may look at function modules BAPI_XBP_JOB_OPEN, BAPI_XBP_JOB_ADD_ABAP_STEP and BAPI_XBP_JOB_CLOSE.
    (documentation at <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/edab9790-0201-0010-479a-98fcc7ebc7bd">External Interface for Background</a>)
    Regards

  • Purpose of Requirement Class

    What is the purpose of requirement class?

    The requirements class contains all control features for planning such as relevance for
    planning, requirements planning strategy and requirements consumption strategy. In
    addition, it is specified at a global level whether an availability check is to take place for
    the material in the sales and distribution documents on the basis of the ATP quantity
    (ATP = available to promise) and whether requirements are to be passed on. A finer
    degree of control can be obtained for sales documents using the schedule line category.
    Replenishment lead time is only included in the check performed on the basis of the
    ATP quantity.
    Also please check this link: http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=29323
    Regards
    Sai

  • How to generate UML class diagram in R/3 system

    I have many ABAP classes and wanna to get a clear picture for them  , is it possile for me to generate a UML class ?

    Check with below links :
    http://help.sap.com/saphelp_nw04s/helpdata/en/5f/af6e420c48c353e10000000a1550b0/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/07bde1cc-0201-0010-cabe-e1118fdd027b
    /people/thomas.szcs/blog/2005/12/28/dynamic-programming-in-web-dynpro-abap--introduction-and-part-i-understanding-ui-elements
    Thanks
    Seshu

  • How to catch exception for class CL_HR_RE512W for method CHECK_CUMULATION

    Hi,
    How do I catch an exception when using method CHECK_CUMULATION in class CL_HR_RE512W.
    This method calls an instance method READ which raises NO_ENTRY if a wage type is missing on T512W.
    There is no obvious catch class to use?
    My code:
    data: r_512w type ref to cl_hr_re512w.
    start-of-selection.
    create OBJECT r_512w.
    call method r_512w->check_cumulation
    exporting
        p_molga  = molga
        p_lgart  = lgart
        p_cumul  = cumul
        p_date   = date
    receiving
          p_has_cumulation = p_flg.
    If lgart = '9999', for example, then we get an error message:
    'No entry in table T512W for key 08 9999 25.08.2009'

    Hi Gemini Twin,
    Check this link:
    https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP+Objects+-+Defining+a+Class-based+exceptions
    Hope this information is help to you.
    Regards,
    José

  • Calling a method in Class from webdynpro

    Hi All,
    I have to perform some action when i click the button created in my webdynpro screen.
    However I must not write the code for the button action inside the button event. But I have to create a class and inside the class i have to create the method for this button event.
    Can anyone tell me how to call a method in a class created in SE24 from webdynpro on clicking the button.
    Thanks in advance.

    hi..
    When you want to perform some action after clicking a Button, then you have to write the code only in 'Events' - 'On Action' event. From your question, i assume that, you wanna use Assistance class in your webdynpro so as to increase better performance. Here is the link which will guide yuo with screen shot for using assistance class in WD-ABAP.
    http://wiki.sdn.sap.com/wiki/display/WDABAP/AssistanceclassfunctionalityinWDA
    thanks,
    Padma

Maybe you are looking for

  • Video is not working in ipad and iphone.

    Hello All, We are facing issue in playing video in SharePoint 2013 and html5. Video is playing on IE, Firefox,Chrome and android. But not playing on iPad and iPhone.  We are using below html code: <video id="example_video_1" class="video-js vjs-defau

  • Issues with downloading Adobe Acrobat 8.3.1 Security Patch

    Hi, I am having issues downloading Adobe Acrobat 8.3.1 update security patch.  I go to the Download Now & click on it, that brings up the File Download, where it states do you want to open or save and I click on the open and that brings up a window,

  • How do i transfer my downloads to my i pod

    how do i transfer my downloads to my i pod manually my pc crashed at the point of sync so did not go all the way through and now i cannot transfer my purchases to my ipod

  • Error [12] invalid printer type (98)

    Hello, when i want to print a output PDF File whith adobe central output Server. With Adobe Output Designer 5.6, I have compiled a template with Portable document format only. On Adobe central control 5.6, I have a job TESTPDF with a task JFMERGE and

  • Variable application is undefined

    variable application is undefined