Condition check befor exporting records

Can we put any condition before the records get exported.
I.e as the records reach syndication manager for syndication i want a condition to be executed and then based on the result of condition i want syndication map to be selected
Ex:-
if acount group=zind i want syndication map CREMDM04 to be exceuted
els i want CREMDM04_FI map to be executed.
Can i at any place check this,whether in workflow or somewhere but b4 syndicating.
Plz reply me
Regards
Lakshmi

Hi Shifali,
It is like , since you are using conditional Validation you should use the Branch step instead of the individual Validation step firstly.
You can have your set of 20 Validations as designed which will be applicable to all  the records.
Create 2 sets of this group Validations so say you have
- Group1_Validations
- Group2_Validations
The Group1_Validations will have all the common validations and along with that the Acct group validation also which, will check if the account group of the particular record is ZIND.
The Group2_Validations will have all the common validations and along with that the Acct group validation also which, will check if the account group of the particular record is ZMIS.
So all the records which will fulfill all the common validations and have acct group as ZIND will move in one path
and the other records having acct group ZMIS will take the default path.
For the records taking the first path you can hav ethe syndicate step which will save the desired CREMDM04 port
and the deafult records will go to the other syndicate where that port will have CREMDM04_Fi deatils in the map.
So accordingly your records will get routed.
Your workflow will look like this
/Syndicate1-----Stop
Start-Process>Branch----<
/Syndicate2-----Stop
Branch will have 2 Validtion groups
Group1_Validations- Syndicate1
Group2_Validations- Syndicate2
Syndicate 1 will have port storing all the necessary settings that match CREMDM04 map
and Syndicate 2 will have the port storing all the necessary settings that match CREMDM04_FI map
You can have a glance on the below links to get a betetr idea:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60f28084-b90e-2b10-3eb6-d6565367048a (LOOP in Workflows-Approvals)
https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9180cbaf-0801-0010-f882-f2af6dc975d0 (Dynamism in mdm workflows)
Hope It Helped
Thanks & Regards
Simona Pinto

Similar Messages

  • Duplicate record check before inserting records

    Hi All
    I want to show an user friendly message instead of (oracle.jbo.TooManyObjectsException: JBO-25013: Too many objects match the primary key oracle.jbo.Key). So in my EO i have written the following code:
    OADBTransaction transaction = getOADBTransaction();
    Object[] empNumberKey = {value};
    EntityDefImpl empDefinition =
    XXXXempEOImpl.getDefinitionObject();
    XXXXempEOImpl empNo=
    (XXXXempEOImpl)empDefinition.findByPrimaryKey(transaction,
    new Key(empNumberKey));
    if (empNo != null) {
    throw new OAAttrValException(OAException.TYP_ENTITY_OBJECT,
    getEntityDef().getFullName(),
    getPrimaryKey(), "CompanyNumber",
    value, "AK",
    "FWK_TBX_T_EMP_ID_UNIQUE");
    setAttributeInternal(COMPANYNUMBER, value);
    My observation is when duplicate empNumber is passed as '0011' then the error message is not thrown.But if i pass duplicate empNumber like '5411' error is thrown. So does it mean new Key(empNumberKey)) chops off leading 0's. Please note that in database the values are stored as '0011'. Pleasre advice. The validation fails only when value is having leading 0's.

    You need to create a select command before Insert and check for the result returned after executing ExecuteScalar, this will return the records count to decide whether to insert or not,
    Check the below example:
    http://stackoverflow.com/questions/15320544/how-to-check-if-record-exists-if-not-insert-using-vb-net
    Fouad Roumieh

  • Request the help, I have the adobe the original software, but the ordinal number is missing, there is way checking before recording or begging the solution

    請求幫助,我有adobe正版軟體,但是序號不見了,有辦法查到之前的紀錄或求解決辦法嗎?
    Request the help, I have the adobe the original software (Adobe Creative Suite 6 Design & Web Premium), but the ordinal number is missing, there is way checking before recording or begging the solution
    Does anyone know how can I do? Please help,thank you very much.

    Hi there,
    I'm not sure that I understand. Are you trying to find the order number or serial number for your Adobe software? If so, please see Find your serial number quickly - Adobe.
    Best,
    Sara

  • Check for duplicate record in SQL database before doing INSERT

    Hey guys,
           This is part powershell app doing a SQL insert. BUt my question really relates to the SQL insert. I need to do a check of the database PRIOR to doing the insert to check for duplicate records and if it exists then that record needs
    to be overwritten. I'm not sure how to accomplish this task. My back end is a SQL 2000 Server. I'm piping the data into my insert statement from a powershell FileSystemWatcher app. In my scenario here if the file dumped into a directory starts with I it gets
    written to a SQL database otherwise it gets written to an Access Table. I know silly, but thats the environment im in. haha.
    Any help is appreciated.
    Thanks in Advance
    Rich T.
    #### DEFINE WATCH FOLDERS AND DEFAULT FILE EXTENSION TO WATCH FOR ####
                $cofa_folder = '\\cpsfs001\Data_pvs\TestCofA'
                $bulk_folder = '\\cpsfs001\PVS\Subsidiary\Nolwood\McWood\POD'
                $filter = '*.tif'
                $cofa = New-Object IO.FileSystemWatcher $cofa_folder, $filter -Property @{ IncludeSubdirectories = $false; EnableRaisingEvents= $true; NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite' }
                $bulk = New-Object IO.FileSystemWatcher $bulk_folder, $filter -Property @{ IncludeSubdirectories = $false; EnableRaisingEvents= $true; NotifyFilter = [IO.NotifyFilters]'FileName, LastWrite' }
    #### CERTIFICATE OF ANALYSIS AND PACKAGE SHIPPER PROCESSING ####
                Register-ObjectEvent $cofa Created -SourceIdentifier COFA/PACKAGE -Action {
           $name = $Event.SourceEventArgs.Name
           $changeType = $Event.SourceEventArgs.ChangeType
           $timeStamp = $Event.TimeGenerated
    #### CERTIFICATE OF ANALYSIS PROCESS BEGINS ####
                $test=$name.StartsWith("I")
         if ($test -eq $true) {
                $pos = $name.IndexOf(".")
           $left=$name.substring(0,$pos)
           $pos = $left.IndexOf("L")
           $tempItem=$left.substring(0,$pos)
           $lot = $left.Substring($pos + 1)
           $item=$tempItem.Substring(1)
                Write-Host "in_item_key $item in_lot_key $lot imgfilename $name in_cofa_crtdt $timestamp"  -fore green
                Out-File -FilePath c:\OutputLogs\CofA.csv -Append -InputObject "in_item_key $item in_lot_key $lot imgfilename $name in_cofa_crtdt $timestamp"
                start-sleep -s 5
                $conn = New-Object System.Data.SqlClient.SqlConnection("Data Source=PVSNTDB33; Initial Catalog=adagecopy_daily; Integrated Security=TRUE")
                $conn.Open()
                $insert_stmt = "INSERT INTO in_cofa_pvs (in_item_key, in_lot_key, imgfileName, in_cofa_crtdt) VALUES ('$item','$lot','$name','$timestamp')"
                $cmd = $conn.CreateCommand()
                $cmd.CommandText = $insert_stmt
                $cmd.ExecuteNonQuery()
                $conn.Close()
    #### PACKAGE SHIPPER PROCESS BEGINS ####
              elseif ($test -eq $false) {
                $pos = $name.IndexOf(".")
           $left=$name.substring(0,$pos)
           $pos = $left.IndexOf("O")
           $tempItem=$left.substring(0,$pos)
           $order = $left.Substring($pos + 1)
           $shipid=$tempItem.Substring(1)
                Write-Host "so_hdr_key $order so_ship_key $shipid imgfilename $name in_cofa_crtdt $timestamp"  -fore green
                Out-File -FilePath c:\OutputLogs\PackageShipper.csv -Append -InputObject "so_hdr_key $order so_ship_key $shipid imgfilename $name in_cofa_crtdt $timestamp"
    Rich Thompson

    Hi
    Since SQL Server 2000 has been out of support, I recommend you to upgrade the SQL Server 2000 to a higher version, such as SQL Server 2005 or SQL Server 2008.
    According to your description, you can try the following methods to check duplicate record in SQL Server.
    1. You can use
    RAISERROR to check the duplicate record, if exists then RAISERROR unless insert accordingly, code block is given below:
    IF EXISTS (SELECT 1 FROM TableName AS t
    WHERE t.Column1 = @ Column1
    AND t.Column2 = @ Column2)
    BEGIN
    RAISERROR(‘Duplicate records’,18,1)
    END
    ELSE
    BEGIN
    INSERT INTO TableName (Column1, Column2, Column3)
    SELECT @ Column1, @ Column2, @ Column3
    END
    2. Also you can create UNIQUE INDEX or UNIQUE CONSTRAINT on the column of a table, when you try to INSERT a value that conflicts with the INDEX/CONSTRAINT, an exception will be thrown. 
    Add the unique index:
    CREATE UNIQUE INDEX Unique_Index_name ON TableName(ColumnName)
    Add the unique constraint:
    ALTER TABLE TableName
    ADD CONSTRAINT Unique_Contraint_Name
    UNIQUE (ColumnName)
    Thanks
    Lydia Zhang

  • New camcorder- final check before buying

    An earlier thread helped me to decide which model to choose. I have settled on a Sony DCR-HC94E. ("E" is for "European".) It is said that FCE is picky about what cameras it will recognise. Therefore, the following are those parts of its spec. which I have detected from this forum as being important to satisfy FCE, and a few other features which suit my requirements. If anyone notices anything inadvisable, please shout. Thanks. Please note that I am not a professional and have not gone for a three-chip machine nor HD, on cost grounds.
    Required by FSE:
    Firewire. Actually, Sony’s iLink which is said to be Firewire although it has only 4 pins whereas Apple’s implementation has 6, the added two being for power. Sony tell me that when capturing, their camera must be connected to the mains and the four Firewire pins handle the data without trouble.
    However, another point concerns page 15 of FCE’s “Getting Started”, which refers to “Apple Firewire” (the default) and “Apple Firewire Basic”, which “is a simplified device control protocol for camcorders and decks that aren’t compatible with the full Apple Firewire set. Using this protocol doesn’t affect the quality of the captured video or audio.” I am assuming that this is the same point above concerning 4/6 pins and that FCE will be happy if it turns out that the Sony iLink uses “Apple Firewire Basic”. Correct?
    And that I will have Device Control?
    In Easy Setup, should I select "Firewire Basic"?
    The camcorder comes with a driver for the Mac, which provides for capture (presumably Device Control via FCE’s “Capture now” button).
    DV, not MPEG.. whatsit.
    miniDV tape cassette, not DVD, Hard Drive nor Solid state.
    DV out. No DV in because, as I understand it, DV in is used for archiving video on to miniDV tape and I don’t think I would want that – I plan to archive videos on DVD as QT movies.
    Sony say that the DCR-HC94E stripes a digital timecode on to the tape. I believe that FCE needs this.
    Other Features (extract):
    The chip is physically 16:9 and all its pixels are used in forming a 16:9 frame. If used in 4:3 mode, the pixels to the left and right are not used. I think that this is True Widescreen and not one of the compromise ways of achieving it by, eg., compression and subsequent expansion.
    3.3 Megapixels “Advanced HAD CCD”.
    10 times zoom (I would have liked more, but that’s life).
    Manual focus, and full-range auto focus, White Balance (“Auto, Outdoor, Indoor, One-push”).
    “Super SteadyShot”. (That is, anti-wobble control.) Electronic.
    2.7 inch viewfinder LCD panel, 123,200 pixels
    Low light performance - “Min. Illumination = 5 lux”.
    Battery runtime = 2 hours.
    No external mike (pity).
    It is remarkably small. “What Digital Camcorder”, issue 77, has a praising review of the next model up (DCR-HC96E), the only difference being that the 96E has DV in.
    Thanks for any observations before I plunge into my wallet and let the moths out.

    Tom, Martin and Ian:Re. DV in etc. Thanks.
    Being an amateur, (and beginner in video editing) my videos will, I think, be family movies; editing a 50-year old 8 mm cine film converted by a video lab to a PAL DVD, which I have nearly finished; and probably making videos of the country district where I live for depositing at the county library for future use, perhaps 100 years from now (if human civilisation survives that long which I doubt); and possibly some simple training videos. I am not planning on making artistic movies.
    What I have been doing (so far only with the converted cine) is to edit it, export it as a QT file and use Toast (Roxio) to burn to DVD as the distribution version. (Toast also allows "burning" to a Disc Image, for checking before wasting DVD-Rs). I then check the DVD on a stand-alone DVD player and a domestic TV. I am assuming that all my efforts will likely follow that route.
    Tom (and others) said:
    "You want DV in. It lets you record your finished movie back to tape."
    But why would I want to do that? Archiving? But is minDV tape so long-lasting? DVDs may not last more than 20 years and will need refreshing (re-recording on current media) which decendants won't do but that's another story. To view and check the finished video? But wouldn't my method (QT, DVD player, TV, described above) do that for me? To dub from a TV broadcast or to transfer to VCR tape via A/V? I have a combo VCR/DVD set-top video recorder which can do both of those (in the second case by dubbing from the above-mantioned distribution DVD).And VCR tape is on the way out, at least in the UK (Dixons no longer sell tape or tape-based VCRs) but of course peoples' tape VCRs will remain working for, say, 10 years.
    On the lack of an external mike, its a budget thing. Sony Centre said that the only detectable camera noise would be if the ambient sound was very low and as a result the gain was increased. But hopefully I could add a suitable ambient audio track as a sound bed (Tom's book, page 132) to drown it - music, general ambient, sheep.
    I'm probably wrong, but not too proud to be corrected.
    Meteorites, hmmm... As a pessiminst, they worry me, but hopefully I will be dead before one strikes!

  • No "before new record saved" trigger event in workflow definition ?

    Hello,
    I have following problem: I have to make a simple integration, where products have information about available quantity of given product . Assume we have field - it is called "Available amount" and it tells how many products are on stock. Now suppose we have created an opportunity, and we want to add Opportunity Product Revenue - we're selecting product and then quantity. I want to make OCOD to display message and prevent from adding opportunity product revenue, when its quantity is greater than "Available amount" field which is present in associated product record. I've created small C# application and used workflows to create Integration events. It works - but not exaclty how I want it - when I add a new record the workflow generates integration event - but I'd like to generate integration event before a record is created, also I'd like to show a notification from OCOD. But for "revenue" we do not have a trigger event called for example : "before new record saved" - we have only "when new record saved" and "before modified record saved".

    Hi,
    From your requirement, it seems you, want some kind of check. Did you try puting this validation on field level, i guess you would need to join fields and compare in field validation. So, whenever user creates a new record this validation kicks and user is notified of the error.

  • InDesign Conditional text batch export with TOC update

    Hello Everyone,
    I'm just getting into the scripting, so bear with me please.
    I have an indesign document with several conditional text variations and a generated Table Of Contents. I've found -hans-'s batch exporting script which works perfectly, BUT, in my document there are conditional headings too, which have their impact on the TOC of course and sadly indesign's toc update is not live. So all I need, is add a line (or 2) in the script that selects and updates the TOC for me before exporting each PDF. I've tried labeling the TOC text frame (with script label) and invoke a menu action on it, but I think I didn't get the Syntax right. I guess for someone experienced this is a really simple task.
    Here is -hans-'s Conditional text batch exporting script:
    http://forums.adobe.com/message/4764443
    thanks for your help!
    wood1y

    Hi,
    Thank you for your answer. This is my syntax so far. All I did to -hans-'s script was, I tried to create a variable with a text frame that has the "TOC" label, select it with a .select action (found it on a forum) that doesn't work, and tried to invoke the update toc with app.scriptMenuActions.itemByID(71442).invoke(); which doesn't work either. So yes, as I told you, I'm a beginner.
    var nameOfThePDFExportPresetYouWantToUse = 'DiscManual' //please don't forget to set!
    var currDoc = app.activeDocument;
    var currFilePath = currDoc.filePath.absoluteURI + '/';
    var currFileName = currDoc.name.replace(/.indd/, '');
    var currConditions = currDoc.conditions;
    var myTOC = currDoc.textFrames.item("TOC")
    //set all conditions visible to false
    currConditions.everyItem().visible = false;
    l = currConditions.length;
    //cycle thru conditions
    while(l--){
    currCondition =  currConditions[l];
    //set actual condition visible to true
    currCondition.visible = true;
    currConditionName = currCondition.name
    //select TOC
    myTOC.select();
    //update TOC
    app.scriptMenuActions.itemByID(71442).invoke();
    //set pdfName
    var exportTo = File(currFilePath + currFileName + '_' + currConditionName +'.pdf');
    //Have a look here:
    //export PDF. to choose backgroundexport. use the second line of code
    //currDoc.exportFile(ExportFormat.PDF_TYPE, exportTo,false,  nameOfThePDFExportPresetYouWantToUse);
    currDoc.asynchronousExportFile(ExportFormat.PDF_TYPE, exportTo,false,  nameOfThePDFExportPresetYouWantToUse);
    //set actual condition visible to false
        currCondition.visible = false;

  • I want to create new popup block screen in CO11N SCREEN for condition check

    in standard CO11N screen after completing filling the required field , when i click the save icon I NEED TO CREATE THE POBUP BLOCK SCREEN FOR CONDITION CHECKING WHICH CONSIST
    YES    NO    CANCEL
    IS THERE ANY FUNC MODULES TO DO THIS? OR IS IT POSSIBLE BY CODING?

    Don't rely on 'Preview'.
    Share/Export as .ibooks file and then drag that to iTunes and sync to your iPad.
    Still no joy, find a pre-processing recipe ( that includes export for iPad) that doesn't spoil the quality in the process.
    Just keep in mind that low quality in means low or lower quality out, in this example.

  • Checking before saving PR

    I would like to make a specific field in PR, let say vendor material, to be mandatory for a specific PR document type. It seems that it cannot be done by "Define screen layout at document level".
    So I would like to perform a checking before save.
    Which user exit should I use? Thanks.

    Try this example. Its an adaptation of a code of my own but I haven't checked ABAP syntax so maybe there is a period or somethig missing there.
    The idea of the code is to give an error message at item level based on a condition depending on document type and another field in the item (item category). Hope it helps. SL
    method if_ex_me_process_req_cust~process_item.
    data:l_mereq_item type mereq_item.
    l_mereq_item = im_item->get_data( ).
    data: error(150) type c.
           if l_mereq_item-bsart eq 'ZSPM' AND l_mereq_item-pstyp ne '9'.
          error = 'Document type can only be used for purchasing of external services'.
           message error type 'E'.
           endif.
    endmethod.

  • CSS load balancing, service dependancy condition check

    Hi,
    I would like to seek some advice regarding the CSS's service configuration.
    Is there a way to configure the CSS such that it check for the condition/status of a independant service (not involved in the load balancing algorithm) is alive/down (using service mode keepalive port/type), before deciding whether to/not to load balance to a group of services?
    Senario is as follwows:
    We process incoming HTTPS request and load balance to 2 HTTPS Servers (HTTPS service SSL1 and SSL2), on condition that a independent service (HTTPS service SSL3) is alive (using the keepalive type/port check in service mode).
    If the independant service (HTTPS service SSL3) is not alive, remove the HTTPS Servers (HTTPS service SSL1 and SSL2) from the load balancing algorithm.
    Thanks in advance for assistance
    !************************** CIRCUIT **************************
    circuit VLAN1
    ip address 192.168.103.35 255.255.255.192
    !************************** SERVICE **************************
    service SSL1
    ip address 192.168.103.53
    protocol tcp
    port 443
    keepalive type tcp
    keepalive port 443
    active
    service SSL2
    ip address 192.168.103.54
    protocol tcp
    port 443
    keepalive type tcp
    keepalive port 443
    active
    ? This is the service condition that CSS will check before deciding to/not to load balance to SSL1 and SSL2.
    ? If SSL3 is down, do not load balance to SSL1 and SSL2. If SSL3 is up, load balance to SSL1 and SSL2
    service SSL3
    ip address 192.168.103.55
    protocol tcp
    port 443
    keepalive type tcp
    keepalive port 443
    active
    !*************************** OWNER ***************************
    owner CISCO
    content L5Rule_SSL
    vip address 192.168.103.37
    application ssl
    protocol tcp
    port 443
    url "/*"
    add service SSL1
    add service SSL2
    active
    !*************************** GROUP ***************************
    group SSL
    vip address 192.168.103.37
    add destination service SSL1
    add destination service SSL2
    active

    maybe this?
    circuit VLAN1
    ip address 192.168.103.35 255.255.255.192
    ip virtual-router 10 priority 100
    ip redundant-vip 10 192.168.103.37
    ip critical-service 10 SSL3
    if I'm not mistaken the vip 192.168.103.37 will stop working when the service SSL3 goes down. I'm not sure that this is what you want though...

  • Cannot check In workflow record

    Hi Guru's ,
    We are having some issues in Workflow
    When i process the workflow  Named "PurchOrg Data"as WorkflowNext step-Stop,record is still in cheked out state ,although the stop step has Record checkout property as ChekIn.
    And now there is no workflow in Workflow tab.So to checkin this record ,I right clicked on record Workflow Add to job-- Purch Org Data.
    Now it gives me error "Record is currently usedin Workflow".
    How do I check In this record (as there is no workflow in workflow tab)???
    Also I cannot delete it as it is in checkout state..
    Did anyone had this issue befor..
    Regards
    Vikrant M Kelkar

    HI Vikrant
    You need to join the checkout process first. when the record was checked out we have an option of using checkout exclusive or non exclusive.
    In case the record has been checked out exclusive the owner of the checkout needs to allow another user to join the checkout process.
    In case record is checked out non exclusive anyone can join the checkout process and the owner need not invite to join.
    hope this helps-
    Best regards
    Ravi

  • Condition Checking

    Hi,
      Is there anyway i can ensure, let's say my "net income" is larger than 2 million before the user can submit the data? is there some sort of condition checking or locking mechanism that does this?
      any input on this?
    cheers

    You can have something like that for submission
    please check into help online the follow link
    http://name of your application server/osoft/help/admin/helpstart.htm#Setting_application_set_parameters.htm
    It is not exactly what you want but you can do something using this approach.
    You can change the work status settings for each application. Changing the work status settings involves identifying three to five 'work status dimensions,' and then defining specific members for the remaining non-work status dimensions used for validation purposes. You must determine which account you will use for validation of the data at the time the work status is changed. The validation account must be &rdquor;0u201D at the intersection of the 3-5 variable members and the members designated for the non-work status dimensions.  If the account is not &rdquor;0u201D then the owner/manager cannot set the work status.  This is an option feature.
    The dimensions you select as the work status dimensions are the variables in your business process. For example, the entity, category, and time might change based on who is submitting data, but the account, data source, reporting currency, etc., remains static. (Typically, Time is a work status dimension since data is usually segregated based on time.)
    For example, lets say that you set Entity, Category, and Timeas your work status dimensions for a given application. You then set your other current view members to the following:  Account: Validation; DataSrc: TotalAdj; Intco: All_Intco; and RptCurrency: LC. In addition to assigning work status dimensions, you also specify which dimension is the 'owner dimension.' The owner dimension includes the Owner property. The owner property determines who can edit a work status setting. The following figure shows this setup, where Entity is the Owner dimension.
    A user attempts to post data to the current view shown in the following table. The system checks the 'validation' account to make sure the intersection equals zero (0). If so, the data is posted, and a success message is displayed. The user can now set the work state to 'submitted' on that intersection. Subsequent submissions to that exact intersection will be rejected. Users can only send data to the same intersection if the Entity, Category, or Time member changes.
    Account
    <All>
    Category
    Actual
    DataSrc
    <All>
    Entity
    SalesNE
    Intco
    <All>
    RptCurrency
    <All>
    Time
    Feb.2007
    To change work status settings for applications
    From the Admin Console, expand the Application node.
    Expand the application for which you want to change the work status setting.
    Select Work Status Settings.
    In the Work State column, select Yes for each dimension you want to use to control the work status settings. Select Owner for the dimension that contains the Owner property.
    In the Member Validation column, select a member for each non-work status dimensions. (Use the browse button to open the Member Lookup.)
    From the action pane, select Save Work Status Settings.

  • While working in Material Master, Before exporting to Excel need to know the count of listed items in SQVI Reporting

    While working in Material Master, Before exporting to Excel need to know the count of listed items in SQVI Reporting

    Major documentation is at https://service.sap.com/installmdm.
    In the "Installation" section, you can find information about predefined object models (e.g. Product, Business Partner). For "Vendor" information, please check under "Previous Releases (ZIP Files) > MDM 5.5 (SP03) Installation Guides > SAP ERP-MDM Field Mapping and Check Tables.xls.

  • Check whether master record conversions exist

    Dear All,
    I have copied the requests from developement server to quality server for SD IMG configrations.
    When i am doing consistency check in Developement server there is no error.
    However when i check the same in quality server I am getting the following error.
    Check whether master record conversions exist
    Dist. channel is missing for condition conversion 1000 10
    Dist. channel missing for customer/material conversion 1000 10
    Check whether master record conversions exist
    Division is missing for condition conversion 1000 10
    Division missing for customer conversion 1000 10
    Can some body help me to solve this problem.This very urgent and will really appreciate your timely support.
    Thanking you,
    Best regards,
    R.Srinivasan
    Check whether master record conversions exist
    Division is missing for condition conversion 1000 10
    Division missing for customer conversion 1000 10

    Experiencing the same problem also.
    Right now, i'm re transporting the DEV config for Define Dist Channel, Define Division, Assign Dist channel to sales org, Assign Division to sales org, and Set up sales area. I hope once i transport them again in this order, the issue will be resolved is QAS.
    Anyone know what i should do?

  • Can I make 1080i into progressive before exporting to DVD?

    This excellent post explains how my HV20 1080i60 footage can be made progressive by using the ProRes setting:
    http://docs.info.apple.com/article.html?artnum=306389
    However, doing this sextuples the file sizes, and I have 50GB of footage on this project and needed it all on my MacBook, so it was a no-go.
    Is there a way to apply this ProRes now that I have my project edited in timeline (4 minutes) before exporting to DVD? Or could I somehow use the ProRes setting itself (rather than one of the DVD export settings) to export the project to burn on a DVD in DVD Studio Pro?
    Or is applying a Deinterlace filter going to do the same?
    I would keep the framerate at 29.97, as it is destined for broadcast.
    Thank you,
    MaW

    Thank you very much for superfast replies.
    You are right about the broadcast, I just checked the Viacom submission specs, and for HD it says “MTVN requires delivery of 1080i (16 x 9) aspect ratio program material, at 29.97 frames per second (59.94 fields/sec) for broadcast.”
    It would be quite silly to go from i to p to i.
    I just wanted to do everything I could to make it look less sharp and videoey (being a $1,000 CMOS camera...)
    I am now trying to add some grain with the CGM plug-in...
    Very interesting about the Deinterlace Filter vs. Frame Controls.
    Which one of the four should I select?
    (Fast (line averaging), Better (motion adaptive) Best (motion compensated) and Reverse Telecine)
    I would want the best possible result, of course.
    Also, should I leave the ‘adaptive details’ box checked?
    For future reference, if I wanted to export 1080i timeline and make it progressive, could I still follow the article instructions and select Reverse Telecine (I’d probably keep the framerate at 30)?
    This would seem so much easier than having to do the pulldown on ALL your footage before starting to edit...
    Thank you
    MaW

Maybe you are looking for

  • How do I remove all of the photos that have been imported and start over. The photo did not import into folders by date

    When I imported the photos, I thought I had it set to import them into folders but it didn't happen. I have one file of 10000+ photos in the same folder. I would likede to start over, remove what has been imported (not delete) and start over importin

  • Authorization control for Z fields

    Hi all, We have appended a structure to VBAP; our requirement is to update these Z fields based on authorization control. Other than creating Z auth objects and checking them in our exit before updating Z fields, is there any other standard option to

  • About Acroforms and permissions

    Hello anyone! I'm writing an application, using the Gnostice VCL Toolkit http://www.gnostice.com/PDFtoolkit_VCL.asp that, given a set of data (generated launching a query on a db) and a blank acroform programmatically generates a new PDF file that co

  • I don't know how to use siri

    I am always trapped and lost whenever I travel how to use siri to help me in navigation

  • 5800 Organising menu

    This is driving me mad. I tried to rearrange the icons in my main menu view and the 'messaging' icon has disappeared. Using the search facility I can find it in 'other/applications', but I can't find out how to move it back to the main menu. I can't