Shipping Content Label/Rule Creation using PLSQL

Hi All,
I would like to know if there is any API / Open interface through which we can create new shipping labels and rules using PLSQL.
I have analysed the forms "WMSLABEL.fmb" (Label creation form) and found the are doing direct insertion into the std tables "wms_label_formats" and "wms_label_field_variables". Same is the case for "WMSRULEF.fmb" (Rule Creaton) form.
Please help.
Thanks
Abhirup Banerjee

To answer your first question, the  scrollRect property "masks" the display object.  This property is assigned in the scrollChildren() of the Container class.
//mx.core.Container.as  
     *  Positions the container's content area relative to the viewable area
     *  based on the horizontalScrollPosition and verticalScrollPosition properties.
     *  Content that doesn't appear in the viewable area gets clipped.
     *  This method should be overridden by subclasses that have scrollable
     *  chrome in the content area.
protected function scrollChildren():void
contentPane.scrollRect = new Rectangle(x, y, w, h);
I believe the answer to your second question would be that, Container.validateDisplayList() calls createContentPaneAndScrollbarsIfNeeded() in a conditional and if that returns true, then it will call super.validateDisplayList().  So the contentPane seems to be created *during* validateDisplayList(), if its needed.
override public function validateDisplayList():void
      // Based on the positions of the children, determine
      // whether a clip mask and scrollbars are needed.
      if (createContentPaneAndScrollbarsIfNeeded())
           // Redo layout if scrollbars just got created or destroyed (because
           // now we may have more or less space).
           if (_autoLayout || forceLayout)
                doingLayout = true;
               super.validateDisplayList();
                doingLayout = false;
           // If a scrollbar was created, that may precipitate the need
           // for a second scrollbar, so run it a second time.
            createContentPaneAndScrollbarsIfNeeded();
      if (contentPane)

Similar Messages

  • Content Organizer Rule - route new doc to auto created folder

    I have set up a content organizer rule and used the "Automatically create a folder for each unique value of a property:" Check box.  The folders are created properly but I now want to set up a rule that will route documents
    to folders that have been automatically created.
    E.g. I have uploaded a document with a serial number of 100-150 and a folder has been automatically created.
    Now the user uploads a document and identifies the serial number the document as 100-150, I would like to route this new document to the folder that has already been created. 
    Note: There will be numerous folders created as users upload new documents with new serial numbers, so creating a rule for everyone would not work.

    Hi,
    In edit Content Organizer rule page, I see there is an option as Automatically create a folder for each unique value of a property:
    However, unlike the drop down used in the property based filters above, this drop down *only* contains properties that are required by your content type. 
    This is done to prevent adding folders that have no values for a property. 
    If you need to put similar documents to the same folder, you could consider making use of this feature.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Moving documents to other document library using content organizer rule

    Hi Team,<o:p></o:p>
    I have created a content organizer rule to move documents from one document library to another.<o:p></o:p>
    I have two document libraries say Doc A and Doc B, where Doc A is a source library (where I will upload the documents) and a folder Fol 1 in Doc B is a target destination (where document should
    be moved). I got to know from one of the other posts is, Doc A should be involved in any of the content organizer rules to be able to move documents to Doc B.<o:p></o:p>
    Right now, I have not created any content organizer rule to involve Doc A. And, a folder Fol1 in Doc B is a target destination for my content organizer rule.<o:p></o:p>
    1. I have uploaded a document in Doc A and by using "Send To" command, I have send it to Doc B. This document properties fulfills content organizer rule condition. But still it stays
    inside Doc B only, and not moved to folder Fol1 automatically (which is expected, I hope so)<o:p></o:p>
    2. Now if I again update the properties of the document, it will still be inside Doc B only and not moved inside Fol1 <o:p></o:p>
    3. I have opened Doc B in File explorer using "Open with Explorer" command and copied a document inside Doc B. Now after refreshing Doc B, even though the newly added document fulfills
    the content organizer rule condition, it is not moved inside Fol1 automatically (which it should, I suppose)<o:p></o:p>
    Can you please help me with the queries above?<o:p></o:p>
    Many thanks up-front for your help and support.<o:p></o:p>
    Just for an FYI: The rule which I created is to check whether the document title is not Empty. If it is
    not, condition will be true.<o:p></o:p>
    Thanks,
    Vikas Mishra
    Vikas Mishra

    try these link:
    https://support.office.com/en-us/article/Configure-the-Content-Organizer-to-route-documents-b0875658-69bc-4f48-addb-e3c5f01f2d9a?ui=en-US&rs=en-001&ad=US
    http://www.boostsolutions.com/blog/how-to-create-content-organizer-rules-in-sharepoint-2010/
    http://community.office365.com/en-us/f/154/t/255043.aspx
    http://community.office365.com/en-us/f/176/t/252790.aspx
    https://support.office.com/en-in/article/Create-Content-Organizer-rules-to-route-documents-1e4d37a3-635d-4764-b0fc-f7c5356c1900

  • Updating a Label content from code behind using dispatcher

    hi,
    I am trying to update a label's content from code behind.
    This part of the code is running in background worker. I wrote the following code to update a label's content:
    volumecontrol.Dispatcher.BeginInvoke(new Action(() =>
    volumecontrol.Content = volumeupdate;
     i tried using both BeginInvoke and Invoke but the application exits with the error:
    System.InvalidOperationException' occurred in WindowsBase.dll
    Using Invoke works when updating the UI from another thread but it not working in this case:
    Pls help.
    Thanks,
    Shaleen
    TheHexLord

    When you do that new action stuff you're capturing variables.
    If that means you grab a control's value across from outside the {} then you're trying to capture the variable on the background thread.  If that's some sort of control you're messing with then that will cause a problem as they have thread affinity.
    Because you don't want to be blocking the UI thread at all you should use BeginInvoke rather than Invoke.
    To explain this clearly - and provide a way you could use to explore what's going on and learn  - we need a separate thread which can be done using Task.Factory.StartNew.
    This bit of code allows you to put code onto a background thread:
    Task.Factory.StartNew(() =>
    // On a separate thread to the UI here
    Create a new solution, add a textBlock and Button:
    <StackPanel>
    <TextBlock Name="tb"/>
    <Button Name="btn" Click="btn_Click">Change the text</Button>
    </StackPanel>
    Then in the button click you can play around with what's going on.
    Just to be clear.
    That textblock is a control and it is created on the UI thread.
    To get from that task thread back to the UI thread you should use Dispatcher.BeginInvoke.  With no control name.
    Let's start with a broken piece of code:
    private void btn_Click(object sender, RoutedEventArgs e)
    Task.Factory.StartNew(() =>
    string thingummy = tb.Text + "Banana";
    Dispatcher.BeginInvoke(new Action(() => { tb.Text = thingummy; }));
    When you click the button it'll error because when you access tb.Text there you do so on a background thread and tb has thread affinity.
    This, however, will work OK.
    Task.Factory.StartNew(() =>
    Dispatcher.BeginInvoke(new Action(() => { tb.Text = tb.Text + "Banana"; }));
    That's OK because the Action runs on the UI thread where tb was created and all is good.
    Anonymous methods and actions capture variables ( you can google that for more info ).
    If you wanted to use a variable which was created on the background thread you can set it here:
    Task.Factory.StartNew(() =>
    string thingummy = "banana";
    Dispatcher.BeginInvoke(new Action(() => { tb.Text = thingummy; }));
    or here
    string thingummy = "banana";
    Task.Factory.StartNew(() =>
    Dispatcher.BeginInvoke(new Action(() => { tb.Text = thingummy; }));
    They both work.
    They are not accessing properties of a UI control because you're just setting the variable to a string.
    All of which means you could have a variable in your code which is set to volume or whatever that is from your control  ON THE UI THREAD and then modify that variable on the background thread.  Variables do not have thread affinity.  A
    double, string or whatever isn't a control.
    And this approach might well be more convenient.
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML

  • Custom List Form creation using Powershell - SharePoint 2013

    Hi,
    I have a custom List called 'IssuesList' with 4 fields - "IssueTitle","IssueID","IssueDesc","Status"
    While displaying display form I should show 3 fields expect Issue ID i.e. IssueID should be hidden.
    and on edit form only Status field should be editable. So using SharePoint designer I created respective Edit form and display forms and changed XSLT to control the display mode on the fields.
    I have everything scripted in powershell till now - creation of custom list, publishing pages, webparts etc. however I am looking for how to provision or associate these 2 list forms with IssuesList after I create the list in new site.
    I have restrictions on using wsp and site/list template due to business needs. So I need to know if there is any way I can upload these 2 files after I create custom list in powershell and associate them as defaultdisplay and defauteditforms?
    Please advise.

    Hi,
    Per my understanding, you might need to apply these custom forms to a list after list creation using PowerShell.
    With PowerShell with SharePoint Object Model, we can hide fields on list forms.
    The similar thread below with code snippet will provide more information about this:
    https://social.technet.microsoft.com/Forums/en-US/ee6fc2eb-197f-4144-94fa-8a4e438675d9/hide-a-field-from-edit-form-list?forum=sharepointgeneralprevious
    If there may be other requirements except for hiding fields, as you have limitation on using custom solution package(which should be preferable in such scenario),
    a workaround I can provide is that, after list creation, you can add Content Editor Web Part contains the CSS style or JavaScript to the form pages of a specific list, it will help you hide/disable the specific elements, this can be achieved programmatically.
    The code below can add a Content Editor Web Part to the DisplayForm of a list(though in C#):
    public static void AddCEWP()
    SPLimitedWebPartManager manager = null;
    SPFile file = null;
    using (SPSite site = new SPSite("http://sp"))
    using (SPWeb web = site.RootWeb)
    try
    web.AllowUnsafeUpdates = true;
    file = web.GetFile(web.Url + "/Lists/List018/DispForm.aspx");
    manager = file.GetLimitedWebPartManager(PersonalizationScope.Shared);
    ContentEditorWebPart webPart = new ContentEditorWebPart();
    XmlDocument xmlDoc = new XmlDocument();
    XmlElement xmlElement = xmlDoc.CreateElement("HtmlContent");
    //xmlElement.InnerText = "<strong>Hello World!</strong>";
    //write the custom CSS style or JavaScript here
    string content = "<style>your custom style here...</style>";
    xmlElement.InnerText = content;
    webPart.Content = xmlElement;
    manager.AddWebPart(webPart, "Top", 0);
    manager.SaveChanges(webPart);
    web.Update();
    catch (Exception ex)
    //Utility.SPTraceLogError(ex);
    finally
    if (manager != null)
    manager.Dispose();
    web.AllowUnsafeUpdates = false;
    About how to hide fields on Standard List Forms using jQuery:
    http://social.technet.microsoft.com/wiki/contents/articles/21730.sharepoint-2010-conditionally-hide-fields-on-standard-list-forms-using-jquery.aspx
    http://stackoverflow.com/questions/10010405/how-to-hide-a-field-in-sharepoint-display-form-based-on-the-field-name-jquery
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • HU creation using HUPP3

    I have following doubt on Planned HU creation using HUPP3 (since i am using this transaction for the first time and not sure if the client has done any modifications)
    1. Is it standard to pack more than one sales order line items in one HU using HUPP3
    I have a scenario in which business is creating one HU for more than one line items of a sales order (shipping point for all the line items is same).
    The issue is in HU the VEKP_NTGEW & VEKP_BRGEW fields takes the weight of first line items of the HU only.
    Customer modified the program SAP standard program.Here they can select multiple line items in single HU but while displaying HU through HUMO t-code it showing only first line item details like net weight.But client want it should show total weight of HU.
    Can anybody tell me how to achieve above requirement.

    Hi All,
    Thanks for viewing the query. I have found out the issue
    The client had made some modifications to the program.
    In standard SAP through HUPP3 only one line item of a sales order can be packed into one HU

  • Drop Off Library and Content Organizer Rules allow bypassing of destination permissions

    I had a test scenario where
    User Betty didn’t have permissions to a destination library (only I had permissions to it)
    Via the Content Organizer rule and the Drop Off library, Betty could send a document to a library where she didn’t have access.
    Anyone addressing this issue and how?  We just don't want people to be able to send things to a destination where they don't have access, but looks like the Content Organizer Rules impersonate some part of the move.
    What's odd is you can see the "CreatedBy" as Betty, but she can't go to the library and even see the moved document...permission is denied.

    Hi Bubberz1,
    This is the known and documented behavior of the content organizer. To prevent someone from using the content organizer in this way, you'd need to prevent them from having access to add documents in the drop off library in the first place, or else
    use some other process, such as workflows, to move the documents using the creator's permissions.

  • BI Content Update rules not available for 0IC_C03 cube

    Hi
    We have recently did technical upgrade to our DEV box and made a system copy for sand box. I am trying to install the BI content for 0IC_C03 infocube. I cant see update rules for this data flow. I could see Transformations and can also see info source (ex: 2LIS_03_BF_TR) which we dont expect. We havent migrated or never used inventory BI content. What is the reason we could see transformations for this cube data flow in BI content? We are on SP15. I tried to install transformations but cant install them properly.

    Hi A,
    Business content it's still using 3.x data flow. That's why you see a 3.x infosource.
    You won't have transformations for this. The update rules icon is like a transformation but with a small white square on the left.
    So the dataflow you should have is:
    Cube
      Update Rules (0IC_C03 2LIS_03_BF)
        3.x InfoSource (Material movements (as of 2.0B))
          Transfer Rules
            Datasource
    You'll see a small square next to all the objects, except for the cube. This means 3.x object.
    Hope this helps.
    Regards,
    Diego

  • BI Content Transformation Rule for Data Source 2LIS_03_BX

    Hi All,
    I am using BI content info cube 0RT_C54 for queries. I am uanble to find BI content transformation rules for the Data Source 2LIS_03_BX. In "Network Display of the data flow" I am able to see the transformation rules for this data source. How can I activate and use the same ?
    Regards,
    Rohit

    Hi ankit,
    Have u done all the mandatory settings before running setup for stock init.
    1. Determine industry sector.
    2. Maintainng process keys,
    3. Maintining Application Indicatore in BF11.
    Also activate other two ds - 2lis_03_bf & UM.
    Then try to fill again setup data.
    Hope this helps to u.
    Thanks
    Dipika

  • Consume a restful webservice using plsql

    Hi
    We need to consume a restful webservice and this needs to be implemented using plsql.
    I know that we can use utl_dbws or utl_http to consume SOAP based web services but
    there is not much information on how to consume restful web services.
    kindly let me know if you have information.
    Cheers
    rigel

    851866 wrote:
    Im looking for the opposite scenario where i need to access a restful web service from plsql.Why would a RESTful call be any different from a normal URL call? HTTP is the transport mechanism - and UTL_HTTP is used in PL/SQL as the client side of a HTTP conversation.
    I posted sample code of a how to use PL/SQL as a brower client in {message:id=1925297} - using a pipeline table to demonstrate the contents returned by the web server in response using plain SQL.
    Depending on what the contents is, you can write it into a BLOB (dealing with binary data returned), a CLOB (for XML data for example), or using varchar2 you can for example parse a text/csv response (no need for a pipeline in such a case).
    The only real issue I can see with a RESTful service is URL construction - as the URL becomes "parameterised" and not just the query string itself, or the data contents (name values) in the POST structure.

  • [svn:fx-trunk] 10216: Change Label verticalAlign to use "top" if there is too much text.

    Revision: 10216
    Author:   [email protected]
    Date:     2009-09-13 08:20:06 -0700 (Sun, 13 Sep 2009)
    Log Message:
    Change Label verticalAlign to use "top" if there is too much text.  RichText already works this way.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-20589
    Reviewer: Gordon
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/GraphicsTags
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-20589
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • [svn:fx-trunk] 10144: Change Label verticalAlign to use "top" if there is too much text.

    Revision: 10144
    Author:   [email protected]
    Date:     2009-09-10 18:46:11 -0700 (Thu, 10 Sep 2009)
    Log Message:
    Change Label verticalAlign to use "top" if there is too much text.  RichText already works this way.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-20589
    Reviewer: Gordon
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-20589
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Label.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Read saved outlook files using plsql

    Hi,
    Is there anyway of reading the contents of a saved outlook email file (.msg format) using plsql developer.
    I'm interested in reading the sent time and sender name.
    I know you can read directly from email account but unfortunately thats not possible in my context. I have to read from saved .msg file in a directory.

    garuka wrote:
    Hi,
    Is there anyway of reading the contents of a saved outlook email file (.msg format) using plsql developer.
    I'm interested in reading the sent time and sender name.
    I know you can read directly from email account but unfortunately thats not possible in my context. I have to read from saved .msg file in a directory.How do I ask a question on the forums?
    SQL and PL/SQL FAQ
    solution depends upon where "you" reside & where directory "resides"

  • Validate filenames in Unix using PLSQL

    Hello,
    I need to check for the existence of files and its contents in a given directory that exist on a unix server using PLSQL. Could anyone suggest me how do I approach this? I am using Oracle 10g database.
    Message was edited by:
    user519027

    Again, taking a step back, nothing I could possibly do on Machine A could possibly allow it to execute anything on Machine B unless Machine B had been set up, somehow, to permit that sort of thing. Generally, that is going to require some sort of "listener" on Machine B that can process remote requests, execute the appropriate programs/ scripts/ etc., and return the results.
    Think of the security problems that would arise if you could install something on one machine and then, suddenly, be able to execute arbitrary scripts on another machine...
    Of course, you could certainly configure something on the machine where the scripts reside that would permit them to be executed remotely and then have your local machine call that "listener" process via whatever protocol it understood. For example, you could install a web server on the remote machine, configure the web server to execute certain scripts when appropriate URLs are hit, and then use UTL_HTTP in your local Oracle database to generate that HTTP traffic. Of course, that's one of many, many options for an appropriate listener...
    Justin

  • Can use PLSQL to develop PLSQL web services?

    Hi,
    I know we can use JDeveloper to create PLSQL web services.
    How about if we want to develop plsql web services using PLSQL itself, is that possible?
    Please advise.
    Thank you.

    I found the article on how to call web services from within database.
    http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_PLSQL.html?_template=/ocom/technology/content/print
    The example is for oracle9iR2.
    It's looks like it's quite a bit of work compare to use java to call web services. I wonder with Oracle10g database, is there any improvement that will simply the steps? Would appreciate some advice as i don't have oracle10g environment in my place.
    Thank you.

Maybe you are looking for

  • Is there a compatibility guide for SSDs in the late 2011 macbook pro model?

    Is there a compatibility guide for SSDs in the late 2011 macbook pro model? I'm looking to purchase a 15.4" Late 2011 Macbook pro and was looking a SATA3 SSD that was supported (outside of the ones provided by Apple). Does anyone have any success sto

  • Leopard and G4 performance

    I'm thinking of upgrading to Leopard, but concerned that it might slow things down a bit, as my G4 only has 500mb RAM. Any opinions?

  • Oracle 9i and xmltype, ora-03001

    I get this message: 'ora-03001 unimplemented feature' when i trying to create a table with this statement: create table purchaseorder(podocument sys.xmltype); -The user has the following roles: connect, resource, javauserpriv, query rewrite, create a

  • Event 1000 and event 1026 Faulting application name: DistributedCacheService.exe

    I have 2 WFE, 1 App,  all 3 Distributed Cache in Services On Server of CA are started,  but only 2 AppFabricCachingService are started on 3 server Services. When I go to notable server which AppFabricCachingService not started, found the application

  • Replicate Non-standard lookup data from R3 to MDM

    Hi MDM Experts, I am having a scenario like i want to replicate the reference data(Lookup table data) from R3 System to MDM System. For that i can use the transaction "MDMGX" but in this we can replicate for standard lookup table data which has been