How to get current/present version guid from CRMD_ORDERADM_H ?

Hi,
Can any one tell me  how to get the current version guid value from CRMD_ORDERADM_H table for Business Object type 'BUS2000113' .
For example for one contract if we have more than one version then how to get the latest version guid from this table?
If I use FM ' BBP_PD_CTR_GETDETAIL'  and in version table how to know which one is the latest/current version?
Need information for versions.
Thanks a lot.
Kevin.

Hello Kevin,
       In FM  <b>' BBP_PD_CTR_GETDETAIL'</b> look at version table <b>E_VERSION</b> - Here you can check 'VERSION_' or there is another field 'CREATED_AT' - by using these you will get latest version.
Regards,
Shiv

Similar Messages

  • How to get current process version when photos imported?

    I have Lightroom 5 but my photos are still imported with the old process version (2010)  How can I get the current process version (2012) to be applied automatically on my imported photos?

    Hi Andreas,
    Did you ever get an answer to your problem?
    I am facing the same issue now and i cannot get a lead.
    Thanks,
    Dimitris

  • How to get current suspended message ID from context

    Hi all,
    I'm trying to get the Suspended Message Id from my orchestration.
    I don't want to get the this inside the orchestration, because that I already know how to do it.
    I've search inside this forum and get a solution, but actually does not work. 
    Using this: Microsoft.XLANGs.Core.Service.RootService.InstanceId  
    (http://social.msdn.microsoft.com/Forums/en-US/95d2c9d9-5cbe-4bca-9cef-da7aba984d3c/how-do-i-access-instance-id-of-a-message-from-orchestration?forum=biztalkgeneral)
    Also, I have searched in "all" properties of Microsoft.XLANGs.Core.Service.RootService and didn't had any luck
    My goal?
    I have a service that logs, to SQL, all errors in my biztalk applications. Right now is not saving the message id, and I do need.  (I can easily change the method to receive the message id, but I'm trying to avoid that because I have 30 applications
    using the same method/application).
    Also, I have another service that is listening to all suspended messages.. In here I have the message Id (and other data) using WMI... 
    Now, I need to correlate both info..
    Any help would be appreciated
    Ricardo Bessa

    Hi,
    Thanks for the reply. My answers inline.
    I already understood the logic that you said and I'm working on it. However, if you have more good inputs to give, please do! 
    Thanks
    Hi Ricardo,
    Let us be clear with your requirement.
    “I
    have another service that is listening to all suspended messages.. In here I have the message Id (and other data) using WMI... ” 
    - What this “service” is? Is this some service external to BizTalk from where you want to access the detail of the suspended message? If so then you go to use some way similar to my earlier reply. When you want to access the suspended message details,
    you got to access it from management db. The code which I have given in my earlier reply would do that. No other option in this case.
    Yes, I am already doing that. I'm using a Windows service that is listening for all suspended messages in BizTalk. In this
    windows service I can access to everything that I want (message Id; service type id; instance id; and many other properties...). My issue is not in here.
    “Actually
    when i call Microsoft.XLANGs.Core.Service.RootService.InstanceId I'm getting the property SendingOrchestrationID.” 
    - Are you try to access the message Instance ID from another child orchestration?
    SendingOrchestrationID is the orchestration instance
    ID where the message originated and you would get it when another orchestration (subprocess) which has been triggered by another orchestration (parent orch whose ID is
    SendingOrchestrationID). Detail us about where and how
    to you get this SendingOrchestrationID.
    Because when you want to access “Suspended” Orchestration’s message instance ID, you can’t achieve it by calling it from sub-processes.
    I'm using a external (custom) class library. 
    I have a custom log which tracks everything that goes in our BizTalk applications. When errors / warning I write that to a database table.
    This is made in different times, so when I log the error to the database I need "something" that exists in my other service (MEssageID; service type
    id; instance id; or other 'unique' property). Also, I don't want to change the log method, because (if I do that, I would need to change 30 applications).
    That's why I'm looking for a 'global' property that I can use, without changing (a lot) my code.
    When an Orchestration is suspended, it will be marked as “Suspended” in db and to get the messages associated with it, access the suspended Orchestration instance
    ID from the db and use this ID from db to get its related contents/messages IDs.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.
    Ricardo Bessa

  • How to get current time and date??

    How to get current time and date from my PC time and date to the java application??
    i use java.util.* package but got error, that is:
    - java.util.* and java.sql.* class are match
    - abstract class cannot be instantiated
    so what can i do, pls guide...thanks...

    There is a method in the System class that will return the current system time. You could also instantiate a Date, Time, Timestamp, or Calendar object, all of which get created with the system time by default.
    Don't import *. Import the specific classes you need.
    Next time, post the actual text of the exceptions/compile errors. If you make people guess, most just won't bother.

  • How to get current assigned participant id?

    Hi mates,
    This might be a basic questions, but useful for me :)
    How to get current assigned participant id from screenflow? Or How to pass it as an argument from interactive activity?
    Below is what I tried.
    Participant.id or Instance.participant.id - returns login user id
    Thanks

    Hi,
    Please correct me if I understood wrong.
    You want to know whether an instance is assigned or not and if assigned then you want to fetch the assigned participant id.
    If this is your requirement then please find the code below and make the necessary changes into it.
    Write the following code in screen flow automatic activity but before that you need to pass the instanceid as argument to the screen flow.
    In the process as well as screen flow layer make an instance variable instanceid as Int.
    Then make an argument variable instanceidArg as Int in both the screenflow and process layer and map accordingly so that it will take the instanceid from process layer to the screen flow layer.
    Assign instanceid = id.number; in process layer automatic activity but before the global interactive activity where you have maped the screen flow.
    Write the following code in screen flow automatic activity.
    logMessage("============= instanceid ==============" + instanceid); //instanceid is the id of the instance that you have passed from process layer.
    ProcessService ps;
    InstanceFilter instF = InstanceFilter();
    ps.connectTo(url : Fuego.Server.directoryURL, user : "<userid>", password : "<password>"); //In studio the userid and password will be same
    logMessage("Connected");
    instF.create(processService : ps);
    instF.searchScope = SearchScope(participantScope : ParticipantScope.ALL, statusScope : StatusScope.ONLY_INPROCESS);
    //<ProessId Name> is the id of the process where you want to know the assighed participant id
    instF.addAttributeTo(variable : VarDefinition.processid, comparator : Comparison.CONTAINS, value : "/" + "<ProessId>");
    instF.addAttributeTo(variable : VarDefinition.INSTANCE_NUMBER, comparator : Comparison.IS, value : Int(instanceid));
    Fuego.Papi.Instance[] instances = getInstancesByFilter(ps, filter : instF);
    foreach (instance in instances) {
    logMessage("Assigned ?: " + instance.participantId.empty);
    logMessage("instance.participantId: " + instance.participantId);
    ps.disconnectFrom();
    Bibhu

  • How to get current version of safari. without having safari browser?

    how to get current version of safari. without having safari browser?

    I don't understand the question. Safari is a browser.
    Can you elaborate on what your are trying to do that initiated the question? People may be able to come up with some other option that gets you working the away you want.
    When you respond, please post the version of the Mac OS and the version of Safari you currently have. Otherwise, people are guessing and the quailty of help you get plummets.

  • How to get the trial version of adobe access whether can protect content

    i submit info in
    https://www.adobe.com/cfusion/mmform/index.cfm?name=flash_access_trial_cert
    but nobody contact me..
    How to get the trial version of adobe access?
    Thanks

    Hello,
    Apologies for that!  Currently, Adobe is shut down for the holidays which is why you're seeing a delay. Adobe will resume work again on January 2nd.
    If you can private message me your contact information, I can contact our sales team to make sure they are aware of your request.
    Sent from my mobile,
    /Eric

  • How to get current rowindex of clicked object in cr2008 preview control

    hi
    i want to get selected raw data when user click on crystal report 2008 preview control.
    i can achieve using following code for particular row no.
    Dim repReport as new ReportDocument
    repReport.Rows(RowIndex).Item(ColumnIndex)
    how to get current rowindex ? 
    Thanks
    Sanjiv Sharma

    Only way I can think of is to use the rowset controller from the InProc RAS SDK. Here is a snippet of a sample code on how to:
    //Load the report
    if (clientDoc != null) {
    //create metadata structure
    RowsetMetaData rowSetMetaData = new RowsetMetaData();  rowSetMetaData.setDataFields
    (clientDoc.getDataDefinition().getResultFields());
           Fields fields = rowSetMetaData.getDataFields();
           String colName,colTypeName;
           int colType, len;
           Field field;
           HashMap colNames = new HashMap();
           HashMap colTypes = new HashMap();
           for (int i = 0; i < fields.size(); i++) {
                   field = (Field) fields.get(i);
                   colName =field.getDisplayName(FieldDisplayNameType.description, Locale
    .ENGLISH);
                   colNames.put("COL"+i,colName);
           colType = getColTypeFromVariant(field.getType().toVariantTypeString());
           len=field.getLength();
                  //Placeholder
            //add column metadata to data structure or XML
            Object colValue;
            int rowCount=0;
            if (getMaxRows() != 0) {
                   RowsetCursor rowsetCursor = clientDoc.getRowsetController(). createCursor
    (null, rowSetMetaData);
                  //Setting the batch size to make sure that you get back all the
                  //rows by setting the batch size.
                        clientDoc.getRowsetController().setRowsetBatchSize (rowsetCursor
    .getRowset().getTotalRecordCount());
               //Getting the Results back starting from the first row
               RowsetCursor resultCursor = clientDoc.getRowsetController(). createCursor(null,
    rowSetMetaData);
               resultCursor.moveTo(0);
                  while (!resultCursor.isEOF()) {
                      for (int i = 0; i < fields.size(); i++) {
                               colName=(String)colNames.get("COL"+i);
                               colTypeName=(String)colTypes.get("COL"+i);
    colValue=record.getValue(i);
                                //Placeholder
    //add row data to data structure or XML
    resultCursor.moveNext();
    For more details, consult the Report Application Server .NET SDK Developer Guide
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Get current weblogic version number

    Hi.
    I want as much as possible information from current ADF application instance. I know how to get ADF Faces version, User agent, Skin, Session ID, Java version,... I don't know hot to get current application's server version and name.
    Any ideas?
    10x
    Regards

    It is old but still working:
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.text.DateFormat;
    import java.util.Date;
    import java.util.Enumeration;
    import java.util.Properties;
    import javax.servlet.*;
    import javax.servlet.http.*;
    /*http://127.0.0.1:7101/yourwebappname/servlet/SuperSnoop*/
    public class SuperSnoop extends HttpServlet {
    private static final String CONTENT_TYPE = "text/html; charset=UTF-8";
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    private String makeTitle( String title )
    return new String("<H2>"+title+"</H2>\n");
    private String showRequestParams( HttpServletRequest request )
    StringBuffer sb = new StringBuffer(512);
    Enumeration e = request.getParameterNames();
    String key = null;
    String value = null;
    sb.append(makeTitle("Request Parameters"));
    sb.append("<table>");
    while( e.hasMoreElements() ){
    key = (String)e.nextElement();
    value = request.getParameter(key);
    sb.append( makeRow( key, value ));
    sb.append("</table>");
    return sb.toString();
    private String showInitParams() {
    StringBuffer sb = new StringBuffer(512);
    ServletContext context = getServletContext();
    Enumeration e = context.getInitParameterNames();
    String key = null;
    String value = null;
    sb.append(makeTitle("Initialization Parameters"));
    sb.append("<table>");
    while( e.hasMoreElements() ){
    key = (String)e.nextElement();
    value = context.getInitParameter(key);
    sb.append( makeRow( key, value ));
    sb.append("</table>");
    return sb.toString();
    private String showServletContextInfo()
    StringBuffer sb = new StringBuffer(512);
    ServletContext context = getServletContext();
    sb.append(makeTitle("Servlet Context"));
    sb.append("<table>");
    sb.append( makeRow( "Server Info", context.getServerInfo()));
    sb.append( makeRow( "Servlet Context Name", context.getServletContextName()));
    sb.append( makeRow( "Real Path", context.getRealPath("/")));
    sb.append("</table>");
    return sb.toString();
    private String showContextAttributes() {
    StringBuffer sb = new StringBuffer(512);
    ServletContext context = getServletContext();
    Enumeration e = context.getAttributeNames();
    String key = null;
    String value = null;
    sb.append(makeTitle("Servlet Context Attributes"));
    sb.append("<table>");
    while( e.hasMoreElements() ){
    key = (String)e.nextElement();
    value = context.getAttribute(key).toString();
    sb.append( makeRow( key, value ));
    sb.append("</table>");
    return sb.toString();
    private String showSysProps() {
    StringBuffer sb = new StringBuffer(512);
    Properties p = System.getProperties();
    Enumeration e = p.propertyNames();
    String key = null;
    String value = null;
    sb.append(makeTitle("System Properties"));
    sb.append("<table>");
    sb.append(makeRow("System Time", today() ));
    while( e.hasMoreElements() ){
    key = (String)e.nextElement();
    value = p.getProperty( key );
    sb.append( makeRow( key, value ));
    sb.append("</table>");
    return sb.toString();
    private String showHeaders( HttpServletRequest request ) {
    StringBuffer sb = new StringBuffer(512);
    Enumeration e = request.getHeaderNames();
    String key = null;
    String value = null;
    sb.append( makeTitle("Request Headers"));
    sb.append("<table>");
    while( e.hasMoreElements() ){
    key = (String)e.nextElement();
    value = request.getHeader(key);
    sb.append( makeRow( key, value ));
    sb.append("</table>");
    return sb.toString();
    private String showRequestInfo(HttpServletRequest request) {
    StringBuffer sb = new StringBuffer(512);
    sb.append(makeTitle( "Request Info"));
    sb.append("<table>\n");
    sb.append( makeRow( "ContextPath", request.getContextPath() ));
    sb.append( makeRow( "Method", request.getMethod() ));
    sb.append( makeRow( "RequestURL", request.getRequestURL().toString()));
    sb.append( makeRow( "ServletPath", request.getServletPath() ));
    sb.append( makeRow( "CharacterEncoding", request.getCharacterEncoding() ));
    sb.append( makeRow( "ContentType", request.getContentType() ));
    sb.append( makeRow( "RemoteAddress", request.getRemoteAddr() ));
    sb.append( makeRow( "RemoteHost", request.getRemoteHost() ));
    sb.append( makeRow( "Scheme", request.getScheme() ));
    sb.append( makeRow( "ServerName", request.getServerName() ));
    sb.append( makeRow( "ServerPort", Integer.toString(request.getServerPort()) ));
    sb.append("</table>\n");
    return sb.toString();
    private String makeRow( String left, String right ) {
    StringBuffer sb = new StringBuffer(128);
    sb.append( "<tr>\n" );
    sb.append( "\t<td>"+left+"</td>\n");
    sb.append( "\t<td>"+right+"</td>\n");
    sb.append( "</tr>\n" );
    return sb.toString();
    private String today()
    Date now = new Date();
    DateFormat dateFormatter = DateFormat.getDateTimeInstance();
    return dateFormatter.format( now );
    public void doGet(HttpServletRequest request,
    HttpServletResponse response) throws ServletException,
    IOException {
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<title>SysProps Servlet</title>");
    out.println("</head>");
    out.println("<body>");
    out.println( today() );
    out.println( showHeaders(request) );
    out.println( showRequestInfo(request) );
    out.println( showRequestParams(request) );
    out.println( showServletContextInfo() );
    out.println( showContextAttributes() );
    out.println( showInitParams() );
    out.println( showSysProps() );
    out.println("</table>");
    out.println("</body>");
    out.println("</html>");
    out.close();
    public void doPost(HttpServletRequest request,
    HttpServletResponse response) throws ServletException,
    IOException {
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head><title>SuperSnoop</title></head>");
    out.println("<body>");
    out.println("<p>The servlet has received a POST. This is the reply.</p>");
    out.println("</body></html>");
    out.close();
    }

  • How to get the last version of flash in MSI format automatically?

    How to get the last version of flash in MSI format automatically?
    Roberto Neigenfind
    Bravo Tecnologia
    www.bravotecnologia.com.br

    Hi Barbara,
    Flash Professional CS5.5 is a 32-bit application which can be installed on computers with either 32-bit or 64-bit operating systems.
    You can purchase this by Adobe's backward Licensing policy :
    " Adobe allows program members to order a current-version license but use a prior version. These members can contact Adobe Customer Service to request a serial number for the earlier version if they do not already have one. Prior-version software is available via ESD and can be purchased through standard resellers. The program member must follow all guidelines of the current-version EULA. "
    Please check the doc : http://www.adobe.com/volume-licensing/policies.html

  • How to get the original version of Web report in BW ?

    Hello Friends ,
    I have transported one Web report from BW development to BW Production System.
    But unfortunately , the desired result not me met .
    So I have been asked to keep the original version of the Web report.
    As the new version of Web report has replaced the previous one ,
    So could anybody tell me how to get the original version of Web report in BW ?
    Many thanks in advance !!!!!!!!

    Hi,
    You can use the Transaction STMS choose the option "Import Overview" . In the GOTO tab select "History" and choose "Import History".
    Here you can find the history of requests imported to the prod system.
    Regards,
    K.Manikandan.

  • How to get 64 bit version for premiere elements 12

    How to get  64-bit version for Premier Elements 12 ? 
    I download from ADMISY site.
    Click on win 64 bit and download it.
    When I try to install ther is a error  this download version is not for 64 bit I have try many times but same result

    Hello
    I have been away some days
    ADMISY is a software partners for Adobe
    I running Win 7 Home Edition
    I have received a card with a code when I bought the program and the I
    download from ADMISY
    Sending serial and installation warning
    PhotoshopElements_12_WWEFDJ.7z
    PhotoshopElements_12_WWEFDJ
    PremiereElements_12_WWEFDJ_win32.7z
    PremiereElements_12_WWEFDJ_win32
    I can not find a 64 bit version of 32-bit or 64-bit version of downloads
    This is information I have
    Best regards
    Erling Magnusson
    2015-02-04 22:33 GMT+01:00 Adobe Forums <[email protected]>:
        How to get 64 bit version for premiere elements 12  created by A.T.
    Romano <https://forums.adobe.com/people/A.T.+Romano> in *Premiere
    Elements* - View the full discussion
    <https://forums.adobe.com/message/7162950#7162950>

  • How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP server

    In 9iAS 9.0.2 Oracle HTTP Server (OHS) is pre-configured to assign requests to the Home OC4J instance via the URL-prefix "/j2ee"/
    For example, the TEST servlet under OC4J would be passed through OHS using:
    http://urmachine:urApachePort/j2ee/TEST
    whereas in the standlone OC4J version, this URL works:
    http://urmachine:urOC4JPort/TEST
    How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP Server?

    It is getting the url prefix from mod_oc4j.conf
    under /ora9ias/Apache/Apache/conf
    You can read more on this at
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/web.902/a92173/confmods.htm#1008977
    -Prasad

  • HT1923 how to get the old version of itunes

    how to get the old version of itunes. i dont like the new one. pls help.

    If you want iTunes 10.7:
    http://support.apple.com/kb/DL1576
    But before you to go the effort of trying to downgrade, try these steps, presuming you're referring to iTunes 11:
    - Press Control-B to show the menus
    - From the View menu, select "Show Sidebar" and "Show Status Bar'
    That makes iTunes 11 look much like earlier versions of iTunes and satisfies many people.
    Regards.

  • How to get the latest versions of Internet Explorer t

    We are running Single Primary Site with SCCM 2012 R2. 
    I
    cant seem to find out how to get the latest versions of Internet Explorer to be included in software updates?  Do you have to download this separately and install manually?

    Like Henrik said, make sure you have the Classifications selected that you want to address. IE 11 is the current browser, that was added to the catalog a few months back. If you are searching for this month you wont find it.

Maybe you are looking for

  • Background job scheduling edit

    Hi i have a program which executing as a background job for every 3 minuts. but some times the job which is in process is taking a long time like up to 5 minuts and as per job scheduling after 3 minuts of first scheduled job, it is starting another s

  • Error in method READ_CONTAINER_C when passing string to structure in Unicod

    Hi All, We are upgrading system from non-unicode to unicode. While passing a string to a structure ( MOVE RECEIVERS-RECEIVER TO RECEIVER_OBJECT, where RECEIVERS_RECEIVER = string RECEIVER_OBJECT = structure ) following error is thrown : "RECEIVER_OBJ

  • BED & CESS not get updated while creating excise invoice

    Hi experts,                When i create excise invoice with reference to commertial invoice,BED,CESS notget ubdated in excise utilization tab "DEEMED is in blue color.How can i this into "NOBAND" I have done the CIN Customizing Please correct me ASA

  • Workflow improvements for thumbnails, files, archives, etc

    I hope this does not duplicate previous requestes - I am a relatively new user of bridge. Maybe the features I wish are part of bridge but I cannot find them :-( These requests are useful to improve the work flow immediately after a process a large n

  • Organizing and file structure-

    just getting started with LR.  Will the program allow me to keep my images in their current location on my HD?  If so can  I still use LR to organize and create new folders once imported? Or do I need to organize before importing. If they are all imp